/* =========================================================
   Daylight Massage — spec preview
   Palette: sage-teal (logo) + warm gold (photo) on cream
   ========================================================= */

:root {
  /* color */
  --ink:      #1a2622;   /* deep charcoal-green text */
  --ink-soft: #47554f;
  --sage:     #1f6b5e;   /* primary deep teal-sage */
  --sage-700: #175349;
  --teal:     #2ea88f;   /* accent */
  --teal-100: #d9ede7;
  --gold:     #c68b4c;   /* warm secondary */
  --gold-700: #a76f34;
  --cream:    #f8f4ec;   /* page base */
  --cream-2:  #f1eae0;
  --sand:     #ece3d4;
  --paper:    #fffdf9;
  --line:     rgba(26,38,34,.12);
  --shadow:   0 24px 60px -28px rgba(26,54,45,.45);
  --shadow-sm:0 12px 30px -18px rgba(26,54,45,.4);

  /* type */
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans:  system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* fluid scale */
  --step--1: clamp(.82rem, .78rem + .2vw, .92rem);
  --step-0:  clamp(1rem, .95rem + .25vw, 1.13rem);
  --step-1:  clamp(1.2rem, 1.1rem + .5vw, 1.5rem);
  --step-2:  clamp(1.55rem, 1.35rem + 1vw, 2.1rem);
  --step-3:  clamp(2rem, 1.6rem + 2vw, 3rem);
  --step-4:  clamp(2.6rem, 1.9rem + 3.4vw, 4.6rem);
  --step-5:  clamp(3.2rem, 2.2rem + 5vw, 6rem);

  /* space */
  --gap: clamp(1rem, .7rem + 1.5vw, 1.6rem);
  --section: clamp(4rem, 3rem + 5vw, 8rem);
  --wrap: 1200px;
}

/* reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: -.01em; }
::selection { background: var(--teal); color: #fff; }

.wrap { width: min(100% - 2.4rem, var(--wrap)); margin-inline: auto; }

.skip-link {
  position: absolute; left: .5rem; top: -3rem;
  background: var(--sage); color: #fff; padding: .6rem 1rem; border-radius: 8px;
  z-index: 200; transition: top .2s;
}
.skip-link:focus { top: .5rem; }

/* focus */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--sage);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--sans); font-weight: 600; font-size: var(--step--1);
  letter-spacing: .01em;
  padding: .7rem 1.15rem; border-radius: 999px;
  text-decoration: none; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); background: var(--sage-700); }
.btn--lg { padding: .95rem 1.7rem; font-size: var(--step-0); }
.btn--sm { padding: .55rem 1rem; }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--sage);
  border-color: rgba(31,107,94,.35);
}
.btn--ghost:hover { background: var(--teal-100); border-color: var(--sage); }
.btn--warm { --btn-bg: var(--gold); }
.btn--warm:hover { background: var(--gold-700); }

/* ---------- shared bits ---------- */
.eyebrow {
  font-family: var(--sans); font-weight: 700; font-size: var(--step--1);
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--sage); margin-bottom: .9rem;
}
.eyebrow--light { color: rgba(255,255,255,.85); }
.section-title {
  font-size: clamp(2.2rem, 1.55rem + 2.6vw, 3.5rem);
  color: var(--ink); letter-spacing: -.018em; line-height: 1.04; text-wrap: balance;
}

/* ---------- top announcement ---------- */
.topbar {
  background: var(--sage-700); color: #fdfbf6;
  font-size: var(--step--1);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: .4rem 1rem; padding: .5rem 0; text-align: center;
}
.topbar__sun { color: #ffd280; font-size: 1.1em; }
.topbar p { margin: 0; }
.topbar strong { color: #ffdca0; }
.topbar__call {
  font-weight: 700; text-decoration: underline; text-underline-offset: 3px;
  white-space: nowrap;
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,244,236,.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(248,244,236,.94);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px -20px rgba(26,54,45,.5);
}
.site-header__inner {
  display: flex; align-items: center; gap: 1.2rem;
  padding: .7rem 0;
}
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; }
.brand__mark { width: 40px; height: 40px; object-fit: contain; }
.brand__type { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--serif); font-weight: 600; font-size: 1.4rem; color: var(--ink); }
.brand__sub { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); }
.nav { margin-left: auto; display: flex; gap: 1.6rem; }
.nav a {
  text-decoration: none; font-weight: 600; font-size: var(--step--1);
  color: var(--ink-soft); position: relative; padding: .2rem 0;
  transition: color .2s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--teal); transition: width .28s ease;
}
.nav a:hover { color: var(--sage); }
.nav a:hover::after { width: 100%; }
.nav__cta { flex: none; }
@media (max-width: 860px) {
  .nav { display: none; }
  .brand__sub { display: none; }
}

