*,
*::before,
*::after { box-sizing: border-box; }

:root {
  --s-1: 0.35rem;
  --s-2: 0.55rem;
  --s-3: 0.85rem;
  --s-4: 1.25rem;
  --s-5: 2rem;
  --s-6: 3.25rem;
  --space-section: clamp(4.5rem, 10vw, 8rem);
  --space-inline: clamp(1.35rem, 5vw, 4rem);
  --content: 60rem;
  --rule: color-mix(in srgb, var(--text) 12%, transparent);
  --rule-strong: color-mix(in srgb, var(--text) 22%, transparent);
  --radius: 0.1rem;
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --touch: 2.85rem;
  --wa: #3a9463;
  --wa-deep: #2f7d52;
  --hero-scrim:
    linear-gradient(105deg,
      color-mix(in srgb, var(--bg) 88%, transparent) 0%,
      color-mix(in srgb, var(--bg) 62%, transparent) 22%,
      color-mix(in srgb, var(--bg) 28%, transparent) 48%,
      transparent 68%),
    linear-gradient(to top,
      color-mix(in srgb, var(--bg) 86%, transparent) 0%,
      color-mix(in srgb, var(--bg) 40%, transparent) 36%,
      transparent 62%);
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./fonts/dm-sans-latin.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("./fonts/dm-sans-latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "Instrument Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./fonts/instrument-serif-latin.woff2") format("woff2");
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  scroll-padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  scrollbar-color: color-mix(in srgb, var(--text) 28%, transparent) var(--bg);
  scrollbar-width: thin;
}
html::-webkit-scrollbar { width: 10px; }
html::-webkit-scrollbar-track { background: var(--bg); }
html::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--text) 22%, transparent);
  border-radius: 999px;
  border: 2px solid var(--bg);
}

@media (max-width: 919px) {
  html { scroll-padding-top: 5.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 16px;
  font-optical-sizing: auto;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, color-mix(in srgb, var(--wa) 6%, transparent), transparent 50%);
}

body > * { position: relative; z-index: 1; }

body.has-sticky {
  padding-bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
}

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

[hidden] { display: none !important; }

a:focus-visible,
.btn:focus-visible,
.service-book:focus-visible,
.service-book-btn:focus-visible,
.nav-compact a:focus-visible,
.maps-link:focus-visible,
.reviews-link:focus-visible,
.trust-rating:focus-visible,
.copy-link:focus-visible,
.team-book:focus-visible,
details.faq-item summary:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--accent) 70%, var(--text));
  outline-offset: 3px;
}

/* ── Owner mode ── */
.owner-only { display: none; }
html[data-owner="1"] .owner-only,
html[data-owner="1"] .owner-footnote.owner-only { display: block; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  min-height: var(--touch);
  padding: 0.75rem 1.15rem;
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ── Header ── */
.top {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.05rem var(--space-inline);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(14px) saturate(1.15);
  border-bottom: 1px solid var(--rule);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  flex: 0 1 auto;
  max-width: min(52%, 16rem);
  position: relative;
  z-index: 1;
}

.brand-mark {
  width: 3.15rem;
  height: 3.15rem;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: color-mix(in srgb, var(--accent) 88%, var(--text));
  color: var(--accent-text);
  flex-shrink: 0;
  font-size: 0.82rem;
}

.brand-logo {
  width: 3.15rem;
  height: 3.15rem;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
  background: transparent;
  border: 1px solid var(--rule);
}

.brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3.2vw, 1.95rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted);
}
.nav a:hover { color: var(--text); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.55rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
}

.nav-compact {
  display: none;
  gap: 0.45rem;
  align-items: center;
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 0;
  max-width: 58%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  position: relative;
  z-index: 2;
}
.nav-compact::-webkit-scrollbar { display: none; }

.nav-compact a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.35rem 0.7rem;
  border: none;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}
.nav-compact a:hover {
  color: var(--text);
  border-bottom-color: var(--rule-strong);
}
.nav-compact-cta {
  padding: 0.4rem 0.85rem !important;
  border: none !important;
  border-bottom: none !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
  color: #fff !important;
  background: var(--wa) !important;
}
.nav-compact-cta:hover {
  background: var(--wa-deep) !important;
  color: #fff !important;
}

