/* ==========================================================================
   Farmhouse Getaways — site.css
   Direction: the palette of the house itself. Sage walls, blush curtains,
   brass lamps, botanical wallpaper. Warm, calm and unhurried — built for
   the person planning the trip for everybody else.
   ========================================================================== */

/* ---------- tokens ---------- */
:root {
  --bloom:      #FCF8F6;
  --bloom-2:    #F4ECE7;
  --bloom-3:    #EADFD8;

  --sage:       #7C9885;
  --sage-deep:  #3F5548;
  --sage-deeper:#32443A;
  --sage-pale:  #DDE6DC;
  --sage-line:  #C9D6CA;

  --plum:       #453940;
  --plum-soft:  #6E5F66;

  --blush:      #C58891;
  --blush-pale: #F2DFE0;
  --brass:      #B18A50;
  --stone:      #93868A;

  /* property colours */
  --rbr:        #B8402A;   /* Red Barn Ranch — barn red, light backgrounds */
  --rbr-bright: #F5836A;   /* on the dark video */
  --rbr-btn:    #C4462F;
  --mr:         #2C6A4B;   /* Mountain Retreat — pine, light backgrounds */
  --mr-bright:  #9BD9AE;   /* on the dark video */
  --mr-btn:     #35835C;

  --display: "Instrument Serif", Georgia, serif;
  --body:    "Karla", -apple-system, BlinkMacSystemFont, sans-serif;

  --gutter: clamp(1.25rem, 5vw, 5rem);
  --measure: 34rem;
  --rule: 1px solid var(--bloom-3);
  --radius: 6px;

  --sprig: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 52 24'%3E%3Cpath d='M0 12h52' stroke='black' stroke-width='1.6' fill='none'/%3E%3C/svg%3E");
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bloom);
  color: var(--plum);
  font-family: var(--body);
  font-size: clamp(1.0625rem, 0.35vw + 1rem, 1.15rem);
  line-height: 1.72;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------- accessibility ---------- */
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--blush); color: #fff;
  padding: .75rem 1.25rem; z-index: 100;
  font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
}
.skip:focus { left: 0; }
:focus-visible { outline: 2px solid var(--blush); outline-offset: 3px; }

/* ---------- eyebrow with a plain rule (signature) ---------- */
.tag {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 1.35rem;
  display: flex; align-items: center; gap: .65rem;
}
.tag::before {
  content: ""; flex: 0 0 auto;
  width: 28px; height: 13px; background: currentColor;
  -webkit-mask: var(--sprig) center / contain no-repeat;
          mask: var(--sprig) center / contain no-repeat;
}
.tag-on-dark { color: var(--blush-pale); }

/* ---------- type roles ---------- */
.display {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2.5rem, 6.6vw, 5.35rem);
  line-height: 1.03; letter-spacing: -.012em;
  margin: 0; text-wrap: balance;
}
.display em { font-style: italic; color: var(--blush); }

.headline {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.95rem, 3.5vw, 3.05rem);
  line-height: 1.13; letter-spacing: -.006em;
  margin: 0 0 1.5rem; text-wrap: balance;
}

.subhead { font-family: var(--display); font-size: clamp(1.3rem,1.6vw,1.6rem); line-height:1.25; margin:0 0 .75rem; }

.lede {
  font-size: clamp(1.1rem, .8vw + .95rem, 1.34rem);
  line-height: 1.62; max-width: 38rem; margin: 1.75rem 0 0;
  color: var(--plum-soft);
}

/* A line break the owner adds in the editor should read as a paragraph break,
   because that is what he means by it. A bare <br> gives a new line and no air,
   which looks like nothing happened. Scoped to body copy so the footer's
   phone/email break and the hero headline are untouched. */
.lede br,
.prose p br,
.book-note br,
.signup-copy p br { display: block; content: ""; margin-top: .95em; }

.prose { max-width: var(--measure); }
.prose p { margin: 0 0 1.35rem; }
.prose p:last-child { margin-bottom: 0; }
.prose a { text-decoration-thickness: 1px; text-underline-offset: 3px; text-decoration-color: var(--blush); }
.prose a:hover { color: var(--sage-deep); }

