/* ===== Hinterland Estate v2 — Bespoke artisan farm-luxury ===== */

@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Spectral:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Caveat:wght@500;600&family=DM+Mono:wght@400;500&display=swap');

:root {
  /* ===== Modern luxury palette =====
     Vellum cream backgrounds, oxblood + antique brass accents,
     espresso / forest depths. Lower-saturation, higher-contrast. */
  --paper: #efe7d2;          /* vellum cream — slightly cooler than before */
  --paper-warm: #e3d5b3;     /* aged linen */
  --paper-deep: #c9b48a;     /* parchment shadow */
  --ivory: #f6efdc;          /* off-white surface */
  --bone: #faf5e6;           /* high cream */
  --ink: #1a1610;            /* near-black espresso */
  --ink-soft: #3d3528;       /* warm graphite */
  --bark: #2a2218;           /* deep walnut */
  --bark-deep: #1a1610;      /* espresso */
  --moss: #4a5238;           /* forest */
  --moss-deep: #2f3622;      /* deep forest */
  --rust: #7a2e22;           /* oxblood — luxurious, not orangey */
  --rust-soft: #9a4435;      /* burgundy mid */
  --gold: #a8854a;           /* antique brass */
  --gold-deep: #7d6234;      /* aged bronze */
  --line: rgba(26, 22, 16, 0.22);
  --line-soft: rgba(26, 22, 16, 0.1);

  /* Type pairing for modern luxury:
     - --serif-display: Spectral (modern transitional, sentence-case-friendly).
       Used everywhere `font-family: var(--serif-display)` appears today.
     - --serif-engraved: Marcellus (Roman caps with elegant flares).
       Used only on the .engraved class and SVG-style ALL-CAPS moments
       to mirror the wordmark.
     - --serif: Spectral for body. */
  --serif-display: 'Spectral', 'EB Garamond', Georgia, serif;
  --serif-engraved: 'Marcellus', 'Trajan Pro', 'Cinzel', serif;
  --serif: 'Spectral', 'EB Garamond', Georgia, serif;
  --hand: 'Caveat', cursive;
  --mono: 'DM Mono', ui-monospace, Menlo, monospace;

  --gutter: clamp(20px, 5vw, 80px);
  --max: 1480px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* Paper grain — softer */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.28;
  mix-blend-mode: multiply;
  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='1.2' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.3 0 0 0 0 0.25 0 0 0 0 0.15 0 0 0 0.12 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Type */
/* `.italiana` (legacy class name from the old palette) — now means
   "Spectral italic display" for sentence-case headlines and italic accents. */
.italiana {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.005em;
}
/* Engraved Roman caps — Marcellus, mirrors the logo wordmark.
   Use for kickers, eyebrows, badges, and ALL-CAPS display moments. */
.engraved {
  font-family: var(--serif-engraved);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hand { font-family: var(--hand); font-weight: 600; color: var(--ink); }
.mono { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; }

h1, h2, h3, h4 { margin: 0; font-weight: 500; line-height: 1.06; letter-spacing: -0.005em; color: var(--ink); }
h1, h2, .display { font-family: var(--serif); font-weight: 500; }
h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.18; }

.dxl { font-size: clamp(60px, 14.5vw, 210px); line-height: 0.92; letter-spacing: -0.025em; font-weight: 500; }
.dlg { font-size: clamp(46px, 9.5vw, 128px); line-height: 0.98; letter-spacing: -0.018em; font-weight: 500; }
.dmd { font-size: clamp(36px, 6.2vw, 76px); line-height: 1.04; font-weight: 500; letter-spacing: -0.014em; }
.dsm { font-size: clamp(28px, 4.2vw, 44px); line-height: 1.12; font-weight: 600; }

.lede { font-size: clamp(19px, 1.5vw, 23px); line-height: 1.55; color: var(--ink-soft); font-weight: 400; }

.kicker {
  font-family: var(--serif-engraved);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
}
.kicker.gold { color: var(--gold-deep); }
.kicker.moss { color: var(--moss); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), background 0.3s, color 0.3s;
  border-radius: 999px;
}
.btn .a { display: inline-block; transition: transform 0.4s; }
.btn:hover .a { transform: translateX(4px); }
.btn:hover { background: var(--rust); border-color: var(--rust); }
.btn-outline {
  background: transparent;
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-on-dark { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-on-dark:hover { background: var(--gold); border-color: var(--gold); color: var(--bark); }

/* Stamp / wax-seal style label */
.stamp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.stamp::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* Container */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); position: relative; z-index: 2; }

/* ===== Header ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 18px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  z-index: 100;
  transition: background 0.4s, padding 0.3s, color 0.3s;
  color: var(--ink);
}
.nav.scrolled {
  background: rgba(243, 236, 217, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px var(--gutter);
}
.nav.dark { color: var(--paper); }
.nav.dark.scrolled { background: rgba(34, 29, 18, 0.94); }

.nav-brand img { height: 44px; width: auto; }
.nav-meta {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex;
  gap: 24px;
  justify-self: end;
  align-items: center;
}
.nav-meta .live::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #76a85f;
  margin-right: 8px;
  box-shadow: 0 0 0 0 rgba(118, 168, 95, 0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(118, 168, 95, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(118, 168, 95, 0); }
}
.menu-btn {
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 10px 18px;
  color: inherit;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}
.menu-btn:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.menu-btn .lines {
  display: inline-flex; flex-direction: column; gap: 3px;
}
.menu-btn .lines span {
  display: block; width: 14px; height: 1px; background: currentColor;
}
.menu-btn .lines span:nth-child(2) { width: 9px; }
.nav-center {
  font-family: var(--hand);
  font-size: 22px;
  color: inherit;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .nav-meta .nav-phone, .nav-center { display: none; }
}

/* ===== Hero — now LIGHT ===== */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 22% 78%, rgba(201, 149, 47, 0.22), transparent 55%),
    radial-gradient(circle at 80% 25%, rgba(90, 98, 64, 0.18), transparent 60%),
    linear-gradient(160deg, #f6efdc 0%, #f0e7d0 50%, #ead9b8 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.3 0 0 0 0 0.15 0 0 0 0.18 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.4;
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  z-index: 5;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 130px var(--gutter) 40px;
}

.hero-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 24px;
}
.hero-top .established {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(16px, 1.6vw, 22px);
  color: var(--ink-soft);
}
.hero-top .place {
  text-align: right;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.7;
}

