/* ==========================================================================
   Newington Hair & Beauty
   Tokens adapted from the CJ ONSTYLE reference: flat, hairline-separated,
   sharp geometry, a single violet "commit" colour for booking actions.
   ========================================================================== */

:root {
  /* colour */
  --primary: #640faf;
  --primary-dark: #4f0b8c;
  --sale: #ec0040;
  --star: #f5a100;
  --ink: #000000;
  --ink-nav: #111111;
  --body: #2a2a2a;
  --muted: #666666;
  --muted-alt: #767676;
  --faint: #929292;
  --header-dark: #26292a;
  --canvas: #ffffff;
  --surface: #f5f5f5;
  --surface-alt: #f0f0f0;
  --hairline: #e5e5e5;
  --border-strong: #b2b2b2;
  --on-primary: #ffffff;

  /* type */
  --font: "Pretendard", "Nanum Barun Gothic", "Malgun Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  /* spacing */
  --s-xs: 2px;
  --s-sm: 4px;
  --s-base: 8px;
  --s-md: 12px;
  --s-lg: 20px;
  --s-xl: 26px;
  --s-xxl: 48px;

  /* radius */
  --r-xs: 2px;
  --r-sm: 4px;
  --r-md: 11px;
  --r-lg: 18px;
  --r-full: 9999px;

  /* motion */
  --motion-fast: 120ms;
  --motion-standard: 200ms;
  --motion-slow: 400ms;
  --ease-enter: cubic-bezier(0.2, 0.6, 0.25, 1);
  --ease-standard: cubic-bezier(0.25, 0.1, 0.25, 1);

  --container: 1200px;
  --gutter: 16px;
  --header-h: 60px;
  --utility-h: 34px;
}