/* ---------- layout ---------- */
.wrap { max-width: 78rem; margin: 0 auto; padding-inline: var(--gutter); }
.band { padding-block: clamp(4rem, 9vw, 8.5rem); }
.band-tight { padding-block: clamp(2.75rem, 5vw, 4.75rem); }
.band-dark { background: var(--sage-deep); color: var(--bloom); }
.band-field { background: var(--bloom-2); color: var(--plum); }
.band-line { border-top: var(--rule); }
.band-dark .lede { color: var(--sage-pale); }
.band-dark .prose { color: var(--sage-pale); }
.band-dark .prose a { color: #fff; }
/* .pull inherits --plum, which is invisible on sage-deep. Caught on
   our-story.html, where it was hiding the closing line of the page. */
.band-dark .pull { color: var(--bloom); }
.band-dark .cite { color: var(--sage-pale); }

.split { display: grid; gap: clamp(2rem,5vw,4.5rem); grid-template-columns: 1fr; align-items: start; }
/* A grid item defaults to min-width:auto, so a single stubborn child can widen
   its whole track and take the page with it. This is the guard against that
   happening again anywhere the boards or long words live. */
.split > *, .hero-grid > *, .slab-grid > *, .book-grid > * { min-width: 0; }
@media (min-width: 60rem) {
  .split { grid-template-columns: 1.15fr 1fr; }
  .split-even { grid-template-columns: 1fr 1fr; }
}

/* ---------- masthead ---------- */
/* The masthead is sticky, so an in-page link like "Check dates" -> #book would
   otherwise land with the section heading tucked underneath it. Every element
   that can be jumped to keeps a header's worth of room above it. */
[id] { scroll-margin-top: 5.5rem; }
.masthead {
  position: sticky; top: 0; z-index: 40;
  background: rgba(252,248,246,.94);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
          backdrop-filter: saturate(140%) blur(8px);
  border-bottom: var(--rule);
}
.masthead-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: 1.1rem; }
.wordmark {
  font-family: var(--display); font-weight: 400; font-size: 1.4rem;
  text-decoration: none; line-height: 1.05; color: var(--plum);
}
.wordmark span {
  display: block; font-family: var(--body); font-size: .6rem; font-weight: 700;
  letter-spacing: .22em; color: var(--sage); text-transform: uppercase; margin-top: .3rem;
}
.nav { display: flex; align-items: center; gap: clamp(.9rem,2vw,1.9rem); flex-wrap: wrap; }
.nav a {
  font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  text-decoration: none; padding-block: .4rem; color: var(--plum-soft);
  border-bottom: 1.5px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--plum); border-bottom-color: var(--blush); }
@media (max-width: 47rem) { .masthead-inner { flex-direction: column; align-items: flex-start; gap: .85rem; } }

/* ---------- hero ---------- */
.hero {
  background:
    radial-gradient(115% 90% at 84% 6%, var(--blush-pale) 0%, transparent 56%),
    radial-gradient(105% 80% at 8% 96%, var(--sage-pale) 0%, transparent 52%),
    var(--bloom);
  color: var(--plum);
  padding-block: clamp(3.5rem, 8vw, 7.25rem);
  border-bottom: var(--rule);
}
/* The hero photograph on the interior pages.
   Without it these heroes were a pale gradient and a lot of nothing: the grid
   is bottom-aligned, and a tall numbers board left 541px of blank above the
   headline on red-barn-ranch and 499px on mountain-retreat. The picture fills
   that space and gives the page the establishing shot it never had. */
.hero-lead {
  width: 100%; height: auto; display: block;
  aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--bloom-2);
}

.hero-grid { display: grid; gap: clamp(2.5rem,5vw,4rem); grid-template-columns: 1fr; align-items: end; }
@media (min-width: 62rem) { .hero-grid { grid-template-columns: 1.5fr .85fr; } }
.hero .display { color: var(--plum); }

.reveal { animation: rise .8s cubic-bezier(.22,.68,.28,1) both; }
.reveal-2 { animation-delay: .12s; }
.reveal-3 { animation-delay: .24s; }
@keyframes rise { from { opacity:0; transform: translateY(.8rem);} to {opacity:1; transform:none;} }

/* ---------- the details card (signature) ---------- */
.board {
  background: #fff; border: 1px solid var(--sage-line);
  border-radius: var(--radius); padding: 1.7rem 1.8rem 1.85rem;
  box-shadow: 0 18px 40px -28px rgba(69,57,64,.4);
}
.board-light { background: rgba(255,255,255,.72); }
.band-dark .board { background: rgba(255,255,255,.07); border-color: rgba(221,230,220,.28); box-shadow: none; }

.board-title {
  font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--sage); margin: 0 0 1.15rem; padding-bottom: .8rem;
  border-bottom: 1px solid var(--sage-line);
}
.band-dark .board-title { color: var(--blush-pale); border-bottom-color: rgba(221,230,220,.28); }
/* The property colours are tuned for light backgrounds. On sage-deep the
   pine green lands at 1.26:1 — the Mountain Retreat title was literally
   invisible. These two clear 4.5:1 and keep the colour coding. */