/* ---------- hero ---------- */
.hero {
  padding: clamp(2.5rem, 1.5rem + 4vw, 5.5rem) 0 clamp(3rem, 2rem + 3vw, 5rem);
  position: relative; overflow: hidden; isolation: isolate;
  background:
    radial-gradient(120% 90% at 88% -10%, rgba(244,199,120,.28), transparent 55%),
    radial-gradient(80% 70% at 8% 12%, rgba(46,168,143,.16), transparent 60%),
    linear-gradient(180deg, #fbf7ef 0%, var(--cream) 60%, var(--cream-2) 100%);
}
/* faint sunrise arc lines drawn across the whole hero for depth */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    repeating-radial-gradient(circle at 84% -6%, transparent 0 62px, rgba(198,139,76,.10) 62px 63px, transparent 63px 130px);
  opacity: .9;
  -webkit-mask-image: linear-gradient(120deg, transparent 40%, #000 100%);
          mask-image: linear-gradient(120deg, transparent 40%, #000 100%);
}
/* the sun mark itself, echoing the logo, top-right */
.hero__sun {
  position: absolute; z-index: -1; top: clamp(-3rem, -2rem - 4vw, -1.5rem);
  right: clamp(-4rem, -2rem - 6vw, 1rem);
  width: clamp(180px, 20vw, 320px); height: auto; pointer-events: none;
  opacity: .5;
}
.hero__sun-core { transform-origin: 100px 100px; animation: sunPulse 7s ease-in-out infinite; }
.hero__sun-rays line {
  stroke: var(--gold); stroke-width: 3.4; stroke-linecap: round; opacity: .55;
  transform-origin: 100px 100px; animation: sunTurn 60s linear infinite;
}
@keyframes sunPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.05); opacity: .88; } }
@keyframes sunTurn  { to { transform: rotate(45deg); } }

.hero__grid {
  display: grid; position: relative;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.5rem, 1rem + 3vw, 4.5rem);
  align-items: center;
}
.hero__title { font-size: var(--step-4); max-width: 15ch; margin-bottom: 1.2rem; text-wrap: balance; }
.hero__lead { font-size: var(--step-1); color: var(--ink-soft); max-width: 42ch; line-height: 1.5; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.8rem 0 1.6rem; }
.hero__facts {
  list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem 1.6rem;
  border-top: 1px solid var(--line); padding-top: 1.2rem;
  font-size: var(--step--1); color: var(--ink-soft);
}
.hero__facts strong { color: var(--ink); font-weight: 700; }

.hero__media { position: relative; }
.hero__photo {
  position: relative; border-radius: 30px 30px 128px 30px; overflow: hidden;
  box-shadow: var(--shadow); aspect-ratio: 4 / 4.4;
  transform: rotate(.6deg);
  outline: 1px solid rgba(255,255,255,.5); outline-offset: -8px;
}
/* editorial grade: calm the stock-orange and pull the image toward the brand */
.hero__photo::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(158deg, rgba(31,107,94,.46) 0%, rgba(46,168,143,.12) 46%, rgba(198,139,76,.10) 100%);
  mix-blend-mode: soft-light;
}
.hero__photo::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, rgba(23,83,73,.12) 0%, transparent 42%, rgba(16,34,28,.46) 100%);
}
.hero__photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 28%;
  filter: saturate(.64) contrast(1.08) brightness(1.03);
}
.hero__badge {
  position: absolute; left: -1.2rem; bottom: 1.6rem; z-index: 3;
  background: var(--paper); border-radius: 18px; padding: .9rem 1.15rem;
  box-shadow: var(--shadow); display: grid; grid-template-columns: auto auto;
  column-gap: .7rem; row-gap: .28rem; align-items: center;
  border: 1px solid var(--line); transform: rotate(-1.5deg);
}
.hero__badge-stars { grid-column: 1 / -1; color: var(--gold); font-size: .92rem; letter-spacing: .1em; line-height: 1; }
.hero__badge-score { font-family: var(--serif); font-weight: 700; font-size: 2.1rem; color: var(--sage); line-height: .85; }
.hero__badge-label { font-size: .72rem; line-height: 1.28; color: var(--ink-soft); font-weight: 600; }

