/* Amazing Massage Spa — style.css
   "Quiet Luxury" — warm clay, terracotta, sage. Calm, expensive, unhurried. */

:root {
  --ink-950: #201a17;
  --clay-800: #4a372d;
  /* --terracotta-600 measures 3.83:1 on --sand-50 and 3.52:1 on --sand-100. That clears
     WCAG AA for LARGE text (3:1) — the big italic headings — but fails AA for normal-size
     text (4.5:1). --terracotta-700 (5.21:1 / 4.78:1) is therefore used for every small
     accent-coloured item: eyebrows, uppercase labels, the nav wordmark. */
  --terracotta-700: #9c5539;
  --terracotta-600: #b56a4a;
  --terracotta-400: #d99a78;
  --sage-500: #8a9a7e;
  --sand-100: #f3ede3;
  --sand-50: #faf7f1;
  --line: #e4d9c8;

  --grad-warm: linear-gradient(135deg, var(--terracotta-400), var(--terracotta-600));
  --grad-dark: linear-gradient(135deg, var(--clay-800), var(--ink-950));

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Work Sans", "Segoe UI", sans-serif;

  --sh-sm: 0 2px 14px rgba(32, 26, 23, .06);
  --sh-md: 0 12px 34px rgba(32, 26, 23, .10);
  --sh-lg: 0 28px 70px rgba(32, 26, 23, .18);

  --radius: 20px;
  --nav-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  /* Spas should feel unrushed to read: larger base size, generous leading */
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--clay-800);
  background: var(--sand-50);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; margin: 0; color: var(--ink-950); letter-spacing: -.01em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.section-inner { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.eyebrow { font-family: var(--font-body); font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--terracotta-700); }