.band-dark .board-title.t-rbr { color: #F9B3A4; border-bottom-color: rgba(249,179,164,.32); }
.band-dark .board-title.t-mr  { color: #9BD9AE; border-bottom-color: rgba(155,217,174,.32); }

.board-list { list-style: none; margin: 0; padding: 0; }
.board-list li { display: flex; align-items: baseline; gap: .7rem; font-size: .92rem; padding-block: .52rem; }
.board-list .k { letter-spacing: .05em; color: var(--plum-soft); white-space: nowrap; font-size: .84rem; min-width: 0; }
.board-list .dots { flex: 1; border-bottom: 1px solid var(--bloom-3); transform: translateY(-.25em); }
/* The value used to be white-space: nowrap, which was fine while every value
   was "18" or "Yes". The Sleeping board on red-barn-ranch.html puts whole
   sentences in this slot, and a nowrap child inside a grid item forces its
   whole column to grow — so on a phone it pushed the board, the prose AND the
   headline off the right-hand edge. Caught on mobile 11 Aug 2026. Values wrap
   now; right alignment keeps the dotted-leader look. */
.board-list .v { font-weight: 700; color: var(--plum); text-align: right; min-width: 0; }
.board-list .v-hi { color: var(--blush); }

/* On a phone there is not enough room for label, leader and a sentence on one
   line, so the value drops beneath its label and the leader dots go away. */
@media (max-width: 40rem) {
  .board-list li { flex-wrap: wrap; gap: .2rem; padding-block: .6rem; }
  .board-list .k { flex: 1 0 100%; white-space: normal; }
  .board-list .dots { display: none; }
  .board-list .v { flex: 1 0 100%; text-align: left; }
}
.band-dark .board-list .k { color: var(--sage-pale); }
.band-dark .board-list .dots { border-bottom-color: rgba(221,230,220,.22); }
.band-dark .board-list .v { color: #fff; }
.band-dark .board-list .v-hi { color: var(--blush-pale); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; font-family: var(--body);
  font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 1.02rem 1.95rem; text-decoration: none;
  border: 1px solid transparent; border-radius: 999px; cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--sage-deep); color: #fff; }
.btn-primary:hover { background: var(--plum); }
.btn-ghost { border-color: var(--sage-line); color: var(--plum); }
.btn-ghost:hover { background: var(--sage-pale); border-color: var(--sage); }
.band-dark .btn-primary { background: var(--blush); color: #fff; }
.band-dark .btn-primary:hover { background: #fff; color: var(--plum); }
.band-dark .btn-ghost { border-color: rgba(255,255,255,.45); color: #fff; }
.band-dark .btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }

/* ---------- placeholders ---------- */
.frame {
  position: relative;
  background: repeating-linear-gradient(135deg, rgba(124,152,133,.07) 0 14px, transparent 14px 28px), var(--bloom-2);
  border: 1px solid var(--sage-line); border-radius: var(--radius);
  aspect-ratio: 4/3; display: grid; place-content: center; text-align: center; padding: 1.5rem;
}
.frame-tall { aspect-ratio: 3/4; }
.frame-wide { aspect-ratio: 16/9; }
.frame-dark { background: rgba(255,255,255,.06); border-color: rgba(221,230,220,.3); }
.frame-note { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--stone); line-height: 1.8; margin: 0; }
.frame-dark .frame-note { color: var(--sage-pale); }

/* ---------- property slabs ---------- */
.slab { display: block; text-decoration: none; border-top: var(--rule); padding-block: clamp(2rem,4vw,3.5rem); }
.slab:last-of-type { border-bottom: var(--rule); }
.slab-grid { display: grid; gap: clamp(1.5rem,3.5vw,3rem); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 55rem) { .slab-grid { grid-template-columns: .9fr 1.1fr; } }
.slab-index { font-size: .72rem; font-weight: 700; letter-spacing: .16em; color: var(--sage); text-transform: uppercase; margin: 0 0 .9rem; }
.slab .headline { margin-bottom: 1rem; transition: color .2s ease; }
.slab:hover .headline { color: var(--sage-deep); }
.slab-more {
  font-size: .76rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  margin-top: 1.6rem; display: inline-flex; align-items: center; gap: .5rem;
  color: var(--sage-deep); border-bottom: 1.5px solid var(--blush); padding-bottom: .25rem;
}

/* ---------- feature rows ---------- */
.rows { list-style: none; margin: 0; padding: 0; }
.rows li { border-top: var(--rule); padding-block: 1.5rem; display: grid; gap: .35rem 2rem; }
.rows li:last-child { border-bottom: var(--rule); }
@media (min-width: 48rem) { .rows li { grid-template-columns: 13rem 1fr; align-items: baseline; } }
.rows .rk { font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--sage-deep); }
.band-dark .rows li { border-color: rgba(221,230,220,.25); }
.band-dark .rows .rk { color: var(--blush-pale); }

/* ---------- booking ---------- */
.booking {
  border: 1px solid var(--sage-line); border-radius: var(--radius);
  padding: clamp(1.5rem,4vw,2.75rem); background: #fff;
  box-shadow: 0 20px 46px -32px rgba(69,57,64,.45);
}
.booking-head { font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--sage); margin: 0 0 1.15rem; }

/* ---------- form ---------- */
.form { display: grid; gap: 1.3rem; max-width: 40rem; }
.field { display: grid; gap: .45rem; }
.field label { font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--plum-soft); }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 1rem; padding: .9rem 1.05rem;
  border: 1px solid var(--sage-line); background: #fff; color: var(--plum);
  border-radius: var(--radius); width: 100%;
}
.field textarea { min-height: 8rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--sage); outline: none; box-shadow: 0 0 0 3px var(--sage-pale); }
.field-pair { display: grid; gap: 1.3rem; }
@media (min-width: 40rem) { .field-pair { grid-template-columns: 1fr 1fr; } }
.hp { position: absolute; left: -9999px; }