@media (max-width: 780px) {
  .hero { padding-top: clamp(1.75rem, 1rem + 3vw, 3rem); }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 460px; margin-inline: auto; }
  .hero__photo { border-radius: 24px 24px 80px 24px; aspect-ratio: 4 / 3.4; }
  .hero__title { font-size: clamp(2.15rem, 1.35rem + 4vw, 3.1rem); max-width: 100%; }
  .hero__lead { font-size: var(--step-0); }
  .hero__sun { width: 150px; right: -2rem; top: -1rem; opacity: .38; }
}
@media (max-width: 400px) {
  .hero__title { font-size: 2.05rem; letter-spacing: -.015em; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__sun-core, .hero__sun-rays line { animation: none; }
}

/* ---------- trust band (seamless marquee) ---------- */
.trustband {
  background:
    radial-gradient(120% 200% at 50% -60%, var(--teal), transparent 45%),
    linear-gradient(90deg, var(--sage-700), var(--sage) 50%, var(--sage-700));
  color: #eafaf5; overflow: hidden; position: relative;
  border-block: 1px solid rgba(255,255,255,.08);
}
.trustband::before, .trustband::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 22%; max-width: 220px; z-index: 2; pointer-events: none;
}
.trustband::before { left: 0; background: linear-gradient(90deg, var(--sage-700) 12%, transparent); }
.trustband::after  { right: 0; background: linear-gradient(270deg, var(--sage-700) 12%, transparent); }
.trustband__track {
  display: flex; width: max-content;
  animation: marquee 38s linear infinite;
}
.trustband:hover .trustband__track { animation-play-state: paused; }
.trustband__group {
  display: flex; align-items: center; flex: none; list-style: none; margin: 0; padding: 1rem 0;
  font-family: var(--serif); font-size: var(--step-1); letter-spacing: .01em; font-style: italic;
}
.trustband__group li { padding: 0 1.35rem; white-space: nowrap; }
.trustband__group li:not(.dot) { color: #f3fbf8; }
.trustband__group .dot { color: var(--gold); font-style: normal; font-size: .72em; padding: 0 .35rem; opacity: .95; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .trustband__track { animation: none; width: 100%; justify-content: center; flex-wrap: wrap; }
  .trustband__group:last-child { display: none; }
  .trustband__group { flex-wrap: wrap; justify-content: center; }
}

/* ---------- about ---------- */
.about {
  padding: var(--section) 0; position: relative;
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(46,168,143,.07), transparent 60%),
    var(--cream);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "intro body"
    "stats body";
  gap: clamp(1.5rem, 1rem + 3vw, 4rem) clamp(2rem, 1rem + 4vw, 5rem);
  align-items: start;
}
.about__intro { grid-area: intro; }
.about__body { grid-area: body; }
.about__body p { margin-bottom: 1.1rem; font-size: var(--step-0); color: var(--ink-soft); max-width: 52ch; }
.about__pledge {
  font-family: var(--serif); font-size: var(--step-1); color: var(--ink) !important;
  border-left: 3px solid var(--gold); padding-left: 1.1rem; line-height: 1.45;
}
.about__stats {
  grid-area: stats; list-style: none; padding: 0;
  display: grid; grid-template-columns: repeat(3, auto); gap: 1.4rem 1.8rem;
  align-content: start;
}
.about__stats li { display: flex; flex-direction: column; padding-top: .9rem; border-top: 2px solid var(--sand); }
.stat__num { font-family: var(--serif); font-size: var(--step-2); color: var(--sage); font-weight: 700; line-height: 1; }
.stat__to { font-family: var(--sans); font-size: .5em; font-weight: 600; color: var(--gold-700); text-transform: lowercase; letter-spacing: .04em; margin: 0 .18em; vertical-align: middle; }
.stat__cap { margin-top: .35rem; font-size: var(--step--1); color: var(--ink-soft); max-width: 14ch; }
@media (max-width: 780px) {
  .about__grid { grid-template-columns: 1fr; grid-template-areas: "intro" "body" "stats"; }
  .about__stats { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- services ---------- */
.services { padding: var(--section) 0; background: var(--paper); border-block: 1px solid var(--line); }
.services__head {
  display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap;
  gap: 1rem; margin-bottom: clamp(2rem, 1rem + 3vw, 3.5rem);
}
.services__note { max-width: 34ch; color: var(--ink-soft); font-size: var(--step--1); text-align: right; }
.menu {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
}
.menu__card {
  background: var(--cream); border: 1px solid var(--line); border-radius: 18px;
  padding: 1.6rem 1.5rem; display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
}
.menu__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: rgba(31,107,94,.3); }
.menu__card h3 { font-size: var(--step-1); margin-bottom: .4rem; }
.menu__desc { font-size: var(--step--1); color: var(--ink-soft); margin-bottom: 1.1rem; }
.pricelist { list-style: none; padding: 0; margin-top: auto; display: grid; gap: .55rem; }
.pricelist li { display: flex; align-items: baseline; gap: .4rem; font-size: var(--step-0); }
.pricelist li span:first-child { color: var(--ink-soft); font-size: var(--step--1); white-space: nowrap; }
.pricelist li span:last-child { font-family: var(--serif); font-weight: 700; color: var(--ink); }
.lead-dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-.2em); }

