/* =========================================================================
   Acme Studio — generic neutral theme.
   Theme tokens at :root, components grouped by surface.
   Replace tokens to reskin without touching component CSS.
   ========================================================================= */

/* ---------- 1. Tokens ------------------------------------------------- */
:root {
  --ink:        #222222;
  --mute:       #666666;
  --line:       #dddddd;
  --line-soft:  rgba(0, 0, 0, 0.12);
  --soft:       #f7f7f7;
  --surface:    #f7f7f7;
  --bg:         #ffffff;
  --pink:       #eeeeee;
  --pink-soft:  #f7f7f7;
  --accent:     #555555;
  --accent-ink: #ffffff;
  --button:     #222222;
  --button-ink: #ffffff;

  --stripe-a:   #eeeeee;
  --stripe-b:   #dddddd;
  --stripe-ink: #555555;

  --font-body:  system-ui, -apple-system, sans-serif;
  --font-head:  Georgia, serif;
  --font-mono:  ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --radius-field:  6px;
  --radius-pill:   999px;
  --max-w:         1180px;
}

/* ---------- 2. Reset & base ------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font-family: inherit; }

/* ---------- 3. Layout helpers ---------------------------------------- */
.max-w        { max-width: var(--max-w); margin: 0 auto; padding: 0 36px; }
.max-w-narrow { max-width: 1080px;       margin: 0 auto; padding: 0 36px; }
.max-w-book   { max-width: 980px;        margin: 0 auto; padding: 0 36px; }
.section      { padding: 64px 0 100px; }
.section-tight { padding: 54px 0 80px; }
.section-soft { background: var(--soft); padding: 72px 0; }
.section-pink { background: var(--pink-soft); padding: 72px 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}

.hairline {
  height: 1px;
  width: 100%;
  background: var(--line);
}

/* ---------- 4. Buttons ----------------------------------------------- */
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 13px 26px;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 80ms ease;
}
.btn-primary { background: var(--ink);   color: var(--bg);  border-color: var(--ink); }
.btn-ghost   { background: transparent;  color: var(--ink); }
.btn-primary:hover { background: #1a140e; }
.btn-ghost:hover   { background: var(--ink); color: var(--bg); }
.btn-primary:active, .btn-ghost:active { transform: translateY(1px); }
.btn-primary:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }
.btn-small { padding: 8px 16px; font-size: 11px; }

/* ---------- 5. Preview banner --------------------------------------- */
.preview-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 36px;
  background: var(--ink);
  color: var(--button-ink);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--accent);
}
.preview-banner__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 147, 82, 0.25);
}
.preview-banner__text { font-weight: 500; }

/* ---------- 5b. Under-construction banner ---------------------------- */
.construction-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 36px;
  background: #f8e6c7;
  color: #5a3d18;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid #e0c699;
  text-align: center;
}
.construction-banner__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c98b2e;
  box-shadow: 0 0 0 3px rgba(201, 139, 46, 0.25);
  flex-shrink: 0;
}
.construction-banner__text { font-weight: 500; }
@media (max-width: 480px) {
  .construction-banner { padding: 8px 14px; font-size: 10px; letter-spacing: 0.10em; }
}