/* The marketing opt-in on the inquiry forms. Deliberately NOT .field: that
   label style is uppercase micro-type for naming a box, and consent has to be
   readable prose or it is not really consent. Ships unticked, always. */
.consent { display: grid; grid-template-columns: auto 1fr; gap: .75rem; align-items: start; max-width: 40rem; }
.consent input { width: 1.15rem; height: 1.15rem; margin: .15rem 0 0; accent-color: var(--sage-deep); flex: none; }
.consent label { font-size: .92rem; line-height: 1.55; color: var(--plum-soft); }
.consent input:focus-visible { outline: 2px solid var(--sage); outline-offset: 2px; }

/* ---------- photos ---------- */
.shot { width: 100%; display: block; object-fit: cover; background: var(--bloom-2); border-radius: var(--radius); }
.shot-43 { aspect-ratio: 4/3; }
.shot-169 { aspect-ratio: 16/9; }
.shot-34 { aspect-ratio: 3/4; }

.gallery { display: grid; gap: .9rem; grid-template-columns: repeat(2,1fr); margin-top: 2.5rem; }
@media (min-width: 55rem) {
  .gallery { grid-template-columns: repeat(3,1fr); gap: 1.1rem; }
  .gallery .wide { grid-column: span 2; }
}
.gallery figure { margin: 0; }
.gallery figcaption { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--stone); margin-top: .6rem; }
.band-dark .gallery figcaption { color: var(--sage-pale); }

/* ---------- footer ---------- */
.foot { background: var(--sage-deeper); color: var(--sage-pale); padding-block: clamp(3rem,6vw,4.75rem); }
.foot-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 52rem) { .foot-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.foot h2 { font-family: var(--body); font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--blush-pale); margin: 0 0 1.1rem; }
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot li { margin-bottom: .65rem; font-size: .95rem; }
.foot a { text-decoration: none; border-bottom: 1px solid transparent; }
.foot a:hover { border-bottom-color: var(--blush); }
.foot-fine {
  margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(221,230,220,.22);
  font-size: .72rem; letter-spacing: .06em; color: rgba(221,230,220,.72);
  display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between;
}

/* ---------- misc ---------- */
.stack > * + * { margin-top: 1.35rem; }
.centered { max-width: 46rem; margin-inline: auto; text-align: center; }
/* Body copy inside a centred block is set left, while the block itself stays
   centred in the page. Several lines of centred prose give the eye a new
   starting point on every line, which this audience should not have to work at.
   Headings, eyebrows and the pull quote stay centred — those are short enough
   to read as a shape rather than as text. */
.centered .lede,
.centered .prose { text-align: left; }
.centered .lede { margin-inline: auto; }
.centered .tag { justify-content: center; }
.pull { font-family: var(--display); font-weight: 400; font-size: clamp(1.5rem,2.8vw,2.35rem); line-height: 1.28; margin: 0; text-wrap: balance; color: var(--plum); }
.cite { font-size: .74rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--stone); margin-top: 1.25rem; display: block; }

.board-sub {
  font-size: .74rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--plum); margin: 1.35rem 0 .35rem;
}
.board-sub:first-of-type { margin-top: 0; }
.board-list + .board-sub { padding-top: 1.1rem; border-top: 1px solid var(--bloom-3); }
.band-dark .board-sub { color: #fff; }
.band-dark .board-list + .board-sub { border-top-color: rgba(221,230,220,.22); }

/* ---------- logo ---------- */
.wordmark { display: block; }
.wordmark img { height: clamp(38px, 4.2vw, 50px); width: auto; display: block; }
.wordmark span { margin-top: .42rem; }

.foot-logo { width: clamp(160px, 18vw, 205px); height: auto; margin: 0 0 1.15rem; }

.brandmark {
  width: clamp(150px, 20vw, 235px);
  height: auto; margin: 0 auto 2.25rem;
}

.brand-family { width: 100%; max-width: 330px; height: auto; margin: 0 auto; display: block; }

/* ==========================================================================
   HERO BAND — a thin cinematic strip. Video fills it, words sit on top.
   ========================================================================== */
.hero-band {
  position: relative;
  min-height: clamp(380px, 52vh, 560px);
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--sage-deeper);
  isolation: isolate;
}
.hero-band > .wrap { position: relative; z-index: 3; width: 100%; padding-block: clamp(2.5rem, 5vw, 4rem); }

/* ---------- hero: four photographs, cross-dissolving with a slow drift ---------- */
.hero-stack { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-shot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0;
}
/* Without JS, on a phone, or with motion reduced: the first photo, and only
   the first photo. The other nine never get a src, so they never download. */
.hero-shot:first-child { opacity: 1; }

.hero-stack--play .hero-shot:first-child { opacity: 0; }
.hero-stack--play .hero-shot {
  animation:
    heroCycle 90s linear infinite,
    heroDrift 90s linear infinite;
  /* ten nine-second slots; the -6.5s starts the cycle mid-hold so the first
     photo is fully up on paint instead of fading in from nothing */
  animation-delay: calc(var(--i) * 9s - 6.5s);
  will-change: opacity, transform;
}
@keyframes heroCycle {
  0%       { opacity: 0 }
  2.7778%  { opacity: 1 }
  10%      { opacity: 1 }
  12.7778% { opacity: 0 }
  100%     { opacity: 0 }
}
/* the drift: a slow push-in while the photo is on screen; it resets while
   the photo is fully transparent, so the jump is never visible */
