/* Massage by Pat Benavidez — styles.css
   All identity values come from css/tokens.css (generated from DESIGN.md). */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body-md);
  font-size: var(--size-body-md);
  font-weight: var(--weight-body-md);
  line-height: 1.7;
  color: var(--color-on-surface);
  background: var(--color-neutral);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

em { font-style: italic; }

:focus-visible {
  outline: 2px solid var(--color-primary-bright);
  outline-offset: 3px;
  border-radius: 2px;
}
.section--ivory :focus-visible,
.section--sand :focus-visible { outline-color: var(--color-primary); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.skip-link {
  position: fixed; top: 0.75rem; left: 0.75rem; z-index: 100;
  background: var(--color-primary); color: var(--color-surface);
  font-family: var(--font-label-sm); font-size: var(--size-label-sm);
  letter-spacing: 0.08em; text-decoration: none;
  padding: 0.6rem 1rem; border-radius: var(--rounded-sm);
  transform: translateY(-300%);
}
.skip-link:focus-visible { transform: none; }

/* Matte paper grain, barely there */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 90; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  opacity: 0.03;
}

/* ---------- Loading veil ---------- */
.loader {
  position: fixed; inset: 0; z-index: 95;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-surface);
  animation: loader-out 500ms ease 650ms forwards;
  pointer-events: none;
}
.loader img {
  width: 9rem; height: auto;
  animation: loader-mark 900ms ease both;
}
@keyframes loader-out {
  to { opacity: 0; visibility: hidden; }
}
@keyframes loader-mark {
  from { opacity: 0; transform: translateY(8px); }
  30% { opacity: 1; transform: none; }
}

/* ---------- Layout primitives ---------- */
.container {
  width: min(100% - 2 * var(--space-gutter), 72rem);
  margin-inline: auto;
}
.container--narrow { max-width: 46rem; }
.center { text-align: center; }

.section { padding-block: var(--space-section-sm); }
@media (min-width: 768px) { .section { padding-block: var(--space-section); } }

.section--ivory { background: var(--color-surface); color: var(--color-on-surface); }
.section--sand  { background: var(--color-sand); color: var(--color-on-surface); }
.section--ink   { background: var(--color-neutral); color: var(--color-on-ink); }

.section--ink { position: relative; overflow: hidden; }
.section--ink::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: radial-gradient(120% 90% at 50% 0%, rgb(168 178 154 / 0.05), transparent 55%);
}
.section--ink > .container { position: relative; z-index: 2; }

/* ---------- Type ---------- */
.headline {
  font-family: var(--font-headline-lg);
  font-weight: var(--weight-headline-lg);
  font-size: clamp(2.1rem, 3.2vw + 1.05rem, 3.25rem);
  line-height: 1.12;
  letter-spacing: -0.005em;
  max-width: 24ch;
  margin-bottom: 1.5rem;
}
.center .headline { margin-inline: auto; }
.headline em { font-style: italic; font-weight: var(--weight-headline-lg); }
.section--ivory .headline em,
.section--sand .headline em { color: var(--color-walnut); }
.section--ink .headline em { color: var(--color-primary-bright); }

.lede {
  font-family: var(--font-body-lg);
  font-size: var(--size-body-lg);
  font-weight: var(--weight-body-lg);
  line-height: 1.75;
  max-width: var(--space-measure);
  margin-bottom: 1.25rem;
}
.center .lede { margin-inline: auto; }
.section--ink p { color: var(--color-on-ink-muted); }
.section--ink .lede { color: var(--color-on-ink); }

