/* ============================================================
   Escape Day Spa — "Ocean Escape"
   Fraunces (display) + Karla (body)
   Mist / deep ocean / tide blue / foam — soothing, light, coastal
   ============================================================ */

:root {
  --mist: #f2f6f7;
  --mist-deep: #e3edf0;
  --ocean: #25485a;
  --ocean-deep: #18323f;
  --tide: #4e87a0;
  --tide-soft: #7fa9bd;
  --foam: #bfd6dd;
  --seafoam: #a3c4c9;
  --ink: #22363f;
  --ink-soft: #547080;

  --font-display: "Fraunces", serif;
  --font-body: "Karla", sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-arch: 999px 999px 0 0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--mist);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grain overlay over everything, very subtle */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

::selection { background: var(--tide); color: var(--mist); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.08; color: inherit; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); letter-spacing: -0.01em; }

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

.link { border-bottom: 1px solid var(--tide); transition: color .25s; }
.link:hover { color: var(--tide); }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--tide);
  margin-bottom: 1.1rem;
}
.eyebrow--light { color: var(--foam); }

/* ============ Buttons ============ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .25s, color .25s, border-color .25s;
  cursor: pointer;
  white-space: nowrap;
}
.btn--lg { padding: 1.1rem 2.3rem; font-size: 0.98rem; }
.btn--small { padding: 0.6rem 1.3rem; font-size: 0.82rem; }
.btn--solid { background: var(--tide); color: #f6fbfc; }
.btn--solid:hover { background: var(--ocean); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(24, 50, 63, 0.55); }
.btn--outline { border-color: currentColor; }
.btn--outline:hover { background: var(--ocean); border-color: var(--ocean); color: var(--mist); transform: translateY(-2px); }

/* ============ Nav ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem clamp(1.2rem, 4vw, 3rem);
  transition: background .4s, box-shadow .4s, padding .4s;
}
.nav.is-scrolled {
  background: rgba(242, 246, 247, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(37, 72, 90, 0.1);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.nav__brand { display: flex; align-items: center; gap: 0.65rem; }
.nav__mark { width: 26px; height: 26px; fill: var(--ocean); }
.nav__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ocean);
  letter-spacing: 0.01em;
}
.nav__name em { font-style: italic; font-weight: 300; }
.nav__links { display: flex; gap: 2.2rem; }
.nav__links a {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink);
  position: relative;
  padding: 0.25rem 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--tide);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav__toggle span { display: block; width: 26px; height: 2px; background: var(--ocean); transition: transform .3s, opacity .3s; }
.nav__toggle.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__toggle.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu[hidden] { display: none; }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--mist);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu a:not(.btn) {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--ocean);
}

/* ============ Hero (home) ============ */
.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  align-items: center;
  gap: 2rem;
  padding: 7.5rem clamp(1.2rem, 5vw, 4.5rem) 4rem;
  background:
    radial-gradient(120% 90% at 85% 10%, rgba(163, 196, 201, 0.4), transparent 60%),
    radial-gradient(90% 70% at 10% 95%, rgba(127, 169, 189, 0.25), transparent 55%),
    var(--mist);
  overflow: hidden;
}

.hero__atmosphere { position: absolute; inset: 0; pointer-events: none; }
.steam {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  animation: drift 16s ease-in-out infinite alternate;
}
.steam--1 { width: 46vw; height: 38vh; left: -8vw; top: 8vh; background: rgba(163, 196, 201, 0.55); }
.steam--2 { width: 36vw; height: 30vh; right: -4vw; top: 38vh; background: rgba(127, 169, 189, 0.32); animation-delay: -5s; animation-duration: 20s; }
.steam--3 { width: 30vw; height: 28vh; left: 30vw; bottom: -8vh; background: rgba(191, 214, 221, 0.45); animation-delay: -10s; animation-duration: 24s; }
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(5vw, -4vh, 0) scale(1.15); }
}

.hero__inner { position: relative; z-index: 2; max-width: 640px; }
.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.6rem;
}
.hero__title {
  font-size: clamp(3rem, 8.5vw, 6.2rem);
  font-weight: 300;
  color: var(--ocean);
  letter-spacing: -0.02em;
  margin-bottom: 1.6rem;
}
.hero__line { display: block; }
.hero__line:last-child { font-style: italic; font-weight: 400; }
.hero__dot { color: var(--tide); }
.hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 33em;
  margin-bottom: 2.4rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero__note { margin-top: 1.4rem; font-size: 0.92rem; color: var(--ink-soft); }
