:root {
  --red: #9b1b2e;
  --red-deep: #6e1020;
  --green: #1c3a2c;
  --green-deep: #10241b;
  --cream: #f6efe3;
  --ivory: #fbf7f0;
  --gold: #c4a15a;
  --gold-soft: #e6d3a3;
  --ink: #1a1714;
  --muted: #5c5348;
  --line: rgba(196, 161, 90, 0.35);
  --shadow: 0 18px 40px rgba(16, 36, 27, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.eyebrow {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold);
}

h1, h2, h3, .logo-name {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.15;
}

.topbar {
  background: var(--green-deep);
  color: var(--gold-soft);
  font-size: 0.88rem;
  padding: 0.45rem 0;
}
.topbar .wrap { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.topbar a { color: var(--gold-soft); }

.site-header {
  background: var(--green);
  color: var(--cream);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 0;
}
.brand { color: var(--cream); display: flex; flex-direction: column; }
.brand:hover { text-decoration: none; color: var(--gold-soft); }
.logo-name { font-size: 1.55rem; letter-spacing: 0.04em; }
.logo-sub { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }

nav { display: flex; gap: 1.15rem; flex-wrap: wrap; align-items: center; }
nav a { color: var(--cream); font-size: 0.95rem; }
nav a[aria-current="page"] { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 6px; }

.btn {
  display: inline-block;
  background: var(--red);
  color: #fff !important;
  padding: 0.72rem 1.2rem;
  border-radius: 2px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-family: "Source Serif 4", Georgia, serif;
  border: 0;
  cursor: pointer;
}
.btn:hover { background: var(--red-deep); text-decoration: none; }
.btn-gold { background: var(--gold); color: var(--green-deep) !important; }
.btn-gold:hover { background: var(--gold-soft); }
.btn-outline { background: transparent; border: 1px solid var(--gold); color: var(--cream) !important; }

.hero {
  min-height: 78vh;
  background:
    linear-gradient(180deg, rgba(16,36,27,.55), rgba(110,16,32,.35)),
    url("../images/christmas-lights-10.jpg") center/cover no-repeat;
  color: var(--cream);
  display: grid;
  align-items: end;
}
.hero-inner { padding: 7rem 0 4.5rem; max-width: 720px; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 5rem); margin: 0.4rem 0 1rem; }
.hero p { font-size: 1.2rem; max-width: 38rem; }
.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.6rem; }

.band {
  background: var(--red);
  color: #fff;
  padding: 1.1rem 0;
  text-align: center;
  letter-spacing: 0.08em;
}

.section { padding: 4.5rem 0; }
.section.alt { background: var(--cream); }
.section h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin: 0.3rem 0 1rem; }

.grid-3, .grid-2 { display: grid; gap: 1.4rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1.1fr 0.9fr; }

.card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.card img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 1.2rem 1.3rem 1.5rem; }
.card h3 { margin: 0 0 0.4rem; font-size: 1.6rem; }

.steps { counter-reset: step; }
.steps li {
  list-style: none;
  margin: 0 0 1rem;
  padding-left: 3rem;
  position: relative;
}
.steps { padding: 0; }
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 2rem; height: 2rem;
  border: 1px solid var(--gold);
  color: var(--red);
  display: grid; place-items: center;
  font-family: "Cormorant Garamond", serif;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
.gallery-grid img { width: 100%; height: 240px; object-fit: cover; }

form { display: grid; gap: 0.8rem; }
label { font-size: 0.92rem; color: var(--muted); }
input, select, textarea {
  width: 100%;
  padding: 0.75rem 0.8rem;
  border: 1px solid #d7cbb8;
  background: #fff;
  font: inherit;
}
textarea { min-height: 8rem; }

.quote-box { background: #fff; padding: 1.5rem; border: 1px solid var(--line); }
.note { font-size: 0.9rem; color: var(--muted); }

.site-footer {
  background: var(--green-deep);
  color: var(--gold-soft);
  padding: 3rem 0 1.5rem;
}
.site-footer a { color: var(--gold-soft); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
.legal { border-top: 1px solid rgba(230,211,163,.2); margin-top: 2rem; padding-top: 1rem; font-size: 0.82rem; }

.page-hero {
  background: var(--green);
  color: var(--cream);
  padding: 3.5rem 0 2.5rem;
}
.page-hero h1 { margin: 0.3rem 0 0; font-size: clamp(2.2rem, 5vw, 3.6rem); }

.post { background: #fff; padding: 1.4rem; border: 1px solid var(--line); margin-bottom: 1rem; }

@media (max-width: 860px) {
  .grid-3, .grid-2, .gallery-grid, .foot-grid { grid-template-columns: 1fr; }
  .site-header .wrap { flex-direction: column; align-items: flex-start; }
  .hero { min-height: 62vh; }
}

a.card { color: inherit; display: block; }
a.card:hover { text-decoration: none; transform: translateY(-2px); }
a.card h3 { color: var(--green-deep); }