/* ---------- 5. Header / nav ------------------------------------------ */
.site-top {
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header {
  z-index: 20;
  background: rgba(251, 246, 236, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 36px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav-list {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-list--right { justify-content: flex-end; }
.nav-link {
  color: var(--ink);
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  transition: border-color 160ms ease;
}
.nav-link:hover, .nav-link.is-active { border-bottom-color: var(--ink); }
.nav-book {
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--ink);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: transparent;
  color: var(--ink);
  transition: background 160ms ease, color 160ms ease;
}
.nav-book:hover, .nav-book.is-active { background: var(--ink); color: var(--bg); }

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.brand__word {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand__amp { color: var(--accent); }
.brand__sub {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 2px;
  white-space: nowrap;
}

.hamburger { display: none; }

@media (max-width: 880px) {
  .site-header__inner { grid-template-columns: auto 1fr auto; }
  .nav-list--left, .nav-list--right > .nav-link { display: none; }
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    padding: 0;
  }
  .nav-list--right .nav-book { padding: 8px 16px 8px 18px; line-height: 1; }
  .hamburger span {
    display: block;
    height: 1px;
    background: var(--ink);
    width: 22px;
    transition: transform 200ms ease, opacity 200ms ease;
  }
  .hamburger.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .hamburger.is-open span:nth-child(2) { opacity: 0; }
  .hamburger.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
  .brand { align-items: flex-start; }
  .nav-list--right { justify-self: end; }
  .site-header__inner { padding: 12px 18px; gap: 12px; }
}

@media (max-width: 480px) {
  .brand__word { font-size: 22px; }
  .brand__sub  { font-size: 8px; letter-spacing: 0.24em; }
  .nav-list--right .nav-book { padding: 6px 12px; font-size: 10px; }
}

@media (max-width: 380px) {
  .brand__word { font-size: 19px; }
  .brand__sub  { font-size: 7px; letter-spacing: 0.18em; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 30;
  display: none;
  flex-direction: column;
  padding: 64px 28px 28px;
  gap: 4px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}
.mobile-menu .nav-book {
  align-self: flex-start;
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  border-radius: var(--radius-pill);
  padding: 14px 26px;
  line-height: 1;
}

/* ---------- 5b. Toast notifications ---------------------------------- */
.toasts {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 380px;
  pointer-events: none;
}
.toast {
  background: var(--ink);
  color: #fff8ec;
  border: 1px solid var(--ink);
  border-left: 6px solid var(--accent);
  border-radius: 6px;
  padding: 16px 44px 16px 18px;
  box-shadow: 0 16px 40px rgba(20, 14, 10, 0.32);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  pointer-events: auto;
  position: relative;
  opacity: 0;
  transform: translateY(-12px) scale(0.98);
  transition: opacity 220ms ease, transform 220ms ease;
}
.toast.is-shown { opacity: 1; transform: translateY(0) scale(1); }
.toast--error   {
  background: #6b1f1f;
  border-color: #6b1f1f;
  border-left-color: #ffb3b3;
  color: #fff;
}
.toast--success {
  background: var(--accent);
  border-color: var(--accent);
  border-left-color: #fff8ec;
  color: #2b231b;
}
.toast--info { /* uses default ink + accent */ }
.toast__msg { white-space: pre-line; }
.toast__close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: transparent;
  border: 0;
  font-size: 22px;
  line-height: 1;
  color: currentColor;
  opacity: 0.7;
  cursor: pointer;
  padding: 4px 8px;
}
.toast__close:hover { opacity: 1; }
@media (max-width: 540px) {
  .toasts { left: 12px; right: 12px; top: 12px; max-width: none; }
}

/* ---------- 6. Hero --------------------------------------------------- */
.hero { padding: 54px 0 80px; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero__title {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 92px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 14px 0 0;
}
.hero__title em { font-style: italic; color: var(--accent); }
.hero__lede {
  font-size: 16px;
  color: var(--mute);
  max-width: 460px;
  margin-top: 22px;
  line-height: 1.6;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.hero__meta {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--mute);
}
.hero__meta-divider { width: 1px; height: 22px; background: var(--line); }
.hero__meta strong  { color: var(--ink); font-weight: 600; }

.hero__media { position: relative; }
.hero__badge {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: var(--pink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.1;
  text-align: center;
  transform: rotate(-8deg);
  border: 1px solid var(--accent);
}
.hero__badge strong {
  display: block;
  font-family: var(--font-body);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
}
.hero__tag {
  position: absolute;
  bottom: -10px;
  left: -22px;
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.hero__tag-dot { color: var(--accent); }

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__title { font-size: 56px; }
  .hero__badge { width: 96px; height: 96px; top: -12px; right: -8px; font-size: 12px; }
  .hero__badge strong { font-size: 16px; }
}

/* ---------- 7. Placeholder striped image ----------------------------- */
.placeholder {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: repeating-linear-gradient(
    135deg,
    var(--stripe-a) 0 14px,
    var(--stripe-b) 14px 28px
  );
  display: flex;
  align-items: flex-end;
}
.placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.05));
  pointer-events: none;
}
.placeholder__label {
  position: relative;
  margin: 12px;
  padding: 5px 9px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--stripe-ink);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 3px;
}
.site-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  overflow: hidden;
}