/* feature card anchors the grid: 2 cols x 2 rows, warm gradient */
.menu__card--feature {
  grid-column: span 2; grid-row: span 2;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(198,139,76,.28), transparent 55%),
    linear-gradient(150deg, var(--sage) 0%, var(--sage-700) 100%);
  color: #f2fbf8; border-color: transparent; justify-content: space-between;
  padding: 2rem 1.9rem; position: relative; overflow: hidden;
}
.menu__card--feature::before {
  content: ""; position: absolute; left: -60px; bottom: -60px; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(46,168,143,.35), transparent 70%);
}
.menu__card--feature::after {
  content: ""; position: absolute; right: -40px; top: -40px; width: 170px; height: 170px;
  background: radial-gradient(circle, rgba(198,139,76,.45), transparent 70%);
}
.menu__card--feature > * { position: relative; z-index: 1; }
.menu__card--feature h3 { font-size: var(--step-2); color: #fff; margin-top: .1rem; }
.menu__feature-top { display: flex; flex-direction: column; gap: .55rem; }

/* what the signature treatment includes */
.menu__includes {
  list-style: none; padding: 1.1rem 0 0; margin: 1.1rem 0 0;
  border-top: 1px solid rgba(255,255,255,.22);
  display: grid; grid-template-columns: 1fr 1fr; gap: .5rem 1rem;
  font-size: var(--step--1); color: rgba(255,255,255,.94);
}
.menu__includes li { display: flex; align-items: center; gap: .5rem; }
.menu__includes li::before {
  content: "\2600"; color: var(--gold); font-size: 1em; flex: none;
}
.menu__tag {
  align-self: flex-start; background: var(--gold); color: #2a1c08;
  font-family: var(--sans); font-size: .68rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; padding: .3rem .7rem; border-radius: 999px;
}
.menu__card--feature .menu__desc { color: rgba(255,255,255,.9); margin-bottom: 0; max-width: 40ch; }
.menu__feature-price { display: flex; align-items: baseline; gap: .8rem; margin-top: 1.2rem; }
.menu__feature-price .price { font-family: var(--serif); font-weight: 700; font-size: var(--step-4); color: #fff; line-height: 1; }
.menu__feature-price .dur { font-size: var(--step--1); color: rgba(255,255,255,.8); letter-spacing: .08em; text-transform: uppercase; }

.services__cta { text-align: center; margin-top: clamp(2rem, 1rem + 3vw, 3.5rem); }

@media (max-width: 980px) {
  .menu { grid-template-columns: repeat(2, 1fr); }
  .menu__card--feature { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 540px) {
  .menu { grid-template-columns: 1fr; }
  .menu__card--feature { grid-column: span 1; }
  .services__note { text-align: left; }
}

/* ---------- atmosphere band ---------- */
.atmos {
  position: relative; padding: clamp(4.5rem, 3rem + 7vw, 9rem) 0;
  display: grid; place-items: center; isolation: isolate; color: #fff; text-align: center;
  overflow: hidden;
  background:
    radial-gradient(120% 92% at 50% 120%, rgba(46,168,143,.32), transparent 58%),
    linear-gradient(180deg, #17544a 0%, #123a31 55%, #0d2a23 100%);
}
/* concentric sunrise arcs echoing the hero, faint across the panel */
.atmos::before {
  content: ""; position: absolute; inset: -12% -6% auto -6%; height: 135%; z-index: -1; pointer-events: none;
  background: repeating-radial-gradient(circle at 50% 140%, transparent 0 80px, rgba(244,199,120,.11) 80px 81px, transparent 81px 162px);
  -webkit-mask-image: radial-gradient(72% 82% at 50% 122%, #000, transparent 72%);
          mask-image: radial-gradient(72% 82% at 50% 122%, #000, transparent 72%);
}
/* warm sun glow rising from the base, tying the section to the brand mark */
.atmos__glow {
  position: absolute; left: 50%; bottom: -36%; z-index: -1;
  width: min(80vw, 780px); aspect-ratio: 1; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(244,199,120,.44) 0%, rgba(214,154,74,.20) 34%, transparent 66%);
  pointer-events: none;
}
.atmos__content { max-width: 44rem; position: relative; }
.atmos__content::before {
  content: "\2600"; display: block; font-size: 2rem; color: var(--gold);
  margin-bottom: .4rem; opacity: .9;
}
.atmos__line {
  font-family: var(--serif); font-size: var(--step-3); line-height: 1.25; margin: .4rem 0 1.8rem;
  text-wrap: balance;
}

/* ---------- reviews ---------- */
.reviews { padding: var(--section) 0; }
.reviews__head { max-width: 30ch; margin-bottom: clamp(2rem, 1rem + 3vw, 3.5rem); }
.reviews__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
  grid-auto-flow: dense;
}
.review {
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
  padding: 1.6rem 1.7rem; display: flex; flex-direction: column; gap: .9rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease;
}
.review:hover { transform: translateY(-3px); }
.review--tall { grid-row: span 2; grid-column: span 1; background: var(--sand); }
.review__stars { color: var(--gold); letter-spacing: .15em; font-size: 1rem; }
.review blockquote {
  font-family: var(--serif); font-size: var(--step-0); line-height: 1.55; color: var(--ink);
}
.review--tall blockquote { font-size: var(--step-1); line-height: 1.5; }
.review figcaption {
  margin-top: auto; font-weight: 700; font-size: var(--step--1); color: var(--sage);
  letter-spacing: .02em;
}
@media (max-width: 860px) {
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .review--tall { grid-row: span 1; grid-column: span 2; }
}
@media (max-width: 560px) {
  .reviews__grid { grid-template-columns: 1fr; }
  .review--tall { grid-column: span 1; }
}

/* ---------- visit ---------- */
.visit { padding: var(--section) 0; background: var(--paper); border-top: 1px solid var(--line); }
.visit__grid {
  display: grid; grid-template-columns: 1.35fr .85fr; gap: clamp(1.5rem, 1rem + 3vw, 4rem);
  align-items: center;
}
.visit__list { display: grid; grid-template-columns: repeat(3, auto); gap: 1.4rem 2rem; margin: 1.8rem 0 2rem; }
.visit__list dt {
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sage);
  font-weight: 800; margin-bottom: .35rem;
}
.visit__list dd { font-size: var(--step-0); color: var(--ink); }
.visit__list a { color: var(--sage); text-decoration: none; font-weight: 600; }
.visit__list a:hover { text-decoration: underline; text-underline-offset: 3px; }
.visit__cta { display: flex; flex-wrap: wrap; gap: .8rem; }

.visit__card {
  background: linear-gradient(160deg, var(--cream), var(--sand));
  border: 1px solid var(--line); border-radius: 24px; padding: 2rem 1.8rem;
  text-align: center; box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.visit__mark { width: 56px; height: 56px; object-fit: contain; margin: 0 auto .8rem; }
.visit__card-lead { text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; font-weight: 800; color: var(--gold-700); }
.visit__card-price { font-family: var(--serif); font-size: var(--step-5); color: var(--sage); line-height: 1; margin: .2rem 0 .6rem; }
.visit__card-fine { font-size: var(--step--1); color: var(--ink-soft); max-width: 26ch; margin: 0 auto 1.4rem; }
@media (max-width: 780px) {
  .visit__grid { grid-template-columns: 1fr; }
  .visit__list { grid-template-columns: repeat(3, auto); }
}
@media (max-width: 460px) {
  .visit__list { grid-template-columns: 1fr 1fr; }
}

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #d7ded9; padding: clamp(2.5rem, 2rem + 2vw, 4rem) 0 1.5rem; }
.site-footer__inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1.4fr; gap: 2rem; align-items: start;
}
.site-footer__brand { display: flex; align-items: center; gap: .8rem; }
.site-footer__brand img { width: 44px; height: 44px; object-fit: contain; }
.site-footer__name { font-family: var(--serif); font-size: 1.35rem; color: #fff; }
.site-footer__tag { font-size: var(--step--1); color: #9fb0a8; }
.site-footer__nav { display: flex; flex-direction: column; gap: .5rem; }
.site-footer__nav a { text-decoration: none; color: #c3ccc6; font-size: var(--step--1); width: fit-content; }
.site-footer__nav a:hover { color: var(--teal); }
.site-footer__contact { display: flex; flex-direction: column; gap: .4rem; font-size: var(--step--1); color: #9fb0a8; }
.site-footer__contact a { color: #fff; text-decoration: none; font-weight: 700; font-size: var(--step-0); }
.site-footer__legal {
  text-align: center; margin-top: 2.5rem; padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,.1); font-size: var(--step--1); color: #7f8f88;
}
@media (max-width: 720px) {
  .site-footer__inner { grid-template-columns: 1fr; gap: 1.6rem; }
}

/* ---------- spec footer (mandated) ---------- */
.spec-footer {
  background: #10201b; color: #8aa39a; text-align: center;
  font-size: .8rem; padding: 1rem 1.2rem; line-height: 1.5;
}
.spec-footer a { color: var(--teal); }

/* ---------- reveal animation ---------- */
/* hidden state only applies once JS confirms it can reveal them (html.js) */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal.in { opacity: 1; transform: none; }

/* hero photo settles from a soft scale, badge pops a beat later */
.js .hero__media .hero__photo {
  transform: rotate(.6deg) scale(1.045);
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1) .1s;
}
.js .hero__media.in .hero__photo { transform: rotate(.6deg) scale(1); }
.js .hero__media .hero__badge {
  opacity: 0; transform: rotate(-1.5deg) translateY(16px) scale(.94);
  transition: opacity .6s ease .5s, transform .7s cubic-bezier(.2,.9,.3,1) .5s;
}
.js .hero__media.in .hero__badge { opacity: 1; transform: rotate(-1.5deg) translateY(0) scale(1); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .btn, .menu__card, .review, .hero__photo { transition: none; }
  .js .hero__media .hero__photo { transform: rotate(.6deg) !important; transition: none; }
  .js .hero__media .hero__badge { opacity: 1 !important; transform: rotate(-1.5deg) !important; transition: none; }
}

/* no-JS fallback: if app.js never runs, content stays visible */
.no-js .reveal { opacity: 1; transform: none; }