@media (min-width: 768px) {
  :root { --gutter: 24px; --header-h: 72px; }
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 8px); }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.5;
  color: var(--body);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3, p, ul, ol, dl, dd, figure { margin: 0; padding: 0; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link {
  position: absolute; left: 8px; top: -60px; z-index: 100;
  background: var(--header-dark); color: #fff; padding: 8px 14px; border-radius: var(--r-sm);
}
.skip-link:focus { top: 8px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 22px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  font-size: 16px; font-weight: 600; white-space: nowrap;
  transition: background-color var(--motion-fast) var(--ease-standard), border-color var(--motion-fast), color var(--motion-fast), transform var(--motion-fast);
}
.btn:active { transform: scale(0.98); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary { background: var(--primary); border-color: var(--primary); color: var(--on-primary); }
.btn--primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn--outline { background: var(--canvas); border-color: var(--border-strong); color: var(--ink-nav); }
.btn--outline:hover { border-color: var(--ink-nav); }
.btn--ghost-light { background: rgba(0,0,0,.2); border-color: rgba(255,255,255,.6); color: #fff; }
.btn--ghost-light:hover { background: rgba(0,0,0,.4); border-color: #fff; }
.btn--sm { height: 40px; padding: 0 14px; font-size: 14px; }
.btn--block { width: 100%; }

/* small phones (iPhone SE / 320–374px): tighter buttons and card padding */
@media (max-width: 374px) {
  .btn { padding-inline: 12px; font-size: 15px; }
  .btn svg { width: 16px; height: 16px; }
  .visit__row, .visit__actions { padding-inline: 14px; }
  .visit__row { gap: 10px; }
}

/* ---------- badge ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 0 8px; height: 22px;
  border-radius: var(--r-xs);
  font-size: 12px; font-weight: 700; line-height: 1;
}
.badge--scrim { background: rgba(0,0,0,.35); color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,.3); }
.badge--sale { background: var(--sale); color: #fff; }
.badge--line { background: var(--canvas); color: var(--ink-nav); box-shadow: inset 0 0 0 1px var(--hairline); }

.stars { display: inline-flex; gap: 1px; color: var(--star); }
.stars svg { width: 14px; height: 14px; }

/* ==========================================================================
   Header component
   ========================================================================== */
.utility-bar { background: var(--header-dark); color: #fff; font-size: 12px; }
.utility-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; height: var(--utility-h); }
.utility-bar__status { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.utility-bar__dot { width: 7px; height: 7px; border-radius: 50%; background: #3ccf6e; flex: none; }
.utility-bar__dot.is-closed { background: var(--faint); }
.utility-bar__links { display: flex; gap: 16px; color: #d6d6d6; }
.utility-bar__links a:hover { color: #fff; }
.utility-bar__links .hide-sm { display: none; }
@media (min-width: 768px) { .utility-bar__links .hide-sm { display: inline; } }

.site-header { position: sticky; top: 0; z-index: 50; background: var(--canvas); border-bottom: 1px solid var(--hairline); }
.site-header__inner { display: flex; align-items: center; gap: 24px; height: var(--header-h); }

/* logo.svg is a 2172×724 canvas with the artwork at ~x95–2084, y154–608;
   negative margins trim the empty canvas so --logo-h sizes the whole file. */
.logo { --logo-h: 46px; display: inline-flex; flex: none; line-height: 0; }
.logo__img {
  width: auto; height: var(--logo-h); max-width: none;
  margin: calc(var(--logo-h) * -0.21) 0 calc(var(--logo-h) * -0.16) calc(var(--logo-h) * -0.13);
}
.logo--footer { --logo-h: 64px; }
@media (min-width: 768px) { .logo { --logo-h: 58px; } .logo--footer { --logo-h: 72px; } }

.gnb { display: none; margin-left: auto; }
.gnb__list { display: flex; gap: 28px; }
.gnb__link { position: relative; display: block; padding: 8px 0; font-size: 15px; color: var(--ink-nav); transition: color var(--motion-fast); }
.gnb__link:hover, .gnb__link.is-active { color: var(--primary); }
.site-header__cta { display: none; }

.menu-toggle { margin-left: auto; display: grid; place-items: center; width: 44px; height: 44px; margin-right: -10px; }
.menu-toggle__bars { position: relative; width: 22px; height: 2px; background: var(--ink-nav); transition: background var(--motion-standard); }
.menu-toggle__bars::before, .menu-toggle__bars::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink-nav);
  transition: transform var(--motion-standard) var(--ease-enter);
}
.menu-toggle__bars::before { top: -7px; }
.menu-toggle__bars::after { top: 7px; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars::after { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1024px) {
  .gnb { display: block; }
  .site-header__cta { display: inline-flex; }
  .menu-toggle { display: none; }
}

/* mobile drawer */
.drawer {
  position: fixed; inset: calc(var(--header-h)) 0 0 0; z-index: 49;
  background: var(--canvas);
  display: flex; flex-direction: column;
  transform: translateY(-8px); opacity: 0; visibility: hidden;
  transition: opacity var(--motion-standard) var(--ease-enter), transform var(--motion-standard) var(--ease-enter), visibility 0s linear var(--motion-standard);
}
.drawer.is-open { opacity: 1; transform: none; visibility: visible; transition-delay: 0s; }
.drawer__list { border-top: 1px solid var(--hairline); }
.drawer__link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter); font-size: 17px; font-weight: 600; color: var(--ink-nav);
  border-bottom: 1px solid var(--hairline);
}
.drawer__link::after { content: "›"; color: var(--faint); font-size: 22px; font-weight: 400; }
.drawer__foot { margin-top: auto; padding: var(--s-lg) var(--gutter) calc(var(--s-lg) + env(safe-area-inset-bottom)); background: var(--surface); display: grid; gap: 10px; }
.drawer__meta { font-size: 13px; color: var(--muted); }
body.no-scroll { overflow: hidden; }
@media (min-width: 1024px) { .drawer { display: none; } }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; color: #fff; background: #111; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__video, .hero__slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero__slide { opacity: 0; transform: scale(1.08); transition: opacity 1.2s var(--ease-standard); }
.hero__slide.is-active { opacity: 1; animation: kenburns 7s linear forwards; }
@keyframes kenburns { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.25) 45%, rgba(0,0,0,.78) 100%);
}
.hero__inner {
  position: relative; z-index: 1;
  min-height: calc(100svh - var(--header-h) - var(--utility-h));
  max-height: 820px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-block: 40px 36px;
}
.hero__eyebrow { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.hero__title { font-size: clamp(34px, 9vw, 64px); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; max-width: 14ch; }
.hero__lead { margin-top: 14px; font-size: 16px; line-height: 1.55; color: rgba(255,255,255,.88); max-width: 46ch; }
.hero__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 24px; max-width: 440px; }
.hero__actions .btn { padding: 0 12px; }
.hero__dots { position: absolute; right: var(--gutter); bottom: 36px; z-index: 2; display: none; gap: 6px; }
.hero__dot { width: 24px; height: 3px; background: rgba(255,255,255,.35); transition: background var(--motion-standard); }
.hero__dot.is-active { background: #fff; }
@media (min-width: 768px) {
  .hero__inner { padding-block: 64px 64px; }
  .hero__lead { font-size: 18px; }
  .hero__actions { display: flex; }
  .hero__actions .btn { padding: 0 26px; height: 54px; }
  .hero__dots { display: flex; bottom: 64px; }
}

/* desktop hero: the Instagram photos are portrait, so stretching one across a wide screen
   blurs and crops it. From 1024px show three side by side at their natural 4:5 ratio. */
.hero__collage { display: none; }
@media (min-width: 1024px) {
  .hero { background: var(--ink-nav); }
  .hero__media, .hero__dots { display: none; }
  .hero__inner {
    min-height: 0; max-height: none;
    display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); align-items: center; gap: 56px;
    padding-block: 72px 104px;
  }
  .hero__collage { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
  .hero__collage img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--r-xs); }
  .hero__collage img:nth-child(2) { transform: translateY(32px); }
}

/* ==========================================================================
   Quick info strip
   ========================================================================== */
.quick { border-bottom: 1px solid var(--hairline); }
.quick__list { display: grid; grid-template-columns: repeat(2, 1fr); }
.quick__item { display: flex; gap: 10px; align-items: flex-start; padding: 16px 12px 16px 0; border-bottom: 1px solid var(--hairline); }
.quick__item:nth-child(odd) { border-right: 1px solid var(--hairline); }
.quick__item:nth-child(even) { padding-left: 12px; }
.quick__item:nth-last-child(-n+2) { border-bottom: 0; }
.quick__icon { width: 20px; height: 20px; color: var(--primary); flex: none; margin-top: 1px; }
.quick__label { font-size: 12px; color: var(--muted-alt); }
.quick__value { font-size: 14px; font-weight: 600; color: var(--ink-nav); line-height: 1.35; }
@media (min-width: 768px) {
  .quick__list { grid-template-columns: repeat(4, 1fr); }
  .quick__item, .quick__item:nth-child(even) { padding: 22px 20px; border-bottom: 0; border-right: 1px solid var(--hairline); }
  .quick__item:first-child { padding-left: 0; }
  .quick__item:last-child { border-right: 0; }
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding-block: 48px; }
.section--tint { background: var(--surface); }
@media (min-width: 768px) { .section { padding-block: 80px; } }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.section-head__kicker { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); }
.section-head__title { margin-top: 6px; font-size: clamp(24px, 5.5vw, 36px); font-weight: 800; line-height: 1.2; letter-spacing: -0.015em; color: var(--ink); }
.section-head__desc { margin-top: 8px; font-size: 15px; color: var(--muted); max-width: 52ch; }
.section-head__more { flex: none; font-size: 14px; color: var(--muted-alt); white-space: nowrap; }
.section-head__more:hover { color: var(--ink-nav); }
@media (min-width: 768px) { .section-head { margin-bottom: 32px; } }

/* ---------- about ---------- */
.about { display: grid; gap: 24px; }
.about__text p { font-size: 15px; line-height: 1.7; color: var(--body); }
.about__text p + p { margin-top: 12px; }
.about__facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--hairline); border-left: 1px solid var(--hairline); }
/* dt (label) precedes dd (value) in the markup; show the value on top */
.about__fact { display: flex; flex-direction: column-reverse; justify-content: flex-end; padding: 16px; border-right: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); background: var(--canvas); }
.about__fact-value { font-size: 22px; font-weight: 800; line-height: 1.2; color: var(--ink); letter-spacing: -0.01em; }
.about__fact-label { margin-top: 4px; font-size: 13px; color: var(--muted); line-height: 1.4; }
@media (min-width: 768px) {
  .about { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 48px; align-items: start; }
  .about__text p { font-size: 16px; }
  .about__fact { padding: 20px; }
  .about__fact-value { font-size: 26px; }
}