.hero-headline {
  align-self: center;
  font-family: var(--serif-display);
  font-size: clamp(64px, 17vw, 240px);
  line-height: 0.85;
  letter-spacing: -0.03em;
  margin: 40px 0;
  position: relative;
}
.hero-headline .word {
  display: block;
  position: relative;
}
.hero-headline .word.indent { padding-left: clamp(40px, 12vw, 200px); }
.hero-headline .word.indent2 { padding-left: clamp(20px, 6vw, 100px); }
@media (max-width: 720px) {
  .hero-headline { text-align: center; }
  .hero-headline .word.indent,
  .hero-headline .word.indent2 { padding-left: 0; }
}
.hero-headline { font-weight: 500; color: var(--ink); }
.hero-headline .ital { font-style: italic; color: var(--rust); font-family: var(--serif-display); font-weight: 500; }
.hero-headline .amp {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-deep);
  font-size: 0.7em;
  vertical-align: 0.05em;
  margin: 0 0.05em;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: end;
}
.hero-blurb {
  font-family: var(--serif);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.6;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 36ch;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-direction: column;
  align-items: center;
}
.hero-scroll {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-scroll .l {
  width: 60px; height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.hero-scroll .l::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  animation: scrollLine 2.6s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}

@media (max-width: 720px) {
  .hero-bottom { grid-template-columns: 1fr; gap: 16px; justify-items: center; text-align: center; }
  .hero-blurb { max-width: 32ch; margin-inline: auto; }
  .hero-cta { align-items: center; }
  .hero-scroll { justify-self: center; }
}

/* Highland silhouette behind headline (subtle) */
/* Highland silhouette watermark — large tonal mark filling the right
   portion of the hero, sitting behind the headline like an embossed
   estate seal. Anchored to the right gutter with a slight bleed off
   the top/bottom for a deliberate cropped composition. */
.hero-cow {
  position: absolute;
  right: calc(var(--gutter) * -0.2);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(420px, 48vw, 760px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: multiply;
}
.hero-cow svg { width: 100%; height: auto; display: block; }
.hero-cow svg path { fill: var(--bark) !important; }
.hero-cow svg g { fill: var(--bark) !important; }
@media (max-width: 920px) {
  .hero-cow { display: none; }
}

/* Tag with hand-drawn underline */
.tag-line {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}
.tag-line::after {
  content: '';
  position: absolute;
  left: -4px; right: -4px;
  bottom: -2px;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 8' preserveAspectRatio='none'%3E%3Cpath d='M0,5 Q25,2 50,5 T100,4' stroke='%23b8862e' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}

/* ===== Almanac strip — now light & inverted ===== */
.almanac {
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  overflow: hidden;
  display: flex;
  position: relative;
  z-index: 5;
}
.almanac-track {
  display: inline-flex;
  gap: 60px;
  white-space: nowrap;
  animation: marq 60s linear infinite;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  align-items: center;
}
.almanac-track > span { display: inline-flex; align-items: center; gap: 60px; }
.almanac-track .star { color: var(--gold); font-family: var(--serif-display); font-size: 14px; }
@keyframes marq {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Sections ===== */
.section { padding: clamp(80px, 12vw, 180px) 0; position: relative; }
.section.bone { background: var(--bone); }
.section.dark { background: var(--bark); color: var(--paper); }
.section.dark h1, .section.dark h2, .section.dark h3 { color: var(--paper); }
.section.dark p { color: rgba(243, 236, 217, 0.9); }
.section.moss { background: var(--moss-deep); color: var(--paper); }
.section.moss h1, .section.moss h2, .section.moss h3 { color: var(--paper); }
.section.moss p { color: rgba(243, 236, 217, 0.9); }

/* ===== Photo Hero ===== */
.hero-photo { background: var(--ink); }
.hero-photo-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  filter: saturate(0.95) contrast(1.05);
}
/* Mobile: shift the crop so both cow faces (around x=40–50% of the
   original frame) and the iconic horns stay visible in a portrait aspect. */
@media (max-width: 720px) {
  .hero-photo-img { object-position: 40% center; }
}
.hero-photo-veil {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(20,16,10,0.55) 0%, rgba(20,16,10,0.25) 35%, rgba(20,16,10,0.35) 65%, rgba(20,16,10,0.85) 100%),
    linear-gradient(90deg, rgba(20,16,10,0.55) 0%, rgba(20,16,10,0.05) 60%);
}
.hero-photo .hero-content { position: relative; z-index: 2; color: var(--paper); }
.hero-photo .hero-top .established,
.hero-photo .hero-top .place { color: rgba(245,240,225,0.85); }
.hero-photo .hero-top .established em { color: var(--gold); }
.hero-photo .hero-headline { color: var(--paper); text-shadow: 0 2px 18px rgba(0,0,0,0.4); }
.hero-photo .hero-headline .ital { color: var(--gold); }
.hero-photo .hero-headline .amp { color: var(--gold); }
.hero-photo .hero-blurb { color: rgba(245,240,225,0.92); }
.hero-photo .hero-scroll { color: rgba(245,240,225,0.7); }
.hero-photo .hero-scroll .l { background: rgba(245,240,225,0.3); }
.hero-photo .hero-scroll .l::after { background: var(--gold); }
.hero-photo .btn.btn-on-dark {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}
.hero-photo .btn.btn-on-dark:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bark);
}

.hero-bg { display: block; }

