/* =========================================================
   Los Chamizal Vineyard — homepage styles
   Editorial Old-California: bone / oatmeal / espresso ink, no red/yellow
   Type: Cormorant (display) · EB Garamond (text) · Jost (labels)
   ========================================================= */

:root {
  --cream:        #F2ECE0;   /* warm bone — page background */
  --cream-deep:   #E8E0D1;   /* oatmeal — alt panel */
  --paper:        #FAF6EE;   /* lightest — cards / light text */
  --wine:         #2A231B;   /* espresso ink (primary buttons) */
  --wine-deep:    #1C1712;   /* deep espresso (footer / dark blocks) */
  --wine-bright:  #3D3328;   /* hover */
  --olive:        #7A7163;   /* muted taupe */
  --olive-deep:   #4C4339;
  --charcoal:     #2A231B;   /* warm near-black — all body ink */
  --charcoal-soft:#71685B;   /* muted taupe — secondary text */
  --tan:          #D8CFBE;   /* hairline */
  --tan-soft:     #EDE6D8;   /* warm ivory — accent on dark */
  --clay:         #7A7163;   /* taupe (was terracotta) */
  --clay-deep:    #4C4339;
  --sand:         #DDD4C2;

  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 88px);

  --serif: "Newsreader", "EB Garamond", Georgia, serif;
  --text:  "EB Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--text);
  font-size: 20px;
  line-height: 1.74;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

/* ---------- shared type ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.004em;
  color: var(--charcoal);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  display: inline-block;
}

.section-index { display: none; }

p { text-wrap: pretty; }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--wine);
  --fg: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
  background: var(--bg);
  white-space: nowrap;
  padding: 1.15em 2.1em;
  border: 1px solid var(--bg);
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease),
              transform .35s var(--ease), border-color .35s var(--ease);
}
.btn:hover { background: var(--wine-bright); border-color: var(--wine-bright); transform: translateY(-2px); }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--ghost {
  --bg: var(--paper);
  --fg: var(--charcoal);
  border-color: var(--paper);
}
.btn--ghost:hover { background: #fff; border-color: #fff; transform: translateY(-2px); }

.btn--outline {
  --bg: transparent;
  --fg: var(--clay-deep);
  border-color: var(--clay);
  box-shadow: none;
}
.btn--outline:hover { background: var(--clay); color: var(--paper); border-color: var(--clay); }

/* text link with underline sweep */
.tlink {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 3px;
}
.tlink::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.tlink:hover::after { transform: scaleX(1); }

/* ---------- layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
section { position: relative; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem var(--gutter);
  transition: background .45s var(--ease), padding .45s var(--ease),
              box-shadow .45s var(--ease);
}
.nav.scrolled {
  background: rgba(239,227,200,0.95);
  backdrop-filter: blur(10px);
  padding-block: 0.85rem;
}
.brand {
  display: flex;
  align-items: center;
}
.brand-logo {
  height: 60px;
  width: auto;
  display: block;
  transition: height .45s var(--ease);
}
.brand-logo--dark { display: none; }
.nav.scrolled .brand-logo { height: 46px; }
.nav.scrolled .brand-logo--light { display: none; }
.nav.scrolled .brand-logo--dark { display: block; }
@media (max-width: 860px) {
  .brand-logo { height: 46px; }
  .nav.scrolled .brand-logo { height: 40px; }
}
.footer-logo {
  height: 78px;
  width: auto;
  display: block;
  margin-bottom: 1.4rem;
}
.brand-badge {
  height: 58px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(20,12,8,0.45));
  transition: height .45s var(--ease);
}
.nav.scrolled .brand-badge {
  height: 46px;
  filter: none;
}

/* ---- moon-&-hill logo lockup ---- */
.lc-logo {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  color: var(--paper);
  transition: color .45s var(--ease);
}
.lc-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  line-height: 0.92;
  white-space: nowrap;
}
.lc-icon {
  height: 30px;
  width: auto;
  fill: currentColor;
  flex: none;
  transition: height .45s var(--ease);
}