@media (max-width: 919px) {
  .nav { display: none !important; }
  .nav-compact { display: flex !important; }
  .top { gap: 0.55rem; }
}
@media (max-width: 480px) {
  /* Prevent brand text covering Diensten (measured overlap at 390px) */
  .brand-name { display: none; }
  .brand { max-width: 3.2rem; }
  .brand-logo, .brand-mark { width: 2.65rem; height: 2.65rem; }
  .nav-compact { max-width: calc(100% - 3.4rem); }
}
@media (min-width: 920px) {
  .nav { display: flex !important; }
  .nav-compact { display: none !important; }
  .nav-cta { display: none !important; }
  .brand { max-width: none; }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: min(84vh, 760px);
  display: grid;
  align-items: end;
  padding: clamp(5.5rem, 14vh, 8rem) var(--space-inline) clamp(2.75rem, 7vh, 4rem);
  overflow: hidden;
}
@media (max-width: 700px) {
  .hero {
    min-height: min(70vh, 540px);
    padding-top: 5rem;
    padding-bottom: 2.25rem;
  }
}

.hero-media { position: absolute; inset: 0; z-index: 0; }

.hero-media .photo,
.hero-media picture,
.hero-media picture .photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-media picture {
  position: absolute;
  inset: 0;
}

.hero-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: var(--bg-alt);
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 4rem);
  color: color-mix(in srgb, var(--text) 45%, transparent);
}

.hero-media .photo {
  object-position: 42% 35%;
  transform: scale(1.06);
  filter: brightness(0.72) contrast(1.12) saturate(0.86);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: var(--hero-scrim);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  padding: 0;
  margin: 0;
  background: none;
  backdrop-filter: none;
  animation: rise 0.9s ease both;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .lede {
  text-shadow:
    0 1px 2px color-mix(in srgb, var(--bg) 90%, transparent),
    0 8px 32px color-mix(in srgb, var(--bg) 75%, transparent);
}

.eyebrow {
  margin: 0 0 1.15rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--accent) 72%, var(--text));
}

.identity {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  color: var(--muted);
  font-weight: 500;
}

.hero h1,
.section-head h2,
.final-cta h2,
.owner-card h2,
.team-card h3,
.location-grid h2 {
  font-family: var(--font-display);
  font-weight: 400;
}

.hero h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(2.55rem, 7.2vw, 4.2rem);
  letter-spacing: -0.03em;
  max-width: 12ch;
  text-wrap: balance;
  line-height: 1.14;
}

.lede {
  margin: 0 0 2rem;
  font-size: clamp(1.02rem, 2vw, 1.125rem);
  color: color-mix(in srgb, var(--text) 72%, var(--muted));
  max-width: 30rem;
  line-height: 1.65;
}

.hero .open-badge { margin-bottom: 1.35rem; }
.hero-urgency { display: none; }

.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: blur(10px);
  max-width: 22rem;
}
.open-badge.is-open {
  border-color: color-mix(in srgb, var(--wa) 55%, transparent);
  color: color-mix(in srgb, var(--wa) 82%, var(--text));
  background: color-mix(in srgb, var(--wa) 10%, var(--bg));
}
.open-badge.is-appointment {
  border-color: color-mix(in srgb, var(--accent) 50%, transparent);
  color: color-mix(in srgb, var(--accent) 92%, var(--text));
  background: color-mix(in srgb, var(--accent) 8%, var(--bg));
}
.open-badge.is-closed {
  border-color: color-mix(in srgb, #c45c5c 45%, var(--rule));
  color: color-mix(in srgb, #e8a0a0 75%, var(--text));
  background: color-mix(in srgb, #c45c5c 8%, var(--bg));
}
.open-badge.is-open::before,
.open-badge.is-appointment::before,
.open-badge.is-closed::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 3px color-mix(in srgb, currentColor 22%, transparent);
}

.cta-row, .mid-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}
.mid-cta { margin-top: 1.75rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--touch);
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9375rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
@media (max-width: 640px) {
  .cta-row .btn-primary, .mid-cta .btn-primary { flex: 1 1 100%; }
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: var(--accent-text); }
.btn-ghost {
  border-color: var(--rule-strong);
  color: var(--text);
  background: color-mix(in srgb, var(--bg) 55%, transparent);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: color-mix(in srgb, var(--text) 28%, transparent);
  background: color-mix(in srgb, var(--text) 6%, transparent);
}
.btn-call .btn-call-num {
  font-weight: 600;
  opacity: 0.9;
}
@media (max-width: 520px) {
  .btn-call .btn-call-num { display: none; }
}

.hero-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
  margin: 1rem 0 0;
  font-size: 0.875rem;
  font-weight: 600;
}
.hero-social a {
  color: color-mix(in srgb, var(--text) 78%, var(--muted));
}
.hero-social a:hover { color: var(--accent); }

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  align-items: center;
}
.tel-link {
  font-weight: 600;
  color: var(--text);
}
.tel-link:hover { color: var(--accent); }