@keyframes heroDrift {
  0%                  { transform: scale(1.03) translate3d(0,0,0) }
  12.7778%, 100%      { transform: scale(1.11) translate3d(-1.2%,-0.6%,0) }
}
@media (prefers-reduced-motion: reduce) {
  .hero-stack--play .hero-shot { animation: none; opacity: 0; }
  .hero-stack--play .hero-shot:first-child { opacity: 1; }
}

/* scrim: darkens toward the left so cream type always has a bed */
.hero-scrim {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1; pointer-events: none;
  background:
    linear-gradient(95deg, rgba(38,52,44,.86) 0%, rgba(38,52,44,.62) 34%, rgba(38,52,44,.24) 66%, rgba(38,52,44,.34) 100%),
    linear-gradient(to top, rgba(38,52,44,.45) 0%, transparent 42%);
}

/* the drift — Carissa's smoke. Soft light moving across, 46s round trip. */
.hero-drift {
  position: absolute; top: -25%; left: -25%; width: 150%; height: 150%;
  z-index: 2; pointer-events: none; mix-blend-mode: screen;
  background:
    radial-gradient(34% 44% at 24% 36%, rgba(255,255,255,.30) 0%, transparent 66%),
    radial-gradient(30% 38% at 70% 70%, rgba(242,223,224,.26) 0%, transparent 64%),
    radial-gradient(42% 34% at 86% 20%, rgba(221,230,220,.22) 0%, transparent 62%);
  filter: blur(34px);
  animation: drift 46s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes drift {
  0%   { transform: translate3d(-3%, -2%, 0) scale(1.04); }
  50%  { transform: translate3d( 3%,  3%, 0) scale(1.12); }
  100% { transform: translate3d( 5%, -1%, 0) scale(1.06); }
}

/* type on the band */
.hero-band .hero-copy { max-width: 46rem; }
.hero-band .tag { color: var(--blush-pale); }
.hero-band .display {
  color: #fff;
  text-shadow: 0 2px 28px rgba(28,40,33,.55);
}
.hero-band .display em { color: var(--blush-pale); }
.hero-band .lede {
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 18px rgba(28,40,33,.6);
  max-width: 40rem;
}
.hero-band .btn-primary { background: var(--blush); color: #fff; }
.hero-band .btn-primary:hover { background: #fff; color: var(--plum); }
.hero-band .btn-ghost { border-color: rgba(255,255,255,.6); color: #fff; }
.hero-band .btn-ghost:hover { background: rgba(255,255,255,.16); border-color: #fff; }

/* phones: still frame instead of 2MB of video */
@media (max-width: 47rem) {
  .hero-drift { animation: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-drift { animation: none; }
}

/* ---------- facts band: the two properties, directly under the hero ---------- */
.facts { border-bottom: var(--rule); background: var(--bloom); }
.facts-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 48rem) { .facts-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; } }
.facts .board { height: 100%; }

/* ---------- property colour coding ---------- */
.em-rbr, .em-mr { font-style: italic; }
.hero-band .em-rbr { color: var(--rbr-bright); }
.hero-band .em-mr  { color: var(--mr-bright); }
.em-rbr { color: var(--rbr); }
.em-mr  { color: var(--mr); }

/* headline gets a little more presence on video */
.hero-band .display {
  text-shadow: 0 2px 30px rgba(24,34,28,.7), 0 1px 3px rgba(24,34,28,.45);
  letter-spacing: -.016em;
}

/* buttons carry the same colours */
.btn-rbr { background: var(--rbr-btn); color: #fff; border-color: var(--rbr-btn); }
.btn-rbr:hover { background: #fff; color: var(--rbr); border-color: #fff; }
.btn-mr  { background: var(--mr-btn); color: #fff; border-color: var(--mr-btn); }
.btn-mr:hover  { background: #fff; color: var(--mr); border-color: #fff; }

/* the facts cards and property blocks pick it up too */
.board-title.t-rbr { color: var(--rbr); border-bottom-color: rgba(184,64,42,.28); }
.board-title.t-mr  { color: var(--mr);  border-bottom-color: rgba(44,106,75,.28); }
.slab-index.t-rbr { color: var(--rbr); }
.slab-index.t-mr  { color: var(--mr); }
.slab.s-rbr:hover .headline { color: var(--rbr); }
.slab.s-mr:hover  .headline { color: var(--mr); }
.slab.s-rbr .slab-more { color: var(--rbr); border-bottom-color: var(--rbr); }
.slab.s-mr  .slab-more { color: var(--mr);  border-bottom-color: var(--mr); }

/* ---------- book direct bands ---------- */
.book-band { background: var(--bloom-2); border-top: var(--rule); border-bottom: var(--rule); }
.book-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 56rem) { .book-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.booking-head.t-rbr { color: var(--rbr); }
.booking-head.t-mr  { color: var(--mr); }

/* ==========================================================================
   BOOKING WIDGET — dressed so it feels like part of the house
   ========================================================================== */
.book-band {
  background:
    radial-gradient(80% 120% at 12% 0%, rgba(221,230,220,.55) 0%, transparent 60%),
    radial-gradient(70% 100% at 92% 100%, rgba(242,223,224,.45) 0%, transparent 58%),
    var(--bloom-2);
  border-top: var(--rule);
  border-bottom: var(--rule);
}

.booking {
  position: relative;
  background: #fff;
  border: 1px solid var(--sage-line);
  border-radius: 12px;
  padding: clamp(1.5rem, 3.2vw, 2.1rem);
  box-shadow:
    0 1px 2px rgba(69,57,64,.05),
    0 12px 28px -18px rgba(63,85,72,.32),
    0 40px 70px -50px rgba(63,85,72,.5);
  transition: box-shadow .3s ease, transform .3s ease;
  overflow: hidden;
}
.booking::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--sage) 0%, var(--blush) 100%);
}
.booking:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 2px rgba(69,57,64,.05),
    0 18px 34px -18px rgba(63,85,72,.38),
    0 50px 80px -50px rgba(63,85,72,.55);
}

.booking-head {
  display: flex; align-items: center; gap: .6rem;
  font-size: .74rem; font-weight: 700;
  letter-spacing: .17em; text-transform: uppercase;
  margin: 0 0 1.25rem; padding-bottom: .9rem;
  border-bottom: 1px solid var(--bloom-3);
}
.booking-head::before {
  content: ""; flex: 0 0 auto; width: 26px; height: 12px;
  background: currentColor;
  -webkit-mask: var(--sprig) center / contain no-repeat;
          mask: var(--sprig) center / contain no-repeat;
}

.booking-trust {
  display: flex; flex-wrap: wrap; gap: .45rem 1.15rem;
  margin: 1.15rem 0 0; padding-top: .95rem;
  border-top: 1px solid var(--bloom-3);
  font-size: .7rem; letter-spacing: .05em; color: var(--stone);
}
.booking-trust span { display: inline-flex; align-items: center; gap: .4rem; }
.booking-trust span::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--sage); flex: 0 0 auto;
}

/* the band heading */
.book-band .headline { margin-bottom: .4rem; }
.book-band .book-note {
  font-size: .95rem; color: var(--plum-soft);
  margin: 0 0 2.25rem; max-width: 42rem;
}

/* ---------- merged property + booking card ---------- */
.booking .board-list { margin: 0 0 .35rem; }
.booking .board-list li { padding-block: .42rem; }

.booking-step {
  display: flex; align-items: center; gap: .75rem;
  font-size: .66rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--stone); margin: 1.35rem 0 1.1rem;
}
.booking-step::before,
.booking-step::after { content: ""; height: 1px; background: var(--bloom-3); flex: 1; }

.booking-more {
  display: inline-block; margin-top: 1.1rem;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  text-decoration: none; border-bottom: 1.5px solid currentColor;
  padding-bottom: .18rem;
}
.booking-more:hover { opacity: .7; }

/* each card wears its property colour along the top edge */
.booking.p-rbr::before { background: linear-gradient(90deg, var(--rbr) 0%, #EFA898 100%); }
.booking.p-mr::before  { background: linear-gradient(90deg, var(--mr) 0%, var(--sage) 100%); }
.booking.p-rbr { border-color: rgba(184,64,42,.22); }
.booking.p-mr  { border-color: rgba(44,106,75,.22); }
.booking.p-rbr .booking-head { border-bottom-color: rgba(184,64,42,.18); }
.booking.p-mr  .booking-head { border-bottom-color: rgba(44,106,75,.18); }

/* ==========================================================================
   TICKER — a slow credibility strip under the hero
   ========================================================================== */
.ticker {
  background: var(--sage-deep);
  color: var(--bloom);
  overflow: hidden;
  padding-block: .95rem;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
}
/* soft fade at both ends so items appear and vanish rather than clipping */
.ticker::before,
.ticker::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 8%;
  z-index: 2; pointer-events: none;
}
.ticker::before { left: 0;  background: linear-gradient(90deg, var(--sage-deep), transparent); }
.ticker::after  { right: 0; background: linear-gradient(270deg, var(--sage-deep), transparent); }

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 68s linear infinite;
  will-change: transform;
}
.ticker:hover .ticker-track { animation-play-state: paused; }

.ticker-list {
  display: flex; align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.ticker-list li {
  display: flex; align-items: center;
  white-space: nowrap;
  padding-inline: 1.55rem;
  font-size: .74rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--sage-pale);
}
.ticker-list li::after {
  content: ""; margin-left: 1.55rem;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--blush); flex: 0 0 auto;
}
.ticker-list li.tick-star { color: #fff; }
.ticker-list li.tick-star::before {
  content: "\2605"; margin-right: .55rem;
  color: var(--blush); font-size: .8rem; letter-spacing: 0;
}

@keyframes ticker { to { transform: translateX(-50%); } }

/* reduced motion: hold still, let people scroll it themselves */
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  .ticker { overflow-x: auto; }
  .ticker::before, .ticker::after { display: none; }
}

