/* ============================================================
   BIRDIES & BOGEYS — v4
   Rich layered editorial (statelylv.com structural language):
   paper background · serif display w/ italic accent · eyebrows
   stats · layered image+video compositions · dark pine bands
   numbered process · event cards · dark footer
   ============================================================ */
:root {
  --paper:  #F4F2EC;
  --card:   #FFFFFF;
  --pine:   #182B21;   /* deep green-black: nav, bands, footer */
  --pine-2: #21382C;
  --ink:    #232924;
  --mut:    #6A7169;
  --accent: #4F7C63;   /* soft green — eyebrows, rules, italic em */
  --line:   #E3E0D7;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Inter", "Helvetica Neue", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: var(--sans); font-weight: 400; font-size: 1rem;
  background: var(--paper); color: var(--ink); line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; color: var(--ink); }
h1 { font-size: clamp(2.8rem, 5.6vw, 4.8rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 500; }
h3 { font-size: 1.6rem; }
h1 em, h2 em { font-style: italic; font-weight: 500; color: var(--accent); }
p  { color: var(--mut); }

/* ---------- eyebrow ---------- */
.eyebrow {
  display: flex; align-items: center; gap: 0.7rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 0.68rem; color: var(--accent); margin-bottom: 1.2rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--accent); }
.eyebrow.on-dark { color: #B9CDBE; }
.eyebrow.on-dark::before { background: #B9CDBE; }
.eyebrow.centered { justify-content: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; font-family: var(--sans); font-weight: 600;
  font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.18em;
  padding: 1rem 2.1rem; text-decoration: none; cursor: pointer;
  border: 1px solid transparent; transition: all 0.3s ease;
}
.btn-pine { background: var(--pine); color: #fff; }
.btn-pine:hover { background: var(--pine-2); }
.btn-ghost { border-color: rgba(255,255,255,0.7); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--pine); }
.btn-line { border-color: var(--pine); color: var(--pine); }
.btn-line:hover { background: var(--pine); color: #fff; }
.text-link {
  font-weight: 600; font-size: 0.74rem; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--accent); text-decoration: none;
}
.text-link:hover { color: var(--pine); }

/* ---------- nav: dark pine bar ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 3vw; background: rgba(24,43,33,0.97);
  color: #fff; transition: padding 0.3s ease;
}
.nav.solid { padding: 0.7rem 3vw; box-shadow: 0 6px 24px rgba(10,20,14,0.25); }
.nav a { color: inherit; text-decoration: none; }
.nav-brand { display: flex; align-items: baseline; gap: 0.65rem; white-space: nowrap; }
.brand-mark { font-family: var(--serif); font-size: 1.55rem; font-weight: 600; }
.brand-mark em { font-style: normal; color: #8FB39B; font-size: 1.1rem; }
.brand-name { font-size: 0.66rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.3em; color: rgba(255,255,255,0.75); }
.nav-links { display: flex; gap: 1.9rem; align-items: center; }
.nav-links a {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.78); padding-bottom: 0.2rem;
  border-bottom: 1px solid transparent; transition: color .25s, border-color .25s;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; border-bottom-color: #8FB39B; }
.nav-cta { border: 1px solid rgba(255,255,255,0.55); padding: 0.6rem 1.2rem; border-bottom-width: 1px !important; }
.nav-cta:hover { background: #fff; color: var(--pine) !important; }
.nav-phone { font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.85); white-space: nowrap; }
@media (max-width: 1080px) {
  .brand-name, .nav-phone, .nav-cta { display: none; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.62rem; letter-spacing: 0.12em; }
}

/* ---------- ambient motion (photos only, gentle) ---------- */
.kb { overflow: hidden; position: relative; }
.kb img {
  width: 100%; height: 100%; object-fit: cover; will-change: transform;
  animation-duration: 36s; animation-timing-function: ease-in-out;
  animation-iteration-count: infinite; animation-direction: alternate;
}
.kb video { width: 100%; height: 100%; object-fit: cover; display: block; }
.kb-a img { animation-name: kb-a; } .kb-b img { animation-name: kb-b; } .kb-c img { animation-name: kb-c; }
@keyframes kb-a { from { transform: scale(1.02); } to { transform: scale(1.07) translate(-1%, -0.6%); } }
@keyframes kb-b { from { transform: scale(1.07) translate(0.8%, 0.5%); } to { transform: scale(1.02); } }
@keyframes kb-c { from { transform: scale(1.03) translate(-0.7%, 0.5%); } to { transform: scale(1.06) translate(0.7%, -0.5%); } }
@media (prefers-reduced-motion: reduce) { .kb img { animation: none; } }

/* ---------- hero ---------- */
.hero { position: relative; height: 90vh; min-height: 560px; display: grid; place-items: center; text-align: center; }
.hero.hero-short { height: 58vh; min-height: 400px; }
.hero .kb { position: absolute; inset: 0; }
.hero .kb img { height: 100%; }
.hero::after { content: ""; position: absolute; inset: 0; background: rgba(16,26,20,0.45); }
.hero-copy { position: relative; z-index: 2; padding: 4rem 6vw 0; max-width: 920px; }
.hero-copy h1 { color: #fff; }
.hero-copy h1 em { color: #CBDCC9; }
.hero-sub { margin: 1.2rem auto 0; color: rgba(255,255,255,0.9); max-width: 54ch; font-size: 1.02rem; }
.hero-actions { margin-top: 2.2rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.scroll-hint {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); z-index: 2;
  color: rgba(255,255,255,0.8); font-size: 0.64rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.3em; transition: opacity .5s;
}
.scroll-hint span { display: block; text-align: center; animation: bob 2s infinite ease-in-out; }
@keyframes bob { 50% { transform: translateY(5px); } }

/* ---------- layout helpers ---------- */
.sec { padding: clamp(4.5rem, 9vw, 7.5rem) 6vw; }
.inner { max-width: 1180px; margin: 0 auto; }
[data-parallax] { will-change: transform; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .85s ease, transform .85s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- intro + stats ---------- */
.intro-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.intro-text h2 { margin-bottom: 1.4rem; }
.intro-text p { margin-bottom: 1.1rem; max-width: 58ch; }
.intro-text .btn { margin-top: 1rem; }
.stats { display: grid; gap: 1.8rem; border-left: 1px solid var(--line); padding-left: clamp(1.5rem, 3vw, 3rem); }
.stat-num { font-family: var(--serif); font-weight: 500; font-size: clamp(2.6rem, 4vw, 3.6rem); line-height: 1; color: var(--pine); }
.stat-num sup { font-size: 0.5em; color: var(--accent); }
.stat-label { font-size: 0.8rem; color: var(--mut); margin-top: 0.3rem; }
@media (max-width: 860px) { .intro-grid { grid-template-columns: 1fr; } .stats { border-left: none; padding-left: 0; grid-template-columns: repeat(3,1fr); } }
@media (max-width: 560px) { .stats { grid-template-columns: 1fr; } }

/* ---------- dark interstitial bands ---------- */
.band { position: relative; padding: clamp(6rem, 14vw, 10rem) 6vw; display: grid; place-items: center; text-align: center; overflow: hidden; }
.band .kb { position: absolute; inset: 0; }
.band .kb img { height: 100%; }
.band::after { content: ""; position: absolute; inset: 0; background: rgba(16,26,20,0.62); }
.band-copy { position: relative; z-index: 2; max-width: 800px; }
.band-copy h2 { color: #fff; }
.band-copy h2 em { color: #CBDCC9; }
.band-copy p { color: rgba(255,255,255,0.85); margin-top: 1rem; }
.band-copy .btn { margin-top: 2rem; }

/* ---------- service rows w/ layered media ---------- */
.svc { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(3rem, 7vw, 6.5rem); align-items: center; margin-top: clamp(3rem, 6vw, 5rem); }
.svc:first-of-type { margin-top: 2.5rem; }
.svc.flip .svc-media { order: 2; }
.svc-text h3 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); margin-bottom: 0.9rem; }
.svc-text p { margin-bottom: 1rem; max-width: 52ch; }
.svc-media { position: relative; padding-bottom: 3.2rem; }
.svc-media .main.kb { aspect-ratio: 4/3.1; }
.svc-media .inset {
  position: absolute; right: -4%; bottom: 0; width: 46%;
  box-shadow: 0 24px 60px -22px rgba(16,26,20,0.45);
  border: 6px solid var(--paper);
}
.svc.flip .svc-media .inset { right: auto; left: -4%; }
.svc-media .inset video, .svc-media .inset img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
@media (max-width: 860px) {
  .svc, .svc.flip { grid-template-columns: 1fr; }
  .svc.flip .svc-media { order: 0; }
  .svc-media .inset { right: 0; } .svc.flip .svc-media .inset { left: 0; }
}

/* ---------- dark feature (After Dark video) ---------- */
.dark-feature { background: var(--pine); }
.dark-feature-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.6rem, 6vw, 5.5rem); align-items: center;
}
.dark-feature h2 { color: #fff; }
.dark-feature h2 em { color: #CBDCC9; }
.dark-feature p:not(.eyebrow) { color: rgba(255,255,255,0.82); margin: 1rem 0 1.8rem; max-width: 46ch; }
.video-frame {
  border: 6px solid var(--paper);
  box-shadow: 0 30px 70px -28px rgba(0,0,0,0.6);
  max-width: 520px; justify-self: center; width: 100%;
}
.video-frame video { display: block; width: 100%; }
@media (max-width: 860px) { .dark-feature-grid { grid-template-columns: 1fr; } }

/* ---------- process ---------- */
.process { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.6rem, 3vw, 3rem); margin-top: 3rem; }
.step-num { font-family: var(--serif); font-style: italic; font-size: 2.4rem; color: var(--accent); line-height: 1; }
.step h4 { font-size: 1.25rem; margin: 0.8rem 0 0.5rem; }
.step p { font-size: 0.92rem; }
@media (max-width: 940px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

/* ---------- event cards ---------- */
.ev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3rem; }
.ev-card { position: relative; display: block; overflow: hidden; text-decoration: none; }
.ev-card .kb { aspect-ratio: 4/4.6; }
.ev-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(16,26,20,0.78) 0%, rgba(16,26,20,0.05) 50%);
}
.ev-meta { position: absolute; z-index: 2; left: 1.5rem; right: 1.5rem; bottom: 1.4rem; }
.ev-meta .ev-date { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: #B9CDBE; }
.ev-meta h3 { color: #fff; font-size: 1.5rem; margin-top: 0.3rem; }
@media (max-width: 860px) { .ev-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } }

/* ---------- quote / reviews ---------- */
.quote-wrap { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 1.4rem; margin-top: 3rem; }
.quote-card { background: var(--card); border: 1px solid var(--line); padding: clamp(2rem, 4vw, 3.2rem); }
.quote-card .qmark { font-family: var(--serif); font-size: 4rem; line-height: 0.6; color: var(--accent); display: block; margin-bottom: 1.4rem; }
.quote-card p { font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.6rem); font-style: italic; color: var(--ink); line-height: 1.5; }
.quote-card cite { display: block; font-style: normal; font-family: var(--sans); font-weight: 600; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--accent); margin-top: 1.4rem; }
.review-invite { background: var(--pine); color: #fff; padding: clamp(2rem, 4vw, 3.2rem); display: grid; align-content: center; gap: 1rem; }
.review-invite h3 { color: #fff; }
.review-invite p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.review-invite .btn { justify-self: start; }
@media (max-width: 860px) { .quote-wrap { grid-template-columns: 1fr; } }

/* ---------- calendar CTA + form ---------- */
.cal { background: var(--card); border-top: 1px solid var(--line); }
.cal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.6rem, 6vw, 6rem); align-items: center; }
.cal-text h2 { margin-bottom: 1.2rem; }
.cal-text p { max-width: 48ch; margin-bottom: 0.9rem; }
.cal-form { background: var(--paper); border: 1px solid var(--line); padding: 2.4rem; display: grid; gap: 0.9rem; }
.cal-form h3 { margin-bottom: 0.2rem; }
.cal-form input, .cal-form select, .cal-form textarea {
  font-family: var(--sans); font-size: 0.95rem; padding: 0.9rem 1rem;
  border: 1px solid var(--line); background: var(--card); color: var(--ink);
  outline: none; width: 100%; transition: border-color .2s;
}
.cal-form input:focus, .cal-form select:focus, .cal-form textarea:focus { border-color: var(--accent); }
.cal-form textarea { resize: vertical; font-family: var(--sans); }
.cal-form .btn { border: none; }
.form-note { font-size: 0.78rem; color: var(--mut); text-align: center; }
@media (max-width: 860px) { .cal-grid { grid-template-columns: 1fr; } }

/* ---------- gallery ---------- */
.gallery-grid { columns: 4 240px; column-gap: 1rem; margin-top: 2.8rem; }
.gallery-grid .kb { margin-bottom: 1rem; break-inside: avoid; }

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.6rem, 6vw, 5.5rem); align-items: center; }
.about-photo { position: relative; padding-bottom: 2.6rem; }
.about-photo .main { aspect-ratio: 3.4/4; object-fit: cover; width: 100%; }
.about-photo .inset {
  position: absolute; right: -5%; bottom: 0; width: 44%;
  border: 6px solid var(--paper); box-shadow: 0 24px 60px -22px rgba(16,26,20,0.45);
}
.about-text p { margin-bottom: 1rem; max-width: 58ch; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }

/* ---------- contact cards ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-top: 3rem; }
.contact-card {
  background: var(--card); border: 1px solid var(--line);
  padding: 2.2rem 1.8rem; text-decoration: none; display: grid; gap: 0.5rem;
  transition: border-color .25s;
}
a.contact-card:hover { border-color: var(--accent); }
.contact-label { font-size: 0.66rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.22em; color: var(--accent); }
.contact-value { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; color: var(--ink); }
@media (max-width: 760px) { .contact-cards { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.footer { background: var(--pine); color: rgba(255,255,255,0.75); padding: clamp(3.5rem, 7vw, 5rem) 6vw 2rem; }
.footer-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 0.9fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.footer h5 { font-family: var(--sans); font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.24em; color: #8FB39B; margin-bottom: 1rem; }
.footer a { color: rgba(255,255,255,0.85); text-decoration: none; }
.footer a:hover { color: #fff; }
.footer-brandcol .brand-mark { color: #fff; }
.footer-tag { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: #CBDCC9; margin-top: 0.8rem; }
.footer-desc { font-size: 0.9rem; margin-top: 0.6rem; max-width: 34ch; color: rgba(255,255,255,0.65); }
.footer ul { list-style: none; display: grid; gap: 0.55rem; font-size: 0.92rem; }
.footer-legal {
  max-width: 1180px; margin: 3rem auto 0; padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 0.78rem; color: rgba(255,255,255,0.55); text-align: center;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr; } }