/* header: ~2x, horizontal */
.brand.lc-logo .lc-name { font-size: 2.5rem; letter-spacing: 0.03em; }
.brand.lc-logo .lc-icon { height: 50px; }
.nav.scrolled .lc-logo { color: var(--charcoal); }
.nav.scrolled .brand.lc-logo .lc-name { font-size: 2rem; }
.nav.scrolled .brand.lc-logo .lc-icon { height: 40px; }

@media (max-width: 860px) {
  .brand.lc-logo .lc-name { font-size: 1.7rem; }
  .brand.lc-logo .lc-icon { height: 34px; }
}
.nav.scrolled .brand { color: var(--charcoal); }
.brand .mark {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.brand .sub {
  font-family: var(--sans);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.82;
  margin-top: 0.45em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav-links a.navitem {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  position: relative;
  padding-bottom: 3px;
  white-space: nowrap;
  transition: color .45s var(--ease);
}
.nav.scrolled .nav-links a.navitem { color: var(--charcoal); }
.nav-links a.navitem::after {
  content:""; position:absolute; left:0; bottom:0; width:100%; height:1px;
  background: currentColor; transform: scaleX(0); transform-origin:left;
  transition: transform .4s var(--ease);
}
.nav-links a.navitem:hover::after { transform: scaleX(1); }
.nav-links .btn { color: var(--paper); }
.nav.scrolled .nav-links .btn { color: var(--paper); }
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav .btn.nav-cta { padding: 0.9em 1.3em; font-size: 0.68rem; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #FFFFFF;
  text-align: center;
}
.hero__bg {
  position: absolute; inset: 0;
  background: url("assets/hero.webp") center 42% / cover no-repeat;
  transform: scale(1.04);
  image-rendering: -webkit-optimize-contrast;
  will-change: transform;
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(24,16,13,0.62) 0%, rgba(24,16,13,0.22) 16%, rgba(24,16,13,0) 34%),
    linear-gradient(0deg, rgba(20,13,10,0.72) 0%, rgba(20,13,10,0.32) 40%, rgba(20,13,10,0.05) 66%, rgba(20,13,10,0) 82%);
}
.hero__frame { display: none; }
.hero__side {
  position: absolute;
  right: 30px; top: 50%;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(251,245,231,0.72);
  z-index: 4;
}
.hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.hero__line {
  color: #FFFFFF;
  font-family: var(--serif);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
  line-height: 1.18;
  letter-spacing: -0.002em;
  margin: 0;
  text-shadow: 0 2px 28px rgba(0,0,0,0.55), 0 0 1px rgba(0,0,0,0.35);
  max-width: 22ch;
  margin-inline: auto;
}
@media (max-width: 640px) {
  .hero__line { font-size: 1.6rem; line-height: 1.28; }
}
.hero__sound {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 2.2rem;
  padding: 0.65rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 100px;
  color: #FFFFFF;
  font: 600 0.7rem/1 var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  backdrop-filter: blur(4px);
  background: rgba(0,0,0,0.18);
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.hero__sound:hover {
  background: rgba(255,255,255,0.14);
  border-color: #FFFFFF;
  transform: translateY(-1px);
}
.hero__sound-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.9);
  animation: pulseDot 2.4s var(--ease) infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.65); }
  60%      { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
}
.hero__scroll { display: none; }
.hero__scroll .line { width: 46px; height: 1px; background: rgba(251,245,231,0.5); overflow:hidden; position:relative; }
.hero__scroll .line::after { content:""; position:absolute; inset:0; background: var(--tan-soft); animation: scrollLine 2.4s var(--ease) infinite; }
@keyframes scrollLine { 0%{transform:translateX(-100%)} 60%,100%{transform:translateX(100%)} }