/* ==========================================================================
   HERO HEADLINE — two lines, and louder
   ========================================================================== */
.hero-h1 {
  font-size: clamp(2.3rem, 5.6vw, 4.6rem);
  line-height: .97;
  letter-spacing: -.022em;
}
.hero-h1 .hl {
  display: block;
  text-wrap: balance;
}
/* second line steps in slightly — reads as a pair, not a wrap.
   the negative margin closes the gap the serif's own metrics open up. */
.hero-h1 .hl-2 { margin-top: -.11em; }
@media (min-width: 48rem) {
  .hero-h1 .hl-2 { padding-left: 1.6em; }
}

/* depth: a dark halo close in, a soft one further out */
.hero-band .hero-h1 {
  color: #fff;
  text-shadow:
    0 1px 2px  rgba(18,28,22,.55),
    0 3px 14px rgba(18,28,22,.6),
    0 10px 46px rgba(18,28,22,.5);
}

/* the two property words get a glow in their own colour */
.hero-band .hero-h1 .em-rbr {
  color: #FF9880;
  text-shadow:
    0 1px 2px rgba(18,28,22,.5),
    0 0 26px rgba(255,152,128,.55),
    0 0 54px rgba(255,120,90,.35);
}
.hero-band .hero-h1 .em-mr {
  color: #A9E7BC;
  text-shadow:
    0 1px 2px rgba(18,28,22,.5),
    0 0 26px rgba(169,231,188,.5),
    0 0 54px rgba(120,210,150,.32);
}