/* ---------- 8. Marquee ----------------------------------------------- */
.marquee {
  background: var(--ink);
  color: var(--bg);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
}
.marquee__track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: site-marq 36s linear infinite;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 22px;
  width: max-content;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 36px;
}
@keyframes site-marq {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.3333%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ---------- 9. Pillars (the studio) ---------------------------------- */
.pillars { padding: 64px 0; }
.pillars__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
}
.pillars__title {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.05;
  margin-top: 10px;
}
.pillars__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar__num {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 28px;
  color: var(--accent);
}
.pillar__title {
  font-family: var(--font-head);
  font-size: 22px;
  line-height: 1.15;
  margin: 12px 0 8px;
}
.pillar__body { font-size: 13px; color: var(--mute); }
@media (max-width: 880px) {
  .pillars__grid { grid-template-columns: 1fr; gap: 32px; }
  .pillars__cards { grid-template-columns: 1fr; gap: 28px; }
  .pillars__title { font-size: 36px; }
}

/* ---------- 10. Lookbook strip --------------------------------------- */
.lookbook__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}
.lookbook__title {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.05;
  margin: 8px 0 0;
}
.lookbook__title em { font-style: italic; }
.lookbook__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.lookbook__item .placeholder { aspect-ratio: 0.82; border-radius: 2px; }
.lookbook__caption {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 8px;
}
@media (max-width: 880px) {
  .lookbook__grid { grid-template-columns: repeat(2, 1fr); }
  .lookbook__title { font-size: 32px; }
}

/* ---------- 11. Pull-quote ------------------------------------------- */
.pullquote { padding: 90px 0; }
.pullquote__inner { max-width: 820px; margin: 0 auto; text-align: center; }
.pullquote__text {
  font-family: var(--font-head);
  font-weight: 400;
  font-style: italic;
  font-size: 38px;
  line-height: 1.25;
  margin: 16px 0 0;
  letter-spacing: -0.01em;
}
.pullquote__cite {
  margin-top: 22px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}

/* ---------- 12. Visit / hours strip ---------------------------------- */
.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 36px;
}
.visit__grid--single { grid-template-columns: 1fr; }
.visit__title {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 56px;
  line-height: 1;
  margin: 10px 0 18px;
  letter-spacing: -0.01em;
}
.visit__title em { font-style: italic; }
.visit__address {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.7;
}
.hours-list { margin-top: 14px; }
.hours-list__row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.hours-list__row span:first-child { font-weight: 500; }
.hours-list__hrs {
  color: var(--ink);
  font-family: var(--font-head);
  font-style: italic;
  font-size: 16px;
}
.hours-list__hrs--closed { color: var(--mute); }
@media (max-width: 880px) {
  .visit__grid { grid-template-columns: 1fr; gap: 32px; }
  .visit__title { font-size: 40px; }
}