@media (max-width: 860px) {
  .hero__side { display:none; }
  .hero__scroll { display:none; }
}

/* =========================================================
   MARQUEE / TICKER
   ========================================================= */
.ticker { display: none; }
.ticker__track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  width: max-content;
  animation: ticker 38s linear infinite;
}
.ticker__track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.45rem;
  padding: 0.7em 0;
  display: inline-flex;
  align-items: center;
}
.ticker__track span::after {
  content: "✦";
  font-style: normal;
  font-size: 0.7rem;
  color: var(--tan);
  margin: 0 1.4rem;
  transform: translateY(-2px);
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* =========================================================
   STORY
   ========================================================= */
/* Casa lockup inside the Stay section (on cream) */
.lc-logo--casa {
  color: var(--charcoal);
  margin-bottom: 1.8rem;
  text-decoration: none;
}
.lc-logo--casa .lc-name { font-size: 1.9rem; }
.lc-logo--casa .lc-icon { height: 38px; }
.lc-logo--casa:hover { opacity: 0.82; }

/* footer lockup (on espresso) */
.lc-logo--footer { color: var(--cream); margin-bottom: 1.3rem; }
.lc-logo--footer .lc-name { font-size: 1.8rem; }
.lc-logo--footer .lc-icon { height: 36px; }

.story { padding: clamp(104px, 14vh, 196px) 0; }
.story__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.story__media { position: relative; }
.story__media .frame {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 30px 70px -36px rgba(42,20,16,0.55);
}
.story__media .frame img {
  width: 100%; height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.story__media .frame:hover img { transform: scale(1.05); }
.story__media .inset {
  position: absolute;
  right: -28px; bottom: -34px;
  width: 44%;
  box-shadow: 0 24px 50px -28px rgba(42,20,16,0.45);
  overflow: hidden;
}
.story__media .inset img { aspect-ratio: 1/1; object-fit: cover; width:100%; }
.story__media .cap {
  position: absolute;
  left: 0; bottom: -2.4rem;
  font-size: 0.74rem;
  color: var(--charcoal-soft);
  font-style: italic;
  font-family: var(--serif);
  max-width: 50%;
}

.story__body h2 {
  font-size: clamp(2.1rem, 3.6vw, 3.4rem);
  line-height: 1.04;
  margin: 1rem 0 1.4rem;
}
.story__body h2 em { font-style: italic; color: var(--wine); }
.story__body p { color: var(--charcoal-soft); margin: 0 0 1.15rem; }
.story__body p.lead { color: var(--charcoal); font-size: 1.12rem; }
.story__body .dropcap::first-letter {
  font-family: var(--serif);
  font-size: 3.4em;
  font-weight: 600;
  float: left;
  line-height: 0.74;
  padding: 0.06em 0.12em 0 0;
  color: var(--wine);
}
.pullquote {
  margin: 2.6rem 0;
  padding: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.3;
  color: var(--wine);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 1.2rem;
  margin-top: 3rem;
}
.stat .n {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.1vw, 2.7rem);
  font-weight: 400;
  line-height: 1;
  color: var(--wine);
}
.stat .l {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-top: 0.55em;
}

@media (max-width: 900px) {
  .story__grid { grid-template-columns: 1fr; gap: 64px; }
  .story__media .cap { position: static; max-width:none; margin-top: 2.6rem; display:block; }
  .stats { grid-template-columns: repeat(2,1fr); gap: 1.4rem 1rem; }
}

/* portrait byline within story */
.story__portrait {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1.4rem;
  align-items: center;
  margin: 2.4rem 0;
  padding: 0;
}
.story__portrait img {
  width: 88px; height: 112px;
  object-fit: cover;
}
.story__portrait figcaption { display: block; }
.story__portrait figcaption strong {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  display: block;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}
.story__portrait figcaption span {
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--charcoal-soft);
}