/* ===== Estate section with photo ===== */
.estate-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.estate-photo-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  isolation: isolate;
  box-shadow: 0 30px 60px rgba(26, 24, 16, 0.18);
}
.estate-photo-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 50%;
  z-index: 1;
}
.estate-photo-veil {
  position: absolute; inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(20,16,10,0.45) 0%, rgba(20,16,10,0) 35%, rgba(20,16,10,0) 55%, rgba(20,16,10,0.65) 100%);
  pointer-events: none;
}
.estate-photo-stamp {
  position: absolute;
  top: 22px; left: 24px;
  z-index: 3;
  color: rgba(245,240,225,0.92);
}
.estate-photo-stamp .hand {
  font-family: var(--hand);
  font-size: 22px;
  color: var(--gold);
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.estate-photo-claim {
  position: absolute;
  bottom: 28px; left: 28px; right: 28px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.estate-photo-claim-big {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--paper);
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.estate-photo-claim-big em { font-style: italic; color: var(--gold); }
.estate-copy { padding: clamp(8px, 2vw, 24px) 0; }
.estate-copy .signature {
  font-family: var(--hand);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2;
  margin-top: 22px;
}
@media (max-width: 720px) {
  .estate-copy .signature { font-size: 18px; }
}

@media (max-width: 920px) {
  .estate-grid { grid-template-columns: 1fr; }
  .estate-photo-wrap { aspect-ratio: 4 / 3; }
}
.bio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
}
.bio-num {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: clamp(80px, 14vw, 220px);
  line-height: 0.85;
  color: var(--rust);
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.bio-claim {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(28px, 3vw, 40px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.bio-claim-mark {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rust);
}
.bio-claim-big {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.bio-claim-big em { font-style: italic; color: var(--rust); }
.bio-claim-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.bio-num .small {
  font-size: 0.32em;
  vertical-align: 0.6em;
  font-family: var(--hand);
  color: var(--ink-soft);
  margin-left: 8px;
}
.bio-num .lbl {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 14px;
}
.bio p { max-width: 48ch; font-weight: 400; }
.bio p + p { margin-top: 18px; }
.bio .signature {
  font-family: var(--hand);
  font-weight: 600;
  font-size: 32px;
  margin-top: 24px;
  color: var(--rust);
}
@media (max-width: 720px) {
  .bio { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .bio-num { text-align: center; }
  .bio p { margin-inline: auto; }
  .bio .signature { display: block; text-align: center; }
}

/* ===== Image plate (placeholder) ===== */
.plate {
  position: relative;
  background: var(--paper-warm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.plate.dark { background: #2a2418; color: rgba(245, 240, 225, 0.55); }
.plate.moss { background: var(--moss); color: rgba(245, 240, 225, 0.6); }
.plate.rust { background: var(--rust); color: rgba(245, 240, 225, 0.7); }
.plate.gold { background: var(--gold); color: var(--bark); }
.plate::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 30px, rgba(0,0,0,0.025) 30px 31px),
    radial-gradient(ellipse at center, rgba(255,255,255,0.06), transparent 70%);
  pointer-events: none;
}
.plate.dark::after, .plate.moss::after, .plate.rust::after {
  background:
    repeating-linear-gradient(45deg, transparent 0 30px, rgba(255,255,255,0.04) 30px 31px),
    radial-gradient(ellipse at center, rgba(255,255,255,0.06), transparent 70%);
}
.plate-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px;
  max-width: 80%;
  font-family: var(--mono);
}
.plate-content .glyph {
  font-family: var(--serif-display);
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
}
.plate-content .lbl {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.plate-content .desc {
  margin-top: 8px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
}

.plate.tall { aspect-ratio: 3 / 4; }
.plate.square { aspect-ratio: 1 / 1; }
.plate.wide { aspect-ratio: 4 / 3; }
.plate.cinema { aspect-ratio: 16 / 9; }
.plate.portrait { aspect-ratio: 4 / 5; }

/* ===== Pasture Map — interactive hotspots ===== */
.pasture {
  background: var(--bone);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.pasture-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 920px) {
  .pasture-grid { grid-template-columns: 1fr; }
  .pasture-info { display: contents; }
  .pasture-info > .kicker { order: 1; }
  .pasture-info > h2 { order: 2; }
  .pasture-info > p { order: 3; }
  .pasture-map { order: 4; }
  .pasture-list { order: 5; }
}
.pasture-info h2 { color: var(--ink); }
.pasture-info p { color: var(--ink-soft); }
.pasture-list {
  margin-top: 28px;
  list-style: none;
  padding: 0;
}
.pasture-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
  transition: padding 0.3s, color 0.3s;
}
.pasture-list li:last-child { border-bottom: 1px solid var(--line); }
.pasture-list li:hover, .pasture-list li.active { padding-left: 12px; color: var(--rust); }
.pasture-list .hot-num {
  font-family: var(--serif-display);
  font-size: 28px;
  font-weight: 500;
  font-style: italic;
  color: var(--gold-deep);
  width: 36px;
}
.pasture-list .hot-name { font-family: var(--serif-display); font-size: 22px; font-weight: 500; }
.pasture-list .hot-arrow { opacity: 0.5; transition: transform 0.3s; }
.pasture-list li:hover .hot-arrow, .pasture-list li.active .hot-arrow { transform: translateX(4px); opacity: 1; }

.pasture-map {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, #4f5638 0%, #3a4128 100%);
  border-radius: 8px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.pasture-map > svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.aerial-map { aspect-ratio: 1000 / 697; background: transparent; box-shadow: none; }
.aerial-frame {
  position: absolute; inset: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.aerial-map { aspect-ratio: 1000 / 697; }
.aerial-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.05) brightness(0.88) sepia(0.12);
}
.aerial-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 45%, rgba(20,18,12,0.55) 100%),
    linear-gradient(180deg, rgba(20,18,12,0.2) 0%, transparent 30%, transparent 70%, rgba(20,18,12,0.4) 100%);
  pointer-events: none;
}
.aerial-overlay { z-index: 2; pointer-events: none; }
.hot {
  position: absolute;
  z-index: 3;
  width: 38px; height: 38px;
  margin: -19px 0 0 -19px;
  border: 1.5px solid var(--gold);
  background: rgba(20, 18, 12, 0.78);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--gold);
  cursor: pointer;
  transition: transform 0.3s, background 0.3s, color 0.3s;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
  box-shadow: 0 4px 14px rgba(0,0,0,0.45);
}
.hot::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0.4;
  animation: ringPulse 2.4s ease-out infinite;
}
@keyframes ringPulse {
  0% { transform: scale(0.7); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}
.hot:hover, .hot.active { background: var(--gold); color: var(--bark); transform: scale(1.15); text-shadow: none; }

.pasture-card {
  position: absolute;
  background: var(--ivory);
  color: var(--ink);
  padding: 18px;
  border-radius: 6px;
  width: 240px;
  font-size: 13px;
  line-height: 1.5;
  box-shadow: 0 16px 36px rgba(0,0,0,0.3);
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 10;
}
.pasture-card.show { opacity: 0; transform: translateY(0); pointer-events: none; }
.pasture-card.show.is-interacted { opacity: 1; pointer-events: auto; }
@media (hover: none) and (pointer: coarse), (max-width: 720px) {
  .pasture-card { opacity: 0 !important; pointer-events: none; }
  .pasture-card.is-interacted { opacity: 1 !important; pointer-events: auto; }
}
.pasture-card h4 { font-family: var(--serif-display); font-size: 22px; margin-bottom: 6px; }
.pasture-card .micro { font-family: var(--mono); font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--rust); margin-bottom: 8px; }

/* ===== Experiences — editorial cards ===== */
.exp-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 80px;
}
.exp-row:last-child { margin-bottom: 0; }
.exp-row:nth-child(odd) .exp-img { grid-column: 1 / span 7; }
.exp-row:nth-child(odd) .exp-text { grid-column: 8 / span 5; }
.exp-row:nth-child(even) .exp-img { grid-column: 6 / span 7; order: 2; }
.exp-row:nth-child(even) .exp-text { grid-column: 1 / span 5; order: 1; }