/* ---------- 13. Services page ---------------------------------------- */
.page-title {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 88px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 12px 0 8px;
}
.page-title em { font-style: italic; color: var(--accent); }
.page-lede {
  color: var(--mute);
  font-size: 15px;
  max-width: 560px;
}
.svc-list { margin-top: 56px; }
.svc-row {
  display: grid;
  grid-template-columns: 60px 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.svc-row:last-child { border-bottom: 1px solid var(--line); }
.svc-row__num {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
}
.svc-row__name {
  font-family: var(--font-head);
  font-size: 28px;
  line-height: 1.1;
}
.svc-row__note {
  font-size: 13px;
  color: var(--mute);
  margin-top: 4px;
}
.svc-row__price {
  font-family: var(--font-head);
  font-size: 30px;
  font-style: italic;
  color: var(--ink);
}

.addon-list { margin-top: 28px; }
.addon-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.addon-row:last-child { border-bottom: 1px solid var(--line); }
.addon-row__name {
  font-family: var(--font-head);
  font-size: 22px;
  line-height: 1.15;
}
.addon-row__note { font-size: 12px; color: var(--mute); margin-top: 3px; }
.addon-row__price {
  font-family: var(--font-head);
  font-size: 22px;
  font-style: italic;
}

.svc-notes {
  margin-top: 48px;
  padding: 32px;
  background: var(--soft);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.svc-note__title {
  font-family: var(--font-head);
  font-size: 28px;
  line-height: 1.1;
  margin-top: 8px;
}
.svc-note__title em { font-style: italic; color: var(--accent); }
.svc-note__body { font-size: 13px; color: var(--mute); margin-top: 10px; }

@media (max-width: 880px) {
  .page-title { font-size: 56px; }
  .svc-row { grid-template-columns: 36px 1fr; gap: 18px; }
  .svc-row__price { grid-column: 2; font-size: 24px; }
  .svc-row__action { grid-column: 2; justify-self: start; }
  .svc-notes { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
}

/* ---------- 14. Gallery ---------------------------------------------- */
.gallery__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.filter-row { display: flex; gap: 6px; flex-wrap: wrap; }
.chip {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms, color 160ms, border-color 160ms;
}
.chip.is-active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.gallery-grid {
  margin-top: 36px;
  column-count: 3;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
}
.gallery-item.is-hidden { display: none; }
.gallery-item__btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--soft);
  border-radius: 2px;
  overflow: hidden;
  cursor: zoom-in;
  font: inherit;
}
.gallery-item__btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 240ms ease;
}
.gallery-item__btn:hover img { transform: scale(1.02); }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 10, 0.86);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 32px;
}
.lightbox.is-open { display: flex; }
.lightbox__figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 100%;
}
.lightbox__caption {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  max-width: min(100%, 720px);
  flex: 0 0 auto;
}
.lightbox__num {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  flex: 0 0 auto;
}
.lightbox__label {
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.lightbox__img {
  max-width: calc(100vw - 64px);
  max-height: calc(100vh - 64px - 56px);
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
@media (max-width: 540px) {
  .lightbox { padding: 16px; }
  .lightbox__img {
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 32px - 56px);
  }
}
.lightbox__close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: transparent;
  border: 0;
  color: #f4ebdd;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 10px;
}
.lightbox__close:hover { color: #fff; }

.gallery-item__caption {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 8px;
  min-width: 0;
}
.gallery-item__num {
  flex: 0 0 auto;
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(12px, 1.2vw, 16px);
  color: var(--mute);
}
.gallery-item__tags {
  flex: 1 1 auto;
  min-width: 0;
  font-size: clamp(10px, 0.95vw, 13px);
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 880px) {
  .gallery-grid { column-count: 2; }
}
@media (max-width: 540px) {
  .gallery-grid { column-count: 1; }
}

/* ---------- 15. About ------------------------------------------------ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 0 36px 64px;
  max-width: 1080px;
  margin: 0 auto;
}
.about-intro p { font-size: 17px; line-height: 1.6; }
.about-intro p + p { font-size: 15px; line-height: 1.7; color: var(--mute); margin-top: 18px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}
.stat__num {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 36px;
  color: var(--accent);
}
.stat__label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 4px;
}
@media (max-width: 880px) {
  .about-intro { grid-template-columns: 1fr; gap: 28px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .stat__num { font-size: 28px; }
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 18px;
}
.review-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.review-card__text {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 22px;
  line-height: 1.3;
  margin: 14px 0 16px;
}
.review-card__name {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
@media (max-width: 880px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ---------- 16. FAQ accordion --------------------------------------- */
.faq-list { margin-top: 24px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--ink);
}
.faq-item__plus {
  font-family: var(--font-body);
  font-size: 22px;
  color: var(--accent);
  transition: transform 200ms ease;
}
.faq-item.is-open .faq-item__plus { transform: rotate(45deg); }
.faq-item__panel {
  display: none;
  padding-bottom: 22px;
  font-size: 14px;
  color: var(--mute);
  line-height: 1.7;
  max-width: 720px;
}
.faq-item.is-open .faq-item__panel { display: block; }

