/* =========================================================
   Hand & Stone Massage and Facial Spa — Fort Collins
   Spec preview by Woodcrest Marketing
   ========================================================= */

:root {
  /* Brand */
  --navy: #073874;
  --navy-deep: #04244c;
  --navy-soft: #0c4a92;
  --slate-blue: #6e8db5;
  --stone: #c8a878;
  --stone-soft: #e3cfae;

  /* Surfaces */
  --cream: #f6f1e9;
  --cream-deep: #efe7da;
  --paper: #fdfbf7;
  --ink: #1c2a3a;
  --ink-soft: #4a5a6e;

  /* Type */
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Fluid type scale */
  --fs-eyebrow: clamp(0.72rem, 0.68rem + 0.2vw, 0.82rem);
  --fs-body: clamp(1rem, 0.96rem + 0.25vw, 1.125rem);
  --fs-lede: clamp(1.12rem, 1rem + 0.7vw, 1.4rem);
  --fs-h3: clamp(1.3rem, 1.1rem + 0.9vw, 1.7rem);
  --fs-h2: clamp(1.9rem, 1.4rem + 2.4vw, 3.2rem);
  --fs-h1: clamp(2.3rem, 1.4rem + 3.9vw, 4.7rem);

  /* Space */
  --shell: min(92vw, 1200px);
  --section-y: clamp(4.5rem, 3rem + 8vw, 9rem);
  --radius: 18px;
  --radius-lg: 28px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -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 { font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; }
ul { list-style: none; padding: 0; }

.shell { width: var(--shell); margin-inline: auto; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy); color: var(--paper);
  padding: 0.7rem 1.2rem; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2.5px solid var(--stone);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.01em;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform 0.35s var(--ease), background-color 0.3s var(--ease),
              color 0.3s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s var(--ease);
  will-change: transform;
}
.btn-solid {
  background: var(--stone); color: var(--navy-deep);
  box-shadow: 0 12px 30px -12px rgba(200, 168, 120, 0.7);
}
.btn-solid:hover { transform: translateY(-3px); box-shadow: 0 18px 38px -12px rgba(200, 168, 120, 0.85); }
.btn-ghost {
  background: transparent; color: var(--paper);
  border-color: rgba(246, 241, 233, 0.45);
}
.btn-ghost:hover { border-color: var(--stone); color: var(--stone-soft); transform: translateY(-3px); }
.btn-ghost--dark { color: var(--navy); border-color: rgba(7, 56, 116, 0.3); }
.btn-ghost--dark:hover { color: var(--navy); border-color: var(--navy); background: rgba(7, 56, 116, 0.05); }
.btn-line {
  background: transparent; color: var(--navy);
  border-color: rgba(7, 56, 116, 0.28); padding: 0.7rem 1.4rem; font-size: 0.88rem;
}
.btn-line:hover { background: var(--navy); color: var(--paper); transform: translateY(-2px); }
.btn-pill { background: var(--navy); color: var(--paper); padding: 0.7rem 1.45rem; font-size: 0.88rem; }
.btn-pill:hover { background: var(--navy-soft); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 1.15rem 0;
  transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; margin-right: auto; }
.brand-logo {
  height: 22px; width: auto;
  /* navy logo -> cream over dark hero */
  filter: brightness(0) saturate(100%) invert(96%) sepia(8%) saturate(220%) hue-rotate(2deg) brightness(102%);
  transition: filter 0.4s var(--ease);
}
.primary-nav { display: flex; gap: 1.9rem; }
.primary-nav a {
  font-size: 0.92rem; font-weight: 500; letter-spacing: 0.01em;
  color: rgba(246, 241, 233, 0.82);
  position: relative; padding: 0.2rem 0;
  transition: color 0.3s var(--ease);
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--stone); transition: width 0.35s var(--ease);
}
.primary-nav a:hover { color: var(--paper); }
.primary-nav a:hover::after { width: 100%; }
.header-cta { flex-shrink: 0; }