@media (max-width: 920px) {
  .exp-row, .exp-row:nth-child(odd), .exp-row:nth-child(even) { grid-template-columns: 1fr; }
  .exp-row .exp-img, .exp-row .exp-text {
    grid-column: 1 / -1 !important;
    order: unset !important;
  }
}

.exp-img { position: relative; }
.exp-img .plate { aspect-ratio: 4 / 5; }
.exp-img .badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--ivory);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.exp-img .price-tag {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: var(--rust);
  color: var(--paper);
  padding: 14px 20px;
  border-radius: 4px;
  font-family: var(--serif-display);
  font-size: 22px;
  font-style: italic;
  transform: rotate(-2deg);
  box-shadow: 0 8px 20px rgba(138, 74, 40, 0.3);
}
.exp-img .price-tag .from {
  display: block;
  font-family: var(--mono);
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 2px;
}

.exp-text .number {
  font-family: var(--serif-display);
  font-size: 14px;
  letter-spacing: 0.06em;
  font-style: italic;
  color: var(--rust);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.exp-text .number::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.exp-text h3 { font-size: clamp(34px, 5vw, 60px); font-family: var(--serif-display); font-weight: 400; margin-bottom: 18px; }
.exp-text .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 18px 0 24px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.exp-text p { margin: 0 0 24px; max-width: 44ch; font-weight: 400; color: var(--ink-soft); }

/* ===== Herd — editorial gallery with vertical scroll-snap on mobile ===== */
.herd-section { background: var(--bark); color: var(--paper); padding: clamp(80px, 12vw, 180px) 0; overflow: hidden; }
.herd-section p { color: rgba(243, 236, 217, 0.9); }
/* ===== Cinematic interlude ===== */
.interlude {
  position: relative;
  width: 100%;
  min-height: clamp(520px, 78vh, 760px);
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}
.interlude-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(0.92) contrast(1.02);
  z-index: 1;
}
.interlude-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,16,10,0.30) 0%, rgba(20,16,10,0.15) 35%, rgba(20,16,10,0.55) 100%),
    radial-gradient(ellipse at 70% 40%, rgba(0,0,0,0) 30%, rgba(20,16,10,0.35) 90%);
  z-index: 2;
}
.interlude-content {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(60px, 10vh, 120px) clamp(28px, 5vw, 80px);
  min-height: clamp(520px, 78vh, 760px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 32px;
  color: var(--paper);
}
.interlude-mark { align-self: start; }
.interlude-mark .hand {
  font-family: var(--hand);
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--gold);
  letter-spacing: 0.01em;
}
.interlude-quote {
  align-self: center;
  margin: 0;
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(40px, 5.2vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  max-width: 22ch;
  color: var(--paper);
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.interlude-quote em { font-style: italic; color: var(--gold); }
.interlude-quote .dash {
  display: inline-block;
  margin: 0 0.3em;
  color: rgba(245, 240, 225, 0.55);
  font-style: normal;
}
.interlude-foot { align-self: end; }
@media (max-width: 720px) {
  .interlude-quote { font-size: clamp(32px, 8vw, 48px); }
}

.herd-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 60px;
}
.herd-head h2 { color: var(--paper); }
.herd-head p { color: rgba(245, 240, 225, 0.7); max-width: 36ch; }
@media (max-width: 720px) { .herd-head { grid-template-columns: 1fr; } }

.herd-strip {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 var(--gutter) 24px;
  margin: 0 calc(-1 * var(--gutter));
  scroll-padding-left: var(--gutter);
  scrollbar-width: thin;
}
.herd-strip::-webkit-scrollbar { height: 4px; }
.herd-strip::-webkit-scrollbar-track { background: rgba(245, 240, 225, 0.08); }
.herd-strip::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

.cow {
  scroll-snap-align: start;
  flex: 0 0 min(280px, 78vw);
  position: relative;
}
@media (max-width: 720px) {
  .herd-strip { gap: 18px; padding: 0 24px 18px; margin: 0 -24px; scroll-padding-left: 24px; }
  .cow { flex-basis: calc(100vw - 72px); max-width: 320px; }
  .cow .stamp-row { margin-top: 14px; }
  .cow h3 { font-size: 22px; }
  .cow .nick { font-size: 18px; margin-bottom: 10px; }
  .cow p { font-size: 14px; }
}
.cow .plate { aspect-ratio: 1 / 1; }
.cow .plate img { image-rendering: auto; filter: contrast(1.02) saturate(0.95); }
.cow .stamp-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 18px 0 6px;
}
.cow .num {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
}
.cow .role { font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(243, 236, 217, 0.7); }
.cow h3 { font-family: var(--serif-display); font-weight: 500; font-size: 28px; line-height: 1.08; letter-spacing: -0.01em; color: var(--paper); margin-bottom: 6px; }
.cow .nick { font-family: var(--hand); font-weight: 600; font-size: 22px; color: var(--gold); margin-bottom: 14px; }
.cow p { font-size: 15px; line-height: 1.6; color: rgba(243, 236, 217, 0.88); margin: 0; }

.herd-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  gap: 24px;
}
.herd-controls .arrows { display: flex; gap: 10px; }
.herd-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(245, 240, 225, 0.3);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-family: var(--serif-display);
  font-size: 22px;
  transition: all 0.3s;
}
.herd-arrow:hover { background: var(--gold); color: var(--bark); border-color: var(--gold); }