/* ---------- 17. Contact ---------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
}
.contact-map .placeholder { aspect-ratio: 1.3; border-radius: 3px; }
.contact-park {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  padding: 10px 14px;
  background: var(--soft);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  border: 1px solid var(--line);
}
.contact-park__pin { color: var(--accent); }

.contact-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.contact-row__label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.contact-row__body { font-size: 14px; line-height: 1.55; min-width: 0; overflow-wrap: anywhere; }
/* Long fields (email, IG handle) get a fluid type ramp so they fit the cell without wrapping. */
.contact-row__body--fluid { font-size: clamp(11px, 1.1vw + 0.5rem, 14px); }

.contact-form {
  margin-top: 28px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid;
  gap: 14px;
}
.contact-form__title {
  font-family: var(--font-head);
  font-size: 28px;
  line-height: 1.1;
  margin: 0;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- 18. Booking wizard --------------------------------------- */
.booking {
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  border-radius: 18px;
  padding: 28px 32px 24px;
}
.booking--embedded {
  border-radius: 0;
}
.booking__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.booking__step-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--mute);
  text-transform: uppercase;
}
.booking__step-title {
  font-family: var(--font-head);
  font-size: 30px;
  line-height: 1.05;
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.booking__close {
  border: none;
  background: transparent;
  color: var(--mute);
  font-size: 22px;
  padding: 6px;
  line-height: 1;
}

.stepper {
  display: flex;
  align-items: center;
  gap: 8px;
}
.stepper__node {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: transparent;
  color: var(--mute);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms ease;
}
.stepper__node.is-active {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.stepper__node.is-done {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.stepper__line {
  flex: 1;
  height: 1px;
  background: var(--line-soft);
}

.booking__body { margin-top: 22px; }

.booking__footer {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}
.booking__summary-line {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 14px;
  color: var(--mute);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.booking__summary-line strong { color: var(--ink); font-weight: 600; }

.booking__nav { display: flex; gap: 8px; flex: 0 0 auto; margin-left: auto; }

@media (max-width: 720px) {
  .booking__footer { flex-wrap: wrap; gap: 10px; }
  .booking__summary-line {
    flex-basis: 100%;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    font-size: 13px;
    line-height: 1.45;
  }
  .booking__nav { margin-left: 0; }
}
.booking-btn-primary,
.booking-btn-ghost {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
}
.booking-btn-primary {
  background: var(--button);
  color: var(--button-ink);
  border-color: var(--button);
}
.booking-btn-primary:disabled {
  background: #ccc;
  border-color: #ccc;
  color: #fff;
  cursor: not-allowed;
  opacity: 0.55;
}
.booking-btn-ghost {
  padding: 10px 18px;
  background: transparent;
  color: var(--ink);
  border-color: var(--line-soft);
}

.lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--mute);
  text-transform: uppercase;
}

/* Step 1 — services + add-ons + art */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}
.svc-card {
  text-align: left;
  padding: 12px 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-field);
  background: var(--surface);
  cursor: pointer;
  transition: all 150ms;
}
.svc-card.is-selected {
  border-color: var(--ink);
  background: var(--soft);
}
.svc-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
.svc-card__name { font-weight: 600; font-size: 14px; }
.svc-card__price {
  font-family: var(--font-head);
  font-size: 18px;
  color: var(--accent);
}
.svc-card__note { font-size: 12px; color: var(--mute); margin-top: 4px; }
.svc-card__meta { color: var(--accent); font-weight: 500; white-space: nowrap; }

.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.addon-card { padding: 10px 12px; }
.addon-card .svc-card__price { font-size: 16px; }
.addon-card .svc-card__name { font-size: 13px; }
.addon-card .svc-card__note { font-size: 11px; margin-top: 3px; }
.addon-card.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  background: transparent;
}
.addon-card.is-disabled .svc-card__note { font-style: italic; }

.toggle-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.toggle-chip {
  padding: 12px 20px;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 120ms ease, color 120ms ease, border-color 120ms ease, transform 120ms ease;
}
.toggle-chip:hover { transform: translateY(-1px); }
.toggle-chip.is-active {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.art-hint { font-size: 11px; color: var(--mute); margin-top: 8px; }

/* Step 2 — technicians */
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}
.tech-card {
  text-align: left;
  padding: 12px 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-field);
  background: var(--surface);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tech-card.is-selected {
  border-color: var(--ink);
  background: var(--soft);
}
.tech-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 18px;
  color: var(--ink);
  flex-shrink: 0;
}
.tech-card__name { font-weight: 600; font-size: 14px; }
.tech-card__role { font-size: 11px; color: var(--mute); }
.tech-card__fav  { font-size: 11px; color: var(--accent); margin-top: 2px; }