.section-h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); line-height: 1.12; max-width: 20ch; text-wrap: balance; margin-top: .9rem; }
.section-h2 em { font-style: italic; color: var(--terracotta-600); }
.section-lead { color: var(--clay-800); font-size: 1.05rem; max-width: 56ch; margin-top: 1.1rem; opacity: .82; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 2px solid var(--terracotta-600); outline-offset: 3px; border-radius: 3px; }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s cubic-bezier(.2,.6,.2,1), transform .8s cubic-bezier(.2,.6,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.9rem; border-radius: 999px;
  font-family: var(--font-body); font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  border: none; cursor: pointer;
  transition: transform .3s cubic-bezier(.2,.6,.2,1), box-shadow .3s, background .3s, color .3s;
}
.btn-warm { background: var(--grad-warm); color: #fff; box-shadow: var(--sh-md); }
.btn-warm:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }
.btn-quiet { background: transparent; color: var(--ink-950); border: 1.5px solid var(--line); }
.btn-quiet:hover { border-color: var(--terracotta-700); color: var(--terracotta-700); transform: translateY(-2px); }
.btn-glass { background: rgba(255,255,255,.16); color: var(--ink-950); border: 1.5px solid rgba(255,255,255,.5); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.btn-glass:hover { background: rgba(255,255,255,.3); transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) { .btn:hover { transform: none; } }

/* ===== NAV ===== */
#nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h); display: flex; align-items: center; transition: background .4s, box-shadow .4s; }
#nav.at-top { background: transparent; }
#nav.scrolled { background: rgba(250, 247, 241, .82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: var(--sh-sm); }
.nav-inner { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.nav-logo { display: flex; flex-direction: column; line-height: 1.02; }
.nav-logo-main { font-family: var(--font-display); font-weight: 400; font-size: 1.32rem; color: var(--ink-950); }
.nav-logo-main em { font-style: italic; color: var(--terracotta-700); }
.nav-logo-sub { font-family: var(--font-body); font-size: .56rem; letter-spacing: .28em; text-transform: uppercase; color: var(--clay-800); opacity: .7; margin-top: 3px; }

.nav-links { display: none; list-style: none; margin: 0; padding: 0; gap: 2.2rem; }
.nav-links a { font-size: .9rem; font-weight: 500; color: var(--ink-950); position: relative; padding-bottom: 5px; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px; background: var(--terracotta-600); transition: right .35s cubic-bezier(.2,.6,.2,1); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-phone { display: none; align-items: center; gap: .5rem; font-size: .9rem; font-weight: 600; color: var(--ink-950); padding: .6rem 1.25rem; border-radius: 999px; border: 1.5px solid var(--line); transition: border-color .3s, color .3s; }
.nav-phone:hover { border-color: var(--terracotta-700); color: var(--terracotta-700); }
@media (min-width: 900px) { .nav-links, .nav-phone { display: flex; } }

.hbg { width: 42px; height: 42px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 0; }
@media (min-width: 900px) { .hbg { display: none; } }
.hbg span { width: 22px; height: 1.5px; background: var(--ink-950); transition: transform .3s, opacity .3s; }
.hbg.open span { background: var(--sand-50); }
.hbg.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hbg.open span:nth-child(2) { opacity: 0; }
.hbg.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mob-ov { position: fixed; inset: 0; background: var(--grad-dark); z-index: 99; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.4rem; transform: translateX(100%); transition: transform .45s cubic-bezier(.2,.6,.2,1); }
.mob-ov.open { transform: translateX(0); }
@media (prefers-reduced-motion: reduce) { .mob-ov { transition: none; } }
.mob-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1.7rem; text-align: center; }
.mob-links a { font-family: var(--font-display); font-size: 1.75rem; color: var(--sand-50); }
.mob-links a:hover { color: var(--terracotta-400); }
.mob-phone { color: var(--terracotta-400); font-weight: 600; font-size: 1.05rem; }
.mob-hours { color: rgba(250,247,241,.6); font-size: .85rem; letter-spacing: .04em; }

/* ===== HERO ===== */
#hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; background: var(--sand-100); }

/* Gradient-mesh field: soft drifting warm blobs. No stock photography — the business
   has no real interior photography available yet (see owner checklist). */
.mesh { position: absolute; inset: -12%; z-index: 0; filter: blur(70px); opacity: .9; }
.mesh-blob { position: absolute; border-radius: 50%; will-change: transform; }
.blob-1 { width: 46vw; height: 46vw; min-width: 340px; min-height: 340px; top: -6%; left: -4%; background: radial-gradient(circle at 35% 35%, rgba(217,154,120,.85), rgba(217,154,120,0) 70%); animation: drift-1 34s ease-in-out infinite alternate; }
.blob-2 { width: 40vw; height: 40vw; min-width: 300px; min-height: 300px; bottom: -10%; right: -6%; background: radial-gradient(circle at 60% 40%, rgba(181,106,74,.55), rgba(181,106,74,0) 70%); animation: drift-2 42s ease-in-out infinite alternate; }
.blob-3 { width: 34vw; height: 34vw; min-width: 260px; min-height: 260px; top: 32%; right: 18%; background: radial-gradient(circle at 50% 50%, rgba(138,154,126,.42), rgba(138,154,126,0) 70%); animation: drift-3 38s ease-in-out infinite alternate; }
.blob-4 { width: 28vw; height: 28vw; min-width: 220px; min-height: 220px; bottom: 8%; left: 14%; background: radial-gradient(circle at 45% 55%, rgba(244,232,215,.9), rgba(244,232,215,0) 70%); animation: drift-4 46s ease-in-out infinite alternate; }
@keyframes drift-1 { from { transform: translate(0,0) scale(1); } to { transform: translate(6%, 8%) scale(1.12); } }
@keyframes drift-2 { from { transform: translate(0,0) scale(1.08); } to { transform: translate(-7%, -6%) scale(1); } }
@keyframes drift-3 { from { transform: translate(0,0) scale(1); } to { transform: translate(-9%, 6%) scale(1.15); } }
@keyframes drift-4 { from { transform: translate(0,0) scale(1.05); } to { transform: translate(8%, -7%) scale(1); } }
@media (prefers-reduced-motion: reduce) { .mesh-blob { animation: none; } }

.hero-inner { position: relative; z-index: 2; width: 100%; max-width: 1140px; margin: 0 auto; padding: calc(var(--nav-h) + 3rem) 1.5rem 4rem; }
.hero-panel {
  max-width: 660px;
  background: rgba(250, 247, 241, .55);
  backdrop-filter: blur(22px) saturate(1.1);
  -webkit-backdrop-filter: blur(22px) saturate(1.1);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--radius);
  padding: 3rem 2.6rem;
  box-shadow: var(--sh-lg);
}
@media (max-width: 520px) { .hero-panel { padding: 2.2rem 1.6rem; } }
.hero-eyebrow { font-family: var(--font-body); font-size: .72rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--terracotta-700); margin-bottom: 1.1rem; }
.hero-h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); line-height: 1.02; font-weight: 300; text-wrap: balance; }
.hero-h1 em { font-style: italic; color: var(--terracotta-600); font-weight: 400; }
.hero-sub { margin-top: 1.5rem; font-size: 1.08rem; line-height: 1.75; color: var(--clay-800); max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.2rem; }
.hero-meta { margin-top: 2.2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 1.4rem; font-size: .86rem; color: var(--clay-800); }
.hero-meta strong { font-weight: 600; color: var(--ink-950); }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--grad-dark); padding: 1.5rem 0; }
.trust-inner { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.3rem; }
.trust-item { display: flex; align-items: center; gap: .55rem; }
.trust-stars { color: var(--terracotta-400); letter-spacing: .12em; font-size: .95rem; }
.trust-label { color: var(--sand-50); font-size: .92rem; font-weight: 500; }
.trust-link { color: var(--sand-50); font-size: .92rem; font-weight: 500; border-bottom: 1px solid rgba(250,247,241,.35); padding-bottom: 1px; transition: color .3s, border-color .3s; }
.trust-link:hover { color: var(--terracotta-400); border-color: var(--terracotta-400); }
.trust-div { width: 1px; height: 16px; background: rgba(250,247,241,.22); }
@media (max-width: 620px) { .trust-div { display: none; } }

