/* ── Tokens ──────────────────────────────────────────────────────── */
:root {
  --brand-700: #0369a1;
  --brand-600: #0284c7;
  --brand-500: #0ea5e9;
  --brand-100: #e0f2fe;
  --brand-50:  #f0f9ff;

  --mint-500: #14b8a6;

  --ink-900: #0f172a;
  --ink-700: #334155;
  --ink-500: #64748b;
  --ink-300: #cbd5e1;
  --ink-200: #e2e8f0;
  --ink-100: #f1f5f9;

  --open:      #16a34a;
  --last-call: #d97706;
  --closed:    #dc2626;

  --surface: #ffffff;

  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgb(15 23 42 / 0.06), 0 1px 3px rgb(15 23 42 / 0.08);
  --shadow-md: 0 4px 12px rgb(15 23 42 / 0.07), 0 12px 32px rgb(15 23 42 / 0.08);
  --shadow-lg: 0 8px 24px rgb(2 132 199 / 0.12), 0 24px 60px rgb(15 23 42 / 0.12);

  --wrap: 1120px;
  --header-h: 68px;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
}

/* ── Reset ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body, h1, h2, h3, p, ul, figure, table, address { margin: 0; }
ul { padding: 0; list-style: none; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--ink-900);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg, iframe { display: block; max-width: 100%; }
a { color: var(--brand-600); }

:focus-visible {
  outline: 3px solid var(--brand-500);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Utilities ───────────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 20px;
}

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--surface);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-md);
  font-weight: 600;
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 0; }

.fine-print {
  margin-top: 28px;
  text-align: center;
  font-size: 0.875rem;
  color: var(--ink-500);
}

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.2s ease,
              background-color 0.2s ease, border-color 0.2s ease;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 17px; height: 17px; }

.btn-primary {
  background: var(--brand-600);
  color: #fff;
  box-shadow: 0 1px 2px rgb(3 105 161 / 0.2), 0 6px 16px rgb(2 132 199 / 0.28);
}
.btn-primary:hover {
  background: var(--brand-700);
  box-shadow: 0 2px 4px rgb(3 105 161 / 0.24), 0 10px 24px rgb(2 132 199 / 0.34);
}

.btn-ghost {
  background: var(--surface);
  color: var(--ink-900);
  border-color: var(--ink-200);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { border-color: var(--ink-300); background: var(--ink-100); }

.btn-sm { padding: 9px 16px; font-size: 0.875rem; }

/* ── Header ──────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(255 255 255 / 0.82);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--ink-200);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-900);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.logo-mark {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  box-shadow: 0 2px 8px rgb(2 132 199 / 0.35);
}
.logo-mark svg { width: 21px; height: 21px; }

.site-nav {
  display: flex;
  gap: 4px;
  margin-inline-start: auto;
}
.site-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ink-700);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.site-nav a:hover { background: var(--ink-100); color: var(--ink-900); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  padding-inline-start: 10px;
  border: 1px solid var(--ink-200);
  background: var(--ink-100);
  border-radius: 999px;
}

.lang-globe {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-inline-end: 6px;
  color: var(--ink-500);
}

.lang-switch button {
  padding: 7px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-500);
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.lang-switch button:hover:not([aria-pressed="true"]) {
  color: var(--ink-900);
}
.lang-switch button[aria-pressed="true"] {
  background: var(--surface);
  color: var(--ink-900);
  box-shadow: var(--shadow-sm);
}

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 116px) 0 clamp(56px, 7vw, 92px);
  background:
    radial-gradient(1000px 460px at 50% -12%, var(--brand-100), transparent 62%),
    linear-gradient(180deg, var(--brand-50), var(--surface));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: start;
}

/* The photo is black and white; the blue wash ties it to the palette. */
.hero-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.1deg);
}
.hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgb(14 165 233 / 0.42), rgb(3 105 161 / 0.28));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.eyebrow {
  margin-bottom: 14px;
  padding: 6px 14px;
  border: 1px solid var(--brand-100);
  border-radius: 999px;
  background: var(--surface);
  color: var(--brand-700);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.hero h1 {
  max-width: 16ch;
  font-size: clamp(2.25rem, 5.6vw, 4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
  background: linear-gradient(150deg, var(--ink-900) 30%, var(--brand-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 54ch;
  margin-top: 20px;
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  color: var(--ink-700);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-perks {
  --check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M1.5 6.4l2.9 2.9L10.5 3' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 44px;
  color: var(--ink-500);
  font-size: 0.9375rem;
  font-weight: 500;
}
.hero-perks li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-perks li::before {
  content: "";
  width: 16px; height: 16px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--mint-500) var(--check) center / 11px no-repeat;
}

/* Floating soap bubbles */
.hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bubbles span {
  position: absolute;
  bottom: -140px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%,
    rgb(255 255 255 / 0.9), rgb(224 242 254 / 0.5) 42%, rgb(14 165 233 / 0.1) 70%);
  border: 1px solid rgb(255 255 255 / 0.6);
  animation: rise linear infinite;
}
.hero-bubbles span:nth-child(1) { left:  6%; width:  64px; height:  64px; animation-duration: 19s; animation-delay:  0s; }
.hero-bubbles span:nth-child(2) { left: 18%; width:  30px; height:  30px; animation-duration: 15s; animation-delay: -4s; }
.hero-bubbles span:nth-child(3) { left: 74%; width:  44px; height:  44px; animation-duration: 17s; animation-delay: -8s; }
.hero-bubbles span:nth-child(4) { left: 88%; width:  86px; height:  86px; animation-duration: 23s; animation-delay: -2s; }
.hero-bubbles span:nth-child(5) { left: 44%; width:  22px; height:  22px; animation-duration: 13s; animation-delay: -6s; }
.hero-bubbles span:nth-child(6) { left: 60%; width:  52px; height:  52px; animation-duration: 21s; animation-delay: -11s; }

@keyframes rise {
  from { transform: translateY(0) scale(0.85); opacity: 0; }
  12%  { opacity: 1; }
  80%  { opacity: 1; }
  to   { transform: translateY(-125vh) scale(1.1); opacity: 0; }
}

/* ── Open / closed badge ─────────────────────────────────────────── */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  padding: 9px 18px;
  border: 1px solid var(--ink-200);
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.9375rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.status-pill-inline { margin-top: 22px; }

.status-dot {
  position: relative;
  width: 9px; height: 9px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--ink-300);
}
.status-pill[data-state="open"]      .status-dot { background: var(--open); }
.status-pill[data-state="last-call"] .status-dot { background: var(--last-call); }
.status-pill[data-state="closed"]    .status-dot { background: var(--closed); }

/* Only a genuinely open store gets the pulsing dot. */
.status-pill[data-state="open"] .status-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--open);
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes ping {
  from { transform: scale(1);   opacity: 0.7; }
  to   { transform: scale(2.6); opacity: 0; }
}

/* ── Sections ────────────────────────────────────────────────────── */
.section { padding: clamp(64px, 8vw, 104px) 0; }
.section-alt {
  background: var(--brand-50);
  border-block: 1px solid var(--ink-200);
}

.section-head {
  max-width: 60ch;
  margin: 0 auto clamp(40px, 5vw, 60px);
  text-align: center;
}
.section-head h2,
.hours-intro h2 {
  font-size: clamp(1.875rem, 3.4vw, 2.625rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.section-head p {
  margin-top: 14px;
  font-size: 1.0625rem;
  color: var(--ink-500);
}

/* ── Service cards ───────────────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}

/* The cards hold different numbers of rows; stretching keeps their bottoms aligned. */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.card-featured {
  border-color: var(--brand-500);
  box-shadow: var(--shadow-lg);
}
.card-featured:hover { box-shadow: var(--shadow-lg); }

.card-media {
  position: relative;
  overflow: hidden;
  background: var(--ink-100);
}
.card-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card-media img { transform: scale(1.045); }

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px 28px 30px;
}

.card-badge {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--brand-600);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgb(15 23 42 / 0.28);
}

.card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.card-desc {
  min-height: 3.2em;
  margin-top: 10px;
  margin-bottom: 24px;
  color: var(--ink-500);
  font-size: 0.9375rem;
}

/* margin-top:auto pushes both lists to the bottom, so cards with a different
   number of rows still line up along their base. */
.price-list,
.feature-list { margin-top: auto; }

.price-list { border-top: 1px solid var(--ink-200); }

.price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--ink-100);
  font-size: 0.9375rem;
  color: var(--ink-700);
}
.price-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.price {
  flex-shrink: 0;
  color: var(--ink-900);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.price-from {
  margin-inline-end: 2px;
  color: var(--ink-500);
  font-size: 0.8125rem;
  font-weight: 500;
}

/* No prices to align, so this list reads as plain facts rather than a rate table. */
.feature-list {
  display: grid;
  gap: 11px;
  padding-top: 4px;
}
.feature-list li {
  position: relative;
  padding-inline-start: 26px;
  font-size: 0.9375rem;
  color: var(--ink-700);
}
.feature-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.45em;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--brand-100) var(--check) center / 10px no-repeat;
}
.feature-list {
  --check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M1.5 6.4l2.9 2.9L10.5 3' fill='none' stroke='%230284c7' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ── Hours ───────────────────────────────────────────────────────── */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hours-intro p {
  margin-top: 14px;
  color: var(--ink-500);
  font-size: 1.0625rem;
}

