/* =========================================================
   Pheasant Grove — Editorial luxury sporting lodge
   ========================================================= */

:root {
  --forest: #0b1610;
  --forest-2: #122018;
  --forest-3: #1a2c22;
  --cream: #f3ebe0;
  --cream-2: #e8ddd0;
  --cream-muted: #d9ccba;
  --copper: #c4783a;
  --amber: #e8a35c;
  --sage: #8fa892;
  --sage-mist: rgba(143, 168, 146, 0.18);
  --ink: #0b1610;
  --line: rgba(243, 235, 224, 0.12);
  --line-dark: rgba(11, 22, 16, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 4px;
  --nav-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-ui: "Manrope", system-ui, -apple-system, sans-serif;
  --fluid-xs: clamp(0.7rem, 0.65rem + 0.2vw, 0.8rem);
  --fluid-sm: clamp(0.85rem, 0.8rem + 0.25vw, 0.95rem);
  --fluid-base: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  --fluid-lg: clamp(1.15rem, 1.05rem + 0.5vw, 1.35rem);
  --fluid-xl: clamp(1.75rem, 1.3rem + 2vw, 3rem);
  --fluid-2xl: clamp(2.5rem, 1.6rem + 3.5vw, 4.75rem);
  --fluid-3xl: clamp(3.25rem, 2rem + 5vw, 6.5rem);
  --space: clamp(1rem, 0.75rem + 1.5vw, 2rem);
  --section-y: clamp(3.75rem, 2.5rem + 4.5vw, 7rem);
  --content: 72rem;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: var(--fluid-base);
  line-height: 1.65;
  color: var(--cream);
  background: var(--forest);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video, iframe { max-width: 100%; display: block; }
img { height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { color: var(--amber); }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; }
p { margin: 0; }
button { cursor: pointer; background: none; border: none; padding: 0; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 1000;
  background: var(--cream);
  color: var(--forest);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.85rem;
  padding: 0.7rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: var(--fluid-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
  white-space: nowrap;
}
.btn:hover { color: inherit; transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--copper), var(--amber));
  color: var(--forest);
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(196, 120, 58, 0.28);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--amber), #f0c07a);
  color: var(--forest);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(243, 235, 224, 0.28);
}
.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(232, 163, 92, 0.06);
}
.btn-nav {
  background: var(--cream);
  color: var(--forest);
  min-height: 2.4rem;
  padding: 0.45rem 1.1rem;
  font-size: 0.72rem;
}
.btn-nav:hover { background: var(--amber); color: var(--forest); }
.btn-lg { min-height: 3.25rem; padding: 0.9rem 1.75rem; font-size: 0.85rem; }

/* ---------- Typography helpers ---------- */
.micro-label {
  font-family: var(--font-ui);
  font-size: var(--fluid-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--fluid-2xl);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.section-lead {
  max-width: 36rem;
  color: rgba(243, 235, 224, 0.82);
  font-size: var(--fluid-lg);
  font-weight: 300;
  line-height: 1.7;
}
.fine-print {
  margin-top: 2rem;
  font-size: var(--fluid-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage);
}

.section { padding: var(--section-y) var(--space); position: relative; }
.section-inner { max-width: var(--content); margin: 0 auto; }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.32s; }