.eyebrow {
  display: flex; align-items: center; gap: 0.9rem;
  font-family: var(--font-label-sm);
  font-size: var(--size-label-sm);
  font-weight: var(--weight-label-sm);
  letter-spacing: var(--tracking-label-sm);
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.eyebrow::before { content: ""; width: 2rem; height: 1px; flex: none; }
.eyebrow--ivory { color: var(--color-walnut); }
.eyebrow--ivory::before { background: var(--color-walnut); }
.eyebrow--ink { color: var(--color-primary-bright); }
.eyebrow--ink::before { background: var(--color-secondary); }
.center-eyebrow { justify-content: center; }
.center-eyebrow::after { content: ""; width: 2rem; height: 1px; flex: none; }
.eyebrow--ink.center-eyebrow::after { background: var(--color-secondary); }

.accent-line { color: var(--color-walnut); }

/* ---------- Icons ---------- */
.icon {
  width: 1.05em; height: 1.05em;
  fill: none; stroke: currentColor;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  flex: none;
}
.icon--lg { width: 1.9rem; height: 1.9rem; }

/* ---------- Buttons ---------- */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--font-label-sm);
  font-size: var(--size-label-sm);
  font-weight: var(--weight-label-sm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--rounded-full);
  padding: 1.05rem 2rem;
  min-height: 44px;
  transition: background-color 200ms ease, border-color 200ms ease,
              color 200ms ease, transform 150ms ease;
  cursor: pointer;
}
.button:active { transform: translateY(1px); }

.button--primary {
  background: var(--color-primary);
  color: var(--color-surface);
}
.button--primary:hover { background: color-mix(in srgb, var(--color-primary), #ffffff 14%); }

.button--ghost {
  background: transparent;
  color: var(--color-primary-bright);
  border: 1px solid rgb(168 178 154 / 0.55);
}
.button--ghost:hover { border-color: var(--color-primary-bright); color: var(--color-on-ink); }

.section--ivory .button--ghost,
.section--sand .button--ghost { color: var(--color-walnut); border-color: rgb(110 84 60 / 0.5); }
.section--ivory .button--ghost:hover,
.section--sand .button--ghost:hover { border-color: var(--color-walnut); color: var(--color-on-surface); }

/* ---------- Nav ---------- */
.site-nav {
  position: fixed; inset-inline: 0; top: 0; z-index: 50;
  transition: background-color 250ms ease, box-shadow 250ms ease;
}
.site-nav.is-scrolled {
  background: rgb(48 45 39 / 0.9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgb(168 178 154 / 0.22);
}
.site-nav__inner {
  width: min(100% - 2 * var(--space-gutter), 72rem);
  margin-inline: auto;
  display: flex; align-items: center; gap: 2rem;
  padding-block: 0.9rem;
}
.wordmark { display: flex; flex-direction: column; text-decoration: none; line-height: 1.15; }
.wordmark__eyebrow {
  font-family: var(--font-label-sm); font-size: 0.6rem; font-weight: var(--weight-label-sm);
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--color-on-ink-muted);
}
.wordmark__name {
  font-family: var(--font-headline-md); font-weight: 600;
  font-size: 1.35rem; color: var(--color-on-ink);
}
.site-nav__links { display: none; margin-left: auto; gap: 2rem; }
.site-nav__links a {
  font-family: var(--font-label-sm); font-size: 0.75rem; font-weight: var(--weight-label-sm);
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--color-on-ink); text-decoration: none;
  padding: 0.5rem 0;
  opacity: 0.85;
  transition: color 180ms ease, opacity 180ms ease;
}
.site-nav__links a:hover { color: var(--color-primary-bright); opacity: 1; }
.site-nav__call {
  margin-left: auto; padding: 0.7rem 1.3rem;
  transition: opacity 250ms ease, transform 250ms ease, visibility 250ms,
              background-color 200ms ease;
}
/* On phones the fixed bottom bar carries the number, so the nav pill steps
   aside once the hero scrolls away — never both at once. */
@media (max-width: 767px) {
  .site-nav.has-callbar .site-nav__call {
    opacity: 0; visibility: hidden;
    transform: translateY(-6px);
    pointer-events: none;
  }
}
@media (min-width: 900px) {
  .site-nav__links { display: flex; }
  .site-nav__call { margin-left: 0; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-neutral);
  color: var(--color-on-ink);
  overflow: hidden;
  padding: 7rem var(--space-gutter) 5rem;
  text-align: center;
}
.hero__bg, .photoband__bg, .veterans__bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--par, 0px), 0) scale(1.16);
  will-change: transform;
}
.hero__veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgb(38 36 31 / 0.5), rgb(38 36 31 / 0.38) 45%, rgb(38 36 31 / 0.72)),
    radial-gradient(90rem 40rem at 50% 100%, rgb(38 36 31 / 0.35), transparent 60%);
}
.hero__content { position: relative; z-index: 2; max-width: 52rem; }
.hero__logo {
  width: clamp(8.5rem, 13vw, 11.5rem); height: auto;
  margin-inline: auto;
  margin-bottom: 1.75rem;
  opacity: 0.95;
  filter: drop-shadow(0 2px 12px rgb(38 36 31 / 0.35));
}
.hero__title {
  font-family: var(--font-display-xl);
  font-weight: var(--weight-display-xl);
  font-size: clamp(3.1rem, 9.5vw, 6.4rem);
  line-height: 1.02;
  letter-spacing: var(--tracking-display-xl);
  margin-block: 1.5rem 1.75rem;
  display: flex; flex-direction: column;
  text-shadow: 0 2px 24px rgb(38 36 31 / 0.35);
}
.hero__line--accent em { color: var(--color-primary-bright); }
.hero__sub {
  font-family: var(--font-body-lg);
  font-size: clamp(1.05rem, 1.5vw + 0.7rem, 1.3rem);
  font-weight: var(--weight-body-lg);
  color: var(--color-on-ink);
  opacity: 0.92;
  max-width: 34rem;
  margin-inline: auto;
  text-shadow: 0 1px 12px rgb(38 36 31 / 0.4);
}
.hero .eyebrow { justify-content: center; color: var(--color-primary-bright); }
.hero .eyebrow::before, .hero .eyebrow::after {
  content: ""; width: 2rem; height: 1px; background: var(--color-secondary); flex: none;
}
@media (max-width: 640px) {
  .hero .eyebrow { font-size: 0.72rem; letter-spacing: 0.18em; }
  .hero .eyebrow::before, .hero .eyebrow::after { display: none; }
}
.hero__cta {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
  margin-top: 2.5rem;
}
.hero__meta {
  margin-top: 2.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--color-on-ink);
  opacity: 0.75;
}
.hero__scroll {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2;
  color: var(--color-on-ink); opacity: 0.7; padding: 0.75rem;
  transition: color 180ms ease, opacity 180ms ease;
  animation: float 3s ease-in-out infinite;
}
.hero__scroll:hover { color: var(--color-primary-bright); opacity: 1; }
.hero__scroll .icon { width: 1.4rem; height: 1.4rem; }
@keyframes float {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}