/* scrolled state */
.site-header.is-stuck {
  background: rgba(246, 241, 233, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  box-shadow: 0 1px 0 rgba(7, 56, 116, 0.08), 0 14px 40px -28px rgba(7, 56, 116, 0.55);
  padding: 0.75rem 0;
}
.site-header.is-stuck .brand-logo { filter: none; }
.site-header.is-stuck .primary-nav a { color: var(--ink-soft); }
.site-header.is-stuck .primary-nav a:hover { color: var(--navy); }

@media (max-width: 760px) {
  .primary-nav { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(660px, 96svh, 940px);
  display: flex; flex-direction: column; justify-content: center;
  padding: 9rem 0 4.5rem;
  color: var(--paper);
  isolation: isolate;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(80% 55% at 50% -8%, rgba(150,182,224,0.35), transparent 60%),
    radial-gradient(120% 120% at 80% 6%, var(--navy-soft) 0%, var(--navy) 40%, var(--navy-deep) 100%);
}
.glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55; z-index: -1; }
.glow-warm {
  width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  top: -14%; right: -10%;
  background: radial-gradient(circle, rgba(200, 168, 120, 0.7), rgba(200, 168, 120, 0));
  animation: drift 22s var(--ease) infinite alternate;
}
.glow-cool {
  width: 50vw; height: 50vw; max-width: 600px; max-height: 600px;
  bottom: -18%; left: -12%;
  background: radial-gradient(circle, rgba(110, 141, 181, 0.6), rgba(110, 141, 181, 0));
  animation: drift 26s var(--ease) infinite alternate-reverse;
}
.grain {
  position: absolute; inset: 0; z-index: -1; opacity: 0.05; mix-blend-mode: overlay;
  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.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* warm low horizon glow + soft framing vignette for depth */
.hero-horizon {
  position: absolute; left: 50%; bottom: -28%; transform: translateX(-50%);
  width: 135%; height: 64%; z-index: -1; pointer-events: none;
  background: radial-gradient(58% 100% at 50% 100%, rgba(206,170,116,0.3), rgba(200,168,120,0.08) 48%, transparent 72%);
}
.hero-vignette {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% 38%, transparent 55%, rgba(4,28,60,0.55) 100%),
    linear-gradient(to bottom, rgba(4,28,60,0.35), transparent 22%, transparent 72%, rgba(4,28,60,0.5));
}
@keyframes drift {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(-4%, 5%, 0) scale(1.12); }
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5.5rem);
}
.hero-copy { max-width: 40rem; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: var(--fs-eyebrow); font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--stone-soft);
  padding: 0.5rem 1rem; border: 1px solid rgba(200, 168, 120, 0.4);
  border-radius: 999px; backdrop-filter: blur(4px);
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--stone); box-shadow: 0 0 0 4px rgba(200,168,120,0.22); }
.hero-heading {
  font-size: var(--fs-h1); margin: 1.6rem 0 0;
  letter-spacing: -0.025em; color: var(--paper);
  text-wrap: balance; overflow-wrap: break-word;
}
.hero-lede {
  font-size: var(--fs-lede); max-width: 40ch;
  color: rgba(246, 241, 233, 0.82); margin-top: 1.6rem; line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.3rem; }
.hero-facts {
  display: grid; grid-template-columns: repeat(3, auto); gap: clamp(1.5rem, 5vw, 4rem);
  margin-top: 3.4rem; padding-top: 2rem;
  border-top: 1px solid rgba(246, 241, 233, 0.16);
  width: fit-content;
}
.hero-facts .fact dt { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(246,241,233,0.6); }
.hero-facts .fact dd { font-family: var(--serif); font-size: clamp(1.4rem, 1rem + 1.4vw, 2.1rem); color: var(--stone-soft); margin-top: 0.25rem; }

/* ---------- Hero aside (heated-stone cairn focal element) ---------- */
.hero-aside {
  position: relative; justify-self: center;
  display: grid; place-items: center;
  width: 100%; min-height: 440px;
}
.hero-scene {
  position: relative;
  width: min(40vw, 460px); aspect-ratio: 0.94;
  display: grid; place-items: center;
  animation: sceneFloat 11s var(--ease) infinite alternate;
}
@keyframes sceneFloat { from { transform: translateY(-7px); } to { transform: translateY(7px); } }