/* =========================================================
   NAV
   ========================================================= */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-nav.is-solid {
  background: rgba(11, 22, 16, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: calc(var(--content) + 4rem);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--space);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--cream);
  min-width: 0;
}
.brand:hover { color: var(--cream); }
.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(243, 235, 224, 0.06);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-muted);
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 0.5rem + 1.5vw, 1.75rem);
}
.nav-links a:not(.btn) {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(243, 235, 224, 0.78);
  transition: color 0.25s;
}
.nav-links a:not(.btn):hover { color: var(--amber); }
.nav-links a:not(.btn).is-active { color: var(--amber); }
.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  background: var(--cream);
  margin: 0.35rem auto;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }

  /* backdrop-filter on .site-nav makes fixed children use the nav as containing
     block (~71px tall). Kill it while the menu is open, and size the overlay
     with vw/dvh so it always covers the viewport. */
  body.nav-open .site-nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: transparent;
    border-bottom-color: transparent;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100dvh;
    height: 100vh;
    z-index: 105;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: calc(var(--nav-h) + 1rem) var(--space) 2rem;
    background: rgba(11, 22, 16, 0.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -12px, 0);
    transition: opacity 0.35s var(--ease), visibility 0.35s, transform 0.35s var(--ease);
  }
  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  body:not(.nav-open) .nav-links {
    /* fully off-screen when closed — no ghost text */
    transform: translate3d(0, -100%, 0);
  }
  .nav-links a:not(.btn) { font-size: 1.05rem; }
  .nav-links .btn-nav {
    margin-top: 0.5rem;
    min-height: 2.85rem;
    padding: 0.7rem 1.45rem;
    font-size: 0.8rem;
  }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: calc(var(--nav-h) + 3rem) var(--space) 5rem;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.06) brightness(0.82);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 22, 16, 0.45) 0%, rgba(11, 22, 16, 0.18) 35%, rgba(11, 22, 16, 0.62) 70%, rgba(11, 22, 16, 0.92) 100%),
    linear-gradient(90deg, rgba(11, 22, 16, 0.42) 0%, transparent 60%);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 120px 40px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 48rem;
}
.eyebrow {
  font-size: var(--fluid-xs);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: var(--fluid-3xl);
  font-weight: 500;
  line-height: 0.98;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--cream-2);
  display: inline-block;
}
.hero-lead {
  max-width: 34rem;
  color: rgba(243, 235, 224, 0.78);
  font-size: var(--fluid-lg);
  font-weight: 300;
  margin-bottom: 2rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.scroll-cue {
  position: absolute;
  bottom: 1.75rem;
  left: var(--space);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(243, 235, 224, 0.55);
}
.scroll-cue:hover { color: var(--amber); }
.scroll-line {
  display: block;
  width: 3rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 163, 92, 0.8), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 40%;
  background: var(--amber);
  animation: scrollPulse 2.2s var(--ease) infinite;
}
@keyframes scrollPulse {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(280%); }
}

/* =========================================================
   PROOF / MARQUEE
   ========================================================= */
.proof {
  border-block: 1px solid var(--line);
  background: var(--forest-2);
  overflow: hidden;
}
.marquee {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  width: max-content;
  animation: marquee 38s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1rem + 0.6vw, 1.45rem);
  letter-spacing: 0.04em;
  color: var(--cream-muted);
  white-space: nowrap;
}
.marquee-track .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--copper);
  display: inline-block;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.proof-static {
  max-width: var(--content);
  margin: 0 auto;
  padding: 1.75rem var(--space);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.proof-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 0;
  border-left: 1px solid var(--line);
  padding-left: 1.25rem;
}
.proof-item:first-child { border-left: none; padding-left: 0; }
.proof-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.25rem);
  color: var(--cream);
  line-height: 1;
}
.proof-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
}

@media (max-width: 700px) {
  .proof-static { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(3) { border-left: none; padding-left: 0; }
}

/* =========================================================
   BIRDS
   ========================================================= */
.birds { background: var(--forest); }
.birds-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 1rem + 4vw, 5rem);
  align-items: center;
}
.bird-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.bird-list li {
  display: grid;
  gap: 0.35rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}
.bird-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--cream);
}
.bird-desc { color: var(--cream-muted); font-size: var(--fluid-sm); }

.photo-stack {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  max-width: 28rem;
  margin-left: auto;
  overflow: hidden;
  isolation: isolate;
}
.photo-stack img {
  position: absolute;
  width: 72%;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 1px solid rgba(243, 235, 224, 0.1);
}
.photo-stack img:nth-child(1) {
  top: 4%;
  left: 0;
  width: 74%;
  height: 46%;
  z-index: 1;
  transform: rotate(-2deg);
}
.photo-stack img:nth-child(2) {
  top: 22%;
  right: 0;
  left: auto;
  width: 62%;
  height: 52%;
  z-index: 2;
  transform: rotate(2.5deg);
}
.photo-stack img:nth-child(3) {
  bottom: 2%;
  left: 10%;
  width: 70%;
  height: 38%;
  z-index: 3;
  transform: rotate(-1deg);
}