/* =========================================================
   FILM
   ========================================================= */
.film {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 88vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  color: var(--paper);
}
.film__poster {
  position: absolute; inset: 0;
  background: url("assets/film-poster.webp") center 46% / cover no-repeat;
  transform: scale(1.04);
  transition: transform 8s var(--ease);
}
.film:hover .film__poster { transform: scale(1.1); }
.film__veil {
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(24,14,12,0.30) 0%, rgba(24,14,12,0.66) 100%);
}
.film__inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
}
.film__eyebrow { color: var(--tan-soft); justify-content: center; }
.film__eyebrow::before { background: var(--tan-soft); }
.film h2 {
  color: var(--paper);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.02;
  margin: 1rem 0 1.8rem;
  text-shadow: 0 2px 30px rgba(20,10,8,0.4);
}
.film__play {
  width: 92px; height: 92px;
  border-radius: 50%;
  border: 1px solid rgba(251,245,231,0.6);
  background: rgba(251,245,231,0.08);
  backdrop-filter: blur(3px);
  display: grid; place-items: center;
  cursor: pointer;
  transition: transform .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
}
.film__play::after {
  content: ""; position: absolute;
  width: 92px; height: 92px; border-radius: 50%;
  border: 1px solid rgba(251,245,231,0.45);
  animation: filmPulse 2.6s var(--ease) infinite;
}
@keyframes filmPulse { 0%{transform:scale(1);opacity:.7} 70%,100%{transform:scale(1.5);opacity:0} }
.film__play:hover { transform: scale(1.08); background: var(--wine); border-color: var(--wine); }
.film__play .tri {
  width: 0; height: 0;
  border-style: solid;
  border-width: 13px 0 13px 21px;
  border-color: transparent transparent transparent var(--paper);
  margin-left: 6px;
}
.film__note {
  margin: 1.6rem 0 0;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(251,245,231,0.7);
  transition: color .4s var(--ease);
}
.film--pending .film__note { color: var(--tan-soft); }
.film--pending .film__play { border-color: var(--tan-soft); }
.film__link { color: inherit; border-bottom: 1px solid currentColor; padding-bottom: 2px; transition: opacity .3s var(--ease); }
.film__link:hover { opacity: 0.7; }
.film__player { position: absolute; inset: 0; z-index: 5; background: #000; }
.film__player iframe { display: block; width: 100%; height: 100%; border: 0; }
.film--playing .film__inner, .film--playing .film__veil { opacity: 0; pointer-events: none; }

/* =========================================================
   WINES
   ========================================================= */
.wines {
  background: var(--cream-deep);
  padding: clamp(104px, 14vh, 196px) 0;
}
.wines__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem 2.6rem;
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.wines__head h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1;
}
.wines__head .intro {
  max-width: 46ch;
  color: var(--charcoal-soft);
  font-size: 1.02rem;
  grid-column: 2;
}
.wine-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(32px, 3vw, 56px);
}
.wine-card {
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: transform .5s var(--ease);
}
.wine-card:hover { transform: translateY(-4px); }
/* the "label" — a framed bottle label graphic in CSS */
.wine-label { display: none; }
.wine-label .plate {
  width: 72%;
  aspect-ratio: 5 / 7;
  background: var(--wine);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 0.7rem;
  position: relative;
  transition: background .5s var(--ease);
  box-shadow: 0 10px 24px -14px rgba(42,12,12,0.7);
}
.wine-card:hover .wine-label .plate { background: var(--wine-bright); }
.wine-label .plate::before,
.wine-label .plate::after {
  content:""; position:absolute; left:50%; transform:translateX(-50%);
  width: 56%; height:1px; background: rgba(243,233,210,0.5);
}
.wine-label .plate::before { top: 14%; }
.wine-label .plate::after  { bottom: 14%; }
.wine-label .plate .est {
  font-family: var(--sans); font-size: 0.46rem; font-weight:600;
  letter-spacing: 0.32em; text-transform: uppercase; opacity:0.85;
}
.wine-label .plate .nm {
  font-family: var(--serif); font-style: italic; font-weight:500;
  font-size: 1.32rem; line-height: 1.04; margin: 0.5em 0;
}
.wine-label .plate .vin {
  font-family: var(--sans); font-size: 0.52rem; font-weight:600;
  letter-spacing: 0.3em; text-transform: uppercase; opacity:0.85;
}
.wine-label .olive-rule {
  position:absolute; left:14%; right:14%; bottom: 9%;
  height: 3px; background: var(--olive);
}
.wine-card .vtype {
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--olive-deep);
}
.wine-card h3 {
  font-size: clamp(1.7rem, 2.1vw, 2.05rem); line-height: 1.06; margin: 0.5rem 0 0.15rem; color: var(--wine);
}
.wine-card .yr { font-family: var(--serif); font-style: italic; color: var(--clay-deep); font-size: 1.05rem; }
.wine-card .note { color: var(--charcoal-soft); font-size: 0.92rem; line-height: 1.6; margin: 0.7rem 0 0; }
.wines__foot {
  margin-top: clamp(44px, 5vw, 68px);
  display: flex; flex-wrap: wrap; gap: 1.2rem 2rem;
  align-items: center; justify-content: space-between;
}
.wines__foot p { margin:0; color: var(--charcoal-soft); font-size: 0.95rem; font-style: italic; font-family: var(--serif); font-size: 1.12rem; }