/* ===== Quiz: Which cow are you? ===== */
.quiz {
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.quiz-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 920px) { .quiz-inner { grid-template-columns: 1fr; } }
.quiz-q-wrap {
  background: var(--paper);
  padding: clamp(28px, 4vw, 50px);
  position: relative;
  border: 1px solid var(--line);
  box-shadow: 12px 12px 0 var(--paper-deep);
}
.quiz-q-wrap .corner {
  position: absolute;
  top: -12px; left: -12px;
  background: var(--rust);
  color: var(--paper);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif-display);
  font-size: 22px;
  font-style: italic;
}
.quiz-progress {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
}
.quiz-progress span {
  flex: 1;
  height: 3px;
  background: var(--line);
  transition: background 0.4s;
}
.quiz-progress span.done { background: var(--rust); }
.quiz-q { font-family: var(--serif-display); font-size: clamp(26px, 3.4vw, 40px); margin-bottom: 28px; line-height: 1.1; }
.quiz-opt {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 1px solid var(--line);
  padding: 18px 20px;
  font-family: var(--serif);
  font-size: 17px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}
.quiz-opt:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateX(4px); }
.quiz-opt .letter {
  font-family: var(--serif-display);
  font-style: italic;
  color: var(--rust);
  width: 22px;
}
.quiz-opt:hover .letter { color: var(--gold); }
.quiz-result h3 { font-family: var(--serif-display); font-size: clamp(36px, 5vw, 56px); margin-bottom: 12px; }
.quiz-result .nick { font-family: var(--hand); font-size: 28px; color: var(--rust); margin-bottom: 16px; display: block; }
.quiz-restart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  background: none;
  border: none;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rust);
  cursor: pointer;
  padding: 0;
}

.quiz-aside h2 { margin-bottom: 24px; }
.quiz-aside .doodle {
  margin-top: 32px;
  font-family: var(--hand);
  font-size: 22px;
  color: var(--rust);
  display: flex;
  align-items: center;
  gap: 10px;
}
.quiz-aside .doodle::before {
  content: '↗';
  font-family: var(--serif);
  font-size: 24px;
}

/* ===== Seasons strip — calendar ===== */
.seasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 720px) { .seasons { grid-template-columns: 1fr 1fr; } }
.season {
  padding: 32px 24px;
  border-right: 1px solid var(--line);
  position: relative;
  cursor: pointer;
  transition: background 0.4s, color 0.4s;
}
.season:last-child { border-right: none; }
@media (max-width: 720px) {
  .season:nth-child(2) { border-right: none; }
  .season:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
.season:hover, .season.active { background: var(--ink); color: var(--paper); }
.season:hover h3, .season.active h3,
.season:hover .num, .season.active .num,
.season:hover p, .season.active p { color: var(--paper); }
.season .num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 24px;
}
.season h3 {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 8px;
}
.season .what { font-family: var(--hand); font-weight: 600; font-size: 24px; color: var(--rust); margin-bottom: 16px; }
.season:hover .what, .season.active .what { color: var(--gold); }
.season p { font-size: 14px; line-height: 1.55; opacity: 0.88; margin: 0; font-weight: 400; }

.stays-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
}
.stays-head-p { max-width: 42ch; justify-self: end; }
@media (max-width: 720px) {
  .stays-head { grid-template-columns: 1fr; gap: 22px; text-align: center; }
  .stays-head .kicker { justify-content: center; }
  .stays-head-p { max-width: none; justify-self: center; margin-inline: auto; }
}
.stays {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 920px) { .stays { grid-template-columns: 1fr; gap: 36px; } }
.stay {
  position: relative;
  cursor: pointer;
  transition: transform 0.5s;
}
.stay:hover { transform: translateY(-6px); }
.stay-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  position: relative;
}
.stay:nth-child(1) { transform: rotate(-1deg); }
.stay:nth-child(2) { transform: rotate(0.5deg); margin-top: 30px; }
.stay:nth-child(3) { transform: rotate(-0.5deg); }
.stay:nth-child(1):hover { transform: rotate(-1deg) translateY(-6px); }
.stay:nth-child(2):hover { transform: rotate(0.5deg) translateY(-6px); }
.stay:nth-child(3):hover { transform: rotate(-0.5deg) translateY(-6px); }
@media (max-width: 920px) {
  .stay, .stay:nth-child(n) { transform: none !important; margin-top: 0 !important; }
}
.stay-card .plate { aspect-ratio: 4 / 5; }
.soon-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--rust);
  color: var(--rust);
  background: rgba(195, 92, 50, 0.06);
  border-radius: 2px;
}
.stays-soon .stay { cursor: default; }
.stays-soon .stay:hover { transform: none; }
.stay-card .body { padding: 24px; position: relative; }
.stay-card .stamp-icon {
  position: absolute;
  top: -22px; right: 18px;
  background: var(--gold);
  color: var(--bark);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 20px;
}
.stay-card h3 { font-family: var(--serif-display); font-size: 30px; margin-bottom: 4px; }
.stay-card .sub { font-family: var(--hand); font-weight: 600; font-size: 26px; color: var(--rust); margin-bottom: 12px; }
.stay-card .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.stay-card p { font-size: 15px; margin: 0 0 14px; font-weight: 400; color: var(--ink-soft); }
.stay-card .amenities {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.stay-card .amenities span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
}