@media (max-width: 860px) {
  .birds-grid { grid-template-columns: 1fr; }
  .photo-stack { margin: 1rem auto 0; max-width: 22rem; }
}

/* =========================================================
   PRESERVE
   ========================================================= */
.preserve {
  background:
    radial-gradient(ellipse at 20% 0%, var(--sage-mist), transparent 50%),
    var(--forest-2);
}
.preserve-head { max-width: 40rem; margin-bottom: clamp(2.5rem, 2rem + 3vw, 4.5rem); }
.preserve-collage {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.85rem;
}
.preserve-collage figure {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}
.preserve-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.preserve-collage figure:hover img { transform: scale(1.04); }
.collage-main {
  grid-column: 1;
  grid-row: 1 / 3;
  min-height: 28rem;
}
.collage-a { min-height: 13rem; }
.collage-b { min-height: 13rem; }
.collage-c {
  grid-column: 2 / 4;
  min-height: 11rem;
}
.address-card {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
  padding: clamp(1.5rem, 1rem + 2vw, 2.25rem);
  background: linear-gradient(135deg, rgba(196, 120, 58, 0.12), rgba(11, 22, 16, 0.4));
  border: 1px solid rgba(232, 163, 92, 0.25);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 2rem;
  align-items: end;
}
.address-card .micro-label { grid-column: 1 / -1; margin-bottom: 0.25rem; }
.address-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  grid-column: 1;
}
.address-lines {
  color: var(--cream-muted);
  font-size: var(--fluid-sm);
  grid-column: 1;
}
.address-phone {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--amber);
  text-decoration: none;
  grid-column: 2;
  grid-row: 2 / 4;
  align-self: center;
  justify-self: end;
}
.address-phone:hover { color: var(--cream); }
.address-season {
  grid-column: 1 / -1;
  margin-top: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  font-size: var(--fluid-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
}

@media (max-width: 800px) {
  .preserve-collage {
    grid-template-columns: 1fr 1fr;
  }
  .collage-main {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 16rem;
  }
  .collage-c { grid-column: 1 / -1; }
  .address-card { grid-template-columns: 1fr; }
  .address-phone {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    margin-top: 0.5rem;
  }
}

/* =========================================================
   EXPERIENCE
   ========================================================= */
.experience { background: var(--forest); }
.experience-head { margin-bottom: 3rem; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.feature-card {
  padding: clamp(1.75rem, 1.25rem + 1.5vw, 2.5rem);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(243, 235, 224, 0.03), transparent);
  border-radius: 2px;
  min-height: 16rem;
  transition: border-color 0.4s, transform 0.4s var(--ease);
}
.feature-card:hover {
  border-color: rgba(232, 163, 92, 0.35);
  transform: translateY(-4px);
}
.feature-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--copper);
  letter-spacing: 0.08em;
  margin-bottom: 2.5rem;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.85rem;
}
.feature-card p { color: var(--cream-muted); font-size: var(--fluid-sm); }

@media (max-width: 800px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; }
}

/* =========================================================
   PRICING
   ========================================================= */