/* Step 3 — when */
.date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-top: 8px;
}
.date-cell {
  padding: 10px 4px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-field);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.date-cell.is-selected {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.date-cell:disabled,
.date-cell.is-closed {
  cursor: not-allowed;
  opacity: 0.4;
  background: transparent;
  color: var(--mute);
}
.date-cell__dow {
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
}
.date-cell__num { font-family: var(--font-head); font-size: 18px; }
.date-cell__mon { font-size: 10px; opacity: 0.7; }

.time-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-top: 8px;
}
.time-cell {
  padding: 9px 4px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-field);
  background: var(--surface);
  color: var(--ink);
  font-size: 13px;
  cursor: pointer;
}
.time-cell.is-selected {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.time-cell:disabled,
.time-cell.is-taken {
  cursor: not-allowed;
  opacity: 0.45;
  text-decoration: line-through;
  background: transparent;
  color: var(--mute);
}
.time-cell--placeholder { opacity: 0.45; cursor: not-allowed; }

/* Step 4 — reference */
.ref-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
.ref-drop {
  border: 1.5px dashed var(--line-soft);
  border-radius: var(--radius-field);
  padding: 24px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  background: var(--soft);
  text-align: center;
  transition: border-color 160ms ease, background 160ms ease;
  position: relative;
}
/* Visually hide the file input — label-for routes the tap to it natively.
   Standard accessible-hidden pattern: stays interactive, takes no layout
   space, doesn't intercept sibling taps. Avoid display:none / visibility:hidden
   / pointer-events:none — some mobile browsers refuse to open the file picker
   when the input is fully non-interactive. */
.ref-input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.ref-drop.is-hover {
  border-color: var(--accent);
  background: var(--pink-soft);
}
.ref-drop__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ref-drop__title { font-family: var(--font-head); font-size: 20px; color: var(--ink); }
.ref-drop__hint  { font-size: 12px; color: var(--mute); }
.ref-drop__preview {
  max-width: 100%;
  max-height: 160px;
  border-radius: var(--radius-field);
  object-fit: cover;
  border: 1px solid var(--line-soft);
}
.ref-drop__filename { font-size: 12px; color: var(--mute); }
.ref-drop__remove {
  margin-top: 4px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-soft);
  background: var(--surface);
  color: var(--ink);
  font-size: 12px;
}
.ref-tip {
  padding: 10px 12px;
  background: var(--soft);
  border-radius: var(--radius-field);
  font-size: 12px;
  color: var(--mute);
  line-height: 1.55;
}
.ref-tip strong { color: var(--ink); }

/* Step 5 — details */
.details-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
}
.field {
  display: grid;
  gap: 5px;
}
.field__hint {
  font-size: 12px;
  line-height: 1.4;
  color: var(--mute);
  margin-top: 2px;
}
.field input,
.field textarea,
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius-field);
  border: 1px solid var(--line-soft);
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  resize: vertical;
}
.field input:focus,
.field textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}
.summary {
  background: var(--soft);
  padding: 18px;
  border-radius: var(--radius-field);
  align-self: start;
}
.summary__row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
  font-size: 13px;
}
.summary__row span:first-child { color: var(--mute); }
.summary__row span:last-child { color: var(--ink); font-weight: 500; text-align: right; }
.summary__row.is-empty span:last-child { color: var(--mute); font-weight: 400; }
.summary__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 12px;
}
.summary__total span:first-child { font-size: 13px; color: var(--mute); }
.summary__total span:last-child {
  font-family: var(--font-head);
  font-size: 26px;
  color: var(--ink);
}
.summary__caveat { font-size: 11px; color: var(--mute); margin-top: 6px; }