/* warm pool of candle light behind the stones */
.scene-glow {
  position: absolute; left: 50%; top: 58%; translate: -50% -50%;
  width: 104%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 56%, rgba(232,194,138,0.78), rgba(200,168,120,0.2) 44%, transparent 72%);
  filter: blur(10px); z-index: -1;
}
.scene-ring {
  position: absolute; left: 50%; top: 74%; translate: -50% -50%;
  border-radius: 50%; border: 1px solid rgba(200,168,120,0.22);
  aspect-ratio: 3.1 / 1;
}
.scene-ring-1 { width: 70%; }
.scene-ring-2 { width: 100%; border-color: rgba(200,168,120,0.12); }
/* soft reflective plate the cairn rests on */
.scene-plate {
  position: absolute; left: 50%; top: 78%; translate: -50% -50%;
  width: 64%; aspect-ratio: 3.4 / 1; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(214,178,124,0.28), transparent 78%);
  filter: blur(2px);
}

/* the cairn: smooth basalt stones stacked, largest at base */
.cairn {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  transform: translateY(-4%);
}
.cairn .stone {
  aspect-ratio: 3.4 / 1; border-radius: 50%;
  background: linear-gradient(165deg, #f4e3c4 0%, var(--stone-soft) 34%, var(--stone) 70%, #a87f48 100%);
  box-shadow:
    inset -5px -8px 18px rgba(74,46,16,0.4),
    inset 6px 9px 18px rgba(255,250,238,0.55),
    0 18px 30px -12px rgba(0,0,0,0.65);
}
.cairn .s4 { width: 26%; z-index: 4; margin-bottom: -3.4%; }
.cairn .s3 { width: 37%; z-index: 3; margin-bottom: -4.4%; }
.cairn .s2 { width: 48%; z-index: 2; margin-bottom: -5%; }
.cairn .s1 { width: 58%; z-index: 1; }

/* rising steam wisps */
.scene-steam {
  position: absolute; top: 8%; width: 12px; height: 42%;
  background: linear-gradient(to top, transparent, rgba(255,250,240,0.4), transparent);
  filter: blur(7px); border-radius: 50%;
  opacity: 0; transform-origin: bottom center;
  animation: steamRise 7s var(--ease) infinite;
}
.steam-1 { left: 44%; }
.steam-2 { left: 51%; animation-delay: 2.4s; height: 48%; }
.steam-3 { left: 57%; animation-delay: 4.6s; height: 38%; }
@keyframes steamRise {
  0%   { opacity: 0; transform: translateY(14px) scaleY(0.7); }
  35%  { opacity: 0.7; }
  100% { opacity: 0; transform: translateY(-30px) scaleY(1.3); }
}

.hero-chip {
  position: absolute; right: -4%; bottom: 6%;
  display: grid; gap: 0.12rem;
  padding: 1rem 1.4rem;
  background: rgba(8, 30, 60, 0.62);
  border: 1px solid rgba(200, 168, 120, 0.4);
  border-radius: 16px;
  backdrop-filter: blur(12px) saturate(150%);
  box-shadow: 0 24px 50px -28px rgba(0, 0, 0, 0.75);
  animation: chipFloat 9s var(--ease) infinite alternate;
}
@keyframes chipFloat { from { transform: translateY(5px); } to { transform: translateY(-5px); } }
.chip-label { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(246,241,233,0.62); }
.chip-price { font-family: var(--serif); font-size: 1.85rem; color: var(--stone-soft); line-height: 1.1; }
.chip-note { font-size: 0.78rem; color: rgba(246,241,233,0.66); }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-aside { display: none; }
}

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid rgba(246,241,233,0.4); border-radius: 999px;
  display: grid; place-items: start center; padding-top: 7px;
}
.hero-scroll span { width: 4px; height: 9px; border-radius: 4px; background: var(--stone); animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(-3px);} 40% {opacity:1;} 80%,100% { opacity: 0; transform: translateY(11px);} }

@media (max-width: 560px) {
  .hero-facts { grid-template-columns: 1fr 1fr; gap: 1.4rem 2rem; }
  .hero-scroll { display: none; }
}

/* ---------- Shared section heads ---------- */
.kicker {
  font-size: var(--fs-eyebrow); font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--stone); display: inline-block; margin-bottom: 1rem;
}
.kicker-light { color: var(--stone-soft); }
.section-heading { font-size: var(--fs-h2); color: var(--navy); }

/* ---------- Experience ---------- */
.experience { padding: var(--section-y) 0; background: var(--cream); position: relative; }
.experience-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.5rem, 5vw, 5rem);
  align-items: end;
}
.experience-lead .section-heading { max-width: 14ch; }
.experience-body p { color: var(--ink-soft); max-width: 46ch; }
.experience-body p + p { margin-top: 1.1rem; }