/* ===== Venue ===== */
.venue {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.venue p { color: rgba(243, 236, 217, 0.9); }
.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  gap: 0;
}
@media (max-width: 920px) { .venue-grid { grid-template-columns: 1fr; } }
.venue-img { position: relative; min-height: 60vh; }
.venue-img .plate { position: absolute; inset: 0; aspect-ratio: auto; background: #1f1d15; }
.venue-text { padding: clamp(60px, 8vw, 100px) clamp(40px, 6vw, 80px); display: flex; flex-direction: column; justify-content: center; }
.venue-text h2 { color: var(--paper); margin-bottom: 24px; }
.venue-text p { color: rgba(243, 236, 217, 0.9); margin-bottom: 20px; max-width: 48ch; font-weight: 400; }
.venue-opening {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(245, 240, 225, 0.18);
  border-bottom: 1px solid rgba(245, 240, 225, 0.18);
}
.venue-opening .opening-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(243, 236, 217, 0.7);
}
.venue-opening .opening-when {
  font-family: var(--serif-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.01em;
}

/* ===== Press / press logos ===== */
.press {
  padding: 60px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.press-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.press-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}
.press-name {
  font-family: var(--serif-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-style: italic;
  color: var(--ink);
  opacity: 0.7;
  transition: opacity 0.3s;
}
.press-name:hover { opacity: 1; color: var(--rust); }

/* ===== Testimonials — handwritten note style ===== */
.notes {
  position: relative;
}
.note-card {
  background: var(--ivory);
  padding: clamp(36px, 5vw, 64px);
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px rgba(26, 24, 16, 0.08);
}
.note-card::before {
  content: '"';
  position: absolute;
  top: 12px; left: 28px;
  font-family: var(--serif-display);
  font-size: 100px;
  color: var(--rust);
  line-height: 1;
  opacity: 0.4;
}
.note-title {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: 0.01em;
  color: var(--rust);
  margin: 0 0 8px;
}
.note-quote {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.32;
  color: var(--ink);
  margin: 24px 0 32px;
  text-wrap: pretty;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.note-author {
  font-family: var(--hand);
  font-size: 26px;
  color: var(--rust);
  display: flex;
  align-items: center;
  gap: 12px;
}
.note-author::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--rust);
}
.note-meta {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
}
.note-dots { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.note-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--line);
  cursor: pointer;
  transition: all 0.3s;
}
.note-dots button.active { background: var(--rust); width: 28px; border-radius: 4px; }

/* ===== Newsletter ===== */
.signup {
  background: var(--moss-deep);
  color: var(--paper);
  padding: clamp(60px, 9vw, 110px) 0;
  position: relative;
  overflow: hidden;
}
.signup p { color: rgba(243, 236, 217, 0.9); margin-top: 18px; max-width: 44ch; font-weight: 400; }
.signup-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 720px) { .signup-inner { grid-template-columns: 1fr; } }
.signup h2 { color: var(--paper); }
.signup form {
  display: flex;
  border-bottom: 1px solid rgba(245, 240, 225, 0.4);
  padding-bottom: 8px;
  gap: 12px;
}
.signup input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--paper);
  font-family: var(--serif-display);
  font-size: 22px;
  padding: 14px 0;
  outline: none;
}
.signup input::placeholder { color: rgba(245, 240, 225, 0.4); font-style: italic; }
.signup button {
  background: transparent;
  border: none;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 14px 0;
  transition: color 0.3s;
}
.signup button:hover { color: var(--gold); }
.signup .promise {
  font-family: var(--hand);
  font-size: 22px;
  color: var(--gold);
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ===== Footer ===== */
.foot {
  background: var(--bark-deep);
  color: rgba(243, 236, 217, 0.78);
  padding: 80px 0 32px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 60px;
}
@media (max-width: 720px) { .foot-top { grid-template-columns: 1fr 1fr; } }
.foot-brand { grid-column: span 1; max-width: 30ch; }
.foot-brand img { height: 64px; width: auto; margin-bottom: 18px; }
.foot-brand p { font-family: var(--serif); font-style: italic; font-size: 15px; line-height: 1.5; }
.foot h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot ul li { margin-bottom: 12px; }
.foot ul a { font-size: 15px; transition: color 0.3s; font-family: var(--serif); font-weight: 400; }
.foot ul a:hover { color: var(--gold); }
.foot-bottom {
  border-top: 1px solid rgba(245, 240, 225, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 16px;
}
.foot-mark {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold);
}

/* ===== Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(.2,.8,.2,1), transform 1s cubic-bezier(.2,.8,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== Menu overlay ===== */
.menu-screen {
  position: fixed;
  inset: 0;
  background: var(--bark);
  color: var(--paper);
  z-index: 200;
  padding: 100px var(--gutter) 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  overflow-y: auto;
}
.menu-screen.open { opacity: 1; pointer-events: auto; }
.menu-screen .close {
  position: absolute;
  top: 22px; right: var(--gutter);
  background: none; border: 1px solid rgba(245, 240, 225, 0.3);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  cursor: pointer; padding: 10px 18px; border-radius: 999px;
}
.menu-screen .close:hover { background: var(--gold); color: var(--bark); border-color: var(--gold); }
.menu-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
}
@media (max-width: 760px) { .menu-grid { grid-template-columns: 1fr; gap: 40px; } }
.menu-screen nav ul { list-style: none; padding: 0; margin: 0; }
.menu-screen nav li { border-top: 1px solid rgba(245, 240, 225, 0.14); }
.menu-screen nav li:last-child { border-bottom: 1px solid rgba(245, 240, 225, 0.14); }
.menu-screen nav a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 22px 0;
  font-family: var(--serif-display);
  font-size: clamp(36px, 6vw, 72px);
  transition: padding 0.3s, color 0.3s;
}
.menu-screen nav a:hover { padding-left: 16px; color: var(--gold); }
.menu-screen nav a .num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.24em; opacity: 0.4; }
.menu-aside h4 { color: var(--gold); margin-bottom: 14px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.24em; }
.menu-aside p { font-family: var(--serif); font-size: 17px; line-height: 1.55; font-style: italic; }
.menu-aside .signature { font-family: var(--hand); font-size: 30px; color: var(--gold); margin-top: 32px; }

/* ===== Booking modal ===== */
.modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 12, 0.7);
  backdrop-filter: blur(6px);
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.modal-bg.open { opacity: 1; pointer-events: auto; }
.modal-shell {
  background: var(--ivory);
  width: min(720px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
  border: 1px solid var(--line);
}
.modal-bg.open .modal-shell { transform: translateY(0); }
.modal-x {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--bark);
  color: var(--paper);
  border: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  font-size: 18px;
}
.modal-hero { height: 240px; }
.modal-body { padding: 32px clamp(24px, 4vw, 48px) 40px; }
.modal-body h2 { font-family: var(--serif-display); font-size: clamp(32px, 4vw, 48px); margin-bottom: 8px; }
.modal-body .sub { font-family: var(--hand); font-size: 24px; color: var(--rust); margin-bottom: 16px; display: block; }
.modal-body .meta-row {
  display: flex; flex-wrap: wrap; gap: 18px;
  margin: 18px 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.modal-body .form {
  background: var(--paper);
  padding: 22px;
  margin-top: 24px;
  border: 1px solid var(--line);
}
.modal-body .form h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: 16px; color: var(--rust); font-weight: 500; }
.modal-body .form .fields { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 12px; align-items: end; }
@media (max-width: 720px) { .modal-body .form .fields { grid-template-columns: 1fr; } }
.modal-body .form label {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.modal-body .form input, .modal-body .form select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--ivory);
  font-family: var(--serif);
  font-size: 15px;
  outline: none;
}
.modal-body .form input:focus, .modal-body .form select:focus { border-color: var(--rust); }