/* Step 6 — done */
.done {
  text-align: center;
  padding: 14px 0 8px;
}
.done__icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.done__title {
  font-family: var(--font-head);
  font-size: 32px;
  margin-top: 14px;
  line-height: 1.1;
}
.done__sub {
  font-size: 14px;
  color: var(--mute);
  margin-top: 8px;
  max-width: 440px;
  margin-inline: auto;
}
.done__summary {
  margin: 22px auto 0;
  max-width: 380px;
  text-align: left;
  background: var(--soft);
  padding: 18px;
  border-radius: var(--radius-field);
}
.done__ics {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 18px auto 0;
  padding: 10px 18px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-pill);
  color: var(--ink);
  background: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 120ms ease, color 120ms ease;
}
.done__ics:hover { background: var(--ink); color: var(--surface); border-color: var(--ink); }
.done__ics svg { stroke: currentColor; }

@media (max-width: 720px) {
  .booking { padding: 22px 18px 18px; }
  .svc-grid, .tech-grid, .ref-grid, .details-grid { grid-template-columns: 1fr; }
  .addon-grid { grid-template-columns: 1fr 1fr; }
  .date-grid  { grid-template-columns: repeat(4, 1fr); }
  .time-grid  { grid-template-columns: repeat(3, 1fr); }
  .booking__step-title { font-size: 22px; }
}

/* ---------- 19. Footer ----------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 36px 32px;
  background: var(--surface);
}
.site-footer__top {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}
.site-footer__brand {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 26px;
}
.site-footer__brand .brand__amp { color: var(--accent); }
.site-footer__tagline {
  font-size: 12px;
  color: var(--mute);
  margin-top: 8px;
  max-width: 360px;
}
.site-footer__col { display: grid; gap: 6px; margin-top: 10px; font-size: 13px; }
.footer-hours-row { display: grid; grid-template-columns: 36px 1fr; gap: 8px; align-items: baseline; }
.footer-hours-row__day { color: var(--mute); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }
.footer-hours-row__hrs { white-space: nowrap; }
.site-footer__social {
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin-top: 10px;
  font-size: 12px;
  color: var(--mute);
  text-decoration: none;
  transition: color 160ms ease;
}
.site-footer__social-icon { width: 22px; height: 22px; display: inline-block; flex-shrink: 0; }
.site-footer__social:hover { color: var(--ink); }

/* ---------- Manage booking ------------------------------------------- */
.manage { margin-top: 36px; }
.manage__panel { max-width: 480px; padding: 28px; background: var(--surface); border: 1px solid var(--line); border-radius: 6px; }
.manage__panel--wide { max-width: 720px; }
.manage__form { display: grid; gap: 14px; }
.manage__form .field { display: grid; gap: 6px; }
.manage__form .field span { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute); }
.manage__form input[type=email],
.manage__form input[type=text] {
  padding: 12px 14px;
  font: inherit;
  font-size: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-field);
  background: #fff;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.manage__form input:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.manage__hint { font-size: 13px; color: var(--mute); margin-bottom: 14px; }
.manage__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.manage__loading { color: var(--mute); padding: 20px 0; }
.manage__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.manage__h2 { font-family: var(--font-head); font-style: italic; font-size: 22px; margin: 8px 0 12px; }
.manage__rows { display: grid; gap: 10px; }
.manage__past { margin-top: 28px; }
.manage__past summary { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mute); cursor: pointer; padding: 8px 0; }
.manage__past[open] summary { color: var(--ink); }