@media (max-width: 1040px) { .wine-grid { grid-template-columns: repeat(2,1fr); gap: 26px; } }
@media (max-width: 900px) {
  .wines__head { grid-template-columns: 1fr; }
  .wines__head .intro { grid-column: 1; }
}
@media (max-width: 540px) { .wine-grid { grid-template-columns: 1fr; } }

/* =========================================================
   VISIT  (full-bleed image + card)
   ========================================================= */
.visit {
  position: relative;
  background: url("assets/visit-view.webp") center 42% / cover no-repeat fixed;
  padding: clamp(90px, 16vh, 200px) 0;
}
.visit::before {
  content:""; position:absolute; inset:0;
  background: linear-gradient(105deg, rgba(24,14,12,0.86) 0%, rgba(24,14,12,0.52) 55%, rgba(24,14,12,0.15) 100%);
}
.visit__card {
  position: relative;
  max-width: 560px;
  color: var(--cream);
}
.visit__card .eyebrow { color: var(--tan-soft); }
.visit__card .eyebrow::before { background: var(--tan-soft); }
.visit__card h2 {
  color: var(--paper);
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  line-height: 1.02;
  margin: 1rem 0 1.6rem;
}
.visit__card h2 em { font-style: italic; color: var(--tan-soft); }
.expect { list-style: none; margin: 0 0 2rem; padding: 0; }
.expect li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 0.6rem 0;
  color: var(--cream);
  font-size: 1.04rem;
  line-height: 1.55;
}
.expect li .ic {
  font-family: var(--serif); font-style: italic; font-weight: 600;
  color: var(--tan-soft); font-size: 1.2rem; line-height: 1.3;
}
.visit__meta {
  display: flex; flex-wrap: wrap; gap: 0.5rem 2.4rem;
  margin: 0 0 2rem;
}
.visit__meta .k {
  font-size: 0.64rem; font-weight:600; letter-spacing:0.2em;
  text-transform: uppercase; color: var(--tan-soft);
}
.visit__meta .v { font-family: var(--serif); font-size: 1.2rem; color: var(--paper); }

@media (max-width: 860px) { .visit { background-attachment: scroll; } }

/* =========================================================
   VIEW BAND — full-bleed old-vine photograph
   ========================================================= */
