/* =====================================================================
   Delicia de Mi Tierra — home prototype
   Palette: espresso ink · warm bone · terracotta · agave · gold
   Type: Fraunces (display) + Inter (ui/body)
   ===================================================================== */

:root {
  --ink:        #1b140f;
  --ink-2:      #241a13;
  --ink-3:      #2f231a;
  --bone:       #f4ead9;
  --bone-2:     #ece0cb;
  --clay:       #bd6a3e;
  --clay-deep:  #9a4f2b;
  --agave:      #6f775a;
  --agave-deep: #4f553f;
  --gold:       #c99a58;
  --gold-soft:  #e0bd84;

  --on-dark:        #f4ead9;
  --on-dark-muted:  rgba(244, 234, 217, 0.62);
  --on-dark-faint:  rgba(244, 234, 217, 0.16);
  --on-light:       #251a12;
  --on-light-muted: #6d5b48;
  --on-light-faint: rgba(37, 26, 18, 0.14);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-ui: "Inter", ui-sans-serif, system-ui, sans-serif;

  --header-h: 5rem;
  --pad-x: clamp(1.25rem, 5vw, 6rem);
  --maxw: 84rem;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-h);
  background: var(--ink);
  color: var(--on-light);
  font-family: var(--font-ui);
}

body {
  margin: 0;
  min-width: 20rem;
  background: var(--bone);
  color: var(--on-light);
  font-size: clamp(1rem, 0.6vw + 0.85rem, 1.0625rem);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

.skip-link {
  position: fixed; top: 0; left: 0; z-index: 1000;
  padding: 0.75rem 1.1rem; transform: translateY(-130%);
  background: var(--ink); color: var(--bone); border-radius: 0 0 6px 0;
  transition: transform 0.2s var(--ease-out);
}
.skip-link:focus { transform: translateY(0); }

/* ---------- Type helpers ---------- */
.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--clay);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.section-lead {
  max-width: 34ch;
  color: var(--on-light-muted);
  font-size: clamp(1rem, 1.1vw, 1.15rem);
}

/* ---------- Buttons ---------- */
.btn {
  --bg: transparent; --fg: currentColor; --bd: currentColor;
  display: inline-flex; align-items: center; gap: 0.55rem;
  min-height: 3rem; padding: 0 1.5rem;
  border: 1px solid var(--bd); border-radius: 999px;
  background: var(--bg); color: var(--fg);
  font-family: var(--font-ui); font-size: 0.86rem; font-weight: 500;
  letter-spacing: 0.02em; white-space: nowrap;
  transition: background-color 0.35s var(--ease-out), color 0.35s var(--ease-out),
              border-color 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); }
.btn--solid  { --bg: var(--clay); --fg: #fff; --bd: var(--clay); }
.btn--solid:hover  { --bg: var(--clay-deep); --bd: var(--clay-deep); }
.btn--outline { --bg: transparent; --fg: var(--bone); --bd: rgba(244,234,217,0.4); }
.btn--outline:hover { --bg: var(--bone); --fg: var(--ink); --bd: var(--bone); }
.btn--ghost { --bd: var(--on-dark-faint); --fg: var(--bone); padding: 0 1.15rem; min-height: 2.6rem; }
.btn--ghost:hover { --bg: rgba(244,234,217,0.08); }
.btn--text { border-color: transparent; padding: 0 0.6rem; --fg: var(--bone); }
.btn--text:hover { color: var(--gold-soft); }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; inset: 0 0 auto; height: 2px; z-index: 60; pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--clay), var(--gold));
  transform: scaleX(0); transform-origin: left center;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 0 var(--pad-x);
  color: var(--bone);
  transition: transform 0.4s var(--ease-out), background-color 0.4s var(--ease-out),
              backdrop-filter 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-header.is-solid {
  background: rgba(20, 15, 11, 0.72);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom-color: var(--on-dark-faint);
}
.site-header.is-hidden { transform: translateY(-100%) !important; }

.brand { display: inline-flex; align-items: center; gap: 0.6rem; color: inherit; }
.brand__mark { color: var(--gold); display: grid; place-items: center; }
.brand__name {
  font-family: var(--font-display); font-size: 1.12rem; line-height: 0.95;
  letter-spacing: 0.01em; display: flex; flex-direction: column;
}
.brand__name > span {
  font-size: 0.62em; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--on-dark-muted); font-family: var(--font-ui); font-weight: 500;
  margin-top: 0.12em;
}
.brand__name--lg { font-size: 2rem; }
.brand__name--lg > span { font-size: 0.42em; }