/* Hero load sequence — blur-in after the veil lifts */
.js .hero__seq {
  animation: seq-in 650ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(700ms + var(--seq) * 130ms);
}
@keyframes seq-in {
  from { opacity: 0; filter: blur(10px); transform: translateY(14px); }
  to   { opacity: 1; filter: blur(0);   transform: none; }
}

/* ---------- Photo band ---------- */
.photoband {
  position: relative;
  min-height: 24rem;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--color-neutral);
  padding: 6rem var(--space-gutter);
}
@media (min-width: 768px) { .photoband { min-height: 30rem; } }
.photoband__veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgb(38 36 31 / 0.45), rgb(38 36 31 / 0.3) 50%, rgb(38 36 31 / 0.5));
}
.photoband__line {
  position: relative; z-index: 2;
  font-family: var(--font-headline-lg);
  font-weight: var(--weight-headline-lg);
  font-size: clamp(1.6rem, 2.6vw + 0.8rem, 2.6rem);
  line-height: 1.25;
  color: var(--color-on-ink);
  text-align: center;
  max-width: 26ch;
  text-shadow: 0 2px 20px rgb(38 36 31 / 0.45);
}
.photoband__line em { color: var(--color-primary-bright); }

/* ---------- About ---------- */
.about__grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 860px) {
  .about__grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 5rem; }
}
.arch-figure,
.about__figure {
  border-radius: 50% 50% var(--rounded-sm) var(--rounded-sm) / 42% 42% var(--rounded-sm) var(--rounded-sm);
  overflow: hidden;
  border: 1px solid rgb(110 84 60 / 0.4);
  padding: 0.6rem;
  background: var(--color-surface-raised);
  box-shadow: 0 30px 60px -30px rgb(39 34 25 / 0.35);
}
.about__figure { max-width: 24rem; margin-inline: auto; }
.arch-figure img,
.about__figure img {
  border-radius: inherit;
  height: 100%;
  object-fit: cover;
}
.about__figure img { filter: saturate(0.92) contrast(1.02); }
.about__body p + p { margin-top: 1.2rem; }
.about__signoff {
  font-family: var(--font-headline-md);
  font-size: 1.15rem;
  color: var(--color-on-surface-muted);
  margin-top: 1.75rem;
}
.benefits { margin-top: 4.5rem; }
.benefits__list {
  list-style: none;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem;
  border-top: 1px solid rgb(110 84 60 / 0.3);
  padding-top: 2.5rem;
}
@media (min-width: 768px) { .benefits__list { grid-template-columns: repeat(4, 1fr); } }
.benefits__list li {
  display: flex; flex-direction: column; align-items: center; gap: 0.9rem;
  text-align: center;
}
.benefits__list .icon--lg { color: var(--color-walnut); }
.benefits__list span {
  font-family: var(--font-label-sm); font-size: 0.75rem; font-weight: var(--weight-label-sm);
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-on-surface-muted);
}