.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: clamp(3rem, 6vw, 5rem);
}
.pillar {
  background: var(--paper); border: 1px solid rgba(7,56,116,0.08);
  border-radius: var(--radius); padding: 2.2rem 1.9rem 2rem;
  position: relative; overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.pillar::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--stone), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease);
}
.pillar:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -30px rgba(7,56,116,0.4); border-color: rgba(200,168,120,0.5); }
.pillar:hover::before { transform: scaleX(1); }
.pillar-index { font-family: var(--serif); font-size: 1.05rem; color: var(--stone); letter-spacing: 0.1em; }
.pillar h3 { font-size: var(--fs-h3); color: var(--navy); margin: 0.9rem 0 0.7rem; }
.pillar p { color: var(--ink-soft); font-size: 0.98rem; }

@media (max-width: 860px) {
  .experience-grid { grid-template-columns: 1fr; gap: 1.6rem; align-items: start; }
  .pillars { grid-template-columns: 1fr; }
}

/* ---------- Featured ---------- */
.featured { background: var(--navy-deep); color: var(--paper); padding: var(--section-y) 0; position: relative; overflow: hidden; }
.featured::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 220px; pointer-events: none;
  background: radial-gradient(120% 100% at 50% 0%, rgba(110,141,181,0.22), transparent 70%);
}
.featured::after {
  content: ""; position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: min(80%, 760px); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,168,120,0.45), transparent);
}
.featured-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.featured-art {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-lg);
  background:
    radial-gradient(80% 60% at 36% 62%, rgba(200,168,120,0.32), transparent 62%),
    radial-gradient(120% 90% at 30% 20%, rgba(110,141,181,0.4), transparent 60%),
    linear-gradient(160deg, #0a3060, #04203f);
  border: 1px solid rgba(200,168,120,0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 50px 90px -50px rgba(0,0,0,0.8);
  overflow: hidden; display: grid; place-items: center;
}
.featured-glow {
  position: absolute; left: 38%; top: 52%; translate: -50% -50%;
  width: 78%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(224,184,128,0.5), rgba(200,168,120,0.12) 44%, transparent 70%);
  filter: blur(10px); z-index: 0;
}
.featured-steam {
  position: absolute; width: 14px; height: 30%;
  background: linear-gradient(to top, transparent, rgba(255,250,240,0.4), transparent);
  filter: blur(8px); border-radius: 50%; z-index: 3;
  opacity: 0; animation: steamRise 7.5s var(--ease) infinite;
}
.featured-steam.fs-1 { left: 30%; top: 16%; }
.featured-steam.fs-2 { left: 50%; top: 12%; height: 36%; animation-delay: 3s; }
.featured-art .stone {
  position: absolute; border-radius: 50%; z-index: 2;
  background: linear-gradient(150deg, var(--stone-soft), var(--stone));
  box-shadow:
    inset -8px -11px 24px rgba(60,38,14,0.4),
    inset 6px 8px 18px rgba(255,244,224,0.32),
    0 22px 44px -16px rgba(0,0,0,0.6);
  animation: stoneFloat 8s var(--ease) infinite alternate;
}
.stone-a { --rot: -14deg; width: 52%; aspect-ratio: 1.7; top: 52%; left: 22%; transform: rotate(-14deg); opacity: 0.96; }
.stone-b { --rot: 8deg; width: 40%; aspect-ratio: 1.75; top: 38%; left: 38%; transform: rotate(8deg); opacity: 0.88; background: linear-gradient(150deg, #e2caa3, var(--stone)); animation-delay: 1.4s; }
.stone-c { --rot: -4deg; width: 28%; aspect-ratio: 1.7; top: 26%; left: 30%; transform: rotate(-4deg); opacity: 0.78; background: linear-gradient(150deg, #d3b88e, #b8945f); animation-delay: 2.8s; }
@keyframes stoneFloat {
  from { transform: translateY(-6px) rotate(var(--rot, 0deg)); }
  to   { transform: translateY(7px) rotate(var(--rot, 0deg)); }
}
.featured-tag {
  position: absolute; top: 1.2rem; left: 1.2rem; z-index: 2;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--navy-deep); background: var(--stone-soft);
  padding: 0.4rem 0.85rem; border-radius: 999px; font-weight: 700;
}
.featured-copy .section-heading { color: var(--paper); margin-top: 0.4rem; }
.featured-lede { color: rgba(246,241,233,0.78); font-size: var(--fs-lede); margin-top: 1.2rem; max-width: 46ch; line-height: 1.5; }
.featured-list { margin-top: 1.8rem; display: grid; gap: 1.2rem; }
.featured-list li { padding-left: 1.4rem; position: relative; color: rgba(246,241,233,0.78); font-size: 0.98rem; }
.featured-list li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 9px; height: 9px; border-radius: 50%; background: var(--stone); }
.featured-list strong { display: block; color: var(--paper); font-family: var(--serif); font-size: 1.12rem; font-weight: 600; margin-bottom: 0.2rem; }
.featured-price { display: flex; align-items: baseline; gap: 1rem; margin: 1.9rem 0 1.6rem; flex-wrap: wrap; }
.price-now { font-family: var(--serif); font-size: 1.7rem; color: var(--stone-soft); }
.price-now em { font-size: 0.85rem; font-style: normal; color: rgba(246,241,233,0.6); letter-spacing: 0.05em; }
.price-then { color: rgba(246,241,233,0.5); text-decoration: line-through; font-size: 0.95rem; }

@media (max-width: 860px) {
  .featured-grid { grid-template-columns: 1fr; }
  .featured-art { max-width: 360px; }
}

/* ---------- Intro offers ---------- */
.intro { background: var(--navy); color: var(--paper); padding: var(--section-y) 0; position: relative; overflow: hidden; }
.intro::after {
  content: ""; position: absolute; width: 50vw; height: 50vw; max-width: 560px; max-height: 560px;
  right: -12%; bottom: -22%; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,120,0.22), transparent 70%); z-index: 0;
}
.intro-inner { position: relative; z-index: 1; }
.intro-head { max-width: 50rem; }
.intro-head .section-heading { color: var(--paper); }
.intro-sub { color: rgba(246,241,233,0.78); margin-top: 1.1rem; font-size: var(--fs-lede); max-width: 48ch; line-height: 1.5; }
.intro-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.6rem; }
.offer-card {
  background: rgba(246,241,233,0.06); border: 1px solid rgba(246,241,233,0.14);
  border-radius: var(--radius-lg); padding: 2.3rem 2.1rem;
  display: flex; flex-direction: column; align-items: flex-start;
  transition: transform 0.5s var(--ease), background-color 0.5s var(--ease), border-color 0.5s var(--ease);
}
.offer-card:hover { transform: translateY(-6px); background: rgba(246,241,233,0.1); border-color: rgba(200,168,120,0.5); }
.offer-card--accent { background: linear-gradient(165deg, rgba(200,168,120,0.16), rgba(246,241,233,0.05)); }
.offer-meta { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone-soft); }
.offer-card h3 { font-size: var(--fs-h3); color: var(--paper); margin: 0.7rem 0 0.6rem; }
.offer-card p { color: rgba(246,241,233,0.74); font-size: 0.97rem; }
.offer-price { font-family: var(--serif); font-size: 2.2rem; color: var(--stone-soft); margin: 1.4rem 0 1.4rem !important; }
.offer-card .btn-line { color: var(--stone-soft); border-color: rgba(200,168,120,0.4); }
.offer-card .btn-line:hover { background: var(--stone); color: var(--navy-deep); border-color: var(--stone); }