.ig-link, .fb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2.5rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--accent) 88%, var(--text));
}
.ig-link:hover, .fb-link:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ig-icon {
  width: 1rem;
  height: 1rem;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5zm0 2a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H7zm5 3.5A4.5 4.5 0 1 1 7.5 12 4.5 4.5 0 0 1 12 7.5zm0 2A2.5 2.5 0 1 0 14.5 12 2.5 2.5 0 0 0 12 9.5zM17.5 6.75a1 1 0 1 1-1 1 1 1 0 0 1 1-1z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5zm0 2a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H7zm5 3.5A4.5 4.5 0 1 1 7.5 12 4.5 4.5 0 0 1 12 7.5zm0 2A2.5 2.5 0 1 0 14.5 12 2.5 2.5 0 0 0 12 9.5zM17.5 6.75a1 1 0 1 1-1 1 1 1 0 0 1 1-1z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.foot-social {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-left: 0.75rem;
}
.foot-social a { color: var(--muted); }
.foot-social a:hover { color: var(--accent); }

html[data-theme="light"] .hero-media .photo {
  filter: brightness(0.88) contrast(1.08) saturate(0.92);
}
html[data-theme="light"] .hero-copy {
  background: none;
  backdrop-filter: none;
}
html[data-theme="light"] .hero-copy .eyebrow,
html[data-theme="light"] .hero-copy h1,
html[data-theme="light"] .hero-copy .lede {
  text-shadow:
    0 1px 1px color-mix(in srgb, var(--bg) 85%, transparent),
    0 6px 24px color-mix(in srgb, var(--bg) 70%, transparent);
}

a.btn-wa,
.btn.btn-wa,
.nav-compact-cta.btn-wa,
.sticky-cta .btn-wa {
  gap: 0.5rem;
  background: var(--wa) !important;
  color: #fff !important;
  border-color: transparent !important;
}
a.btn-wa:hover,
.btn.btn-wa:hover,
.nav-compact-cta.btn-wa:hover,
.sticky-cta .btn-wa:hover {
  background: var(--wa-deep) !important;
}

.wa-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M17.5 14.4c-.3-.1-1.6-.8-1.8-.9-.2-.1-.4-.1-.6.1-.2.3-.6.9-.8 1.1-.1.2-.3.2-.6.1-.3-.1-1.2-.4-2.3-1.4-.9-.8-1.4-1.7-1.6-2-.2-.3 0-.4.1-.6.1-.1.3-.3.4-.4.1-.1.2-.3.3-.4.1-.1.1-.3 0-.4-.1-.1-.6-1.4-.8-1.9-.2-.5-.4-.4-.6-.4h-.5c-.2 0-.4.1-.6.3-.2.2-.8.8-.8 1.9s.8 2.2.9 2.3c.1.2 1.6 2.5 3.9 3.5.5.2 1 .4 1.3.5.5.2 1 .2 1.4.1.4-.1 1.3-.5 1.5-1 .2-.5.2-.9.1-1 0-.1-.2-.2-.5-.3zM12 2C6.5 2 2 6.5 2 12c0 1.8.5 3.4 1.3 4.9L2 22l5.2-1.3C8.6 21.5 10.2 22 12 22c5.5 0 10-4.5 10-10S17.5 2 12 2zm0 18.2c-1.6 0-3.1-.4-4.4-1.2l-.3-.2-3.1.8.8-3-.2-.3C4.2 15.1 3.8 13.6 3.8 12 3.8 7.5 7.5 3.8 12 3.8S20.2 7.5 20.2 12 16.5 20.2 12 20.2z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M17.5 14.4c-.3-.1-1.6-.8-1.8-.9-.2-.1-.4-.1-.6.1-.2.3-.6.9-.8 1.1-.1.2-.3.2-.6.1-.3-.1-1.2-.4-2.3-1.4-.9-.8-1.4-1.7-1.6-2-.2-.3 0-.4.1-.6.1-.1.3-.3.4-.4.1-.1.2-.3.3-.4.1-.1.1-.3 0-.4-.1-.1-.6-1.4-.8-1.9-.2-.5-.4-.4-.6-.4h-.5c-.2 0-.4.1-.6.3-.2.2-.8.8-.8 1.9s.8 2.2.9 2.3c.1.2 1.6 2.5 3.9 3.5.5.2 1 .4 1.3.5.5.2 1 .2 1.4.1.4-.1 1.3-.5 1.5-1 .2-.5.2-.9.1-1 0-.1-.2-.2-.5-.3zM12 2C6.5 2 2 6.5 2 12c0 1.8.5 3.4 1.3 4.9L2 22l5.2-1.3C8.6 21.5 10.2 22 12 22c5.5 0 10-4.5 10-10S17.5 2 12 2zm0 18.2c-1.6 0-3.1-.4-4.4-1.2l-.3-.2-3.1.8.8-3-.2-.3C4.2 15.1 3.8 13.6 3.8 12 3.8 7.5 7.5 3.8 12 3.8S20.2 7.5 20.2 12 16.5 20.2 12 20.2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ── Trust strip ── */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.15rem;
  align-items: center;
  justify-content: flex-start;
  padding: 1.35rem var(--space-inline);
  border-block: 1px solid var(--rule);
  background: color-mix(in srgb, var(--bg-alt) 65%, transparent);
  font-size: 0.875rem;
  color: var(--muted);
}
.trust-sep { opacity: 0.45; }
.trust-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text);
  font-weight: 500;
}
.trust-rating:hover { color: var(--accent); }
.trust-price,
.trust-hours {
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}
.trust-price:hover,
.trust-hours:hover { color: var(--text); }
.trust-open { display: none; }