.site-nav { display: flex; gap: 1.75rem; }
.site-nav a {
  font-size: 0.85rem; font-weight: 400; letter-spacing: 0.04em;
  color: var(--on-dark-muted); position: relative; padding: 0.25rem 0;
  transition: color 0.3s var(--ease-out);
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width 0.35s var(--ease-out);
}
.site-nav a:hover { color: var(--bone); }
.site-nav a:hover::after { width: 100%; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative; min-height: 100svh;
  display: grid; align-items: end;
  padding: calc(var(--header-h) + 4vh) var(--pad-x) clamp(3rem, 7vh, 6rem);
  background: var(--ink); color: var(--bone); overflow: hidden;
  isolation: isolate;
}
.hero__media, .hero__canvas {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0;
}
.hero__media { background-size: cover; background-position: 58% 42%; }
.hero__canvas { opacity: 0; transition: opacity 0.8s var(--ease-out); }
.hero__canvas.is-ready { opacity: 1; }

.hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(78deg, rgba(15,10,7,0.86) 0%, rgba(15,10,7,0.5) 38%, rgba(15,10,7,0.05) 66%),
    linear-gradient(0deg, rgba(15,10,7,0.78) 0%, rgba(15,10,7,0) 42%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__inner { position: relative; z-index: 3; max-width: 60rem; }
.hero__eyebrow { color: var(--gold-soft); margin-bottom: 1.4rem; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: clamp(2.85rem, 8.4vw, 7.4rem);
  line-height: 0.96; letter-spacing: -0.025em;
  max-width: 16ch; margin: 0 0 1.6rem;
  text-wrap: balance;
}
.hero__title .char { display: inline-block; will-change: transform; }
.hero__lead {
  max-width: 44ch; color: var(--on-dark-muted);
  font-size: clamp(1.02rem, 1.3vw, 1.22rem); line-height: 1.6;
  margin-bottom: 2.4rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }

.hero__scroll {
  position: absolute; right: var(--pad-x); bottom: clamp(3rem, 7vh, 6rem); z-index: 3;
  display: inline-flex; flex-direction: column; align-items: center; gap: 0.75rem;
  color: var(--on-dark-muted); font-size: 0.66rem; letter-spacing: 0.24em;
  text-transform: uppercase; writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px; height: 3.5rem; background: var(--on-dark-faint); position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ""; position: absolute; inset: 0; background: var(--gold);
  transform: translateY(-100%); animation: scrollPulse 2.4s var(--ease-io) infinite;
}
@keyframes scrollPulse {
  0% { transform: translateY(-100%); } 45% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* =====================================================================
   INTRO / POSITIONING  (light)
   ===================================================================== */
.intro {
  background: var(--bone); color: var(--on-light);
  padding: clamp(5rem, 13vh, 11rem) var(--pad-x);
  display: grid; gap: clamp(2.5rem, 5vw, 4.5rem);
  grid-template-columns: 1fr;
  max-width: var(--maxw); margin-inline: auto;
}
.intro__statement {
  font-family: var(--font-display); font-weight: 380;
  font-size: clamp(2rem, 5.4vw, 4.6rem); line-height: 1.04; letter-spacing: -0.02em;
  max-width: 20ch;
}
.intro__statement [data-line] { display: block; }
.intro__meta {
  display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 60rem;
}
.intro__meta > p { font-size: clamp(1.05rem, 1.4vw, 1.3rem); color: var(--on-light-muted); max-width: 46ch; }
.intro__points { display: grid; gap: 0.9rem; }
.intro__points li {
  display: flex; gap: 0.9rem; align-items: baseline;
  padding-top: 0.9rem; border-top: 1px solid var(--on-light-faint);
  font-size: 0.96rem; color: var(--on-light);
}
.intro__points span {
  font-family: var(--font-display); color: var(--clay); font-size: 0.85rem;
  letter-spacing: 0.05em; min-width: 1.6rem;
}

@media (min-width: 56rem) {
  .intro { grid-template-columns: 1.05fr 0.95fr; align-items: start; }
  .intro__meta { grid-template-columns: 1fr; }
}

/* =====================================================================
   EXPERIENCES  (dark cards)
   ===================================================================== */
.experiences {
  background: var(--ink); color: var(--on-dark);
  padding: clamp(5rem, 12vh, 9rem) var(--pad-x) clamp(5rem, 12vh, 9rem);
}
.section-head { max-width: var(--maxw); margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
.section-head .eyebrow { color: var(--gold); }
.section-head .section-title { color: var(--bone); margin: 0.8rem 0 1rem; }
.section-head .section-lead { color: var(--on-dark-muted); }
.section-head--center { text-align: center; }
.section-head--center .section-lead { margin-inline: auto; }

.cards {
  max-width: var(--maxw); margin-inline: auto;
  display: grid; gap: clamp(0.9rem, 1.6vw, 1.4rem);
  grid-template-columns: repeat(2, 1fr);
}
.card {
  position: relative; overflow: hidden; border-radius: 14px;
  background: var(--ink-2); min-height: 22rem;
  display: flex; align-items: flex-end;
  border: 1px solid var(--on-dark-faint);
}
.card__media { position: absolute; inset: 0; z-index: 0; }
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease-out), filter 0.9s var(--ease-out);
  filter: saturate(1.02) brightness(0.82);
}
.card::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(0deg, rgba(15,10,7,0.92) 2%, rgba(15,10,7,0.35) 42%, rgba(15,10,7,0.05) 80%);
}
.card__body { position: relative; z-index: 2; padding: clamp(1.3rem, 2.2vw, 2rem); }
.card__body h3 {
  font-family: var(--font-display); font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  color: var(--bone); letter-spacing: -0.01em; margin-bottom: 0.4rem;
}
.card__body p {
  color: var(--on-dark-muted); font-size: 0.92rem; max-width: 34ch;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease-out), opacity 0.4s var(--ease-out), margin 0.5s var(--ease-out);
}
.card__price {
  display: inline-block; margin-top: 0.9rem;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-soft); border: 1px solid var(--on-dark-faint);
  padding: 0.32rem 0.7rem; border-radius: 999px;
}
.card:hover .card__media img { transform: scale(1.06); filter: saturate(1.08) brightness(0.92); }
.card:hover .card__body p,
.card:focus-within .card__body p { max-height: 7rem; opacity: 1; margin-top: 0.2rem; }
/* touch devices have no hover — always show the card copy */
@media (hover: none) {
  .card__body p { max-height: 8rem; opacity: 1; margin-top: 0.2rem; }
}