@media (max-width: 680px) { .intro-cards { grid-template-columns: 1fr; } }

/* ---------- Services / menu ---------- */
.services { padding: var(--section-y) 0; background: var(--cream); }
.services-head { max-width: 52rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.services-intro { color: var(--ink-soft); margin-top: 1rem; font-size: var(--fs-lede); max-width: 50ch; line-height: 1.5; }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4.5rem); }
.menu-col-head { padding-bottom: 1.4rem; margin-bottom: 0.6rem; border-bottom: 2px solid rgba(7,56,116,0.12); }
.menu-col-head h3 { font-size: var(--fs-h3); color: var(--navy); }
.menu-col-head p { color: var(--ink-soft); font-size: 0.96rem; margin-top: 0.4rem; }
.menu-list li {
  display: grid; grid-template-columns: 1fr auto; column-gap: 1.2rem;
  padding: 1.25rem 0; border-bottom: 1px solid rgba(7,56,116,0.09);
  align-items: baseline;
  transition: padding 0.35s var(--ease);
}
.menu-list li:hover { padding-left: 0.5rem; }
.menu-name { font-family: var(--serif); font-size: 1.18rem; color: var(--navy); font-weight: 600; }
.menu-desc { grid-column: 1 / 2; color: var(--ink-soft); font-size: 0.92rem; margin-top: 0.25rem; max-width: 40ch; }
.menu-price { grid-column: 2 / 3; grid-row: 1 / 3; text-align: right; color: var(--ink-soft); font-size: 0.86rem; white-space: nowrap; align-self: center; }
.menu-price b { display: block; font-family: var(--serif); font-size: 1.3rem; color: var(--stone); font-weight: 600; }
.services-note { margin-top: 2.6rem; }
.services-note p {
  color: var(--ink-soft); font-size: 0.95rem; text-align: center;
  max-width: 60ch; margin-inline: auto;
  padding: 1.3rem 1.6rem; background: var(--paper);
  border: 1px dashed rgba(7,56,116,0.2); border-radius: var(--radius);
}

