/* =========================================================
   THE NAIL SHOP SOUTHAMPTON — site styles
   Palette: crisp white, hot coral accent, soft shell-pink
   surfaces, ink black text. Playful chic city nail bar,
   bright walk-in energy for Above Bar Street footfall.
   ========================================================= */

:root {
  --white: #FFFFFF;
  --ink: #1B1B1F;
  --ink-soft: #55555C;      /* muted body copy on white — AA 7.3:1 */
  --coral: #E8465A;         /* decorative — large text, icons, backgrounds */
  --coral-dark: #C42B3F;    /* AA-safe for small text/links on white — 4.6:1 */
  --coral-deep: #9E1F35;    /* hover / pressed state */
  --shell: #F9E3E0;         /* surface tint */
  --shell-deep: #F3CCC6;    /* borders/rules on shell */
  --ink-on-coral: #FFFFFF;
  --radius: 22px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px -14px rgba(27, 27, 31, 0.22);
  --shadow-lg: 0 26px 60px -20px rgba(27, 27, 31, 0.28);
  --font-head: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --maxw: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --topbar-h: 44px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.12; margin: 0; }
p { margin: 0; }
button { font-family: inherit; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 3px solid var(--coral-dark); outline-offset: 3px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.7rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.btn:active { transform: scale(0.98); }
.btn--primary { background: var(--coral); color: var(--white); box-shadow: 0 10px 24px -10px rgba(232, 70, 90, 0.55); }
.btn--primary:hover { background: var(--coral-deep); transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(232, 70, 90, 0.6); }
.btn--ghost { background: transparent; color: var(--ink); border-color: rgba(27,27,31,0.18); }
.btn--ghost:hover { border-color: var(--coral); color: var(--coral-dark); transform: translateY(-2px); }
.btn--ghost-dark { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn--ghost-dark:hover { border-color: var(--white); background: rgba(255,255,255,0.12); }
.btn--lg { padding: 1.05rem 2.2rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Pills ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--shell);
  color: var(--coral-dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 999px;
}
.pill--on-coral { background: rgba(255,255,255,0.2); color: var(--white); }
.pill svg { width: 14px; height: 14px; }

/* ---------- Topbar (sticky strip) ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 600;
  background: var(--ink);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  min-height: var(--topbar-h);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: var(--topbar-h);
  gap: 1rem;
  flex-wrap: nowrap;
  overflow: hidden;
}
.topbar__msg { display: flex; align-items: center; gap: 0.5rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar__msg strong { color: var(--coral); font-weight: 700; }
.topbar__phone { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 700; color: var(--white); white-space: nowrap; flex-shrink: 0; }
.topbar__phone svg { width: 15px; height: 15px; flex-shrink: 0; }
.topbar__phone:hover { color: var(--coral); }
@media (max-width: 560px) { .topbar__msg span.hide-mobile { display: none; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: var(--topbar-h);
  z-index: 500;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(27,27,31,0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  gap: 1rem;
}
.brand {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand__accent { color: var(--coral-dark); }
.brand small {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 2px;
}

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__list { display: flex; gap: 1.6rem; }
.nav__list a { font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; position: relative; padding: 0.25rem 0; }
.nav__list a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--coral);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav__list a:hover::after, .nav__list a:focus-visible::after, .nav__list a.active::after { transform: scaleX(1); }
.nav__list a.active { color: var(--coral-dark); }
.nav__cta { display: flex; align-items: center; gap: 0.75rem; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid rgba(27,27,31,0.16);
  border-radius: var(--radius-sm);
  color: var(--ink);
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    top: 0;
    height: 100vh;
    width: min(320px, 86vw);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5.5rem 1.75rem 2rem;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.32s var(--ease);
    border-left: 1px solid rgba(27,27,31,0.1);
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 1.5rem; }
  .nav__cta { flex-direction: column; align-items: stretch; width: 100%; }
  body.nav-open { overflow: hidden; }
}
.nav-scrim { display: none; position: fixed; inset: 0; background: rgba(27,27,31,0.5); z-index: 450; }
.nav-scrim.is-open { display: block; }

/* ---------- Dot divider (polish-dot pattern) ---------- */
.dot-divider { display: flex; justify-content: center; align-items: center; gap: 0.5rem; padding: 0.5rem 0; }
.dot-divider svg { width: 100%; max-width: 220px; height: 14px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 3rem 0 5rem;
  overflow: hidden;
  background: linear-gradient(180deg, var(--shell) 0%, var(--white) 78%);
}
.hero__blob {
  position: absolute;
  top: -120px; right: -140px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(232,70,90,0.22), rgba(232,70,90,0) 70%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-head); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--coral-dark); margin-bottom: 1rem;
}
.hero__eyebrow::before { content: ''; width: 26px; height: 3px; border-radius: 2px; background: var(--coral); }
.hero h1 { font-size: clamp(2.5rem, 5.5vw, 4.1rem); letter-spacing: -0.01em; color: var(--ink); }
.hero h1 .stroke { color: var(--coral-dark); }
.hero__lede { margin-top: 1.25rem; font-size: 1.12rem; color: var(--ink-soft); max-width: 46ch; }
.hero__actions { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__pills { margin-top: 1.75rem; display: flex; gap: 0.6rem; flex-wrap: wrap; }
.hero__trust { margin-top: 1.75rem; display: flex; gap: 1.6rem; flex-wrap: wrap; }
.hero__trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--ink-soft); font-weight: 500; }
.hero__trust-item svg { width: 18px; height: 18px; color: var(--coral-dark); flex-shrink: 0; }
.hero__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media-badge {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-family: var(--font-head); font-size: 0.85rem; font-weight: 700;
  display: flex; align-items: center; gap: 0.6rem;
  box-shadow: var(--shadow);
}
.hero__media-badge svg { width: 18px; height: 18px; color: var(--coral-dark); flex-shrink: 0; }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 420px; margin: 0 auto; aspect-ratio: 1/1; }
}

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.4s ease-out, transform 0.4s ease-out; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
.no-js .reveal { opacity: 1; transform: none; }

