/* ==========================================================
   Günay Beauty Center — site stylesheet
   Palette: plum ink · ivory · gold · blush
   Type:    Fraunces (display) · Manrope (text)
   ========================================================== */

:root {
  --ink: #2e1a2e;
  --plum: #5a2e52;
  --mauve: #9c7a93;
  --blush: #efd3d3;
  --blush-deep: #e4b9bc;
  --ivory: #fbf7f2;
  --sand: #f1e9e0;
  --line: #e2d6cc;
  --gold: #c9973f;
  --gold-deep: #a97a2a;
  --white: #ffffff;
  --ok: #2f7a4f;
  --err: #b3413a;

  --font-display: "Fraunces", Georgia, serif;
  --font-text: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --w: 1160px;
  --gutter: clamp(16px, 4vw, 40px);
  --radius: 6px;
  --radius-lg: 14px;
  --shadow: 0 18px 40px -24px rgba(46, 26, 46, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--ivory);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--plum); text-underline-offset: 3px; }
a:hover { color: var(--gold-deep); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.3rem, 5.2vw, 4.2rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); font-weight: 400; }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }
.lead { font-size: 1.18rem; line-height: 1.55; color: var(--plum); max-width: 58ch; }
.muted { color: var(--mauve); }
.measure { max-width: 68ch; }

.wrap { width: min(var(--w), 100% - 2 * var(--gutter)); margin-inline: auto; }
.section { padding-block: clamp(56px, 8vw, 110px); }
.section--tight { padding-block: clamp(36px, 5vw, 64px); }
.section--sand { background: var(--sand); }
.section--plum { background: var(--plum); color: var(--ivory); }
.section--plum h2, .section--plum h3 { color: var(--ivory); }
.section--plum .lead { color: var(--blush); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  font: 600 0.98rem/1 var(--font-text);
  border-radius: 999px;
  border: 1.5px solid var(--plum);
  background: var(--plum);
  color: var(--ivory);
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:hover { background: var(--ink); border-color: var(--ink); color: var(--ivory); }
.btn:active { transform: translateY(1px); }
.btn--gold { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--white); }
.btn--ghost { background: transparent; color: var(--plum); }
.btn--ghost:hover { background: var(--plum); color: var(--ivory); }
.btn--light { background: var(--ivory); border-color: var(--ivory); color: var(--plum); }
.btn--light:hover { background: var(--white); border-color: var(--white); color: var(--ink); }
.btn--sm { padding: 10px 18px; font-size: 0.9rem; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--ivory) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 76px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--ink);
}
.brand__mark { width: 40px; height: 40px; flex: none; }
.brand__name {
  font-family: var(--font-display); font-size: 1.35rem; line-height: 1; font-weight: 500;
}
.brand__name small {
  display: block; font-family: var(--font-text); font-size: 0.7rem; font-weight: 600;
  letter-spacing: .06em; color: var(--mauve); margin-top: 4px;
}
.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  padding: 10px 14px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none; color: var(--ink);
}
.nav a:hover { background: var(--sand); color: var(--plum); }
.nav a[aria-current="page"] { color: var(--plum); box-shadow: inset 0 -2px 0 var(--gold); border-radius: 0; }
.nav .btn { margin-left: 8px; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 10px;
  border: 1.5px solid var(--line); background: var(--white); cursor: pointer;
  place-items: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; position: relative;
  transition: transform .2s ease;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }

@media (max-width: 900px) {
  .nav-toggle { display: grid; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 2px;
    padding: 12px var(--gutter) 20px;
    background: var(--ivory); border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 12px; border-radius: 8px; }
  .nav a[aria-current="page"] { box-shadow: inset 3px 0 0 var(--gold); border-radius: 8px; }
  .nav .btn { margin: 10px 0 0; justify-content: center; }
}

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(48px, 7vw, 96px) clamp(56px, 8vw, 120px); }
.hero__grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 6vw, 80px); align-items: center;
}
.hero__kicker {
  font-weight: 600; color: var(--gold-deep); margin-bottom: 18px; font-size: 0.98rem;
}
.hero h1 { max-width: 14ch; }
.hero h1 em { font-style: italic; font-weight: 300; }
.hero .lead { margin-top: 20px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__meta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 8px 28px; color: var(--mauve); font-size: 0.95rem; }
.hero__meta strong { color: var(--ink); font-weight: 600; }