.stars {
  --rating: 5;
  display: inline-block;
  position: relative;
  letter-spacing: 0.06em;
  color: color-mix(in srgb, var(--accent) 28%, transparent);
  font-size: 0.95em;
  line-height: 1;
}
.stars::before {
  content: "★★★★★";
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--rating) / 5 * 100%);
  overflow: hidden;
  color: var(--accent);
  white-space: nowrap;
}

/* ── Sections ── */
.section {
  padding: var(--space-section) var(--space-inline);
  animation: fade-up 0.75s ease both;
}
.section:nth-of-type(odd) {
  background: color-mix(in srgb, var(--bg-alt) 18%, transparent);
}
.services { animation-delay: 0.05s; }
.team { animation-delay: 0.1s; }
.reviews { animation-delay: 0.15s; }
.gallery { animation-delay: 0.2s; }
.location { animation-delay: 0.25s; }
.faq { animation-delay: 0.3s; }

.is-hidden { display: none !important; }

.section-head {
  max-width: 40rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}
.section-head h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(2.2rem, 5.2vw, 3.4rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
  max-width: 16ch;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
}

/* ── Services (restaurant menu) ── */
.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: var(--content);
  width: 100%;
  border-top: 2px solid var(--rule-strong);
}
.service-list li {
  display: grid;
  gap: 0.55rem;
  padding: 1.65rem 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.service-list li.featured {
  padding-left: 1rem;
  border-left: 2px solid color-mix(in srgb, var(--accent) 70%, transparent);
  border-bottom-color: color-mix(in srgb, var(--accent) 30%, var(--rule));
}
.service-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.25rem 0;
  align-items: end;
}
.service-main h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 0.65rem;
}
.service-dots {
  border-bottom: 1px dotted var(--rule-strong);
  align-self: end;
  margin: 0 0.75rem 0.4rem;
  min-height: 0;
}
.service-main .price {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.service-main .desc {
  margin: 0.35rem 0 0;
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.45;
}
.service-badge {
  display: inline-block;
  margin: 0 0 0.45rem;
  padding: 0.14rem 0.5rem;
  border: 1px solid color-mix(in srgb, var(--accent) 50%, transparent);
  border-radius: var(--radius);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
}

@media (max-width: 560px) {
  .service-main {
    grid-template-columns: 1fr auto;
  }
  .service-dots {
    display: none;
  }
}

.service-book,
.service-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  min-height: 2.75rem;
  padding: 0.25rem 0;
  border: none;
  background: none;
  color: var(--wa);
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
  z-index: 1;
}
.service-book.is-quiet {
  color: color-mix(in srgb, var(--wa) 78%, var(--muted));
  font-weight: 500;
}
/* Full-row tap target on mobile — one thumb, one service */
.service-book::after {
  content: "";
  position: absolute;
  inset: 0;
}
.service-book:hover,
.service-book-btn:hover,
.service-list li:has(.service-book:hover) {
  color: var(--wa-deep);
}
.service-book:hover,
.service-book-btn:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.service-book .wa-icon,
.service-book-btn .wa-icon {
  width: 0.95rem;
  height: 0.95rem;
  color: var(--wa);
}