.viewband {
  position: relative;
  min-height: clamp(440px, 72vh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.viewband__img {
  position: absolute; inset: 0;
  background: url("assets/old-vines.webp") center 58% / cover no-repeat;
  transform: scale(1.04);
  transition: transform 9s var(--ease);
}
.viewband:hover .viewband__img { transform: scale(1.11); }
.viewband__veil {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(24,14,12,0.72) 0%, rgba(24,14,12,0.10) 46%, rgba(24,14,12,0) 70%);
}
.viewband__cap {
  position: relative; z-index: 2;
  padding-bottom: clamp(40px, 7vh, 84px);
  color: var(--paper);
}
.viewband__cap .eyebrow { color: var(--tan-soft); }
.viewband__cap .eyebrow::before { background: var(--tan-soft); }
.viewband__cap p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.45rem, 2.7vw, 2.3rem);
  line-height: 1.28;
  max-width: 26ch;
  margin: 1rem 0 0;
  text-shadow: 0 2px 26px rgba(20,10,8,0.45);
}

/* =========================================================
   STAY
   ========================================================= */
.stay { padding: clamp(104px, 14vh, 196px) 0; overflow: hidden; }
.stay__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.stay__body h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.02;
  margin: 1rem 0 1.5rem;
}
.stay__body h2 em { font-style: italic; color: var(--wine); }
.stay__body p { color: var(--charcoal-soft); margin: 0 0 1.2rem; }
.stay__body p.lead { color: var(--charcoal); font-size: 1.1rem; }
.stay__feats {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.8rem;
  margin: 0 0 2.2rem;
}
.stay__feats span {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--olive-deep);
}
.stay__media {
  position: relative;
}
.stay__media .big {
  overflow: hidden; border-radius: 2px;
  box-shadow: 0 36px 80px -40px rgba(42,20,16,0.6);
}
.stay__media .big img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; transition: transform 1.4s var(--ease); }
.stay__media .big:hover img { transform: scale(1.05); }
.stay__media .small {
  position: absolute;
  left: -34px; bottom: -40px;
  width: 42%;
  overflow: hidden;
  box-shadow: 0 24px 50px -26px rgba(42,20,16,0.45);
}
.stay__media .small img { width:100%; aspect-ratio: 3/4; object-fit: cover; object-position: 60% 62%; }
.stay__media .badge { display: none; }

@media (max-width: 900px) {
  .stay__grid { grid-template-columns: 1fr; gap: 70px; }
  .stay__media { order: -1; }
  .stay__media .small { width: 38%; left: 0; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--wine-deep);
  color: var(--cream);
  padding: clamp(64px, 9vh, 110px) 0 2.4rem;
}
.footer a { color: var(--cream); }
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  padding-bottom: clamp(40px, 6vh, 72px);
}
.footer__brand .mark {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
}
.footer__brand .sub {
  font-size: 0.62rem; font-weight:600; letter-spacing:0.3em; text-transform:uppercase;
  color: var(--tan-soft); margin-top: 0.8em;
}
.footer__brand p {
  color: rgba(242,236,224,0.74);
  max-width: 34ch; margin: 1.3rem 0 0; font-size: 0.95rem;
}
.footer h4 {
  color: var(--tan-soft);
  font-family: var(--sans);
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer__col .line { color: var(--cream); margin-bottom: 0.5rem; font-size: 1rem; }
.footer__col a.big {
  font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--cream);
  position: relative;
}
.footer__col a.big:hover { color: var(--tan-soft); }
.social { display: flex; gap: 0.8rem; margin-top: 0.4rem; }
.social a {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  opacity: 0.72;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.social a:hover { opacity: 1; transform: translateY(-2px); }
.social svg { width: 18px; height: 18px; fill: var(--cream); }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 0.8rem 2rem;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.78rem;
  color: rgba(243,233,210,0.55);
  letter-spacing: 0.04em;
}