.hours-note {
  margin-top: 18px;
  padding-inline: 4px;
  color: var(--ink-500);
  font-size: 0.875rem;
  line-height: 1.65;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  padding: 8px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--ink-200);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.hours-table tr { border-bottom: 1px solid var(--ink-100); }
.hours-table tr:last-child { border-bottom: 0; }

.hours-table th,
.hours-table td {
  padding: 16px 24px;
  text-align: start;
  font-size: 0.9375rem;
}
.hours-table th {
  font-weight: 500;
  color: var(--ink-700);
}
.hours-table td {
  text-align: end;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.hours-table tr.is-today {
  background: var(--brand-50);
}
.hours-table tr.is-today th,
.hours-table tr.is-today td {
  color: var(--brand-700);
  font-weight: 700;
}

.today-badge {
  margin-inline-start: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--brand-600);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: 1px;
}

/* ── Location ────────────────────────────────────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.location-info address {
  font-size: 1.0625rem;
  font-style: normal;
  line-height: 1.75;
  color: var(--ink-700);
}
.location-info address strong {
  color: var(--ink-900);
  font-size: 1.125rem;
}

.location-contact {
  margin: 20px 0 28px;
  line-height: 1.9;
}
.location-contact a {
  font-weight: 600;
  text-decoration: none;
}
.location-contact a:hover { text-decoration: underline; }

.map-frame {
  overflow: hidden;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: var(--ink-100);
}
.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* ── Footer ──────────────────────────────────────────────────────── */
.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--ink-200);
  background: var(--ink-900);
  color: var(--ink-300);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.footer-brand {
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.footer-meta {
  display: flex;
  gap: 10px;
  font-size: 0.875rem;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner,
  .hours-grid,
  .location-grid { grid-template-columns: 1fr; }

  .hero-copy {
    align-items: center;
    text-align: center;
  }
  .hero-cta,
  .hero-perks { justify-content: center; }
  .hero-media {
    transform: none;
    max-width: 560px;
    margin-inline: auto;
  }

  .hours-intro { text-align: center; }
  .location-info { text-align: center; }
  .map-frame iframe { height: 340px; }
}

@media (max-width: 720px) {
  .site-nav { display: none; }
  .header-inner { justify-content: space-between; gap: 12px; }
  .header-actions { margin-inline-start: auto; gap: 8px; }
  .call-btn span { display: none; }
  .call-btn { padding: 9px 11px; }
  .card-desc { min-height: 0; }
  .hero-perks { gap: 10px 20px; }

  /* The full language names need the room the nav just gave up. */
  .lang-switch { padding-inline-start: 8px; }
  .lang-globe { margin-inline-end: 4px; }
  .lang-switch button { padding: 6px 10px; font-size: 0.75rem; }
}

@media (max-width: 430px) {
  .logo-text { display: none; }
}