/* Page hero (deep pages) */
.page-hero {
  background: var(--bark);
  color: var(--paper);
  padding: 180px var(--gutter) 80px;
  position: relative;
  overflow: hidden;
}
.page-hero .crumbs {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245, 240, 225, 0.5);
  margin-bottom: 32px;
}
.page-hero .crumbs a { color: rgba(245, 240, 225, 0.7); margin-right: 12px; }
.page-hero h1 { color: var(--paper); max-width: 16ch; }
.page-hero .lede { color: rgba(245, 240, 225, 0.78); margin-top: 28px; max-width: 52ch; }


/* ===== v2 Detail pages ===== */

/* Detail Hero */
.detail-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  padding: 200px 0 80px;
  color: var(--paper);
  isolation: isolate;
  overflow: hidden;
}
.detail-hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.detail-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,16,10,0.55) 0%, rgba(20,16,10,0.15) 30%, rgba(20,16,10,0.7) 100%),
    linear-gradient(90deg, rgba(20,16,10,0.5) 0%, rgba(20,16,10,0) 60%);
}
.detail-hero .wrap { position: relative; z-index: 2; width: 100%; }

.crumbs {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 225, 0.9);
  margin-bottom: 32px;
  text-shadow: 0 1px 8px rgba(20, 16, 10, 0.85), 0 0 2px rgba(20, 16, 10, 0.6);
}
.crumbs a {
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 240, 225, 0.25);
  padding-bottom: 1px;
}
.crumbs a:hover { color: var(--gold); border-color: var(--gold); }
.crumbs .sep { margin: 0 12px; opacity: 0.5; }

.detail-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
}
.detail-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  text-shadow: 0 1px 8px rgba(20, 16, 10, 0.85), 0 0 2px rgba(20, 16, 10, 0.6);
}
.detail-title {
  color: var(--paper);
  text-shadow: 0 2px 18px rgba(0,0,0,0.5);
  max-width: 18ch;
}
.detail-tagline {
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 32px);
  color: rgba(245, 240, 225, 0.88);
  margin-top: 22px;
  max-width: 42ch;
  line-height: 1.32;
}
.detail-hero-aside { padding-bottom: 8px; }
.hero-quick-facts {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px 30px;
  background: rgba(20, 16, 10, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 240, 225, 0.15);
  min-width: 220px;
}
.hero-quick-facts > div { display: flex; flex-direction: column; gap: 4px; }
.hero-quick-facts .micro {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(245, 240, 225, 0.55);
}
.hero-quick-facts > div > span:nth-child(2) {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 20px;
  color: var(--paper);
}
@media (max-width: 820px) {
  .detail-hero { padding: 140px 0 50px; min-height: 60vh; }
  .detail-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-quick-facts { flex-direction: row; flex-wrap: wrap; gap: 22px; min-width: 0; }
  .hero-quick-facts > div { flex: 1 1 100px; }
}