.pricing {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(196, 120, 58, 0.1), transparent 45%),
    var(--forest-2);
}
.pricing-head { max-width: 36rem; margin-bottom: 3rem; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.price-card {
  padding: 2rem 1.75rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(11, 22, 16, 0.35);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: border-color 0.35s, transform 0.35s var(--ease);
}
.price-card:hover {
  border-color: rgba(232, 163, 92, 0.4);
  transform: translateY(-3px);
}
.price-card.featured {
  background: linear-gradient(160deg, rgba(196, 120, 58, 0.18), rgba(11, 22, 16, 0.5));
  border-color: rgba(232, 163, 92, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.price-tier {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
}
.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
}
.price-amount {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 2rem + 1.5vw, 3.5rem);
  line-height: 1;
  margin: 0.5rem 0;
}
.price-amount .currency {
  font-size: 0.45em;
  vertical-align: super;
  margin-right: 0.1em;
  color: var(--amber);
}
.price-amount .unit {
  font-size: 0.35em;
  color: var(--cream-muted);
  margin-left: 0.25em;
  font-family: var(--font-ui);
  letter-spacing: 0.04em;
}
.price-note { color: var(--cream-muted); font-size: var(--fluid-sm); }

.bird-rates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.bird-rate {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.2rem 1rem;
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  align-items: center;
}
.bird-rate-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
}
.bird-rate-meta {
  grid-column: 1;
  font-size: var(--fluid-xs);
  color: var(--sage);
  letter-spacing: 0.04em;
}
.bird-rate-price {
  grid-column: 2;
  grid-row: 1 / 3;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--amber);
  line-height: 1;
}
.bird-rate-price small {
  font-family: var(--font-ui);
  font-size: 0.4em;
  color: var(--cream-muted);
  letter-spacing: 0.04em;
}
.pricing-footnote {
  font-size: var(--fluid-sm);
  color: var(--cream-muted);
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}

@media (max-width: 800px) {
  .pricing-grid, .bird-rates { grid-template-columns: 1fr; }
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery { background: var(--forest); }
.gallery-head { margin-bottom: 2.5rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  padding: 0;
  border: 1px solid transparent;
  background: var(--forest-3);
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  width: 100%;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.7s;
  filter: saturate(0.92);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 22, 16, 0.35));
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.05);
  filter: saturate(1.05);
}
.gallery-item:hover::after,
.gallery-item:focus-visible::after { opacity: 1; }
.gallery-item:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .gallery-item { aspect-ratio: 1 / 1; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 10, 7, 0.94);
  display: grid;
  place-items: center;
  padding: 2rem;
  backdrop-filter: blur(8px);
}
.lightbox[hidden] { display: none !important; }
.lightbox-img {
  max-width: min(92vw, 1100px);
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: var(--shadow);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: var(--cream);
  font-size: 2rem;
  line-height: 1;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(243, 235, 224, 0.08);
  transition: background 0.25s, color 0.25s;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(232, 163, 92, 0.25);
  color: var(--amber);
}
.lightbox-close { top: 1.25rem; right: 1.25rem; font-size: 2.25rem; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }

/* =========================================================
   DIRECTIONS
   ========================================================= */
.directions {
  background: var(--forest-2);
  border-block: 1px solid var(--line);
}
.directions-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 1rem + 4vw, 4rem);
  align-items: stretch;
}
.steps {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--cream-muted);
}
.step-num {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  border: 1px solid rgba(232, 163, 92, 0.45);
  color: var(--amber);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.1rem;
}
.directions-address {
  margin: 1.5rem 0 1.75rem;
  color: var(--cream-muted);
  line-height: 1.7;
}
.directions-address strong {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}
.directions-map {
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 22rem;
  background: var(--forest-3);
}
.directions-map iframe {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  border: 0;
  filter: grayscale(0.35) contrast(1.05) brightness(0.9);
}

@media (max-width: 800px) {
  .directions-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   SCHEDULE
   ========================================================= */
.schedule {
  background:
    radial-gradient(ellipse at 10% 80%, rgba(196, 120, 58, 0.1), transparent 40%),
    var(--forest);
}
.schedule-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: start;
}
.schedule-photo {
  margin: 2rem 0;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--line);
}
.schedule-photo img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.contact-chip {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(232, 163, 92, 0.3);
  background: rgba(196, 120, 58, 0.08);
  border-radius: 2px;
}
.contact-chip a {
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--amber);
  text-decoration: none;
}
.contact-chip a:hover { color: var(--cream); }
.chip-note {
  font-size: var(--fluid-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
}

.schedule-form-wrap {
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  background: rgba(243, 235, 224, 0.03);
  border: 1px solid var(--line);
  border-radius: 2px;
}
.hunt-form { display: flex; flex-direction: column; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
}
.field input,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(11, 22, 16, 0.55);
  border: 1px solid rgba(243, 235, 224, 0.14);
  border-radius: 2px;
  color: var(--cream);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(201, 187, 168, 0.45); }