/* a touch more shade directly behind the words */
.hero-band .hero-scrim {
  background:
    linear-gradient(95deg, rgba(30,42,35,.93) 0%, rgba(30,42,35,.78) 34%, rgba(30,42,35,.34) 66%, rgba(30,42,35,.42) 100%),
    linear-gradient(to top, rgba(30,42,35,.52) 0%, transparent 44%);
}

/* the two lines arrive one after the other */
.hero-h1 .hl   { animation: rise .85s cubic-bezier(.22,.68,.28,1) both; animation-delay: .12s; }
.hero-h1 .hl-2 { animation-delay: .34s; }
@media (prefers-reduced-motion: reduce) {
  .hero-h1 .hl, .hero-h1 .hl-2 { animation: none; }
}

/* ==========================================================================
   THE MAP — email capture
   The offer is the Ramona Farmstand Map, the thing only we have. The card
   is solid white inside the dark band on purpose: this audience has to be
   able to read a form label without squinting.
   ========================================================================== */
.signup-band {
  background:
    radial-gradient(70% 110% at 6% 0%, rgba(124,152,133,.22) 0%, transparent 58%),
    radial-gradient(64% 96% at 96% 100%, rgba(197,136,145,.18) 0%, transparent 56%),
    var(--sage-deep);
  color: var(--bloom);
  border-top: 1px solid rgba(255,255,255,.08);
}

.signup-grid { display: grid; gap: clamp(2.25rem, 5vw, 4rem); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 62rem) { .signup-grid { grid-template-columns: 1.05fr .95fr; } }

.signup-band .tag { color: var(--blush-pale); }
.signup-band .headline { color: #fff; margin-bottom: 1.15rem; }
.signup-band .headline em { font-style: italic; color: var(--blush-pale); }
.signup-copy p { color: var(--sage-pale); max-width: 34rem; margin: 0 0 1.15rem; }
.signup-copy p:last-child { margin-bottom: 0; }

/* what actually lands in the inbox — set the expectation, keep the list clean */
.signup-promise { list-style: none; margin: 1.9rem 0 0; padding: 0; max-width: 32rem; }
.signup-promise li {
  display: flex; align-items: baseline; gap: .8rem;
  padding-block: .62rem; font-size: .95rem; color: var(--sage-pale);
  border-top: 1px solid rgba(221,230,220,.2);
}
.signup-promise li:last-child { border-bottom: 1px solid rgba(221,230,220,.2); }
.signup-promise li::before {
  content: ""; flex: 0 0 auto; width: 5px; height: 5px; border-radius: 50%;
  background: var(--blush); transform: translateY(-.2em);
}

/* ---------- the card ---------- */
.signup-card {
  position: relative; overflow: hidden;
  background: #fff; color: var(--plum);
  border: 1px solid var(--sage-line); border-radius: 12px;
  padding: clamp(1.6rem, 3.4vw, 2.35rem);
  box-shadow:
    0 1px 2px rgba(20,30,24,.06),
    0 18px 34px -20px rgba(20,30,24,.45),
    0 54px 84px -54px rgba(20,30,24,.7);
}
.signup-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--sage) 0%, var(--blush) 100%);
}
.signup-card-head {
  display: flex; align-items: center; gap: .6rem;
  font-size: .74rem; font-weight: 700;
  letter-spacing: .17em; text-transform: uppercase; color: var(--sage);
  margin: 0 0 1.35rem; padding-bottom: .9rem;
  border-bottom: 1px solid var(--bloom-3);
}
.signup-card-head::before {
  content: ""; flex: 0 0 auto; width: 26px; height: 12px; background: currentColor;
  -webkit-mask: var(--sprig) center / contain no-repeat;
          mask: var(--sprig) center / contain no-repeat;
}
.signup-card .form { gap: 1.1rem; max-width: none; }
.signup-card .btn { width: 100%; text-align: center; }