.orb { position: relative; aspect-ratio: 1; width: min(100%, 520px); margin-inline: auto; }
.orb__photo {
  position: absolute; inset: 0; border-radius: 50%; overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow);
}
.orb__photo img { width: 100%; height: 100%; object-fit: cover; }
.orb__ring {
  position: absolute; inset: -6%; border-radius: 50%;
  border: 1.5px solid var(--gold); opacity: .55; pointer-events: none;
}
.orb__ring--2 { inset: -13%; opacity: .25; }
.orb__sun {
  position: absolute; right: -4%; top: 6%; width: 27%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffe7a8, var(--gold) 65%, var(--gold-deep));
  box-shadow: 0 14px 30px -16px var(--gold-deep);
}
.orb__moon {
  position: absolute; left: 2%; bottom: 4%; width: 20%; aspect-ratio: 1; border-radius: 50%;
  background: var(--plum);
  -webkit-mask: radial-gradient(circle at 70% 40%, transparent 44%, #000 46%);
  mask: radial-gradient(circle at 70% 40%, transparent 44%, #000 46%);
}

@media (prefers-reduced-motion: no-preference) {
  .hero__grid > * { animation: rise .8s cubic-bezier(.2,.7,.2,1) both; }
  .hero__grid > :nth-child(2) { animation-delay: .15s; }
  @keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .orb { width: min(100%, 360px); }
}

/* ---------- service list ---------- */
.svc-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.svc-list li { border-bottom: 1px solid var(--line); }
.svc-list a {
  display: grid; grid-template-columns: 56px 1fr auto; gap: 20px; align-items: center;
  padding: 22px 8px; text-decoration: none; color: var(--ink);
  transition: background .18s ease, padding-left .18s ease;
}
.svc-list a:hover { background: var(--white); padding-left: 16px; }
.svc-list .ico { width: 48px; height: 48px; border-radius: 12px; background: var(--blush); display: grid; place-items: center; color: var(--plum); }
.svc-list .ico svg { width: 24px; height: 24px; }
.svc-list h3 { margin: 0 0 4px; font-size: 1.25rem; }
.svc-list p { margin: 0; color: var(--mauve); font-size: 0.95rem; }
.svc-list .go { font-weight: 600; color: var(--plum); font-size: 0.92rem; white-space: nowrap; }
@media (max-width: 640px) {
  .svc-list a { grid-template-columns: 44px 1fr; }
  .svc-list .ico { width: 40px; height: 40px; }
  .svc-list .go { display: none; }
}

.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.svc-card {
  display: block; text-decoration: none; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; transition: border-color .18s ease, transform .18s ease;
}
.svc-card:hover { border-color: var(--gold); transform: translateY(-2px); color: var(--ink); }
.svc-card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.svc-card__body { padding: 18px 20px 22px; }
.svc-card h3 { margin: 0 0 6px; font-size: 1.25rem; }
.svc-card p { margin: 0; color: var(--mauve); font-size: 0.95rem; }

/* ---------- split / editorial blocks ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.split--rev > :first-child { order: 2; }
.split figure { margin: 0; }
.split img { border-radius: var(--radius-lg); aspect-ratio: 4/5; object-fit: cover; width: 100%; box-shadow: var(--shadow); }
.split img.landscape { aspect-ratio: 5/4; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--rev > :first-child { order: 0; }
}

.eyebrow-line { display: flex; align-items: center; gap: 14px; color: var(--gold-deep); font-weight: 600; margin-bottom: 14px; }
.eyebrow-line::before { content: ""; width: 28px; height: 1.5px; background: var(--gold); }

.checks { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.checks li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; }
.checks li::before {
  content: ""; width: 22px; height: 22px; border-radius: 50%; margin-top: 3px;
  background: var(--gold) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232e1a2e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 13l4 4L19 7'/></svg>") center/13px no-repeat;
}

/* ---------- team ---------- */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.member { text-align: left; }
.member img { border-radius: var(--radius-lg); aspect-ratio: 4/5; object-fit: cover; width: 100%; margin-bottom: 14px; }
.member h3 { margin-bottom: 2px; }
.member p { color: var(--mauve); margin: 0; font-size: 0.95rem; }
@media (max-width: 720px) { .team { grid-template-columns: 1fr; } }

/* ---------- steps (a real sequence) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding-top: 18px; border-top: 1.5px solid var(--blush-deep); }
.step::before {
  counter-increment: step; content: counter(step);
  font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); display: block; margin-bottom: 8px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 6px; }
.step p { margin: 0; color: var(--mauve); font-size: 0.95rem; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ---------- testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote { background: var(--white); border-radius: var(--radius-lg); padding: 26px 26px 22px; border: 1px solid var(--line); }
.quote p { font-family: var(--font-display); font-size: 1.2rem; line-height: 1.4; margin-bottom: 14px; }
.quote footer { color: var(--mauve); font-size: 0.92rem; }
.quote footer strong { color: var(--ink); font-weight: 600; }
@media (max-width: 860px) { .quotes { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.cta h2 { margin: 0 0 6px; }
.cta p { margin: 0; }
@media (max-width: 720px) { .cta { grid-template-columns: 1fr; } }

/* ---------- page header / breadcrumb ---------- */
.page-head { padding-block: clamp(36px, 6vw, 72px) clamp(24px, 4vw, 44px); }
.crumbs { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; color: var(--mauve); font-size: 0.9rem; }
.crumbs li + li::before { content: "/"; margin-right: 6px; opacity: .6; }
.crumbs a { color: var(--mauve); text-decoration: none; }
.crumbs a:hover { color: var(--plum); }

/* ---------- service detail ---------- */
.detail { display: grid; grid-template-columns: 1.4fr 0.9fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.detail__aside { position: sticky; top: 96px; display: grid; gap: 18px; }
.panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; }
.panel h3 { font-size: 1.2rem; margin-bottom: 12px; }
.panel dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; font-size: 0.95rem; }
.panel dt { color: var(--mauve); }
.panel dd { margin: 0; font-weight: 600; }
.panel .btn { width: 100%; justify-content: center; margin-top: 16px; }
.panel--plum { background: var(--plum); color: var(--ivory); border-color: var(--plum); }
.panel--plum h3 { color: var(--ivory); }
.panel--plum a { color: var(--blush); }
.mini-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.mini-list a { text-decoration: none; display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line); color: var(--ink); }
.mini-list a:hover { color: var(--plum); }
.mini-list li:last-child a { border-bottom: 0; }
.prose h2 { font-size: 1.7rem; margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 6px; }
@media (max-width: 900px) { .detail { grid-template-columns: 1fr; } .detail__aside { position: static; } }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 40px 18px 0; position: relative;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 500;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-text); font-size: 1.4rem; color: var(--gold-deep);
}
.faq details[open] summary::after { content: "–"; }
.faq .faq__a { padding: 0 0 20px; max-width: 70ch; color: var(--plum); }