@media (max-width: 860px) {
  .footer__top { grid-template-columns: 1fr; gap: 44px; }
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ---- adobe paper grain (global, subtle) ---- */
body::before {
  content: "";
  position: fixed; inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.055;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- estate seal / ranch brand ---- */
.seal { display: none; }
.seal text { fill: currentColor; font-family: var(--sans); }
.footer .seal { margin-bottom: 1.5rem; }

/* hero photo switcher (preview tool) */
.hero-switch{
  position:fixed; left:50%; bottom:18px; transform:translateX(-50%);
  z-index:200; display:flex; align-items:center; gap:8px;
  background:rgba(26,16,13,0.64); backdrop-filter:blur(8px);
  padding:8px 12px; border-radius:100px;
  box-shadow:0 12px 30px -12px rgba(0,0,0,0.55);
}
.hero-switch .lbl{ color:#EFE6D4; font:600 0.58rem/1 var(--sans); letter-spacing:0.2em; text-transform:uppercase; }
.hero-switch button{
  width:40px; height:28px; padding:0; border:0; cursor:pointer; border-radius:5px;
  background-size:cover; background-position:center;
  outline:1px solid rgba(255,255,255,0.35); outline-offset:-1px;
  opacity:0.55; transition:opacity .25s var(--ease), transform .25s var(--ease);
}
.hero-switch button:hover{ opacity:0.85; transform:translateY(-1px); }
.hero-switch button.active{ opacity:1; outline:2px solid #fff; }
@media (max-width:560px){ .hero-switch .lbl{ display:none; } }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity:1; transform:none; transition:none; }
  .hero__bg { transform:none; }
  .ticker__track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ====================================================
   Find Us / Location section
   ==================================================== */
.findus { background: var(--cream-deep); padding: clamp(104px, 14vh, 196px) 0; }
.findus__head { max-width: 820px; margin-bottom: clamp(48px, 6vh, 72px); }
.findus__head h2 { margin-top: 0.5rem; }
.findus__intro { color: var(--charcoal-soft); margin-top: 1rem; font-size: 1.05rem; }

.findus__estate {
  width: 100%;
  aspect-ratio: 16 / 7;
  background: var(--tan);
  margin-bottom: clamp(40px, 5vh, 64px);
  box-shadow: 0 30px 70px -36px rgba(42,20,16,0.55);
}
.findus__estate iframe { display: block; width: 100%; height: 100%; border: 0; }

.findus__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
}
@media (max-width: 900px) { .findus__grid { grid-template-columns: 1fr; gap: 56px; } }

.findus__downtown h3,
.findus__airports h3 { font: 500 1.6rem/1.15 var(--serif); margin: 0.6rem 0 0.8rem; letter-spacing: 0.004em; }
.findus__downtown p { color: var(--charcoal-soft); margin-bottom: 1.5rem; }

.findus__downtown iframe {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  background: var(--tan);
  box-shadow: 0 20px 50px -28px rgba(42,20,16,0.45);
}

.findus__airports ul { list-style: none; padding: 0; margin: 0; }
.findus__airports li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--tan);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.4rem 1rem;
}
.findus__airports li:first-child { padding-top: 0; }
.findus__airports li:last-child { border-bottom: 0; }
.ap__line { grid-column: 1 / 2; display: flex; align-items: baseline; gap: 0.6rem; }
.ap__name { font: 500 1.05rem/1.2 var(--serif); color: var(--wine); }
.ap__code { font: 600 0.7rem/1 var(--sans); letter-spacing: 0.12em; color: var(--charcoal-soft); border: 1px solid var(--tan); padding: 0.2rem 0.4rem; }
.ap__meta { grid-column: 1 / 2; font-size: 0.92rem; color: var(--charcoal-soft); }
.ap__link {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  align-self: center;
  font: 600 0.7rem/1 var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid var(--tan);
  padding-bottom: 2px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.ap__link:hover { color: var(--wine-bright); border-color: var(--wine); }