.manage-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}
.manage-row__date { font-family: var(--font-head); font-style: italic; font-size: 18px; line-height: 1.2; }
.manage-row__time { font-size: 13px; color: var(--mute); margin-top: 2px; }
.manage-row__line { font-size: 14px; }
.manage-row__sub { font-size: 12px; margin-top: 2px; }
.manage-row .status--new       { color: var(--accent); font-weight: 500; text-transform: uppercase; letter-spacing: 0.14em; font-size: 11px; }
.manage-row .status--confirmed { color: #4a7a3e;       font-weight: 500; text-transform: uppercase; letter-spacing: 0.14em; font-size: 11px; }
.manage-row .status--completed { color: var(--mute);   text-transform: uppercase; letter-spacing: 0.14em; font-size: 11px; }
.manage-row .status--cancelled { color: var(--mute);   text-transform: uppercase; letter-spacing: 0.14em; font-size: 11px; text-decoration: line-through; }
.manage-row .status--no-show   { color: #b04646;       font-weight: 500; text-transform: uppercase; letter-spacing: 0.14em; font-size: 11px; }
@media (max-width: 540px) {
  .manage-row { grid-template-columns: 1fr; }
  .manage-row__action { justify-self: start; }
}
.site-footer__bottom {
  max-width: var(--max-w);
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 880px) {
  .site-footer__top { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
  .site-footer__col { gap: 8px; line-height: 1.5; }
  /* Brand block (1st) and Hours block (4th) span full width;
     Visit (2nd) and Studio (3rd) sit side-by-side in between. */
  .site-footer__top > :nth-child(1),
  .site-footer__top > :nth-child(4) { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .site-footer__top { gap: 22px 18px; }
  .site-footer__col { gap: 6px; }
}

/* ---------- 20. Sparkle / stars helpers ------------------------------ */
.sparkle, .stars { display: inline-flex; align-items: center; gap: 2px; }
.stars svg { display: block; }

/* ---------- 21. Print layout ----------------------------------------- */
@page { size: A4 portrait; margin: 12mm; }
.print-only { display: none; }

.print-body {
  background: var(--surface);
}
.print-sheet {
  width: 186mm;
  margin: 16px auto;
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
  break-after: page;
  page-break-after: always;
}
.print-sheet:last-child { break-after: auto; page-break-after: auto; }
.print-sheet__nav {
  border-bottom: 1px solid var(--line);
  padding: 14px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.print-sheet__nav-brand {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 22px;
  line-height: 1;
}
.print-sheet__nav-meta {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mute);
}
.print-sheet .marquee { display: none; }
.print-sheet .site-header,
.print-sheet .site-footer,
.print-sheet .preview-banner { display: none; }

@media print {
  html, body { background: #fff; }
  .print-sheet { margin: 0; width: 100%; box-shadow: none; }
  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
  a, button { text-decoration: none; }
  .no-print { display: none !important; }
}

/* ---------- WhatsApp call-to-action ----------------------------------- */
.contact-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--ink);
  color: var(--surface) !important;
  border: 1px solid var(--ink);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  white-space: nowrap;
  transition: background 120ms ease, color 120ms ease;
}
.contact-wa:hover { background: var(--accent); border-color: var(--accent); color: #fff !important; }
.contact-wa svg { display: block; }

/* ---------- Privacy / legal page -------------------------------------- */
.legal {
  max-width: 720px;
  margin: 60px auto;
  padding: 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
}
.legal h1 { font-family: var(--font-head); font-size: 38px; margin: 0 0 12px; }
.legal h2 { font-family: var(--font-head); font-size: 22px; margin: 32px 0 8px; }
.legal__lead { color: var(--mute); font-size: 14px; margin-bottom: 24px; }
.legal a { color: var(--accent); text-decoration: underline; }
.legal__consent-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 12px 0; }
.legal__consent-status  { font-size: 13px; color: var(--mute); }

/* ---------- Cookie consent banner ------------------------------------- */
.site-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 520px;
  margin-left: auto;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: #fbf6ec;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.16);
  font-size: 13px;
  line-height: 1.5;
}
.site-consent[hidden] { display: none; }
.site-consent__body { flex: 1 1 auto; min-width: 0; }
.site-consent__body strong { display: block; margin-bottom: 4px; font-size: 14px; }
.site-consent__body p { margin: 0; color: var(--mute); }
.site-consent__body a { color: var(--accent); }
.site-consent__actions { display: flex; gap: 8px; flex: 0 0 auto; }
.site-consent__btn {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font: inherit;
  cursor: pointer;
}
.site-consent__btn--primary { background: var(--ink); color: var(--surface); border-color: var(--ink); }
.site-consent__btn--ghost   { background: transparent; }
@media (max-width: 540px) {
  .site-consent { flex-direction: column; align-items: stretch; }
  .site-consent__actions { justify-content: flex-end; }
}
