:root {
  --bg: #1e3d34;
  --bg-2: #234439;
  --surface: #2a5548;
  --line: #3c6355;
  --text: #f4efe6;
  --muted: #b9c4bb;
  --gold: #c8a96e;
  --gold-2: #d9bc85;
  --red: #b3282d;
  --radius: 14px;
  --maxw: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .brand__name { font-family: 'Cormorant Garamond', serif; letter-spacing: .5px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.accent { color: var(--gold); }
.muted { color: var(--muted); }
.center { text-align: center; }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--gold);
  color: #1e3d34;
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease;
  font-size: 15px;
}
.btn:hover { background: var(--gold-2); border-color: var(--gold-2); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn--ghost:hover { background: var(--surface); border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn--sm { padding: 9px 16px; font-size: 13px; }
.btn:disabled { opacity: .4; cursor: not-allowed; transform: none; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(30,61,52,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.brand__mark { font-size: 22px; }
.brand__logo { height: 48px; width: auto; object-fit: contain; }
.brand__logo--sm { height: 32px; }
.brand__name { font-size: 20px; color: var(--text); }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a { color: var(--muted); font-weight: 500; font-size: 15px; transition: color .2s; }
.nav__links a:hover { color: var(--gold); }
.nav__links a.nav__link--active { color: var(--gold); font-weight: 600; }
.nav__links .btn { color: #1e3d34; }
.nav__burger { display: none; background: none; border: none; color: var(--text); font-size: 26px; cursor: pointer; }

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  background:
    radial-gradient(120% 90% at 70% 10%, rgba(200,169,110,.12), transparent 55%),
    linear-gradient(180deg, #1e3d34 0%, #1e3d34 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero__overlay {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,.015) 0 2px, transparent 2px 22px);
  pointer-events: none;
}
.hero--photo {
  background:
    linear-gradient(180deg, rgba(20,42,36,.82) 0%, rgba(20,42,36,.72) 55%, rgba(30,61,52,.92) 100%),
    url('/assets/img/buitenzwembad.jpg') center 40% / cover no-repeat;
}
.feature__img {
  width: calc(100% + 56px); margin: -30px -28px 16px;
  height: 170px; object-fit: cover; display: block;
  border-radius: var(--radius) var(--radius) 0 0;
}
.split__img {
  width: 100%; height: 240px; object-fit: cover; display: block;
  border-radius: var(--radius); margin: 18px 0; border: 1px solid var(--line);
}
.hero__content { position: relative; }
.hero__inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.hero__text { flex: 1 1 0; min-width: 0; }
.hero__logo-wrap { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; }
.hero__logo-img {
  width: clamp(260px, 30vw, 420px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 32px rgba(0,0,0,0.7));
  animation: hero-float 4s ease-in-out infinite;
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@media (max-width: 768px) {
  .hero__inner { flex-direction: column-reverse; gap: 24px; text-align: center; }
  .hero__logo-img { width: clamp(180px, 55vw, 280px); }
  .hero__cta { justify-content: center; }
  .hero__sub { max-width: 100%; }
}
.hero__eyebrow {
  color: var(--gold); text-transform: uppercase; letter-spacing: 3px;
  font-weight: 600; font-size: 14px; margin-bottom: 14px;
}
.hero__title { font-size: clamp(42px, 8vw, 92px); line-height: .98; font-weight: 700; }
.hero__sub { color: var(--muted); font-size: clamp(16px, 2.5vw, 20px); margin: 22px 0 32px; max-width: 640px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  color: var(--muted); animation: bounce 2s infinite; font-size: 22px;
}
@keyframes bounce { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,8px)} }

/* Sections */
.section { padding: 90px 0; border-bottom: 1px solid var(--line); }
.section--dark { background: var(--bg-2); }
.section--split { background: var(--bg-2); }
.h2 { font-size: clamp(28px, 4.5vw, 44px); font-weight: 600; }
.h2.center { margin-bottom: 8px; }
.lead { color: var(--muted); margin-bottom: 40px; }

.split { display: grid; grid-template-columns: 1.2fr .8fr; gap: 54px; align-items: center; }
.split__text p { color: var(--muted); margin-top: 16px; }
.split__text .h2 { margin-bottom: 6px; }
.checks { list-style: none; margin-top: 22px; display: grid; gap: 10px; }
.checks li { position: relative; padding-left: 28px; color: var(--text); }
.checks li::before { content: "✔"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.split__stats { display: grid; gap: 16px; }
.stat {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; display: flex; align-items: baseline; gap: 14px;
}
.stat__num { font-family: 'Cormorant Garamond', serif; font-size: 34px; color: var(--gold); font-weight: 700; }
.stat__lbl { color: var(--muted); }

.tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.tags span {
  background: var(--surface); border: 1px solid var(--line); color: var(--gold);
  padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 600;
}
.portfolio-note { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.portfolio-note h3 { font-size: 22px; margin-bottom: 10px; }
.socials { display: flex; gap: 14px; margin-top: 18px; }
.socials a { color: var(--gold); font-weight: 600; }
.socials a:hover { color: var(--gold-2); }

/* Services */
.services { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.svc {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; display: flex; flex-direction: column; transition: border-color .2s, transform .2s;
}
.svc:hover { border-color: var(--gold); transform: translateY(-3px); }
.svc__cat { color: var(--gold); font-size: 12px; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; }
.svc__name { font-family: 'Cormorant Garamond', serif; font-size: 24px; margin: 6px 0; }
.svc__desc { color: var(--muted); font-size: 15px; flex: 1; }
.svc__meta { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; }
.svc__price { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--text); font-weight: 700; }
.svc__dur { color: var(--muted); font-size: 14px; }

/* Booking */
.booking { max-width: 760px; margin: 0 auto; }
.steps { display: flex; gap: 8px; margin-bottom: 28px; justify-content: center; flex-wrap: wrap; }
.step { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 14px; }
.step__no {
  width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; font-weight: 700; font-size: 13px;
}
.step.is-active { color: var(--gold); }
.step.is-active .step__no { border-color: var(--gold); color: var(--gold); }
.step__sep { color: var(--line); }
.step.is-done { color: var(--gold); opacity: .7; }
.step.is-done .step__no { border-color: var(--gold); background: var(--gold); color: #1e3d34; }
.auth-tabs { display: flex; gap: 8px; margin: 20px 0 16px; border-bottom: 1px solid var(--line); }
.auth-tabs .tab { background: none; border: none; border-bottom: 2px solid transparent; color: var(--muted); padding: 8px 16px; cursor: pointer; font-size: 15px; margin-bottom: -1px; transition: color .2s, border-color .2s; }
.auth-tabs .tab.is-active { color: var(--gold); border-bottom-color: var(--gold); }
.auth-tabs .tab:hover { color: var(--text); }

.panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px;
}
.panel h3 { font-size: 20px; margin-bottom: 18px; }
.opt-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px,1fr)); gap: 12px; }
.opt {
  text-align: left; background: var(--bg-2); border: 1px solid var(--line); color: var(--text);
  border-radius: var(--radius); padding: 16px; cursor: pointer; transition: border-color .2s, background .2s;
}
.opt:hover { border-color: var(--gold); }
.opt.is-selected { border-color: var(--gold); background: rgba(200,169,110,.08); }
.opt__name { font-family: 'Cormorant Garamond', serif; font-size: 18px; }
.opt__sub { color: var(--muted); font-size: 13px; margin-top: 4px; }

.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px,1fr)); gap: 10px; }
.slot {
  background: var(--bg-2); border: 1px solid var(--line); color: var(--text);
  padding: 12px 0; border-radius: 8px; cursor: pointer; font-weight: 600; font-family: 'Cormorant Garamond', serif;
  transition: border-color .2s, background .2s;
}
.slot:hover { border-color: var(--gold); }
.slot.is-selected { border-color: var(--gold); background: var(--gold); color: #1e3d34; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 14px; margin-bottom: 6px; color: var(--muted); }
.field input, .field textarea, .field select {
  width: 100%; background: var(--bg-2); border: 1px solid var(--line); color: var(--text);
  padding: 12px 14px; border-radius: 8px; font-family: inherit; font-size: 15px;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.panel__actions { display: flex; justify-content: space-between; margin-top: 22px; gap: 12px; }
.summary { background: var(--bg-2); border: 1px solid var(--line); border-radius: 8px; padding: 16px; margin-bottom: 20px; }
.summary div { display: flex; justify-content: space-between; padding: 4px 0; }
.summary .muted { color: var(--muted); }

.notice { padding: 12px 16px; border-radius: 8px; margin-bottom: 16px; font-size: 14px; }
.notice--error { background: rgba(179,40,45,.15); border: 1px solid var(--red); color: #ff9a9d; }
.date-input { margin-bottom: 18px; }

.success { text-align: center; padding: 20px; }
.success__icon { font-size: 54px; }
.success h3 { font-size: 26px; margin: 10px 0; }

/* Hours + contact */
.hours { width: 100%; border-collapse: collapse; margin-top: 10px; }
.hours td { padding: 10px 0; border-bottom: 1px solid var(--line); }
.hours td:last-child { text-align: right; color: var(--gold); font-weight: 600; }
.hours tr.is-today td { color: var(--text); }
.hours tr.is-today td:first-child::after { content: " · vandaag"; color: var(--gold); font-size: 12px; }

/* Footer */
.footer { padding: 40px 0; text-align: center; }
.footer__inner { display: grid; gap: 8px; }
.footer__logo { height: 48px; width: auto; object-fit: contain; }
.footer .brand { justify-content: center; }

/* Auth nav */
.nav__auth { display: flex; align-items: center; gap: 18px; }
.nav__auth a { color: var(--muted); font-weight: 500; font-size: 15px; transition: color .2s; }
.nav__auth a:hover { color: var(--gold); }
.nav__account { color: var(--text) !important; font-weight: 600 !important; }

/* Modal */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.7); backdrop-filter: blur(3px); }
.modal__box {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px; width: 100%; max-width: 420px; z-index: 1;
}
.modal__x {
  position: absolute; top: 14px; right: 16px; background: none; border: none;
  color: var(--muted); font-size: 28px; line-height: 1; cursor: pointer;
}
.modal__x:hover { color: var(--gold); }
.tabs { display: flex; gap: 8px; margin-bottom: 22px; }
.tab {
  flex: 1; background: var(--bg-2); border: 1px solid var(--line); color: var(--muted);
  padding: 11px; border-radius: 8px; cursor: pointer; font-family: 'Cormorant Garamond', serif;
  font-size: 15px; text-transform: uppercase; letter-spacing: 1px; transition: .2s;
}
.tab.is-active { border-color: var(--gold); color: var(--gold); background: rgba(200,169,110,.08); }

/* Account / mijn afspraken */
.account-list { max-width: 720px; margin: 0 auto; display: grid; gap: 12px; }
.appt {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 22px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.appt--cancelled { opacity: .55; }
.appt__main { flex: 1; min-width: 180px; }
.appt__svc { font-family: 'Cormorant Garamond', serif; font-size: 19px; }
.appt__when { font-size: 14px; margin-top: 2px; }
.badge { padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 600; border: 1px solid var(--line); color: var(--muted); }
.badge--ok { color: var(--gold); border-color: var(--gold); }
.badge--off { color: #ff9a9d; border-color: var(--red); }

/* Responsive */
@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; position: absolute; top: 66px; left: 0; right: 0;
    background: var(--bg-2); padding: 20px; gap: 16px; border-bottom: 1px solid var(--line);
  }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .section { padding: 64px 0; }
  .field--row { grid-template-columns: 1fr; }
}

/* ── Barber picker ─────────────────────────────────────────────────────────── */
.opt-grid--barbers { grid-template-columns: repeat(auto-fill, minmax(150px,1fr)); }
.opt--barber { display: flex; flex-direction: column; align-items: center; padding: 16px 12px; gap: 10px; text-align: center; }
.opt--barber .opt__name { font-size: 15px; }
.barber-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 22px; color: #1e3d34;
  font-weight: 700; flex-shrink: 0;
}
.barber-avatar--any { background: var(--bg-2); border: 2px dashed var(--gold); font-size: 24px; color: var(--gold); }
.barber-avatar__img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block; }