.card--tall { grid-row: span 2; }
@media (min-width: 60rem) {
  .cards { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 17rem; }
  .card { min-height: 0; }
  .card--tall { grid-column: span 1; grid-row: span 2; }
  .card--wide { grid-column: span 2; }
}

/* =====================================================================
   SIGNATURE (horizontal drag gallery)
   ===================================================================== */
.signature { background: var(--ink-2); color: var(--on-dark); overflow: hidden; }
.signature__pin {
  display: flex; align-items: center;
  padding-block: clamp(4rem, 9vh, 7rem); padding-inline: var(--pad-x);
  overflow-x: auto; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
}
.signature__track {
  display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.8rem);
  padding-right: var(--pad-x);
}
.signature__intro { flex: 0 0 auto; width: min(80vw, 22rem); padding-right: clamp(0.5rem, 2vw, 2rem); }
.signature__intro .eyebrow { color: var(--gold); }
.signature__intro .section-title { color: var(--bone); margin: 0.8rem 0 1rem; }
.signature__intro .section-lead { color: var(--on-dark-muted); }

.plate {
  flex: 0 0 auto; width: clamp(15rem, 26vw, 21rem); margin: 0;
  position: relative; border-radius: 12px; overflow: hidden;
  background: var(--ink-3); border: 1px solid var(--on-dark-faint);
}
.plate img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  filter: saturate(1.04) brightness(0.92);
  transition: transform 0.9s var(--ease-out);
}
.plate:hover img { transform: scale(1.05); }
.plate figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1.6rem 1.2rem 1.1rem;
  background: linear-gradient(0deg, rgba(15,10,7,0.9), rgba(15,10,7,0));
  display: flex; flex-direction: column; gap: 0.15rem;
}
.plate figcaption b {
  font-family: var(--font-display); font-weight: 400; font-size: 1.18rem; color: var(--bone);
}
.plate figcaption span { font-size: 0.78rem; color: var(--on-dark-muted); }