.field input:focus,
.field textarea:focus {
  border-color: rgba(232, 163, 92, 0.55);
  box-shadow: 0 0 0 3px rgba(232, 163, 92, 0.12);
}
.field input.is-invalid,
.field textarea.is-invalid {
  border-color: #c45c3a;
  box-shadow: 0 0 0 3px rgba(196, 92, 58, 0.15);
}
.field textarea { resize: vertical; min-height: 7rem; }
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.form-hint {
  min-height: 1.25rem;
  font-size: var(--fluid-sm);
  color: var(--amber);
}

.form-note {
  margin: 0;
  font-size: var(--fluid-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage);
}
.optional {
  letter-spacing: 0.08em;
  text-transform: none;
  color: rgba(143, 168, 146, 0.7);
  font-weight: 500;
}
.form-success {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: successIn 0.55s var(--ease);
}
.form-success[hidden] { display: none !important; }
@keyframes successIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.success-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: linear-gradient(135deg, var(--copper), var(--amber));
  box-shadow: 0 10px 28px rgba(196, 120, 58, 0.35);
  margin-bottom: 0.25rem;
}
.success-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.4rem + 1.2vw, 2.35rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.15;
}
.success-lead {
  color: rgba(243, 235, 224, 0.78);
  font-size: var(--fluid-sm);
  max-width: 28rem;
  margin-bottom: 0.35rem;
}
.success-details {
  margin: 0.5rem 0 0.75rem;
  padding: 1.15rem 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.95rem 1.25rem;
  background: rgba(11, 22, 16, 0.45);
  border: 1px solid rgba(232, 163, 92, 0.22);
  border-radius: 2px;
}
.success-details .full { grid-column: 1 / -1; }
.success-details dt {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.success-details dd {
  margin: 0;
  color: var(--cream);
  font-size: var(--fluid-sm);
  word-break: break-word;
}
.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.35rem;
}
.success-secondary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 0.35rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.btn-sm {
  min-height: 2.35rem;
  padding: 0.45rem 1rem;
  font-size: 0.72rem;
}
.request-summary { display: none; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.copy-status {
  min-height: 1.25rem;
  font-size: var(--fluid-xs);
  color: var(--amber);
  margin: 0;
}
.text-link {
  background: none;
  border: none;
  padding: 0;
  font-size: var(--fluid-sm);
  color: var(--cream-muted);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  cursor: pointer;
}
.text-link:hover { color: var(--amber); }

@media (max-width: 560px) {
  .success-details { grid-template-columns: 1fr; }
}
@media (max-width: 800px) {
  .schedule-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #070f0b;
  border-top: 1px solid var(--line);
  padding: 3.5rem var(--space) 2rem;
}
.footer-inner {
  max-width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.footer-brand {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.footer-brand img {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(243, 235, 224, 0.05);
}
.footer-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.footer-tag {
  color: var(--cream-muted);
  font-size: var(--fluid-sm);
  max-width: 22rem;
  line-height: 1.6;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-nav a {
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-muted);
}
.footer-nav a:hover { color: var(--amber); }
.footer-contact {
  font-size: var(--fluid-sm);
  color: var(--cream-muted);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.footer-contact a {
  color: var(--amber);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.35rem;
}
.footer-contact a:hover { color: var(--cream); }
.footer-bottom {
  max-width: var(--content);
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: var(--fluid-xs);
  color: rgba(201, 187, 168, 0.55);
  letter-spacing: 0.04em;
}
.footer-note { color: var(--sage); }

@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* Hairline rule utility between major blocks */
.section + .section::before { content: none; }

/* Date input dark-theme fix */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.85) sepia(0.3) saturate(2) hue-rotate(5deg);
  cursor: pointer;
}


/* Progressive enhancement: content visible until JS marks ready */
html:not(.js-ready) .reveal {
  opacity: 1;
  transform: none;
}