/* ===== SERVICES ===== */
.services { padding: 7rem 0; background: var(--sand-50); }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; margin-top: 3.4rem; }
@media (min-width: 760px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
.service-card {
  background: var(--sand-100); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.4rem 2.2rem; position: relative; overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.6,.2,1), box-shadow .4s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
@media (prefers-reduced-motion: reduce) { .service-card:hover { transform: none; } }
.service-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-warm); transform: scaleX(0); transform-origin: left; transition: transform .5s cubic-bezier(.2,.6,.2,1); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 46px; height: 46px; margin-bottom: 1.4rem; color: var(--terracotta-600); }
.service-card h3 { font-size: 1.5rem; margin-bottom: .7rem; font-weight: 400; }
.service-card p { font-size: .98rem; opacity: .82; }
.services-note { margin-top: 2.4rem; padding: 1.3rem 1.6rem; background: var(--sand-100); border-left: 3px solid var(--sage-500); border-radius: 0 12px 12px 0; font-size: .92rem; opacity: .85; max-width: 62ch; }

/* ===== WHY ===== */
.why { padding: 7rem 0; background: var(--sand-100); }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-top: 3.4rem; }
@media (min-width: 860px) { .why-grid { grid-template-columns: repeat(3, 1fr); gap: 2.4rem; } }
.why-num { display: block; font-family: var(--font-display); font-size: 3.4rem; font-weight: 300; font-style: italic; color: var(--terracotta-600); opacity: .3; line-height: 1; margin-bottom: .5rem; }
.why-card h3 { font-size: 1.4rem; font-weight: 400; margin-bottom: .8rem; }
.why-card p { font-size: .98rem; opacity: .82; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 7rem 0; background: var(--grad-dark); }
.testimonials .eyebrow { color: var(--terracotta-400); }
.testimonials .section-h2 { color: var(--sand-50); }
.testimonials .section-h2 em { color: var(--terracotta-400); }
.tst-carousel { max-width: 760px; margin: 3.4rem auto 0; }
.tst-viewport { overflow: hidden; }
.tst-track { display: flex; list-style: none; margin: 0; padding: 0; transition: transform .7s cubic-bezier(.55,0,.25,1); }
@media (prefers-reduced-motion: reduce) { .tst-track { transition: none; } }
.tst-slide { flex: 0 0 100%; min-width: 0; padding: 0 .4rem; }
.tst-quote { font-family: var(--font-display); font-weight: 300; font-size: clamp(1.25rem, 2.6vw, 1.75rem); line-height: 1.55; color: var(--sand-50); text-wrap: pretty; }
.tst-attr { margin-top: 1.6rem; font-family: var(--font-body); font-size: .84rem; letter-spacing: .06em; color: rgba(250,247,241,.62); }
.tst-stars { color: var(--terracotta-400); letter-spacing: .12em; margin-bottom: 1.4rem; font-size: .9rem; }
.tst-controls { display: flex; align-items: center; justify-content: center; gap: 1.4rem; margin-top: 2.6rem; }
.tst-arrow { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(250,247,241,.28); background: transparent; color: var(--sand-50); cursor: pointer; transition: border-color .3s, color .3s, transform .3s; }
.tst-arrow:hover { border-color: var(--terracotta-400); color: var(--terracotta-400); transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) { .tst-arrow:hover { transform: none; } }
.tst-dots { display: flex; align-items: center; gap: .6rem; }
.tst-dot { width: 7px; height: 7px; padding: 0; border: none; border-radius: 50%; background: rgba(250,247,241,.28); cursor: pointer; transition: background .35s, transform .35s; }
.tst-dot:hover { background: var(--terracotta-400); }
.tst-dot[aria-selected="true"] { background: var(--terracotta-400); transform: scale(1.5); }