/* ── Slot dots (barber availability indicator) ─────────────────────────────── */
.slot { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.slot__dots { display: flex; gap: 3px; justify-content: center; flex-wrap: wrap; min-height: 8px; }
.slot__dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }

/* ── Klantportaal ─────────────────────────────────────────────────────────── */
.profile-header {
  display: flex; align-items: center; gap: 18px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 24px;
  max-width: 720px; margin: 0 auto 24px;
}
.profile-avatar {
  position: relative; width: 72px; height: 72px; border-radius: 50%;
  background: var(--bg-2); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--gold);
  flex-shrink: 0; overflow: visible;
}
.profile-avatar__img {
  width: 72px; height: 72px; border-radius: 50%; object-fit: cover; display: block;
}
.profile-avatar__edit {
  position: absolute; bottom: -4px; right: -4px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold); color: #1e3d34;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; cursor: pointer; border: 2px solid var(--bg-1);
}
.profile-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; }
.profile-email { font-size: 13px; margin-top: 2px; }

.appt__note { font-size: 12px; margin-top: 4px; }
.appt__actions { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }

/* ── Inspiratiefoto's ────────────────────────────────────────────────────── */
.insp-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px; margin-bottom: 8px;
}
.insp-photo {
  position: relative; border-radius: 8px; overflow: hidden;
  aspect-ratio: 1; background: var(--bg-2); border: 1px solid var(--line);
}
.insp-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.insp-photo__del {
  position: absolute; top: 4px; right: 4px;
  background: rgba(0,0,0,.65); color: #fff;
  border: none; border-radius: 50%; width: 22px; height: 22px;
  font-size: 12px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.insp-photo__del:hover { background: var(--red); }

/* ── Modal flat-class aliases ────────────────────────────────────────────── */
.modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 0; border-bottom: 1px solid var(--line); padding-bottom: 16px;
}
.modal-head h3 { font-family: 'Cormorant Garamond', serif; font-size: 20px; margin: 0; }
.modal-body { padding: 20px 24px; }
.modal-foot { padding: 0 24px 20px; display: flex; justify-content: flex-end; gap: 10px; }
.modal-close {
  background: none; border: none; color: var(--muted); font-size: 20px;
  cursor: pointer; line-height: 1; padding: 0;
}
.modal-close:hover { color: var(--text); }