/* ---------- contact ---------- */
.contact { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 5vw, 64px); }
.contact dl { margin: 0; display: grid; gap: 18px; }
.contact dt { color: var(--mauve); font-size: 0.9rem; font-weight: 600; margin-bottom: 2px; }
.contact dd { margin: 0; font-size: 1.05rem; }
.hours { width: 100%; border-collapse: collapse; font-size: 0.98rem; }
.hours td { padding: 8px 0; border-bottom: 1px solid var(--line); }
.hours td:last-child { text-align: right; font-weight: 600; }
.hours tr.closed td:last-child { color: var(--err); }
.map { border: 0; width: 100%; aspect-ratio: 16/10; border-radius: var(--radius-lg); background: var(--sand); }
@media (max-width: 860px) { .contact { grid-template-columns: 1fr; } }

/* ---------- forms ---------- */
.field { display: grid; gap: 6px; margin-bottom: 16px; }
.field label { font-weight: 600; font-size: 0.95rem; }
.field input, .field select, .field textarea {
  font: inherit; padding: 13px 14px; border: 1.5px solid var(--line); border-radius: 10px; background: var(--white); color: var(--ink); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--plum); outline: none; box-shadow: 0 0 0 3px color-mix(in srgb, var(--plum) 15%, transparent); }
.field .hint { font-size: 0.86rem; color: var(--mauve); }
.field.is-invalid input { border-color: var(--err); }
.field .error { font-size: 0.86rem; color: var(--err); display: none; }
.field.is-invalid .error { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ---------- booking ---------- */
.book { display: grid; grid-template-columns: 1fr 340px; gap: clamp(24px, 4vw, 56px); align-items: start; }
.book__main { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.book__progress { display: grid; grid-template-columns: repeat(5, 1fr); border-bottom: 1px solid var(--line); background: var(--sand); }
.book__progress button {
  appearance: none; border: 0; background: transparent; padding: 14px 8px; font: 600 0.82rem/1.2 var(--font-text);
  color: var(--mauve); cursor: pointer; position: relative;
}
.book__progress button b { display: block; font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--mauve); margin-bottom: 4px; }
.book__progress button.is-done { color: var(--plum); }
.book__progress button.is-done b { color: var(--gold-deep); }
.book__progress button.is-active { color: var(--ink); background: var(--white); }
.book__progress button.is-active b { color: var(--plum); }
.book__progress button.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--gold); }
.book__progress button[disabled] { cursor: default; }
.book__step { padding: clamp(20px, 3vw, 32px); }
.book__step h2 { font-size: 1.6rem; margin-bottom: 6px; }
.book__step .lead { font-size: 1rem; margin-bottom: 20px; }
.book__nav { display: flex; justify-content: space-between; gap: 12px; padding: 18px clamp(20px, 3vw, 32px); border-top: 1px solid var(--line); background: var(--sand); }