/* ===== VISIT ===== */
.visit { padding: 7rem 0; background: var(--sand-50); }
.visit-grid { display: grid; grid-template-columns: 1fr; gap: 2.6rem; margin-top: 3.4rem; align-items: start; }
@media (min-width: 900px) { .visit-grid { grid-template-columns: .9fr 1.1fr; gap: 3.4rem; } }
.visit-block + .visit-block { margin-top: 2.2rem; }
.visit-block h3 { font-family: var(--font-body); font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--terracotta-700); margin-bottom: .7rem; }
.visit-block p, .visit-block a { font-size: 1.02rem; line-height: 1.7; }
.visit-block a:hover { color: var(--terracotta-700); }
.hours-table { width: 100%; border-collapse: collapse; margin-top: .3rem; font-size: .98rem; }
.hours-table td { padding: .42rem 0; border-bottom: 1px solid var(--line); }
.hours-table td:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.hours-table tr:last-child td { border-bottom: none; }
.hours-badge { display: inline-block; margin-top: 1rem; padding: .5rem 1rem; background: var(--sand-100); border: 1px solid var(--line); border-radius: 999px; font-size: .84rem; color: var(--clay-800); }
.hours-badge strong { color: var(--terracotta-700); font-weight: 600; }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--sh-sm); background: var(--sand-100); }
.map-wrap iframe { display: block; width: 100%; height: 420px; border: 0; }
@media (max-width: 620px) { .map-wrap iframe { height: 320px; } }

/* ===== FOOTER ===== */
.site-footer { background: var(--grad-dark); padding: 4rem 0 2rem; position: relative; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-warm); }
.footer-inner { display: grid; grid-template-columns: 1fr; gap: 2.4rem; color: rgba(250,247,241,.8); }
@media (min-width: 760px) { .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-logo { font-family: var(--font-display); font-size: 1.4rem; color: var(--sand-50); display: block; }
.footer-logo em { font-style: italic; color: var(--terracotta-400); }
.footer-logo-sub { font-size: .56rem; letter-spacing: .28em; text-transform: uppercase; color: rgba(250,247,241,.5); display: block; margin-top: 4px; }
.footer-brand p { margin-top: 1rem; font-size: .92rem; line-height: 1.65; color: rgba(250,247,241,.62); max-width: 34ch; }
.footer-col h4 { font-family: var(--font-body); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--terracotta-400); margin: 0 0 .9rem; font-weight: 600; }
.footer-col a, .footer-col p { display: block; font-size: .93rem; color: rgba(250,247,241,.8); margin-bottom: .45rem; }
.footer-col a:hover { color: var(--terracotta-400); }
.footer-copy { grid-column: 1 / -1; font-size: .8rem; color: rgba(250,247,241,.42); border-top: 1px solid rgba(250,247,241,.12); padding-top: 1.5rem; margin-top: .8rem; }