/* ── Sticky afspraak-banner ──────────────────────────────────────────────── */
.appt-banner {
  position: sticky;
  top: 64px; /* hoogte van de nav */
  z-index: 90;
  background: var(--gold);
  color: #000;
  padding: 10px 0;
}
.appt-banner[hidden] { display: none !important; }
.appt-banner__inner {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.appt-banner__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  white-space: nowrap;
}
.appt-banner__detail {
  font-size: 14px; font-weight: 500; flex: 1;
}
.appt-banner__btn {
  margin-left: auto;
  background: #000; color: var(--gold);
  font-family: 'Cormorant Garamond', serif; font-size: 13px; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 4px; text-decoration: none;
  white-space: nowrap;
}
.appt-banner__btn:hover { background: #1e3d34; }

/* ── Loyaliteitskaart ──────────────────────────────────────────────────────── */
.loyalty-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.loyalty-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.loyalty-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gold);
}
.loyalty-total {
  font-size: .9rem;
  color: var(--text-muted);
}
.loyalty-total strong { color: var(--gold); }
.loyalty-stamps {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 6px;
  margin-bottom: .75rem;
}
@media (max-width: 480px) {
  .loyalty-stamps { grid-template-columns: repeat(5, 1fr); }
}
.loyalty-stamp {
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
}
.loyalty-stamp--filled {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}
.loyalty-stamp--filled svg {
  width: 55%;
  height: 55%;
  stroke: #000;
}
.loyalty-hint {
  font-size: .82rem;
  margin-bottom: 1.25rem;
}
.loyalty-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 1rem 0 .5rem;
}
.loyalty-promo {
  border-radius: 8px;
  padding: .9rem 1rem;
  margin-bottom: .5rem;
}
.loyalty-promo--available {
  background: linear-gradient(135deg, #1a1500 0%, #2a2000 100%);
  border: 1px solid var(--gold);
}
.loyalty-promo--upcoming {
  background: var(--bg);
  border: 1px solid var(--border);
}
.loyalty-promo__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: .25rem;
}
.loyalty-promo__title {
  font-weight: 600;
  font-size: .95rem;
}
.loyalty-promo--available .loyalty-promo__title { color: var(--gold); }
.loyalty-promo__badge {
  font-size: .75rem;
  background: rgba(200,169,110,.15);
  color: var(--gold);
  border: 1px solid rgba(200,169,110,.3);
  border-radius: 20px;
  padding: 2px 10px;
  white-space: nowrap;
}
.loyalty-promo--upcoming .loyalty-promo__badge {
  background: rgba(255,255,255,.05);
  color: var(--text-muted);
  border-color: var(--border);
}
.loyalty-promo__descr {
  font-size: .83rem;
  color: var(--text-muted);
  margin-bottom: .5rem;
}
.loyalty-promo__progress {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin: .5rem 0 .25rem;
  overflow: hidden;
}
.loyalty-promo__bar {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  transition: width .4s;
}
.loyalty-promo__meta {
  font-size: .78rem;
  color: var(--text-muted);
}
.btn--gold {
  background: var(--gold);
  color: #000;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  padding: 8px 18px;
  cursor: pointer;
  transition: opacity .15s;
}
.btn--gold:hover { opacity: .85; }
.btn--gold.btn--sm { font-size: .8rem; padding: 5px 14px; margin-top: .6rem; }