.hero__note a { border-bottom: 1px solid var(--tide); }
.hero__note a:hover { color: var(--tide); }

.hero__arch {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: min(34vw, 380px);
  aspect-ratio: 5 / 7.2;
  border-radius: var(--radius-arch);
  background: linear-gradient(170deg, var(--ocean) 0%, var(--ocean-deep) 70%);
  box-shadow: 0 40px 80px -40px rgba(24, 50, 63, 0.6);
  overflow: hidden;
}
.hero__arch::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(242, 246, 247, 0.45);
  border-radius: var(--radius-arch);
  z-index: 2;
}
.hero__arch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(37, 72, 90, 0) 55%, rgba(24, 50, 63, 0.4));
  z-index: 1;
}
.hero__arch img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroken 18s ease-in-out infinite alternate;
}
@keyframes heroken {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.8rem;
  transform: translateX(-50%);
  width: 1px;
  height: 56px;
  background: rgba(34, 54, 63, 0.18);
  overflow: hidden;
}
.hero__scroll span {
  position: absolute;
  top: -40%;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--tide);
  animation: scrollhint 2.2s ease-in-out infinite;
}
@keyframes scrollhint {
  from { top: -40%; }
  to   { top: 110%; }
}

/* Load-in reveal */
.reveal-load {
  opacity: 0;
  transform: translateY(26px);
  animation: rise 1s var(--ease-out) forwards;
  animation-delay: calc(var(--d, 0) * 140ms + 120ms);
}
@keyframes rise {
  to { opacity: 1; transform: none; }
}

/* ============ Page hero (inner pages) ============ */
.page-hero {
  padding: 9.5rem clamp(1.2rem, 5vw, 4.5rem) 3rem;
  text-align: center;
  background:
    radial-gradient(100% 80% at 50% 0%, rgba(163, 196, 201, 0.35), transparent 65%),
    var(--mist);
}
.page-hero__title {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 300;
  color: var(--ocean);
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.page-hero__sub {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 38em;
  margin: 0 auto;
}

/* ============ Trust strip (marquee) ============ */
.strip {
  background: var(--ocean);
  color: var(--mist);
  overflow: hidden;
  padding: 1.05rem 0;
}
.strip__track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.strip__track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.strip__track i { color: var(--foam); font-style: normal; font-size: 0.8rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ Two doors (home) ============ */
.doors { padding: clamp(5rem, 10vw, 8rem) clamp(1.2rem, 5vw, 4.5rem); }
.doors__head { text-align: center; max-width: 640px; margin: 0 auto clamp(2.8rem, 6vw, 4.5rem); }
.doors__head h2 { color: var(--ocean); }
.doors__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2.5rem);
  max-width: 980px;
  margin: 0 auto;
}
.door {
  display: block;
  background: #fbfdfd;
  border: 1px solid rgba(37, 72, 90, 0.12);
  border-radius: 26px;
  padding: 1.1rem 1.1rem 1.8rem;
  text-align: center;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .3s;
}
.door:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 70px -45px rgba(24, 50, 63, 0.55);
  border-color: rgba(78, 135, 160, 0.45);
}
.door__media {
  position: relative;
  border-radius: 200px 200px 14px 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3.4;
  margin-bottom: 1.5rem;
}
.door__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease-out);
}
.door:hover .door__media img { transform: scale(1.05); }
.door__badge {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  background: var(--tide);
  color: #f6fbfc;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}
.door__badge--muted { background: var(--ocean); }
.door h3 { font-size: 1.6rem; color: var(--ocean); margin-bottom: 0.55rem; }
.door p { font-size: 0.97rem; color: var(--ink-soft); max-width: 30em; margin: 0 auto 1.1rem; }
.door__link {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--tide);
}