.plate { scroll-snap-align: start; }
/* desktop + motion: section is pinned and the track is scrubbed horizontally by JS */
@media (min-width: 53rem) {
  html.anim .signature__pin { height: 100vh; padding-block: 0; overflow: hidden; scroll-snap-type: none; }
}

/* =====================================================================
   TASTINGS (dark refined)
   ===================================================================== */
.tastings {
  background:
    radial-gradient(120% 80% at 80% -10%, rgba(79,85,63,0.4), transparent 60%),
    var(--ink);
  color: var(--on-dark);
  padding: clamp(5rem, 12vh, 9rem) var(--pad-x);
}
.tastings__grid {
  max-width: var(--maxw); margin-inline: auto;
  display: grid; gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: 1fr;
}
.taste {
  padding: clamp(1.8rem, 3vw, 2.6rem); border-radius: 14px;
  border: 1px solid var(--on-dark-faint);
  background: linear-gradient(180deg, rgba(244,234,217,0.04), transparent);
  transition: border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out), background-color 0.4s;
}
.taste:hover { transform: translateY(-4px); border-color: rgba(201,154,88,0.5); }
.taste__no {
  font-family: var(--font-display); font-size: 0.9rem; color: var(--gold);
  letter-spacing: 0.1em; display: inline-block; margin-bottom: 1.4rem;
  border: 1px solid var(--on-dark-faint); width: 2.2rem; height: 2.2rem;
  border-radius: 50%; display: grid; place-items: center;
}
.taste h3 {
  font-family: var(--font-display); font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  color: var(--bone); margin-bottom: 0.7rem;
}
.taste p { color: var(--on-dark-muted); font-size: 0.96rem; max-width: 40ch; }
@media (min-width: 52rem) { .tastings__grid { grid-template-columns: repeat(3, 1fr); } }

/* =====================================================================
   ABOUT (light)
   ===================================================================== */
.about {
  background: var(--bone-2); color: var(--on-light);
  padding: clamp(5rem, 12vh, 9rem) var(--pad-x);
  display: grid; gap: clamp(2.5rem, 5vw, 5rem);
  grid-template-columns: 1fr; align-items: center;
  max-width: var(--maxw); margin-inline: auto;
}
.about__media { position: relative; border-radius: 16px; overflow: hidden; max-width: 30rem; }
.about__media img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.about__badge {
  position: absolute; left: 1rem; bottom: 1rem;
  background: rgba(20,15,11,0.62); color: var(--bone);
  backdrop-filter: blur(6px); font-size: 0.7rem; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 0.4rem 0.8rem; border-radius: 999px;
}
.about__body .eyebrow { color: var(--clay); }
.about__title {
  font-family: var(--font-display); font-weight: 380;
  font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.0; letter-spacing: -0.02em;
  margin: 0.9rem 0 1.4rem;
}
.about__body p { color: var(--on-light-muted); font-size: clamp(1.02rem, 1.3vw, 1.2rem); max-width: 46ch; }
.about__sign {
  font-family: var(--font-display); font-style: italic; color: var(--clay) !important;
  margin-top: 1.6rem !important; font-size: 1.1rem !important;
}
@media (min-width: 56rem) {
  .about { grid-template-columns: 0.85fr 1.15fr; }
}

/* =====================================================================
   RESERVE CTA
   ===================================================================== */
.reserve {
  position: relative; isolation: isolate; overflow: hidden;
  color: var(--on-dark);
  padding: clamp(5rem, 14vh, 10rem) var(--pad-x);
}
.reserve__bg {
  position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center;
  transform: scale(1.05);
}
.reserve__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(15,10,7,0.82), rgba(15,10,7,0.72)),
              radial-gradient(80% 60% at 50% 120%, rgba(189,106,62,0.4), transparent 60%);
}
.reserve__inner { position: relative; z-index: 2; max-width: 58rem; margin-inline: auto; text-align: center; }
.reserve__inner .eyebrow { color: var(--gold-soft); }
.reserve__title {
  font-family: var(--font-display); font-weight: 380;
  font-size: clamp(2.6rem, 7vw, 5.6rem); line-height: 0.98; letter-spacing: -0.025em;
  color: var(--bone); margin: 0.9rem 0 1.2rem;
}
.reserve__title .char { display: inline-block; }
.reserve__lead { color: var(--on-dark-muted); max-width: 40ch; margin: 0 auto 2.4rem; font-size: 1.1rem; }