[data-hero-stagger] { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease-out, transform 0.5s ease-out; }
[data-hero-stagger].is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { [data-hero-stagger] { opacity: 1; transform: none; transition: none; } }
.no-js [data-hero-stagger] { opacity: 1; transform: none; }

/* ---------- Walk-in stats band ---------- */
.stats-band { background: var(--ink); color: var(--white); padding: 1.75rem 0; }
.stats-band .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem; }
.stats-band__item { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-head); }
.stats-band__item svg { width: 22px; height: 22px; color: var(--coral); }
.stats-band__big { font-size: 1.15rem; font-weight: 700; }
.stats-band__small { font-size: 0.8rem; color: rgba(255,255,255,0.7); font-family: var(--font-body); font-weight: 500; }

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding: 5.5rem 0; }
.section--alt { background: var(--shell); }
.section-head { max-width: 660px; margin: 0 auto 3rem; text-align: center; }
.section-head__eyebrow { display: inline-block; font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--coral-dark); margin-bottom: 0.75rem; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); }
.section-head p { margin-top: 1rem; color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- Services / menu board ---------- */
.menu-board {
  background: var(--white);
  border: 2px solid var(--shell-deep);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow);
}
.menu-board__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(1.5rem, 4vw, 3rem); }
.menu-board__cat-head { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.1rem; }
.menu-board__cat-head svg { width: 26px; height: 26px; color: var(--coral-dark); flex-shrink: 0; }
.menu-board__cat-head h3 { font-size: 1.15rem; text-transform: uppercase; letter-spacing: 0.04em; }
.menu-row { display: flex; align-items: baseline; gap: 10px; padding: 0.65rem 0; border-bottom: 1px dashed var(--shell-deep); }
.menu-row:last-child { border-bottom: none; }
.menu-row__name { font-weight: 600; font-size: 0.96rem; }
.menu-row__leader { flex: 1; border-bottom: 2px dotted rgba(27,27,31,0.18); margin-bottom: 5px; min-width: 16px; }
.menu-row__price { font-family: var(--font-head); font-weight: 700; color: var(--coral-dark); white-space: nowrap; font-size: 0.98rem; }
.menu-note {
  margin-top: 2.25rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-style: italic;
}
.menu-photo-strip {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--shell-deep);
  flex-wrap: wrap;
}
.menu-photo-strip__img {
  width: 130px; height: 231px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}