/* ============ Services (massage page) ============ */
.services {
  background: linear-gradient(180deg, var(--ocean) 0%, var(--ocean-deep) 100%);
  color: var(--mist);
  padding: clamp(5rem, 10vw, 8.5rem) clamp(1.2rem, 5vw, 4.5rem) clamp(5rem, 9vw, 7.5rem);
  border-radius: 3rem 3rem 0 0;
}
.services__head { max-width: 720px; margin: 0 auto clamp(3rem, 6vw, 5rem); text-align: center; }
.services__head h2 { color: var(--mist); }
.services__intro { color: rgba(242, 246, 247, 0.72); margin-top: 1.2rem; font-size: 1.05rem; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
  max-width: 1240px;
  margin: 0 auto;
}
.card {
  position: relative;
  background: rgba(242, 246, 247, 0.05);
  border: 1px solid rgba(242, 246, 247, 0.16);
  border-radius: 170px 170px 18px 18px;
  padding: 4.4rem 1.7rem 2.1rem;
  text-align: center;
  transition: transform .5s var(--ease-out), background .4s, border-color .4s;
}
.card:hover {
  transform: translateY(-10px);
  background: rgba(242, 246, 247, 0.1);
  border-color: rgba(191, 214, 221, 0.55);
}
.card__num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--foam);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  margin-bottom: 1.2rem;
}
.card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.card h3 span { display: block; font-size: 1.02rem; font-style: italic; opacity: 0.8; margin-top: 0.2rem; }
.card__tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tide-soft);
  margin-bottom: 1.2rem;
}
.card ul { list-style: none; display: grid; gap: 0.5rem; }
.card li { font-size: 0.94rem; color: rgba(242, 246, 247, 0.78); }
.card li::before { content: "— "; color: var(--foam); }
.card__body { font-size: 0.96rem; color: rgba(242, 246, 247, 0.8); max-width: 40em; margin: 0 auto; }
.card--wide { grid-column: 1 / -1; border-radius: 999px 999px 18px 18px; padding-top: 3.2rem; overflow: hidden; }
.card--wide__bg {
  position: absolute;
  inset: 0;
  background: url("../img/waves.jpg") center 45% / cover no-repeat;
  opacity: 0.4;
}
.card--wide__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 50, 63, 0.6), rgba(24, 50, 63, 0.85));
}
.card--wide__content { position: relative; z-index: 1; }

.services__footnote {
  text-align: center;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(242, 246, 247, 0.75);
}
.services__footnote strong { color: var(--foam); font-weight: 500; }

/* Scroll reveal — staggered children */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 110ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ============ Referral banner (massage page) ============ */
.referral-banner {
  background: var(--mist-deep);
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.2rem, 5vw, 4.5rem);
}
.referral-banner__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.referral-banner__big {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(3.4rem, 9vw, 7rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ocean);
  text-transform: uppercase;
}
.referral-banner__copy { display: grid; gap: 1.2rem; }
.referral-banner__copy p { color: var(--ink-soft); font-size: 1.04rem; }
.referral-banner__copy strong { color: var(--ocean); }
.referral-banner__owner {
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--ink) !important;
  line-height: 1.7;
}
.referral-banner__alt { font-size: 0.95rem; }
.referral-banner__alt a { border-bottom: 1px solid var(--tide); }
.referral-banner__alt a:hover { color: var(--tide); }

/* ============ Lashes ============ */
.lashes {
  background: var(--ocean-deep);
  color: var(--mist);
  padding: clamp(5rem, 10vw, 8rem) clamp(1.2rem, 5vw, 4.5rem);
  border-radius: 3rem 3rem 0 0;
}
.lashes__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.lashes h2 { color: var(--mist); margin-bottom: 1.2rem; }
.lashes p { color: rgba(242, 246, 247, 0.78); font-size: 1.06rem; max-width: 36em; }
.lashes strong { color: var(--mist); }
.lashes__cta { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.lashes .btn--outline { color: var(--mist); }
.lashes .btn--outline:hover { background: var(--mist); border-color: var(--mist); color: var(--ocean); }
.lashes__perks { list-style: none; display: grid; gap: 0.55rem; margin-top: 2rem; }
.lashes__perks li { font-size: 0.95rem; color: rgba(242, 246, 247, 0.8); }
.lashes__perks li::before { content: "\2726\ \ "; color: var(--foam); }
.lashes__frame {
  border-radius: var(--radius-arch);
  overflow: hidden;
  aspect-ratio: 5 / 6.4;
  max-width: 360px;
  margin: 0 auto;
  border: 1px solid rgba(191, 214, 221, 0.5);
  padding: 12px;
  background: rgba(242, 246, 247, 0.04);
}
.lashes__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-arch);
  display: block;
}