.reserve__form {
  display: grid; gap: 0.8rem; text-align: left;
  grid-template-columns: 1fr 1fr; max-width: 44rem; margin: 0 auto;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field--grow { grid-column: 1 / -1; }
.field label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-muted); }
.field input {
  font: inherit; color: var(--bone); background: rgba(244,234,217,0.06);
  border: 1px solid var(--on-dark-faint); border-radius: 10px;
  padding: 0.85rem 1rem; transition: border-color 0.3s var(--ease-out), background-color 0.3s;
}
.field input::placeholder { color: rgba(244,234,217,0.34); }
.field input:focus { outline: none; border-color: var(--gold); background: rgba(244,234,217,0.1); }
.reserve__form .btn { grid-column: 1 / -1; justify-content: center; margin-top: 0.4rem; }
.reserve__note { margin-top: 1.6rem; font-size: 0.88rem; color: var(--on-dark-muted); }
.reserve__note a { color: var(--gold-soft); border-bottom: 1px solid currentColor; }
@media (max-width: 40rem) { .reserve__form { grid-template-columns: 1fr; } }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: #140e0a; color: var(--on-dark); padding: clamp(3.5rem, 8vh, 6rem) var(--pad-x) 2.5rem; }
.site-footer__top {
  max-width: var(--maxw); margin-inline: auto;
  display: grid; gap: 3rem; grid-template-columns: 1fr;
  padding-bottom: 3rem; border-bottom: 1px solid var(--on-dark-faint);
}
.site-footer__brand p { color: var(--on-dark-muted); margin-top: 1rem; max-width: 30ch; }
.site-footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.site-footer__cols h4 {
  font-family: var(--font-ui); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.site-footer__cols a {
  display: block; color: var(--on-dark-muted); font-size: 0.92rem; padding: 0.32rem 0;
  transition: color 0.3s var(--ease-out);
}
.site-footer__cols a:hover { color: var(--bone); }
.site-footer__base {
  max-width: var(--maxw); margin: 2rem auto 0;
  display: flex; flex-wrap: wrap; gap: 0.6rem 2rem; justify-content: space-between;
  font-size: 0.78rem; color: var(--on-dark-muted);
}
@media (min-width: 56rem) {
  .site-footer__top { grid-template-columns: 1.2fr 1.8fr; gap: 4rem; }
}

/* ---------- Floating WhatsApp ---------- */
.wa-fab {
  position: fixed; right: clamp(1rem, 2.5vw, 1.8rem); bottom: clamp(1rem, 2.5vw, 1.8rem);
  z-index: 70; width: 3.4rem; height: 3.4rem; border-radius: 50%;
  display: grid; place-items: center; color: #fff; background: #1f9d5a;
  box-shadow: 0 10px 30px rgba(31,157,90,0.4), 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.wa-fab:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 16px 38px rgba(31,157,90,0.5); }

/* =====================================================================
   MOTION REVEAL STATES — only pre-hide when motion is allowed
   ===================================================================== */
.site-header { transform: translateY(0); opacity: 1; }
html.anim .site-header { transform: translateY(-100%); opacity: 0; }
html.anim .site-header.is-in { transform: translateY(0); opacity: 1; }

html.anim [data-reveal] { opacity: 0; transform: translateY(30px); will-change: transform, opacity; }
html.anim [data-hero-reveal] { opacity: 0; transform: translateY(22px); }
html.anim .hero__title { opacity: 0; }
html.anim .reserve__title { opacity: 0; }
html.anim .intro__statement [data-line] { opacity: 0; transform: translateY(0.5em); }
html.anim .hero__scroll { opacity: 0; }

/* =====================================================================
   REDUCED MOTION
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  * , *::before, *::after {
    animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important; scroll-behavior: auto !important;
  }
  .hero__scroll-line::after { display: none; }
}

/* small screens: nav trims */
@media (max-width: 46rem) {
  .site-nav { display: none; }
  .site-header { gap: 1rem; }
}
@media (max-width: 30rem) {
  .hero__scroll { display: none; }
}