/* ── Day picker ─────────────────────────────────────────────────────────────── */
.day-picker {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
  margin-bottom: 8px;
}
.day-picker::-webkit-scrollbar { height: 4px; }
.day-picker::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

.day-btn {
  flex: 0 0 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 6px 8px;
  border-radius: 10px;
  border: 2px solid transparent;
  background: var(--surface);
  cursor: pointer;
  transition: border-color .15s, background .15s, opacity .15s;
  position: relative;
}
.day-btn:disabled { opacity: .38; cursor: default; }
.day-btn.is-selected {
  border-color: var(--gold);
  background: rgba(200,169,110,.12);
}
.day-btn--available:not(:disabled):hover { border-color: var(--gold); }
.day-btn--limited:not(:disabled):hover  { border-color: #f59e0b; }

.day-btn__name {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
}
.day-btn__num {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.day-btn__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  margin-top: 2px;
}
.day-btn__dot--green  { background: #22c55e; }
.day-btn__dot--orange { background: #f59e0b; }
.day-btn__dot--red    { background: #ef4444; }
.day-btn__dot--gray   { background: #555; }

/* ── Blog preview grid (homepage) ─────────────────────────────── */
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: transform .2s, border-color .2s;
}
.blog-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}
.blog-card__img {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: #234439;
}
.blog-card__img--placeholder {
  background: linear-gradient(135deg, #234439 0%, #2a5548 100%);
}
.blog-card__body {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  flex: 1;
}
.blog-card__date {
  font-size: .75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.blog-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  line-height: 1.3;
}
.blog-card__intro {
  font-size: .88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Saunate additions ─────────────────────────────────────────────────────── */
.brand__name { display: inline-flex; flex-direction: column; line-height: 1.05; letter-spacing: 3px; }
.brand__sub {
  font-family: 'Inter', sans-serif; font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); font-weight: 500;
}
.hero__mark {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: clamp(240px, 28vw, 380px); aspect-ratio: 1;
  border: 1px solid var(--gold); border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, rgba(200,169,110,.14), transparent 70%);
  gap: 6px; animation: hero-float 5s ease-in-out infinite;
}
.hero__mark-icon { font-size: 44px; }
.hero__mark-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(34px, 4vw, 52px); letter-spacing: 8px; color: var(--text); font-weight: 600; }
.hero__mark-sub { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
@media (max-width: 768px) { .hero__mark { display: none; } }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-top: 2rem; }
.feature {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; transition: border-color .2s, transform .2s;
  overflow: hidden;
}
.feature:hover { border-color: var(--gold); transform: translateY(-3px); }
.feature__icon { font-size: 34px; display: block; margin-bottom: 12px; }
.feature h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 15px; }

.h3 { font-family: 'Cormorant Garamond', serif; font-size: clamp(22px, 3vw, 30px); font-weight: 600; }

.schedule { max-width: 640px; margin: 0 auto; }
.schedule__table td:first-child { color: var(--text); }

.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 1.5rem; max-width: 900px; margin-left: auto; margin-right: auto; }
.price-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 26px; text-align: center; display: flex; flex-direction: column; gap: 10px;
  transition: border-color .2s, transform .2s;
}
.price-card:hover { transform: translateY(-3px); }
.price-card--featured { border-color: var(--gold); background: rgba(200,169,110,.07); }
.price-card__label { font-size: 13px; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); font-weight: 600; }
.price-card__price { font-family: 'Cormorant Garamond', serif; font-size: 46px; font-weight: 700; color: var(--text); }
.price-card__desc { color: var(--muted); font-size: 14px; }