/* ---------- Services ---------- */
.services__header { display: grid; gap: 2.5rem; align-items: end; }
@media (min-width: 900px) {
  .services__header { grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: 5rem; }
}
.services__figure {
  max-width: 20rem;
  margin-inline: auto;
  aspect-ratio: 4 / 5;
}
@media (max-width: 899px) { .services__figure { display: none; } }
/* Price menu — ruled editorial lists with dotted leaders */
.menu { margin-top: 4rem; display: grid; gap: 5rem; }
.menu--single { margin-top: 3rem; max-width: 52rem; }
.menu__label {
  display: flex; align-items: baseline; gap: 1.25rem;
  font-family: var(--font-label-sm);
  font-size: var(--size-label-sm);
  font-weight: var(--weight-label-sm);
  letter-spacing: var(--tracking-label-sm);
  text-transform: uppercase;
  color: var(--color-walnut);
  margin-bottom: 0.5rem;
}
.menu__label::after {
  content: ""; height: 1px; flex: 1;
  background: rgb(110 84 60 / 0.25);
  align-self: center;
}
.menu__hint {
  font-family: var(--font-headline-md);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-on-surface-muted);
}
.menu__list { list-style: none; }
.menu__item {
  display: grid;
  grid-template-columns: auto minmax(2.5rem, 1fr) auto;
  gap: 0 1.5rem;
  align-items: baseline;
  padding-block: 1.7rem;
  border-top: 1px solid rgb(110 84 60 / 0.18);
  transition: padding-left 250ms ease;
}
@media (hover: hover) {
  .menu__item:hover { padding-left: 0.6rem; }
  .menu__item:hover h4 { color: var(--color-walnut); }
}
.menu__item h4 {
  font-family: var(--font-headline-md);
  font-weight: var(--weight-headline-md);
  font-size: clamp(1.3rem, 0.9vw + 1rem, 1.6rem);
  line-height: 1.25;
  transition: color 250ms ease;
}
.menu__leader {
  align-self: end;
  border-bottom: 1px dotted rgb(110 84 60 / 0.45);
  margin-bottom: 0.55em;
}
.menu__item > p {
  grid-column: 1 / -1;
  color: var(--color-on-surface-muted);
  font-size: 0.98rem;
  max-width: 34rem;
  margin-top: 0.5rem;
}
.menu__price {
  font-family: var(--font-headline-md);
  font-weight: var(--weight-headline-md);
  font-size: 1.45rem;
  color: var(--color-on-surface);
  text-align: right;
  white-space: nowrap;
  line-height: 1.25;
}
.menu__price small {
  display: block;
  font-family: var(--font-label-sm);
  font-size: 0.68rem;
  font-weight: var(--weight-label-sm);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-on-surface-muted);
  margin-top: 0.2rem;
}
.menu__item--wide { grid-template-columns: 1fr; }
.menu__intro {
  font-family: var(--font-body-lg);
  font-weight: var(--weight-body-lg);
  font-size: 1.0625rem;
  color: var(--color-on-surface);
  max-width: var(--space-measure);
}
.durations {
  list-style: none;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgb(110 84 60 / 0.22);
  border: 1px solid rgb(110 84 60 / 0.22);
  margin-top: 1.4rem;
  max-width: 34rem;
}
@media (max-width: 560px) { .durations { grid-template-columns: repeat(2, 1fr); } }
.durations li {
  background: var(--color-surface);
  padding: 0.9rem 0.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.25rem;
}
.durations__time {
  font-family: var(--font-label-sm);
  font-size: 0.68rem; font-weight: var(--weight-label-sm);
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-on-surface-muted);
}
.durations__price {
  font-family: var(--font-headline-md);
  font-weight: var(--weight-headline-md);
  font-size: 1.4rem;
}
/* Add-ons: two quiet columns on desktop */
@media (min-width: 768px) {
  .menu__list--addons {
    display: grid; grid-template-columns: 1fr 1fr;
    column-gap: 4rem;
  }
  .menu__list--addons .menu__item:nth-child(2) { border-top: 1px solid rgb(110 84 60 / 0.18); }
}
.menu__list--addons .menu__item { padding-block: 1.1rem; }
.menu__list--addons .menu__item h4 { font-size: 1.15rem; font-family: var(--font-body-lg); font-weight: 400; }
.menu__list--addons .menu__item > p { font-size: 0.9rem; margin-top: 0.3rem; }
.menu__list--addons .menu__price { font-size: 1.2rem; }