@media (max-width: 760px) { .menu-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ---------- Visit ---------- */
.visit { padding: var(--section-y) 0; background: var(--cream-deep); }
.visit-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.visit-copy .section-heading { color: var(--navy); max-width: 16ch; }
.visit-lede { color: var(--ink-soft); margin-top: 1.1rem; max-width: 44ch; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.visit-address { font-style: normal; margin-top: 1.8rem; color: var(--navy); font-family: var(--serif); font-size: 1.15rem; line-height: 1.5; }
.visit-hours {
  background: var(--navy); color: var(--paper); border-radius: var(--radius-lg);
  padding: 2.2rem 2rem; box-shadow: 0 30px 60px -34px rgba(7,56,116,0.7);
}
.visit-hours h3 { font-size: var(--fs-h3); color: var(--stone-soft); margin-bottom: 1.1rem; }
.hours-list li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.65rem 0; border-bottom: 1px solid rgba(246,241,233,0.12);
  font-size: 0.95rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:first-child { color: rgba(246,241,233,0.7); }
.hours-list li span:last-child { color: var(--paper); font-variant-numeric: tabular-nums; }

@media (max-width: 760px) { .visit-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(246,241,233,0.8); padding: 3.5rem 0; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; align-items: center; }
.footer-logo { height: 24px; width: auto; filter: brightness(0) saturate(100%) invert(96%) sepia(8%) saturate(220%) hue-rotate(2deg) brightness(102%); }
.footer-brand p { font-size: 0.92rem; margin-top: 0.8rem; max-width: 34ch; color: rgba(246,241,233,0.6); }
.footer-meta { display: flex; flex-direction: column; gap: 0.4rem; text-align: right; font-size: 0.92rem; }
.footer-meta a:hover { color: var(--stone-soft); }
@media (max-width: 620px) { .footer-meta { text-align: left; } }

/* ---------- Spec footer ---------- */
.spec-footer {
  background: #06182f; color: rgba(246,241,233,0.62);
  font-family: var(--sans); font-size: 0.82rem; text-align: center;
  padding: 1.2rem 1.5rem; line-height: 1.6;
}
.spec-footer a { color: var(--stone-soft); text-decoration: underline; text-underline-offset: 2px; }
.spec-footer a:hover { color: var(--paper); }

/* ---------- Reveal animation ---------- */
/* Only hide when JS is active; without JS everything stays visible. */
.js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* Hero entrance plays automatically on load (CSS-driven, not dependent on JS
   observer timing) so the above-the-fold composition is never caught blank. */
.js .hero [data-reveal] {
  opacity: 0; transform: translateY(26px);
  animation: revealUp 0.85s var(--ease) forwards;
  transition: none;
}
@keyframes revealUp { to { opacity: 1; transform: none; } }
/* staggered hero */
.hero [data-reveal]:nth-child(1) { animation-delay: 0.05s; }
.hero [data-reveal]:nth-child(2) { animation-delay: 0.16s; }
.hero [data-reveal]:nth-child(3) { animation-delay: 0.27s; }
.hero [data-reveal]:nth-child(4) { animation-delay: 0.38s; }
.hero [data-reveal]:nth-child(5) { animation-delay: 0.49s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important; }
  .glow, .hero-scroll span, .hero-scene, .hero-chip, .scene-steam, .featured-art .stone, .featured-steam { animation: none !important; }
  .scene-steam { opacity: 0.5 !important; }
  .btn, .pillar, .offer-card { transition: none; }
}