/* ---------- property chips — segmentation without a dropdown ---------- */
.chips { border: 0; margin: 0; padding: 0; }
.chips legend {
  font-size: .72rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--plum-soft); padding: 0; margin-bottom: .6rem;
}
.chips-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.chips input { position: absolute; opacity: 0; width: 0; height: 0; }
.chips label {
  display: inline-block; cursor: pointer;
  font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  padding: .58rem 1.05rem; border-radius: 999px;
  border: 1px solid var(--sage-line); background: #fff; color: var(--plum-soft);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.chips label:hover { border-color: var(--sage); color: var(--plum); }
.chips input:checked + label { background: var(--sage-deep); border-color: var(--sage-deep); color: #fff; }
.chips input:focus-visible + label { outline: 2px solid var(--blush); outline-offset: 3px; }
.chips input:checked + label.c-rbr { background: var(--rbr-btn); border-color: var(--rbr-btn); }
.chips input:checked + label.c-mr  { background: var(--mr-btn);  border-color: var(--mr-btn); }

.signup-fine {
  font-size: .74rem; line-height: 1.6; color: var(--plum-soft);
  margin: 1.05rem 0 0; text-align: center;
}
.signup-fine a { color: var(--plum-soft); }

/* ==========================================================================
   FOOTER STRIP — the same offer, on every page, out of the way
   ========================================================================== */
.foot-signup {
  padding-bottom: clamp(2.25rem, 4vw, 3rem);
  margin-bottom: clamp(2.25rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(221,230,220,.22);
  display: grid; gap: 1.5rem clamp(2rem, 5vw, 4rem); grid-template-columns: 1fr; align-items: center;
}
@media (min-width: 56rem) { .foot-signup { grid-template-columns: 1fr 1fr; } }
.foot-signup h2 { margin-bottom: .5rem; }
.foot-signup p { margin: 0; font-size: .95rem; color: var(--sage-pale); max-width: 32rem; }
.foot-signup .fs-title {
  font-family: var(--display); font-size: clamp(1.45rem, 2.4vw, 1.95rem);
  line-height: 1.15; color: #fff; margin: 0 0 .5rem; text-wrap: balance;
}

.fs-form { display: grid; gap: .7rem; grid-template-columns: 1fr; }
@media (min-width: 30rem) { .fs-form { grid-template-columns: 1fr auto; align-items: start; } }
.fs-form label {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
.fs-form input[type="email"] {
  font-family: var(--body); font-size: 1rem; width: 100%;
  padding: .9rem 1.05rem; border-radius: var(--radius);
  border: 1px solid rgba(221,230,220,.4); background: #fff; color: var(--plum);
}
.fs-form input[type="email"]::placeholder { color: var(--stone); }
.fs-form input[type="email"]:focus { outline: none; border-color: #fff; box-shadow: 0 0 0 3px rgba(197,136,145,.55); }
.fs-form .btn-primary { background: var(--blush-btn); color: #fff; white-space: nowrap; }
.fs-form .btn-primary:hover { background: #fff; color: var(--plum); }
.fs-note { grid-column: 1 / -1; font-size: .72rem; color: var(--sage-pale); margin: 0; }


/* ==========================================================================
   THE RAMONA FARMSTAND MAP  (/ramona-farmstand-map.html)
   The map is the hero here — it loads above everything and behind no gate.
   Portrait on a phone because that is how you hold one at a roadside stand.
   ========================================================================== */
.map-embed {
  position: relative;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--sage-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bloom-2);
  box-shadow: 0 26px 64px -42px rgba(69,57,64,.6);
}
@media (min-width: 48rem) { .map-embed { aspect-ratio: 16 / 10; } }
.map-embed iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; display: block;
}

.map-ways {
  display: grid; gap: 1.25rem; grid-template-columns: 1fr;
  margin-top: clamp(2rem, 4.5vw, 3.25rem);
}
@media (min-width: 54rem) { .map-ways { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.map-way { display: flex; flex-direction: column; height: 100%; }
.map-way p { margin: 0; font-size: .95rem; color: var(--plum-soft); }
.map-way .btn-row { margin-top: auto; padding-top: 1.4rem; }
.map-way .btn { width: 100%; text-align: center; }

.map-illo {
  display: block; width: 100%; height: auto;
  border-radius: var(--radius); border: 1px solid var(--sage-line);
  box-shadow: 0 26px 64px -42px rgba(69,57,64,.6);
}
.map-cap {
  font-size: .78rem; color: var(--stone); margin: .9rem 0 0; text-align: center;
}