/* Facials section shares the ivory room language */
.facials .headline em { color: var(--color-walnut); }

/* Professional product lines — a credential, not a menu item */
.brands {
  display: flex; flex-wrap: wrap; align-items: baseline;
  gap: 0.5rem 0.9rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(110 84 60 / 0.22);
  max-width: var(--space-measure);
}
.brands__label {
  font-family: var(--font-label-sm);
  font-size: 0.72rem; font-weight: var(--weight-label-sm);
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--color-on-surface-muted);
  margin-right: 0.35rem;
}
.brands__names { display: inline; }
.brands__name {
  font-family: var(--font-headline-md);
  font-weight: var(--weight-headline-md);
  font-size: 1.35rem;
  color: var(--color-walnut);
  white-space: nowrap;
}
/* Separator rides with the second name so it can never dangle at a line end */
.brands__name + .brands__name::before {
  content: "·";
  color: rgb(110 84 60 / 0.45);
  margin: 0 0.6rem;
}
@media (max-width: 560px) {
  .brands__label { flex-basis: 100%; margin-right: 0; }
}

/* Payment brand logos — monochrome, quiet */
.payment__logos {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 1.75rem 3rem;
  margin-top: 1rem;
  opacity: 0.75;
}
@media (min-width: 900px) { .payment__logos { grid-column: 1 / -1; margin-top: 0; } }
.payment__logos img { height: 1.5rem; width: auto; }
.payment__logos .payment__logos-tall { height: 2.4rem; }
.services__note {
  margin-top: 2.5rem;
  font-family: var(--font-headline-md);
  font-weight: var(--weight-body-lg);
  font-size: var(--size-body-lg);
  color: var(--color-on-surface-muted);
  font-style: italic;
}