.menu-photo-strip__img img { width: 100%; height: 100%; object-fit: cover; }
.menu-photo-strip p { color: var(--ink-soft); font-size: 0.92rem; max-width: 46ch; }
.menu-photo-strip strong { color: var(--ink); }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 0.9rem;
}
.gallery-grid__item { position: relative; overflow: hidden; border-radius: var(--radius-sm); background: var(--shell); }
.gallery-grid__item--tall { grid-row: span 2; }
.gallery-grid__item--wide { grid-column: span 2; }
.gallery-grid__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s var(--ease); }
.gallery-grid__item:hover img, .gallery-grid__item:focus-within img { transform: scale(1.03); }
.gallery-grid__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0.6rem 0.85rem;
  font-size: 0.8rem; font-weight: 600;
  color: var(--white);
  background: linear-gradient(0deg, rgba(27,27,31,0.82), transparent);
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.gallery-grid__item:hover .gallery-grid__caption, .gallery-grid__item:focus-within .gallery-grid__caption { opacity: 1; transform: translateY(0); }
@media (hover: none) { .gallery-grid__caption { opacity: 1; transform: none; } }

@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; } }
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid__item--tall, .gallery-grid__item--wide { grid-column: span 1; grid-row: span 1; }
}

/* ---------- Placeholder photo tile (real client photo not supplied yet) ---------- */
.placeholder-tile {
  width: 100%;
  height: 100%;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at 22% 22%, rgba(255,255,255,0.6), rgba(255,255,255,0) 46%),
    linear-gradient(135deg, var(--shell) 0%, var(--shell-deep) 100%);
  border: 1.5px dashed var(--shell-deep);
}
.placeholder-tile svg { width: 30px; height: 30px; color: var(--coral-dark); opacity: 0.8; }
.placeholder-tile span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- Why us ---------- */
.why { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.why__media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; }
.why__media img { width: 100%; height: 100%; object-fit: cover; }
.why__list li { display: flex; gap: 1rem; padding: 1.05rem 0; border-bottom: 1px solid rgba(27,27,31,0.08); }
.why__list li:first-child { padding-top: 0; }
.why__list svg { width: 24px; height: 24px; color: var(--coral-dark); flex-shrink: 0; margin-top: 0.15rem; }
.why__list strong { font-family: var(--font-head); }
.why__list span { display: block; color: var(--ink-soft); font-size: 0.92rem; margin-top: 0.15rem; }
@media (max-width: 900px) { .why { grid-template-columns: 1fr; } }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.review-card { background: var(--white); border: 1px solid var(--shell-deep); border-top: 4px solid var(--coral); border-radius: var(--radius-sm); padding: 1.75rem; box-shadow: var(--shadow); }
.review-card__stars { color: var(--coral-dark); letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.review-card p { font-size: 0.98rem; }
.review-card__author { margin-top: 1rem; font-family: var(--font-head); font-weight: 700; font-size: 0.88rem; }
.review-card .placeholder-note { display: block; margin-top: 0.5rem; font-size: 0.76rem; font-style: italic; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--coral); color: var(--white); border-radius: var(--radius); margin: 0 var(--gutter) 0; padding: 3.5rem clamp(1.5rem, 4vw, 3rem); }
.cta-band-wrap { max-width: var(--maxw); margin: 3.5rem auto; padding: 0 var(--gutter); }
.cta-band .container { text-align: center; padding: 0; }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
.cta-band p { margin-top: 1rem; font-size: 1.08rem; opacity: 0.92; max-width: 50ch; margin-left: auto; margin-right: auto; }
.cta-band__actions { margin-top: 2rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-band .btn--primary { background: var(--ink); color: var(--white); box-shadow: none; }
.cta-band .btn--primary:hover { background: #000; }
.cta-band .btn--ghost-dark:hover { color: var(--white); }

/* ---------- Visit / find us ---------- */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
.visit-card { background: var(--white); border: 1px solid var(--shell-deep); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.visit-card h3 { font-size: 1.2rem; margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.6rem; }
.visit-card h3 svg { width: 22px; height: 22px; color: var(--coral-dark); }
.visit-list li { display: flex; gap: 0.85rem; padding: 0.7rem 0; border-bottom: 1px solid rgba(27,27,31,0.08); font-size: 0.95rem; }
.visit-list li:last-child { border-bottom: none; }
.visit-list svg { width: 20px; height: 20px; color: var(--coral-dark); flex-shrink: 0; margin-top: 0.1rem; }
.visit-list a:hover { color: var(--coral-dark); }
.map-embed {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px dashed var(--shell-deep);
  background: var(--shell);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: 0.75rem;
  padding: 2rem; color: var(--ink-soft); font-size: 0.9rem;
}
.map-embed svg { width: 36px; height: 36px; color: var(--coral-dark); }
.map-embed strong { font-family: var(--font-head); color: var(--ink); font-size: 1rem; }
@media (max-width: 800px) { .visit-grid { grid-template-columns: 1fr; } }

/* ---------- About (website only) ---------- */
.about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-grid img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 2rem; background: var(--shell-deep); border-radius: var(--radius-sm); overflow: hidden; }
.about-stats div { background: var(--shell); padding: 1.2rem 0.75rem; text-align: center; }
.about-stats strong { display: block; font-family: var(--font-head); font-size: 1.15rem; color: var(--coral-dark); }
.about-stats span { display: block; font-size: 0.72rem; color: var(--ink-soft); margin-top: 0.25rem; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

/* ---------- Contact page ---------- */
.contact-list li { display: flex; gap: 0.85rem; padding: 0.85rem 0; border-bottom: 1px solid rgba(27,27,31,0.08); font-size: 1rem; }
.contact-list svg { width: 22px; height: 22px; color: var(--coral-dark); flex-shrink: 0; margin-top: 0.1rem; }
.contact-list a:hover { color: var(--coral-dark); }
.walk-in-card { background: var(--ink); color: var(--white); border-radius: var(--radius); padding: 2.5rem; text-align: center; }
.walk-in-card h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.walk-in-card p { color: rgba(255,255,255,0.78); max-width: 42ch; margin: 0 auto; }
.walk-in-card .hero__actions { justify-content: center; margin-top: 1.75rem; }

/* ---------- Page hero (website inner pages) ---------- */
.page-hero { position: relative; padding: 3rem 0 4rem; background: linear-gradient(180deg, var(--shell) 0%, var(--white) 100%); }
.breadcrumb { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 1rem; }
.breadcrumb a:hover { color: var(--coral-dark); }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero__lede { margin-top: 1rem; font-size: 1.08rem; color: var(--ink-soft); max-width: 60ch; }
.page-hero__stats { margin-top: 1.75rem; display: flex; gap: 1.6rem; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.75); padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2.5rem; }
.footer-grid p { color: rgba(255,255,255,0.62); font-size: 0.9rem; margin-top: 0.85rem; max-width: 32ch; }
.footer-col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.55); margin-bottom: 1rem; font-family: var(--font-head); }
.footer-col li { padding: 0.4rem 0; font-size: 0.92rem; }
.footer-col a:hover { color: var(--coral); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.2); border-radius: 999px; transition: border-color 0.2s var(--ease), color 0.2s var(--ease); }
.footer-social a:hover { border-color: var(--coral); color: var(--coral); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { margin-top: 3rem; padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--coral); }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Mobile FAB ---------- */
.mobile-fab { position: fixed; bottom: 1rem; left: 1rem; right: 1rem; z-index: 400; display: none; gap: 0.75rem; }
.mobile-fab a { flex: 1; min-height: 52px; border-radius: 999px; font-family: var(--font-head); font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 0.5rem; box-shadow: var(--shadow-lg); }
.mobile-fab .fab-call { background: var(--ink); color: var(--white); }
.mobile-fab .fab-directions { background: var(--coral); color: var(--white); }
.mobile-fab svg { width: 20px; height: 20px; }
@media (max-width: 720px) { .mobile-fab { display: flex; } body { padding-bottom: 78px; } }