/* ── Team ── */
.team-grid {
  display: grid;
  gap: 1.75rem;
  max-width: var(--content);
}
.team-card {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 0;
  border: none;
  background: transparent;
}
@media (max-width: 520px) {
  .team-card { grid-template-columns: 1fr; }
}
.team-photo {
  width: 9rem;
  height: 11rem;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--bg-alt);
}
.team-photo--mark {
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--muted);
  border: 1px solid var(--rule);
}
.team-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.75rem;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.team-role {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--accent) 55%, var(--muted));
}
.team-bio {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 36rem;
}
.team-book {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: auto;
  color: var(--wa);
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  background: none;
  padding: 0;
}
.team-book:hover {
  color: var(--wa-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.team-book .wa-icon {
  color: var(--wa);
  width: 0.95rem;
  height: 0.95rem;
}

/* ── Reviews ── */
.review-list {
  display: grid;
  gap: 0;
  max-width: var(--content);
}
@media (min-width: 900px) {
  .review-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 2.5rem;
  }
}
.review {
  margin: 0;
  padding: 1.75rem 0 1.75rem 1.1rem;
  border: none;
  border-left: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  border-bottom: 1px solid var(--rule);
  background: transparent;
}
@media (min-width: 900px) {
  .review { border-bottom: none; }
}
.review-quote {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-style: italic;
  line-height: 1.38;
  letter-spacing: -0.01em;
}
.review-meta {
  font-size: 0.78rem;
  color: color-mix(in srgb, var(--muted) 90%, transparent);
}
.review-meta cite {
  font-style: normal;
  font-weight: 500;
  color: color-mix(in srgb, var(--text) 60%, var(--muted));
}
.reviews-link {
  display: inline-flex;
  align-items: center;
  min-height: var(--touch);
  margin-top: 1.25rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--accent) 90%, var(--text));
}
.reviews-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Gallery ── */
.gallery-strip {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
  width: 100%;
}
@media (min-width: 700px) {
  .gallery-strip {
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.85rem;
    min-height: 30rem;
  }
  .gallery-item--hero { grid-row: 1 / span 2; }
}
.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-alt);
  min-height: 14rem;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.gallery-item picture {
  position: absolute;
  inset: 0;
  display: block;
}
.gallery-item picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .gallery-item:hover img { transform: scale(1.02); }
}
.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 2rem 0.9rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
}