/* ---------- Veterans ---------- */
.veterans__veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgb(38 36 31 / 0.72), rgb(38 36 31 / 0.55) 50%, rgb(38 36 31 / 0.78));
}
.veterans .container { position: relative; z-index: 2; }
.veterans__stars {
  display: flex; justify-content: center; align-items: center; gap: 1rem;
  color: var(--color-primary-bright);
  margin-bottom: 2rem;
}
.veterans__stars .icon { width: 1.1rem; height: 1.1rem; }
.veterans__stars .icon--lg { width: 1.7rem; height: 1.7rem; }
.veterans__chips {
  display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center;
  margin-block: 2.25rem;
}
.chip {
  font-family: var(--font-label-sm); font-size: 0.75rem; font-weight: var(--weight-label-sm);
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-on-ink);
  border: 1px solid rgb(168 178 154 / 0.45);
  border-radius: var(--rounded-full);
  padding: 0.65rem 1.4rem;
  background: rgb(38 36 31 / 0.35);
}

/* ---------- Payment ---------- */
.payment__grid { display: grid; gap: 3rem; }
@media (min-width: 900px) {
  .payment__grid { grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); align-items: start; }
  .payment__note { grid-column: 1 / -1; }
}
.payment__methods { list-style: none; }
.payment__methods li {
  display: flex; align-items: center; gap: 1.25rem;
  padding-block: 1.35rem;
  border-top: 1px solid rgb(110 84 60 / 0.25);
  font-family: var(--font-body-lg);
  font-weight: 400;
  font-size: 1.0625rem;
}
.payment__methods li:last-child { border-bottom: 1px solid rgb(110 84 60 / 0.25); }
.payment__methods .icon--lg { color: var(--color-walnut); }
.payment__note { color: var(--color-on-surface-muted); font-style: italic; }

/* ---------- Visit ---------- */
.visit__phone {
  display: inline-block;
  font-family: var(--font-display-xl);
  font-weight: var(--weight-display-xl);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  line-height: 1.1;
  color: var(--color-primary-bright);
  text-decoration: none;
  margin-block: 1.5rem 1rem;
  transition: color 200ms ease;
}
.visit__phone:hover { color: var(--color-on-ink); }
.visit__address {
  font-style: normal;
  color: var(--color-on-ink-muted);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}
.visit__address span {
  font-family: var(--font-label-sm); font-size: 0.72rem; font-weight: var(--weight-label-sm);
  letter-spacing: 0.2em; text-transform: uppercase;
}
.visit__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ---------- Footer ---------- */
.footer {
  background: var(--color-neutral);
  color: var(--color-on-ink-muted);
  border-top: 1px solid rgb(168 178 154 / 0.22);
  padding-block: 3.5rem;
}
.footer__inner { display: grid; gap: 2rem; justify-items: center; text-align: center; }
.footer__brand { display: flex; flex-direction: column; line-height: 1.2; }
.footer__logo img { width: 11rem; height: auto; opacity: 0.9; }
.footer__details { font-size: 0.9rem; line-height: 2; }
.footer__details a { color: var(--color-on-ink); text-decoration-color: rgb(168 178 154 / 0.5); text-underline-offset: 3px; }
.footer__details a:hover { color: var(--color-primary-bright); }
.footer__fine { font-size: 0.78rem; margin-top: 0.75rem; opacity: 0.75; }

/* ---------- Mobile call bar ---------- */
.callbar {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 60;
  display: flex; gap: 0.6rem;
  padding: 0.7rem var(--space-gutter) calc(0.7rem + env(safe-area-inset-bottom));
  background: rgb(48 45 39 / 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgb(168 178 154 / 0.3);
  transform: translateY(110%);
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}
.callbar.is-visible { transform: none; }
.callbar .button {
  flex: 1; padding: 0.85rem 0.9rem;
  letter-spacing: 0.07em; white-space: nowrap;
}
.callbar .button--ghost { flex: 0 0 auto; }
.callbar .icon { width: 0.95em; height: 0.95em; }
@media (min-width: 768px) { .callbar { display: none; } }

/* ---------- Scroll reveals ---------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--rd, 0) * 90ms);
}
.js [data-reveal].in-view { opacity: 1; transform: none; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .loader { display: none; }
  .js .hero__seq { animation: none; }
  .hero__scroll { animation: none; }
  .hero__bg, .photoband__bg, .veterans__bg { transform: scale(1.02); }
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .callbar { transition: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