/* Story / two-column */
.detail-story { background: var(--paper); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 100px;
  align-items: start;
}
.story-text > h2 { margin-bottom: 36px; max-width: 18ch; }
.story-text > .kicker { margin-bottom: 22px; }
.story-text p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 22px;
  max-width: 58ch;
}
.story-text p:first-of-type { font-size: 21px; line-height: 1.6; color: var(--ink); }
.story-facts-card {
  position: sticky;
  top: 100px;
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 38px 32px;
}
.story-facts-card .kicker { margin-bottom: 22px; }
.story-facts-card dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 24px;
  margin: 0 0 28px 0;
}
.story-facts-card dt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  align-self: center;
}
.story-facts-card dd {
  margin: 0;
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
}
.price-block {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.price-block .micro {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.price-line {
  font-style: italic;
  font-size: 22px;
  color: var(--rust);
  line-height: 1.3;
}
@media (max-width: 920px) {
  .story-grid { grid-template-columns: 1fr; gap: 50px; }
  .story-facts-card { position: relative; top: 0; }
}

/* Itinerary */
.detail-itinerary.cream { background: var(--paper-warm); }
.itin-head { text-align: center; margin-bottom: 80px; }
.itin-head .kicker { justify-content: center; display: inline-flex; margin-bottom: 18px; }
.itin-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.itin-step {
  background: var(--paper-warm);
  padding: 44px 30px 50px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.itin-num {
  font-size: 56px;
  line-height: 1;
  color: var(--rust);
  font-style: italic;
  margin-bottom: 6px;
}
.itin-step h3 {
  font-family: var(--serif-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.itin-step p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}
@media (max-width: 920px) {
  .itin-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .itin-grid { grid-template-columns: 1fr; }
}

/* Inclusions */
.detail-inclusions { background: var(--paper); }
.inclusion-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.inclusion-grid li {
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 17px;
  color: var(--ink);
}
.inclusion-num {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 18px;
  color: var(--rust);
  flex: 0 0 auto;
}
@media (max-width: 720px) {
  .inclusion-grid { grid-template-columns: 1fr; gap: 0; }
}

/* Featured herd (dark) */
.featured-herd { background: var(--bark); color: var(--paper); }
.featured-herd .paper { color: var(--paper); }
.featured-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 70px;
  flex-wrap: wrap;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.featured-cow .plate img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-meta { padding: 22px 4px 0; }
.featured-meta .role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.featured-meta h3 {
  font-family: var(--serif-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.featured-meta .nick {
  font-style: italic;
  color: rgba(245, 240, 225, 0.7);
  margin-top: 4px;
  font-size: 14px;
}
.btn-outline-light {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}
.btn-outline-light:hover { background: var(--paper); color: var(--ink); }
@media (max-width: 920px) { .featured-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .featured-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq-section { background: var(--ivory); }
.faq-list { border-top: 1px solid var(--line); }
.faq-row { border-bottom: 1px solid var(--line); }
.faq-row > button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 28px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--serif-display);
  font-size: 22px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: color 0.2s;
}
.faq-row > button:hover { color: var(--rust); }
.faq-plus {
  font-family: var(--serif-display);
  font-size: 32px;
  color: var(--rust);
  line-height: 1;
  flex: 0 0 auto;
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  padding: 0 4px 28px;
  max-width: 70ch;
}
.faq-row.open .faq-plus { color: var(--gold-deep); }

/* Reserve / Inline form */
.detail-reserve { background: var(--paper); border-top: 1px solid var(--line-soft); }
.reserve-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.reserve-grid h2 { margin-top: 18px; }
.reserve-meta {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.reserve-meta > div { display: flex; flex-direction: column; gap: 6px; }
.reserve-meta .micro {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.reserve-meta > div > span:nth-child(2) {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
}

.inline-form-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 40px;
}
.inline-form-card.success { text-align: center; padding: 80px 40px; }
.inline-form-card > .kicker { margin-bottom: 8px; }
.inline-form-sub {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 20px;
  color: var(--rust);
  margin: 0 0 28px;
}
.inline-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.inline-form-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.inline-form-grid label.span-2 { grid-column: 1 / -1; }
.inline-form-grid label > span:first-child {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.inline-form-grid input,
.inline-form-grid select,
.inline-form-grid textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.inline-form-grid input:focus,
.inline-form-grid select:focus,
.inline-form-grid textarea:focus { border-color: var(--rust); }
.inline-form-grid textarea { resize: vertical; font-family: var(--serif); }
.inline-form-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.inline-form-tip {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  max-width: 260px;
  line-height: 1.6;
}
@media (max-width: 920px) {
  .reserve-grid { grid-template-columns: 1fr; gap: 50px; }
  .inline-form-grid { grid-template-columns: 1fr; }
  .inline-form-card { padding: 28px; }
}

/* Cross-sell */
.cross-sell { background: var(--paper-warm); }
.cross-sell-head { margin-bottom: 60px; }
.cross-sell-head .kicker { margin-bottom: 18px; display: flex; }
.cross-sell-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
.cross-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform 0.4s, box-shadow 0.4s;
}
.cross-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(20,16,10,0.12);
}
.cross-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.cross-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.cross-card:hover .cross-img img { transform: scale(1.04); }
.cross-body { padding: 28px 30px 32px; }
.cross-body .micro {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 10px;
}
.cross-body h3 {
  font-family: var(--serif-display);
  font-size: 30px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.cross-body p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.cross-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
}
.cross-link .a { display: inline-block; transition: transform 0.4s; }
.cross-card:hover .cross-link .a { transform: translateX(4px); }
@media (max-width: 720px) { .cross-sell-grid { grid-template-columns: 1fr; } }

/* Sticky book bar */
.sticky-book {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--bark);
  color: var(--paper);
  border-top: 1px solid rgba(245, 240, 225, 0.15);
  transform: translateY(0);
  transition: transform 0.4s;
}
.sticky-book .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 16px var(--gutter);
}
.sticky-l { display: flex; flex-direction: column; gap: 2px; }
.sticky-name {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 22px;
  color: var(--paper);
}
.sticky-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 225, 0.6);
}
@media (max-width: 600px) {
  .sticky-name { font-size: 18px; }
  .sticky-book .wrap { padding: 12px var(--gutter); }
}

/* Photo gallery */
.gallery-section { background: var(--paper); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-cell {
  position: relative;
  overflow: hidden;
  background: var(--paper-warm);
  grid-column: span 2;
  grid-row: span 1;
}
.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-cell.wide {
  grid-column: span 4;
  grid-row: span 2;
}
.gallery-cell.placeholder { background: var(--paper-warm); }
.placeholder-fill {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 26px;
  background:
    repeating-linear-gradient(135deg,
      rgba(154, 74, 38, 0.05) 0,
      rgba(154, 74, 38, 0.05) 1px,
      transparent 1px,
      transparent 18px),
    var(--paper-warm);
}
.placeholder-num {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 38px;
  color: var(--rust);
  line-height: 1;
}
.placeholder-note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  align-self: flex-end;
  text-align: right;
  max-width: 18ch;
}
@media (max-width: 920px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-cell { grid-column: span 1; }
  .gallery-cell.wide { grid-column: span 2; grid-row: span 2; }
}

/* Amenities */
.detail-amenities.cream { background: var(--paper-warm); }
.amenity-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.amenity-group h3 {
  font-family: var(--serif-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.01em;
}
.amenity-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.amenity-group li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.amenity-group .dot { color: var(--rust); font-size: 11px; flex: 0 0 auto; }
@media (max-width: 820px) {
  .amenity-groups { grid-template-columns: 1fr; gap: 40px; }
}

/* Nearby */
.detail-nearby { background: var(--paper); }
.nearby-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.nearby-loc {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-soft);
  margin: 18px 0 30px;
}
.map-placeholder {
  border: 1px solid var(--line);
  background: var(--ivory);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.map-svg { width: 100%; height: 100%; display: block; }
.nearby-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.nearby-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.nearby-num {
  font-family: var(--serif-display);
  font-style: italic;
  color: var(--rust);
  font-size: 16px;
}
.nearby-place {
  font-size: 18px;
  color: var(--ink);
}
.nearby-time {
  font-family: var(--serif-display);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 17px;
}
@media (max-width: 820px) {
  .nearby-grid { grid-template-columns: 1fr; gap: 50px; }
}

/* House rules */
.detail-rules { background: var(--ivory); border-top: 1px solid var(--line-soft); }
.rules-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.rules-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.rules-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 17px;
  color: var(--ink);
  line-height: 1.5;
}
.rules-list li:first-child { padding-top: 0; }
.rules-num {
  font-family: var(--serif-display);
  font-style: italic;
  color: var(--rust);
  font-size: 16px;
}
@media (max-width: 820px) {
  .rules-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Stay-more link on homepage cards */
.stay-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  text-decoration: none;
  border-bottom: 1px solid var(--rust);
  padding-bottom: 4px;
  transition: color 0.2s;
  align-self: flex-start;
}
.stay-more .a { display: inline-block; transition: transform 0.4s; }
.stay-more:hover .a { transform: translateX(4px); }
.stay-more:hover { color: var(--gold-deep); border-color: var(--gold-deep); }

/* Body padding for sticky book bar */
body { padding-bottom: 0; }
.detail-hero ~ * + * + * + * + * + * + * + * + * + * { /* noop */ }