/* ── Location ── */
.location-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 800px) {
  .location-grid { grid-template-columns: 1.3fr 1fr; gap: 3rem; }
}
.location-grid h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.08;
}
.location-grid h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
}
.addr {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  line-height: 1.5;
}
.access-note {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.9375rem;
}
.meta {
  margin: 0 0 0.65rem;
  color: var(--muted);
  font-size: 0.9375rem;
}
.pay {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.65rem;
  color: var(--muted);
  font-size: 0.9375rem;
}
.pay-label {
  margin-right: 0.15rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--text) 70%, var(--muted));
}
.pay-chip {
  display: inline-flex;
  align-items: center;
  min-height: 1.85rem;
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  background: color-mix(in srgb, var(--bg-alt) 60%, transparent);
}
.meta a:hover, .maps-link:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.location .open-badge { display: none; }
.maps-link {
  display: inline-flex;
  align-items: center;
  min-height: var(--touch);
  margin-top: 0.35rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--accent) 90%, var(--text));
}
.hours {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.9375rem;
}
.hours li span:last-child {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.maps-embed {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--rule);
  aspect-ratio: 16 / 9;
  max-height: 300px;
  background: var(--bg-alt);
}
.maps-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.4) contrast(1.05);
}

/* ── FAQ ── */
.faq-list { max-width: 42rem; }

details.faq-item {
  padding: 0;
  border-bottom: 1px solid var(--rule);
}
details.faq-item summary {
  padding: 1.35rem 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 400;
  color: var(--muted);
}
details.faq-item[open] summary::after { content: "−"; }
details.faq-item[open] summary { padding-bottom: 0.55rem; }
details.faq-item p {
  margin: 0 0 1.35rem;
  padding: 0;
  color: var(--muted);
  line-height: 1.55;
}

.faq-item {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--rule);
}
.faq-item h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
}
.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

/* ── Final CTA ── */
.final-cta {
  padding: clamp(4.5rem, 11vw, 7rem) var(--space-inline);
  border-top: 1px solid var(--rule);
  background:
    radial-gradient(ellipse 75% 85% at 15% 50%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 62%),
    radial-gradient(ellipse 50% 60% at 100% 80%, color-mix(in srgb, var(--wa) 6%, transparent), transparent 55%),
    color-mix(in srgb, var(--bg-alt) 45%, transparent);
}
.final-cta h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  max-width: 14ch;
  letter-spacing: -0.025em;
  line-height: 1.08;
}
.final-cta p {
  margin: 0 0 1.75rem;
  color: var(--muted);
  max-width: 28rem;
  font-size: 1.05rem;
  line-height: 1.6;
}
.final-cta .brand-sign {
  margin-top: 2.75rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: color-mix(in srgb, var(--text) 55%, var(--muted));
}

/* ── Footer ── */
.foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  padding: 2.5rem var(--space-inline) calc(2.5rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.875rem;
}
.foot strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}
.owner-footnote { margin: 0.75rem 0 0; }
.copy-link, .share-wa {
  margin-left: 0.5rem;
  background: none;
  border: none;
  color: var(--accent);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  min-height: var(--touch);
}

/* ── Share kit (owner) ── */
.share-kit {
  padding: var(--space-section) var(--space-inline);
  background: color-mix(in srgb, var(--bg-alt) 55%, transparent);
  border-top: 1px solid var(--rule);
}
.share-kit-inner {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  max-width: var(--content);
}
@media (min-width: 800px) {
  .share-kit-inner { grid-template-columns: 1.4fr auto; gap: 2rem; }
}
.share-kit h2,
.share-kit h3 {
  font-family: var(--font-display);
  font-weight: 400;
  margin: 0 0 0.5rem;
}
.share-kit p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.share-kit-qr img {
  width: 140px;
  height: 140px;
  background: #fff;
  padding: 0.45rem;
  border-radius: var(--radius);
}
.promise-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
}
.promise-pills li {
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 600;
}

/* ── Sticky CTA (mobile) ── */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 0.45rem var(--space-inline) calc(0.45rem + env(safe-area-inset-bottom, 0px));
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--rule);
}
.sticky-cta .btn {
  width: 100%;
  min-height: 2.75rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
}
@media (min-width: 920px) {
  .sticky-cta { display: none !important; }
}

/* ── Legacy hide ── */
.hero-services, .wa-bubble, .how-steps, .contrast-grid { display: none; }

/* ── Animations ── */
@keyframes rise {
  from { opacity: 0; transform: translateY(0.85rem); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(1rem); }
  to { opacity: 1; transform: translateY(0); }
}