.choice-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.choice {
  text-align: left; border: 1.5px solid var(--line); border-radius: 12px; padding: 16px; background: var(--white);
  cursor: pointer; font: inherit; color: var(--ink); transition: border-color .15s ease, background .15s ease;
}
.choice:hover { border-color: var(--mauve); }
.choice.is-selected { border-color: var(--plum); background: color-mix(in srgb, var(--blush) 45%, var(--white)); box-shadow: inset 0 0 0 1px var(--plum); }
.choice strong { display: block; font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; margin-bottom: 4px; }
.choice span { display: block; color: var(--mauve); font-size: 0.88rem; }
.choice--staff { display: grid; grid-template-columns: 56px 1fr; gap: 14px; align-items: center; }
.choice--staff img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }

.cal { max-width: 460px; }
.cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.cal__head h3 { margin: 0; font-size: 1.2rem; text-transform: capitalize; }
.cal__head button { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--line); background: var(--white); cursor: pointer; font-size: 1.1rem; color: var(--plum); }
.cal__head button:disabled { opacity: .35; cursor: default; }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal__dow { text-align: center; font-size: 0.78rem; font-weight: 600; color: var(--mauve); padding-bottom: 4px; }
.cal__day {
  aspect-ratio: 1; border-radius: 10px; border: 1.5px solid transparent; background: var(--sand);
  font: 600 0.95rem var(--font-text); color: var(--ink); cursor: pointer;
}
.cal__day:hover { border-color: var(--mauve); }
.cal__day:disabled { background: transparent; color: var(--line); cursor: default; border-color: transparent; }
.cal__day.is-today { box-shadow: inset 0 0 0 1.5px var(--gold); }
.cal__day.is-selected { background: var(--plum); color: var(--ivory); border-color: var(--plum); }
.cal__day.is-empty { visibility: hidden; }

.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); gap: 10px; }
.slot {
  padding: 12px 8px; border-radius: 10px; border: 1.5px solid var(--line); background: var(--white);
  font: 600 0.95rem var(--font-text); color: var(--ink); cursor: pointer;
}
.slot:hover { border-color: var(--mauve); }
.slot.is-selected { background: var(--plum); color: var(--ivory); border-color: var(--plum); }
.slot:disabled { background: var(--sand); color: var(--line); cursor: not-allowed; text-decoration: line-through; }
.slots-empty { color: var(--mauve); padding: 12px 0; }

.summary { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; position: sticky; top: 96px; }
.summary h3 { font-size: 1.2rem; margin-bottom: 14px; }
.summary dl { margin: 0; display: grid; gap: 10px; }
.summary dt { font-size: 0.82rem; color: var(--mauve); font-weight: 600; }
.summary dd { margin: 0 0 4px; font-weight: 600; }
.summary dd:empty::before { content: "—"; color: var(--line); }
.summary .note { margin: 18px 0 0; font-size: 0.86rem; color: var(--mauve); border-top: 1px solid var(--line); padding-top: 14px; }

.done { text-align: center; padding: clamp(28px, 5vw, 56px) clamp(20px, 3vw, 32px); }
.done__ico { width: 72px; height: 72px; border-radius: 50%; background: var(--gold); margin: 0 auto 18px; display: grid; place-items: center; }
.done__ico svg { width: 34px; height: 34px; }
.done h2 { font-size: 2rem; }
.done .code { font-family: var(--font-display); font-size: 1.6rem; color: var(--plum); margin: 10px 0 18px; }
.notice { border-radius: 10px; padding: 12px 14px; font-size: 0.95rem; margin-bottom: 16px; }
.notice--err { background: #fbe9e7; color: var(--err); }
.notice--ok { background: #e7f4ec; color: var(--ok); }

@media (max-width: 900px) {
  .book { grid-template-columns: 1fr; }
  .summary { position: static; }
  .book__progress button { font-size: 0; padding: 12px 4px; }
  .book__progress button b { font-size: 1.05rem; margin: 0; }
}

/* ---------- footer ---------- */
.footer { background: var(--ink); color: var(--blush); padding-block: clamp(44px, 6vw, 72px) 28px; }
.footer a { color: var(--ivory); text-decoration: none; }
.footer a:hover { color: var(--gold); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer h4 { color: var(--ivory); font-size: 1.05rem; margin-bottom: 12px; font-family: var(--font-text); font-weight: 700; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: 0.95rem; }
.footer .brand { color: var(--ivory); margin-bottom: 14px; }
.footer .brand__name small { color: var(--mauve); }
.footer p { font-size: 0.95rem; max-width: 40ch; }
.footer__bottom { margin-top: 40px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; font-size: 0.86rem; color: var(--mauve); }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- sticky mobile CTA ---------- */
.mob-cta { display: none; }
@media (max-width: 720px) {
  .mob-cta {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 40;
    padding: 10px; background: var(--white); border-radius: 16px; box-shadow: 0 12px 30px -12px rgba(46,26,46,.5);
  }
  .mob-cta .btn { justify-content: center; }
  body { padding-bottom: 84px; }
}

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
