/* Eira Vacation Rentals — one stylesheet. Tokens first, then components. */

:root {
  --ink: #201e1d;
  --paper: #f3f2f2;
  --paper-2: #fff;
  --rule: #201e1d;
  --muted: #4a4a48;
  --muted-2: #6b6b68;
  --hair: #ddd9d5;

  --green: #0d6b34;
  --green-d: #094f27;
  --green-l: #7fd8a0;
  --green-m: #2f9c5f;

  --night: #05070d;
  --night-2: #0b0f17;
  --night-3: #0c1018;
  --night-hair: #1c2230;
  --night-rule: #39404d;
  --night-ink: #e8ecf1;
  --night-muted: #a9b4c0;
  --night-muted-2: #7d8794;

  --wrap: 1240px;
  --pad: clamp(36px, 6vw, 88px);
  --font: Archivo, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-d); }
:focus-visible { outline: 2px solid var(--green-m); outline-offset: 2px; }
::selection { background: var(--green-l); color: var(--ink); }

h1, h2, h3, h4 { margin: 0; letter-spacing: -.025em; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
blockquote { margin: 0; }
figure { margin: 0; }

.wrap { max-width: var(--wrap); margin: 0 auto; }
.kicker { font-size: 10px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ------------------------------------------------------------ contact bar */

.bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 20px;
  padding: 10px 24px;
  position: sticky; top: 0; z-index: 60;
  font-size: 13px;
}
.bar--day, .bar--night { background: var(--ink); color: var(--paper); border-bottom: 2px solid var(--green); }
.bar--night { background: var(--night-3); border-bottom-color: var(--green-m); }
.bar__link { color: var(--paper); font-weight: 600; border-bottom: 1px solid #4a4a48; padding-bottom: 1px; }
.bar__link:hover { color: #fff; border-bottom-color: var(--green); }
.bar__spacer { flex: 1 1 auto; }
.bar__offer { color: var(--green-l); font-size: 12px; font-weight: 600; white-space: nowrap; }
.bar__offer:hover { color: #fff; }

/* ------------------------------------------------------------- site header */

.head {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 16px 24px; background: var(--paper); border-bottom: 2px solid var(--rule);
}
.head__logo img { height: 36px; width: auto; }
.head__badge { display: flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.head__badge::before { content: ""; width: 8px; height: 8px; background: var(--green); }

/* ------------------------------------------------------------ landing lede */

.lede-band { background: var(--paper); padding: clamp(20px,3.4vw,44px) 24px clamp(16px,2.4vw,28px); border-bottom: 2px solid var(--rule); }
.lede-grid { display: grid; grid-template-columns: minmax(0,1.5fr) minmax(0,1fr); gap: clamp(14px,3vw,48px); align-items: end; }
.lede-grid h1 { font-size: clamp(34px,5.6vw,76px); line-height: .94; font-weight: 800; }
.lede-grid p { font-size: clamp(15px,1.5vw,19px); line-height: 1.45; max-width: 34ch; margin-bottom: 12px; }
.lede-hint { font-size: clamp(13px,1.15vw,15px); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); }
@media (max-width: 860px) { .lede-grid { grid-template-columns: minmax(0,1fr); } }

/* ------------------------------------------------------------ property tiles */

.tiles { display: flex; flex-wrap: wrap; background: #0b0e14; border-bottom: 2px solid var(--rule); }
.tile {
  position: relative; display: block; overflow: hidden; color: #fff;
  flex: 1 1 0; min-width: 0;
  height: min(66vh, 620px); min-height: 440px;
  border-right: 2px solid var(--paper);
  transition: flex-grow .5s cubic-bezier(.2,.8,.2,1);
}
.tile:last-child { border-right: 0; }
.tile:hover, .tile:focus-visible { color: #fff; flex-grow: 1.9; }
.tile__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: var(--focus, 50% 50%);
  transition: transform .6s cubic-bezier(.2,.8,.2,1), filter .4s ease;
}
.tiles:hover .tile:not(:hover) .tile__img { filter: brightness(.62) saturate(.75); }
.tile:hover .tile__img { transform: scale(1.05); }
.tile__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,10,14,.94) 0%, rgba(8,10,14,.52) 42%, rgba(8,10,14,.18) 100%); }
.tile__body { position: absolute; left: clamp(18px,2.4vw,38px); right: clamp(18px,2.4vw,38px); bottom: clamp(20px,2.6vw,40px); display: block; }
.tile__badge { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; background: var(--green); color: #fff; padding: 5px 9px; margin-bottom: 12px; }
.tile__place { display: block; font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: #9fb4a6; margin-bottom: 6px; }
.tile__name { display: block; font-size: clamp(26px,3.2vw,46px); line-height: .96; font-weight: 800; letter-spacing: -.03em; margin-bottom: 10px; }
.tile__blurb { display: block; font-size: clamp(13px,1.25vw,17px); line-height: 1.4; max-width: 32ch; color: #d6dbd8; margin-bottom: 16px; }
.tile__cta { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; border-bottom: 2px solid #fff; padding-bottom: 4px; }
@media (max-width: 900px) {
  .tile { flex: 1 1 100%; height: 58vw; min-height: 300px; border-right: 0; border-top: 2px solid var(--paper); }
  .tile:hover, .tile:focus-visible { flex-grow: 1; }
  .tiles:hover .tile:not(:hover) .tile__img { filter: none; }
}

/* ------------------------------------------------------------ quote banner */

.qband { background: var(--green); color: #fff; border-bottom: 2px solid var(--rule); }
.qband__inner { padding: clamp(28px,4.5vw,72px) 24px; }
.qband__top { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-bottom: 2px solid rgba(255,255,255,.4); padding-bottom: 12px; margin-bottom: clamp(20px,3vw,38px); }
.qtabs { display: flex; gap: 8px; }
.qtab { font-family: inherit; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; padding: 10px 14px; min-height: 44px; cursor: pointer; border: 2px solid rgba(255,255,255,.45); background: transparent; color: #fff; }
.qtab.is-on { background: #fff; color: var(--green); border-color: #fff; }
.quote { display: none; grid-template-columns: minmax(0,1.7fr) minmax(0,1fr); gap: clamp(20px,3vw,56px); align-items: start; }
.quote.is-on { display: grid; }
.quote blockquote { font-size: clamp(21px,2.9vw,42px); line-height: 1.16; font-weight: 700; letter-spacing: -.025em; }
.quote figcaption { display: flex; flex-direction: column; gap: 14px; }
.quote__by { font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: #cfeadb; }
.quote__note { font-size: 14px; line-height: 1.5; color: #d8eee2; max-width: 30ch; }
@media (max-width: 900px) { .quote.is-on { grid-template-columns: minmax(0,1fr); } }

/* ------------------------------------------------------------ credentials */

.creds { background: var(--ink); color: var(--paper); padding: clamp(32px,5vw,72px) 24px; }
.creds__top { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; flex-wrap: wrap; border-bottom: 2px solid #4a4a48; padding-bottom: 14px; margin-bottom: clamp(20px,3vw,38px); }
.creds__top h2 { font-size: clamp(22px,3vw,40px); font-weight: 800; }
.creds__top p { font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: #9aa0a6; }
.creds__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,300px),1fr)); gap: clamp(18px,2.5vw,34px); }
.cred { border-top: 2px solid var(--green); padding-top: 16px; }
.cred__n { font-size: 11px; font-weight: 800; letter-spacing: .16em; color: var(--green-l); margin-bottom: 10px; }
.cred h3 { font-size: clamp(17px,1.7vw,21px); font-weight: 800; line-height: 1.15; margin-bottom: 8px; }
.cred > p:last-child { font-size: clamp(14px,1.35vw,16px); line-height: 1.5; color: #c9cdd1; }

/* ------------------------------------------------------------------- hero */

.hero { position: relative; min-height: min(86vh, 820px); display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.hero__img { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: var(--focus, 50% 50%); animation: drift 34s ease-in-out infinite alternate; }
.hero__veil { position: absolute; inset: 0; z-index: 1; }
.hero__body { position: relative; z-index: 3; width: 100%; }
.hero__inner { padding: clamp(26px,4.5vw,62px) 24px clamp(26px,4vw,54px); max-width: var(--wrap); margin: 0 auto; }
.hero h1 { font-size: clamp(30px,9.2vw,150px); line-height: .9; font-weight: 800; letter-spacing: -.04em; color: #fff; margin-bottom: 14px; }
.hero__tag { font-size: clamp(16px,2.1vw,28px); line-height: 1.34; max-width: 26ch; margin-bottom: clamp(22px,3vw,36px); }
.hero__badge { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; padding: 6px 10px; margin-bottom: clamp(16px,3vw,28px); }

.facts { display: flex; flex-wrap: wrap; }
.fact { flex: 1 1 130px; min-width: 120px; padding: 14px 16px; }
.fact__k { font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 3px; }
.fact__v { font-size: clamp(15px,1.4vw,18px); font-weight: 700; color: #fff; }

.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(22px,3vw,34px); }
.btn { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; padding: 16px 22px; min-height: 44px; }
.btn--ghost { border: 2px solid rgba(255,255,255,.6); color: #fff; padding: 14px 20px; }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.12); color: #fff; }

/* night theme */
.t-night { background: var(--night); color: var(--night-ink); }
.t-night .hero__veil { background: linear-gradient(to top, rgba(4,6,11,.22) 0%, rgba(4,6,11,.1) 30%, rgba(4,6,11,0) 62%); }
.t-night .hero__body { background: linear-gradient(to top, rgba(4,6,11,.9) 0%, rgba(4,6,11,.85) 38%, rgba(4,6,11,.7) 62%, rgba(4,6,11,.42) 82%, rgba(4,6,11,0) 99%); }
.t-night .hero { border-bottom: 2px solid var(--green-m); }
.t-night .hero__badge { border: 2px solid var(--green-m); background: rgba(4,6,11,.78); color: var(--green-l); }
.t-night .hero__tag { color: #dbe2ea; }
.t-night .facts { border-top: 2px solid var(--night-rule); background: rgba(4,6,11,.72); }
.t-night .fact { border-right: 1px solid var(--night-rule); }
.t-night .fact__k { color: var(--night-muted-2); }
.t-night .btn--solid { background: var(--green-m); color: var(--night); }
.t-night .btn--solid:hover { background: var(--green-l); color: var(--night); }

/* day theme */
.t-day { background: var(--paper); color: var(--ink); }
.t-day .hero__veil { background: linear-gradient(to top, rgba(16,14,12,.22) 0%, rgba(16,14,12,.1) 30%, rgba(16,14,12,0) 62%); }
.t-day .hero__body { background: linear-gradient(to top, rgba(16,14,12,.9) 0%, rgba(16,14,12,.85) 38%, rgba(16,14,12,.7) 62%, rgba(16,14,12,.42) 82%, rgba(16,14,12,0) 99%); }
.t-day .hero { border-bottom: 2px solid var(--rule); }
.t-day .hero__badge { background: var(--green); color: #fff; padding: 7px 11px; }
.t-day .hero__tag { color: #e4e0da; }
.t-day .facts { border-top: 2px solid rgba(255,255,255,.35); background: rgba(16,14,12,.72); }
.t-day .fact { border-right: 1px solid rgba(255,255,255,.25); }
.t-day .fact__k { color: #c2bcb4; }
.t-day .btn--solid { background: var(--green); color: #fff; }
.t-day .btn--solid:hover { background: var(--green-d); color: #fff; }

/* ----------------------------------------------------------- review ribbon */

.ribbon { position: relative; overflow: hidden; background: var(--night); }
.t-night .ribbon { border-top: 2px solid var(--green-m); border-bottom: 2px solid var(--green-m); }
.t-day .ribbon { border-top: 2px solid var(--rule); border-bottom: 2px solid var(--rule); background: var(--ink); }
.ribbon__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: drift 36s ease-in-out infinite alternate-reverse; }
.fx { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; pointer-events: none; }
.ribbon__scrim { position: absolute; inset: 0; z-index: 1; }
.t-night .ribbon__scrim { background: linear-gradient(105deg, rgba(4,6,11,.88) 0%, rgba(4,6,11,.52) 48%, rgba(4,6,11,.06) 100%); }
.t-day .ribbon__scrim { background: linear-gradient(102deg, rgba(18,16,14,.92) 0%, rgba(18,16,14,.6) 44%, rgba(18,16,14,.06) 100%); }
.ribbon__body { position: relative; z-index: 2; max-width: var(--wrap); margin: 0 auto; padding: clamp(48px,9vw,130px) 24px; }
.ribbon__kicker { color: var(--green-l); margin-bottom: clamp(14px,2vw,22px); }
.ribbon blockquote { font-size: clamp(22px,3.6vw,50px); line-height: 1.14; font-weight: 700; letter-spacing: -.025em; color: #fff; max-width: 24ch; margin-bottom: clamp(18px,2.5vw,30px); }
.ribbon__by { font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: #cfc9c1; }

/* -------------------------------------------------------------- main body */

.body-sect { padding: var(--pad) 24px; }
.body-grid { display: grid; grid-template-columns: minmax(0,1.55fr) minmax(320px,.9fr); gap: clamp(28px,4vw,64px); align-items: start; }
.body-col { min-width: 0; }
.lede-line { font-size: clamp(22px,2.9vw,38px); line-height: 1.22; font-weight: 600; letter-spacing: -.02em; margin-bottom: clamp(20px,3vw,34px); }
.t-night .lede-line { color: #fff; }
.prose { font-size: clamp(15px,1.5vw,18px); line-height: 1.62; max-width: 62ch; margin-bottom: 18px; }
.t-night .prose { color: #c0c8d2; }
.t-day .prose { color: var(--muted); }

.subhead { font-size: clamp(13px,1.2vw,15px); font-weight: 800; letter-spacing: .18em; text-transform: uppercase; margin-bottom: clamp(16px,2vw,24px); }
.t-night .subhead { color: var(--night-muted-2); }
.t-day .subhead { color: var(--muted-2); }
.block { margin-top: clamp(30px,4vw,56px); padding-top: clamp(20px,3vw,30px); }
.t-night .block { border-top: 2px solid var(--night-rule); }
.t-day .block { border-top: 2px solid var(--rule); }

.hl { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,210px),1fr)); gap: 2px; }
.hl li { display: flex; align-items: baseline; gap: 12px; padding: 13px 0; font-size: clamp(14px,1.4vw,17px); }
.t-night .hl li { border-bottom: 1px solid var(--night-hair); color: var(--night-ink); }
.t-day .hl li { border-bottom: 1px solid var(--hair); }
.dot { flex: 0 0 auto; width: 7px; height: 7px; background: var(--green-m); }
.t-day .dot { background: var(--green); }

@media (max-width: 1000px) {
  .body-grid { grid-template-columns: minmax(0,1fr); }
  .book-col { order: -1; }
}

/* ----------------------------------------------------------- booking card */

.book-col { min-width: 0; position: sticky; top: 76px; }
.book { background: var(--paper-2); color: var(--ink); border: 2px solid var(--rule); display: flex; flex-direction: column; }
.t-night .book { border-color: var(--green-m); background: var(--paper); }
.book__top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 18px 20px; border-bottom: 2px solid var(--rule); }
.t-day .book__top { background: var(--green); color: #fff; }
.book__top p { font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.book__mount { flex: 1 1 auto; min-height: 460px; }
.book__foot { padding: 16px 20px; border-top: 2px solid var(--rule); background: #e9e7e4; font-size: 12px; line-height: 1.5; color: var(--muted); }

/* ------------------------------------------------------------------ chips */

.sect-top { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-bottom: 14px; margin-bottom: clamp(18px,2.5vw,30px); }
.t-night .sect-top { border-bottom: 2px solid var(--night-rule); }
.t-day .sect-top { border-bottom: 2px solid var(--rule); }
.sect-top h2 { font-size: clamp(24px,3.4vw,46px); font-weight: 800; }
.t-night .sect-top h2 { color: #fff; }
.sect-top p { font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.t-night .sect-top p { color: var(--night-muted-2); }
.t-day .sect-top p { color: var(--muted-2); }

.chips { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,260px),1fr)); gap: 2px; }
.chip { display: flex; flex-direction: column; gap: 9px; min-height: 152px; padding: clamp(18px,2.2vw,26px); transition: background .2s ease; }
.t-night .chip { background: var(--night); outline: 1px solid var(--night-hair); color: var(--night-ink); }
.t-night .chip:hover { background: #111a26; color: var(--night-ink); }
.t-day .chip { background: var(--ink); outline: 1px solid #3a3734; color: var(--paper); }
.t-day .chip:hover { background: #2b2825; color: var(--paper); }
.chip__d { font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.t-night .chip__d { color: var(--green-m); }
.t-day .chip__d { color: var(--green-l); }
.chip__n { font-size: clamp(17px,1.8vw,22px); font-weight: 700; line-height: 1.16; letter-spacing: -.015em; color: #fff; }
.chip__t { font-size: 13px; line-height: 1.45; }
.t-night .chip__t { color: var(--night-muted); }
.t-day .chip__t { color: #b5b0aa; }
.chip__go { margin-top: auto; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--green-l); }

.nearby-sect { padding: var(--pad) 24px; }
.t-night .nearby-sect { background: var(--night-2); border-top: 2px solid var(--night-rule); }
.t-day .nearby-sect { background: var(--ink); color: var(--paper); border-top: 2px solid var(--rule); }
.nearby-head { display: grid; grid-template-columns: minmax(0,1.4fr) minmax(0,1fr); gap: clamp(14px,3vw,48px); align-items: end; padding-bottom: clamp(16px,2vw,26px); margin-bottom: clamp(18px,2.5vw,30px); border-bottom: 2px solid #4a4a48; }
.nearby-head h2 { font-size: clamp(26px,4.4vw,60px); line-height: .96; font-weight: 800; letter-spacing: -.035em; }
.t-night .nearby-head h2 { color: #fff; }
.nearby-head p { font-size: clamp(14px,1.4vw,17px); line-height: 1.5; color: #c9c5bf; max-width: 34ch; }
@media (max-width: 900px) { .nearby-head { grid-template-columns: minmax(0,1fr); } }

/* ---------------------------------------------------------------- gallery */

.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(46%,240px),1fr)); gap: 2px; }
.shot { position: relative; appearance: none; border: 0; padding: 0; margin: 0; cursor: pointer; overflow: hidden; aspect-ratio: 4/3; background: var(--hair); }
.t-night .shot { background: var(--night-2); }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.8,.2,1); }
.shot:hover img { transform: scale(1.06); }
.shot:hover { outline: 2px solid var(--green-m); outline-offset: -2px; }

.lb { position: fixed; inset: 0; z-index: 90; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 16px; padding: 20px; background: rgba(6,8,12,.96); }
.lb[open], .lb.is-on { display: flex; }
.lb img { max-width: min(1200px,94vw); max-height: 76vh; object-fit: contain; border: 2px solid var(--green-m); }
.lb__cap { font-size: 13px; color: #d5d0c9; text-align: center; max-width: 60ch; }
.lb__nav { display: flex; gap: 10px; }
.lb__btn { font-family: inherit; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; padding: 12px 18px; min-height: 44px; cursor: pointer; background: none; border: 2px solid #5b6572; color: var(--night-ink); }
.lb__btn:hover { border-color: #fff; }
.lb__btn--go { background: var(--green-m); border-color: var(--green-m); color: var(--night); }

/* ---------------------------------------------------------------- reviews */

.revs { padding: var(--pad) 24px; }
.t-night .revs { background: var(--night-2); border-top: 2px solid var(--night-rule); }
.t-day .revs { background: var(--paper-2); border-top: 2px solid var(--rule); }
.revs h2 { font-size: clamp(24px,3.4vw,46px); font-weight: 800; padding-bottom: 14px; margin-bottom: clamp(22px,3vw,38px); }
.t-night .revs h2 { color: #fff; border-bottom: 2px solid var(--night-rule); }
.t-day .revs h2 { border-bottom: 2px solid var(--rule); }
.revs__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,300px),1fr)); gap: clamp(18px,2.5vw,34px); }
.rev { border-top: 2px solid var(--green-m); padding-top: 16px; }
.t-day .rev { border-top-color: var(--green); }
.rev blockquote { font-size: clamp(14px,1.4vw,17px); line-height: 1.55; margin-bottom: 12px; }
.t-night .rev blockquote { color: #d4dbe3; }
.t-day .rev blockquote { color: #3a3836; }
.rev figcaption { font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.t-night .rev figcaption { color: var(--night-muted-2); }
.t-day .rev figcaption { color: var(--muted-2); }

/* -------------------------------------------------------------------- faq */

.faqs { padding: var(--pad) 24px; }
.faqs__inner { max-width: 900px; margin: 0 auto; }
.faqs h2 { font-size: clamp(24px,3.4vw,46px); font-weight: 800; padding-bottom: 14px; margin-bottom: clamp(18px,2.5vw,28px); }
.t-night .faqs h2 { color: #fff; border-bottom: 2px solid var(--night-rule); }
.t-day .faqs h2 { border-bottom: 2px solid var(--rule); }
.faq { border-bottom: 1px solid var(--hair); }
.t-night .faq { border-bottom-color: var(--night-hair); }
.faq summary { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; padding: 20px 0; cursor: pointer; font-size: clamp(15px,1.6vw,20px); font-weight: 600; line-height: 1.3; list-style: none; min-height: 44px; }
.faq summary::-webkit-details-marker { display: none; }
.t-night .faq summary { color: #fff; }
.faq summary:hover { color: var(--green-m); }
.faq__sign { flex: 0 0 auto; font-size: 22px; line-height: 1; color: var(--green-m); }
.faq__sign::before { content: "+"; }
.faq[open] .faq__sign::before { content: "−"; }
.faq__a { padding-bottom: 22px; }
.faq__a p { font-size: clamp(14px,1.4vw,17px); line-height: 1.62; max-width: 64ch; }
.t-night .faq__a p { color: #b9c2cd; }
.t-day .faq__a p { color: var(--muted); }
.faq__a img { max-width: 520px; margin-top: 18px; border: 2px solid var(--rule); }

/* ---------------------------------------------------------------- closing */

.close-band { padding: clamp(40px,7vw,100px) 24px; }
.t-night .close-band { background: var(--green-m); color: var(--night); }
.t-day .close-band { background: var(--green); color: #fff; }
.close-row { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 26px; }
.close-row h2 { font-size: clamp(30px,5.4vw,74px); line-height: .94; font-weight: 800; letter-spacing: -.035em; max-width: 19ch; }
.close-kicker { margin-bottom: 12px; }
.t-night .close-kicker { color: #0a3d21; }
.t-day .close-kicker { color: #cfeadb; }
.btn--dark { background: var(--ink); color: #fff; padding: 20px 28px; font-size: 14px; }
.btn--dark:hover { background: #000; color: #fff; }
.t-night .btn--dark { background: var(--night); }

/* ----------------------------------------------------------------- footer */

.foot { padding: clamp(24px,3vw,44px) 24px; }
.foot--day { background: var(--paper); border-top: 2px solid var(--rule); }
.foot--night { background: var(--ink); }
.foot__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; }
.foot__logo img { height: 30px; width: auto; }
.foot__copy { font-size: 12px; }
.foot--day .foot__copy { color: var(--muted-2); }
.foot--night .foot__copy { color: #9a9691; }
.foot a { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.foot--night a { color: var(--green-l); }

/* ---------------------------------------------------------------- privacy */

.legal { max-width: 820px; margin: 0 auto; padding: clamp(32px,6vw,80px) 24px clamp(40px,6vw,96px); }
.legal h1 { font-size: clamp(34px,6vw,66px); line-height: .96; font-weight: 800; letter-spacing: -.035em; border-bottom: 2px solid var(--rule); padding-bottom: clamp(16px,2vw,26px); margin-bottom: clamp(20px,3vw,34px); }
.legal h2 { font-size: clamp(19px,2.2vw,27px); font-weight: 800; border-top: 2px solid var(--rule); padding-top: 18px; margin: clamp(34px,4vw,54px) 0 14px; }
.legal p { font-size: 16px; line-height: 1.65; color: #3a3836; margin-bottom: 16px; }
.legal p.item { padding-left: 20px; border-left: 2px solid #c9c5bf; margin-bottom: 10px; }

/* --------------------------------------------------------------- motion */

@keyframes drift { from { transform: scale(1.04); } to { transform: scale(1.12); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

@media print {
  .bar, .fx, .lb, .hero__ctas, .book { display: none !important; }
  body { background: #fff; color: #000; }
}