/* ---------- services ---------- */
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.service {
  position: relative; display: flex; flex-direction: column;
  background: var(--canvas); border: 1px solid var(--hairline); border-radius: var(--r-xs); overflow: hidden;
  transition: border-color var(--motion-fast);
}
.service:hover { border-color: var(--border-strong); }
.service__img { position: relative; aspect-ratio: 4 / 5; background: var(--surface-alt); overflow: hidden; }
.service__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--motion-slow) var(--ease-standard); }
.service:hover .service__img img { transform: scale(1.04); }
.service__img .badge { position: absolute; left: 8px; top: 8px; }
.service__body { padding: 12px; }
.service__name { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.service__desc { margin-top: 4px; font-size: 13px; color: var(--muted); line-height: 1.45; }
@media (min-width: 768px) {
  .services { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .service__body { padding: 16px; }
  .service__name { font-size: 17px; }
  .service__desc { font-size: 14px; }
}
@media (min-width: 1024px) { .services { grid-template-columns: repeat(4, 1fr); } }

.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }
.chip { display: inline-flex; align-items: center; height: 32px; padding: 0 12px; border: 1px solid var(--hairline); border-radius: var(--r-md); background: var(--canvas); font-size: 13px; color: var(--body); }

/* ---------- instagram ---------- */
.ig-profile { display: flex; align-items: center; gap: 12px; }
.ig-profile__avatar {
  width: 48px; height: 48px; border-radius: 50%; padding: 2px; flex: none;
  background: conic-gradient(from 200deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5, #feda75);
}
.ig-profile__avatar span { display: grid; place-items: center; width: 100%; height: 100%; border-radius: 50%; background: var(--canvas); border: 2px solid var(--canvas); font-size: 12px; font-weight: 800; color: var(--ink); letter-spacing: .02em; }
.ig-profile__handle { font-size: 16px; font-weight: 700; color: var(--ink); }
.ig-profile__meta { font-size: 13px; color: var(--muted); }

.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 20px; }
.ig-item { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--surface-alt); }
.ig-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--motion-slow) var(--ease-standard); }
.ig-item__overlay {
  position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 8px;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.6));
  color: #fff; font-size: 12px; font-weight: 600; opacity: 0; transition: opacity var(--motion-standard);
}
.ig-item__type { position: absolute; top: 6px; right: 6px; width: 18px; height: 18px; color: #fff; filter: drop-shadow(0 0 2px rgba(0,0,0,.5)); }
.ig-item:hover img { transform: scale(1.05); }
.ig-item:hover .ig-item__overlay, .ig-item:focus-visible .ig-item__overlay { opacity: 1; }
@media (hover: none) { .ig-item__overlay { opacity: 1; background: linear-gradient(180deg, transparent 65%, rgba(0,0,0,.55)); font-size: 11px; } }
@media (min-width: 768px) { .ig-grid { grid-template-columns: repeat(4, 1fr); gap: 4px; margin-top: 28px; } }
@media (min-width: 1024px) { .ig-grid { grid-template-columns: repeat(6, 1fr); } }
.ig-cta { margin-top: 20px; display: flex; justify-content: center; }

/* ---------- reviews ---------- */
.rating-summary {
  display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px 20px; align-items: center;
  padding: 20px; background: var(--canvas); border: 1px solid var(--hairline); border-radius: var(--r-xs);
}
.rating-summary__source { display: inline-flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 700; color: var(--ink-nav); }
.rating-summary__source svg { width: 20px; height: 20px; }
.rating-summary__count { margin-top: 6px; font-size: 14px; line-height: 1.5; color: var(--muted); }
.rating-summary__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
@media (min-width: 768px) {
  .rating-summary { grid-template-columns: minmax(0, 1fr) auto; padding: 24px 28px; }
  .rating-summary__actions { display: flex; }
}


/* mobile: horizontal-only carousel. overflow-y hidden stops the list from scrolling
   vertically; scroll-padding keeps the gutter when a card snaps to the start. */
.reviews {
  display: flex; gap: 8px; margin-top: 12px;
  overflow-x: auto; overflow-y: hidden; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter);
  margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); scrollbar-width: none;
}
/* the fade-up reveal fires per card as it slides in sideways, making cards jump up and down */
@media (max-width: 767px) {
  .reviews .reveal { opacity: 1; transform: none; transition: none; }
}
.reviews::-webkit-scrollbar { display: none; }
.review {
  flex: 0 0 84%; scroll-snap-align: start;
  display: flex; flex-direction: column; gap: 10px;
  padding: 18px; background: var(--canvas); border: 1px solid var(--hairline); border-radius: var(--r-xs);
}
.review__top { display: flex; align-items: center; gap: 10px; }
.review__avatar { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; font-size: 15px; font-weight: 700; color: #fff; flex: none; }
.review__name { font-size: 14px; font-weight: 700; color: var(--ink-nav); }
.review__date { font-size: 12px; color: var(--faint); }
.review__text { font-size: 14px; line-height: 1.6; color: var(--body); }
.review__tag { margin-top: auto; font-size: 12px; color: var(--muted-alt); }
@media (min-width: 768px) {
  .reviews { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 16px; margin-inline: 0; padding-inline: 0; overflow: visible; }
  .review { padding: 22px; }
}
@media (min-width: 1024px) { .reviews { grid-template-columns: repeat(3, 1fr); } }

/* ---------- visit ---------- */
/* minmax(0, …) lets the column shrink below its content's min width —
   a plain auto track kept the card 340px wide and cut it off on ≤360px phones */
.visit { display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; }
.visit__card { background: var(--canvas); border: 1px solid var(--hairline); border-radius: var(--r-xs); }
.visit__row { display: flex; gap: 12px; padding: 16px; border-bottom: 1px solid var(--hairline); }
.visit__row:last-child { border-bottom: 0; }
.visit__row svg { width: 20px; height: 20px; flex: none; color: var(--ink-nav); margin-top: 2px; }
.visit__label { font-size: 12px; color: var(--muted-alt); }
.visit__value { font-size: 15px; color: var(--ink-nav); }
.visit__value a { color: var(--primary); font-weight: 600; }

.hours { width: 100%; border-collapse: collapse; margin-top: 4px; font-size: 14px; }
.hours th, .hours td { padding: 5px 0; text-align: left; font-weight: 400; color: var(--body); }
.hours td { text-align: right; white-space: nowrap; padding-left: 12px; }
.hours tr.is-today th, .hours tr.is-today td { font-weight: 700; color: var(--ink); }
.hours tr.is-today th::after { content: "Today"; margin-left: 8px; padding: 1px 6px; font-size: 11px; font-weight: 700; color: #fff; background: var(--primary); border-radius: var(--r-xs); vertical-align: 1px; }
.hours .is-closed { color: var(--sale); }

.visit__map { position: relative; min-height: 300px; background: var(--surface-alt); border: 1px solid var(--hairline); border-radius: var(--r-xs); overflow: hidden; }
.visit__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.visit__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 16px; border-top: 1px solid var(--hairline); }
@media (min-width: 768px) {
  .visit { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 24px; }
  .visit__row { padding: 18px 22px; }
  .visit__actions { padding: 18px 22px; }
}

/* ==========================================================================
   Footer component
   ========================================================================== */
.site-footer { background: var(--surface); border-top: 1px solid var(--hairline); color: var(--muted); font-size: 13px; }
.site-footer__top { display: grid; gap: 28px; padding-block: 36px; }
.site-footer__brand p { margin-top: 12px; max-width: 34ch; line-height: 1.6; }
.site-footer__title { font-size: 13px; font-weight: 700; color: var(--ink-nav); margin-bottom: 10px; }
.site-footer__list { display: grid; gap: 6px; }
.site-footer__list a:hover { color: var(--ink-nav); }
.site-footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.site-footer__social { display: flex; gap: 8px; margin-top: 16px; }
.site-footer__social a { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid var(--border-strong); border-radius: 50%; color: var(--ink-nav); background: var(--canvas); }
.site-footer__social a:hover { border-color: var(--ink-nav); }
.site-footer__social svg { width: 18px; height: 18px; }
.site-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; padding-block: 18px; border-top: 1px solid var(--hairline); font-size: 12px; color: var(--faint); }
@media (min-width: 768px) {
  .site-footer__top { grid-template-columns: 1fr 1.4fr; padding-block: 48px; }
  .site-footer__cols { grid-template-columns: repeat(3, 1fr); }
}

/* sticky mobile booking bar */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 8px;
  padding: 8px var(--gutter) calc(8px + env(safe-area-inset-bottom));
  background: var(--canvas); border-top: 1px solid var(--hairline);
  transform: translateY(110%); transition: transform var(--motion-standard) var(--ease-enter);
}
.mobile-bar.is-visible { transform: none; }
.has-mobile-bar .site-footer { padding-bottom: 72px; }
@media (min-width: 768px) { .mobile-bar { display: none; } .has-mobile-bar .site-footer { padding-bottom: 0; } }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity var(--motion-slow) var(--ease-enter), transform var(--motion-slow) var(--ease-enter); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: 0ms !important; }
  .reveal { opacity: 1; transform: none; }
}