/* ============ Visit ============ */
.visit { padding: clamp(5rem, 10vw, 8.5rem) clamp(1.2rem, 5vw, 4.5rem); }
.visit__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}
.visit__media {
  border-radius: var(--radius-arch);
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 32px 60px -38px rgba(24, 50, 63, 0.5);
}
.visit__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.visit__card {
  background: #fbfdfd;
  border: 1px solid rgba(37, 72, 90, 0.1);
  border-radius: 28px;
  padding: clamp(2.2rem, 5vw, 4rem);
  box-shadow: 0 30px 60px -45px rgba(24, 50, 63, 0.4);
}
.visit h2 { color: var(--ocean); margin-bottom: 1rem; }
.visit address {
  font-style: normal;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--ink);
  margin-bottom: 2rem;
  line-height: 1.4;
}
.visit__rows { display: grid; gap: 0; border-top: 1px solid rgba(37, 72, 90, 0.12); }
.visit__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1.05rem 0.2rem;
  border-bottom: 1px solid rgba(37, 72, 90, 0.12);
  font-size: 0.98rem;
  transition: padding-left .3s var(--ease-out), color .25s;
}
.visit__row:hover { padding-left: 0.8rem; color: var(--tide); }
.visit__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.visit__map {
  max-width: 1080px;
  margin: clamp(2rem, 5vw, 4rem) auto 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(37, 72, 90, 0.12);
  box-shadow: 0 30px 60px -45px rgba(24, 50, 63, 0.4);
  line-height: 0;
}
.visit__map iframe {
  width: 100%;
  height: clamp(320px, 40vw, 440px);
  border: 0;
  filter: grayscale(0.55) saturate(0.85);
  transition: filter .4s;
}
.visit__map:hover iframe { filter: none; }

/* ============ Footer ============ */
.footer {
  background: var(--ocean-deep);
  color: rgba(242, 246, 247, 0.75);
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.2rem, 5vw, 4.5rem) 2rem;
}
.footer__inner {
  max-width: 1140px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
}
.footer__mark { width: 30px; height: 30px; fill: var(--foam); margin-bottom: 1rem; }
.footer__name { font-family: var(--font-display); font-size: 1.5rem; color: var(--mist); margin-bottom: 0.4rem; }
.footer__tag { font-size: 0.95rem; max-width: 26em; }
.footer__cols { display: grid; grid-template-columns: 1fr 1.4fr; gap: 2rem; }
.footer__head {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--foam);
  margin-bottom: 1rem;
}
.footer__cols a { display: block; font-size: 0.94rem; padding: 0.28rem 0; transition: color .25s; }
.footer__cols a:hover { color: var(--mist); }
.footer__legal {
  max-width: 1140px;
  margin: 0 auto;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(242, 246, 247, 0.14);
  font-size: 0.84rem;
  color: rgba(242, 246, 247, 0.5);
}

/* ============ Sticky bar (mobile) ============ */
.bookbar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  gap: 0.7rem;
  padding: 0.8rem 1rem calc(0.8rem + env(safe-area-inset-bottom));
  background: rgba(242, 246, 247, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 -8px 30px -16px rgba(24, 50, 63, 0.45);
}
.bookbar .btn { flex: 1; text-align: center; padding: 0.85rem 0.6rem; font-size: 0.88rem; }
.bookbar .btn--outline { color: var(--ocean); }

/* ============ Responsive ============ */
@media (max-width: 940px) {
  .nav__links, .nav__actions { display: none; }
  .nav__toggle { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 6.5rem;
    gap: 3rem;
  }
  .hero__inner { margin: 0 auto; }
  .hero__cta { justify-content: center; }
  .hero__arch { width: min(64vw, 300px); }
  .hero__scroll { display: none; }

  .doors__grid { grid-template-columns: 1fr; max-width: 480px; }

  .referral-banner__inner { grid-template-columns: 1fr; text-align: center; }

  .lashes__inner { grid-template-columns: 1fr; text-align: center; }
  .lashes p { margin-left: auto; margin-right: auto; }
  .lashes__cta { justify-content: center; }
  .lashes__perks { justify-items: center; }

  .visit__inner { grid-template-columns: 1fr; }
  .visit__media { min-height: 0; aspect-ratio: 5 / 4; border-radius: 24px; }

  .footer__inner { grid-template-columns: 1fr; }

  .bookbar { display: flex; }
  .footer { padding-bottom: 7rem; }
}

@media (max-width: 520px) {
  .hero__cta .btn { width: 100%; text-align: center; }
  .lashes__cta .btn { width: 100%; text-align: center; }
  .card { border-radius: 130px 130px 16px 16px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-load, .reveal { opacity: 1; transform: none; animation: none; transition: none; }
  .steam, .strip__track, .hero__scroll span, .hero__arch img { animation: none; }
}
