/* =========================================================
   J. Thompson Salons — Modern Luxury Theme
   Static CSS, no frameworks. ~16KB.
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --bg:            #0e0e10;       /* near black */
  --bg-elev:       #16161a;       /* elevated surfaces */
  --bg-elev-2:     #1d1d22;       /* card hover */
  --line:          #2a2a31;       /* hairlines */
  --text:          #ececee;       /* primary text */
  --text-dim:      #a4a4ad;       /* secondary text */
  --text-mute:     #6e6e78;       /* muted */
  --gold:          #c8a96a;       /* accent — warm champagne */
  --gold-bright:   #e6c98a;
  --gold-deep:     #9a7e44;
  --danger:        #c75959;
  --success:       #6cb27a;

  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow:    0 8px 24px rgba(0,0,0,.45);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.55);

  --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container: 1200px;
  --gutter:    24px;

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; }
a { color: var(--gold-bright); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold); }
button { font: inherit; cursor: pointer; }
::selection { background: var(--gold); color: #111; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.15;
  margin: 0 0 .4em;
  color: var(--text);
}
h1 { font-size: clamp(2.5rem, 5vw + 1rem, 5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 3vw + 1rem, 3.25rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 1.5vw + .8rem, 1.85rem); }
h4 { font-size: 1.15rem; }
p  { margin: 0 0 1em; color: var(--text-dim); }
.lede { font-size: 1.15rem; color: var(--text); max-width: 60ch; }
.eyebrow {
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
  display: inline-block;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { padding: clamp(64px, 10vw, 128px) 0; }
.section-head { text-align: center; margin-bottom: 64px; }
.section-head p { max-width: 60ch; margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: #111;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(200,169,106,.25);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-lg { padding: 18px 36px; font-size: 1rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14,14,16,.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: .04em;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: .35em;
}
.brand .brand-mark { color: var(--gold); font-weight: 500; }
.brand:hover { color: var(--text); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--text-dim);
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
}

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  width: 44px; height: 44px;
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    left: 0; right: 0; top: 76px;
    background: var(--bg-elev);
    border-bottom: 1px solid var(--line);
    padding: 16px var(--gutter);
    gap: 4px;
  }
  .nav-links.open a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .nav-links.open a:last-child { border-bottom: 0; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 96px 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(200,169,106,.15), transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(154,126,68,.10), transparent 55%),
    linear-gradient(180deg, #0a0a0c 0%, #14141a 100%);
}
.hero-bg::after {
  /* subtle film grain */
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: .6;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero-inner { max-width: 760px; }
.hero h1 {
  margin-bottom: .25em;
}
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero .lede { margin-bottom: 2.5rem; font-size: 1.2rem; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  position: absolute;
  bottom: 32px; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: var(--text-mute);
  letter-spacing: .15em;
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .hero-meta { position: static; margin-top: 48px; flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* ---------- Cards / Tile Grid ---------- */
.grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: all .3s var(--ease);
}
.card:hover {
  background: var(--bg-elev-2);
  border-color: var(--gold-deep);
  transform: translateY(-2px);
}
.card h3 { margin-bottom: 12px; }
.card p { margin-bottom: 0; }

/* feature card with icon */
.feature {
  text-align: left;
}
.feature .icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(200,169,106,.15), rgba(200,169,106,.05));
  border: 1px solid rgba(200,169,106,.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}

/* ---------- Service Menu ---------- */
.service-menu {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .service-menu { grid-template-columns: 1fr 1fr; gap: 56px 64px; }
}
.service-group h3 {
  font-size: 1.35rem;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold-deep);
  margin-bottom: 20px;
  color: var(--gold);
  letter-spacing: .05em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 500;
}
.service-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}
.service-row:last-child { border-bottom: none; }
.service-row .name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text);
}
.service-row .desc {
  display: block;
  font-family: var(--font-sans);
  font-size: .85rem;
  color: var(--text-mute);
  margin-top: 2px;
  font-style: italic;
}
.service-row .price {
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: .03em;
}
.service-row .dots {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  margin: 0 8px 6px;
  min-width: 30px;
}

/* ---------- Product / Retail ---------- */
.product-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.product {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.product:hover {
  transform: translateY(-3px);
  border-color: var(--gold-deep);
  box-shadow: var(--shadow);
}
.product-img {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #1d1d22, #28282f);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mute);
  font-family: var(--font-serif);
  font-size: 2rem;
  position: relative;
  overflow: hidden;
}
.product-img::after {
  content: "";
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(200,169,106,.08), transparent 60%);
}
.product-body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.product-brand {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-desc { font-size: .88rem; color: var(--text-dim); margin-bottom: 14px; flex: 1; }
.product-foot { display: flex; justify-content: space-between; align-items: center; }
.product-price { color: var(--gold); font-weight: 500; }
.product .btn { padding: 8px 16px; font-size: .8rem; }

/* ---------- Vagaro Embed Frame ---------- */
.vagaro-frame {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 8px;
  margin-top: 32px;
  overflow: hidden;
}
.vagaro-frame iframe {
  width: 100%;
  min-height: 900px;
  border: 0;
  border-radius: var(--radius);
  background: #fff;
}
.embed-placeholder {
  background: linear-gradient(135deg, #1a1a20, #232329);
  border: 1px dashed var(--gold-deep);
  border-radius: var(--radius);
  padding: 64px 32px;
  text-align: center;
  color: var(--text-dim);
}
.embed-placeholder code {
  display: inline-block;
  background: #000;
  border: 1px solid var(--line);
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--gold);
  font-size: .85em;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.gallery-grid .tile {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1a1a20, #28282f);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mute);
  font-family: var(--font-serif);
  font-size: 1.5rem;
}
.gallery-grid .tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.6));
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.gallery-grid .tile:hover { transform: scale(1.02); }
.gallery-grid .tile:hover::after { opacity: 1; }

/* ---------- Newsletter ---------- */
.newsletter {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(200,169,106,.10), transparent 60%),
    var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
}
.newsletter h2 { margin-bottom: 12px; }
.newsletter form {
  display: flex;
  gap: 8px;
  max-width: 500px;
  margin: 24px auto 0;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter input[type="email"] {
  flex: 1;
  min-width: 220px;
  background: rgba(0,0,0,.3);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 14px 18px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .95rem;
  transition: border-color .2s var(--ease);
}
.newsletter input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
}

/* ---------- Forms ---------- */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 700px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.field input, .field textarea, .field select {
  background: rgba(0,0,0,.3);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color .2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
}
.field textarea { min-height: 140px; resize: vertical; }

/* ---------- Footer ---------- */
.site-footer {
  background: #0a0a0c;
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
  margin-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-dim); font-size: .92rem; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
  color: var(--text-mute);
}
.social { display: flex; gap: 12px; }
.social a {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--text-dim);
  transition: all .25s var(--ease);
}
.social a:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Page Header ---------- */
.page-header {
  padding: 96px 0 64px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at center top, rgba(200,169,106,.08), transparent 60%),
    var(--bg);
}
.page-header h1 { margin-bottom: 12px; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-deep), transparent);
  border: 0;
  margin: 48px auto;
  max-width: 200px;
}

/* ---------- Service Accordion ---------- */
/* Used on services.html. The .service-card wraps a button + collapsible body. */
.service-card.accordion {
  padding: 0;             /* button + body provide padding */
  overflow: hidden;
  cursor: default;
}
.service-card.accordion:hover { transform: none; } /* no lift on whole card */

.service-card .acc-trigger {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  transition: background .25s var(--ease);
}
.service-card .acc-trigger:hover { background: rgba(200,169,106,.04); }
.service-card .acc-trigger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}
.service-card .acc-trigger .acc-head { min-width: 0; }
.service-card .acc-trigger .price-tag { margin-bottom: 10px; }
.service-card .acc-trigger h3 { margin-bottom: 8px; color: var(--text); }
.service-card .acc-trigger .acc-blurb { margin: 0; color: var(--text-dim); font-size: .95rem; }

.service-card .acc-chevron {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .35s var(--ease), border-color .25s var(--ease);
}
.service-card[aria-expanded="true"] .acc-chevron { transform: rotate(180deg); border-color: var(--gold-deep); }

.service-card .acc-body {
  display: grid;
  grid-template-rows: 0fr;          /* collapsed */
  transition: grid-template-rows .35s var(--ease);
}
.service-card[aria-expanded="true"] .acc-body { grid-template-rows: 1fr; }
.service-card .acc-body > .acc-inner {
  overflow: hidden;
  min-height: 0;
}
.service-card .acc-body ul {
  list-style: none;
  padding: 0 32px 28px;
  margin: 0;
  border-top: 1px solid var(--line);
  margin-top: 0;
}
.service-card .acc-body li {
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--text-dim);
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  border-bottom: 1px dashed var(--line);
}
.service-card .acc-body li:first-child { padding-top: 18px; }
.service-card .acc-body li:last-child { border-bottom: 0; }
.service-card .acc-body li .svc { color: var(--text); }
.service-card .acc-body li .px {
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: .02em;
  font-size: .88rem;
}

/* JS-disabled fallback: if no .has-js on <html>, expand all cards */
html:not(.has-js) .service-card .acc-body { grid-template-rows: 1fr; }
html:not(.has-js) .service-card .acc-chevron { display: none; }
html:not(.has-js) .service-card .acc-trigger { cursor: default; }

/* ---------- Intake Widget (book.html) ---------- */
.intake-shell {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  margin-top: 32px;
  position: relative;
  overflow: hidden;
}
.intake-shell::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 0%, rgba(200,169,106,.06), transparent 55%);
  pointer-events: none;
}
.intake-shell > * { position: relative; }

.intake-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}
.intake-progress .seg {
  flex: 1;
  height: 3px;
  background: var(--line);
  border-radius: 2px;
  transition: background .3s var(--ease);
}
.intake-progress .seg.is-active { background: var(--gold); }
.intake-progress .seg.is-done { background: var(--gold-deep); }

.intake-step { display: none; }
.intake-step.is-current { display: block; animation: fadeUp .35s var(--ease); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.intake-step .step-eyebrow {
  font-family: var(--font-sans);
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: inline-block;
}
.intake-step h2 {
  font-size: clamp(1.6rem, 2vw + 1rem, 2.25rem);
  margin-bottom: 10px;
}
.intake-step .step-help {
  color: var(--text-dim);
  margin-bottom: 24px;
  max-width: 56ch;
}

/* radio-card grid */
.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 8px;
}
.choice {
  position: relative;
  display: block;
  cursor: pointer;
}
.choice input[type="radio"],
.choice input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.choice .choice-inner {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: rgba(0,0,0,.18);
  transition: all .2s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 100%;
}
.choice .choice-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text);
}
.choice .choice-desc {
  font-size: .82rem;
  color: var(--text-mute);
  line-height: 1.5;
}
.choice input:checked + .choice-inner {
  border-color: var(--gold);
  background: rgba(200,169,106,.08);
  box-shadow: inset 0 0 0 1px var(--gold);
}
.choice input:focus-visible + .choice-inner {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.choice:hover .choice-inner { border-color: var(--gold-deep); }

/* photo dropzone */
.dropzone {
  border: 1px dashed var(--gold-deep);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  background: rgba(0,0,0,.18);
  transition: all .25s var(--ease);
  cursor: pointer;
  display: block;
}
.dropzone:hover, .dropzone.is-drag {
  border-color: var(--gold);
  background: rgba(200,169,106,.06);
}
.dropzone svg { color: var(--gold); margin: 0 auto 10px; }
.dropzone .dz-title { font-family: var(--font-serif); font-size: 1.2rem; color: var(--text); margin-bottom: 4px; }
.dropzone .dz-help { font-size: .85rem; color: var(--text-mute); }
.dropzone input[type="file"] {
  position: absolute;
  width: 1px; height: 1px; opacity: 0;
  pointer-events: none;
}
.dz-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.dz-thumbs .thumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg);
}
.dz-thumbs .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dz-thumbs .thumb .remove {
  position: absolute;
  top: 6px; right: 6px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(0,0,0,.7);
  border: 1px solid var(--line);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  cursor: pointer;
}
.dz-thumbs .thumb .remove:hover { background: var(--danger); border-color: var(--danger); }

/* nav buttons */
.intake-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.intake-nav .step-counter {
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.intake-nav .nav-spacer { flex: 1; }

/* success / error states */
.intake-result {
  text-align: center;
  padding: clamp(40px, 6vw, 80px) 20px;
}
.intake-result .check {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 24px;
}
.intake-result.is-error .check {
  border-color: var(--danger);
  color: var(--danger);
}

/* "Why this way" feature row on book page */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.why-card {
  padding: 28px 28px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elev);
}
.why-card .why-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}
.why-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.why-card p { color: var(--text-dim); margin-bottom: 0; font-size: .95rem; }

/* "What happens next" timeline */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.flow-step {
  position: relative;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0,0,0,.2);
}
.flow-step .flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.flow-step h4 { font-size: 1.05rem; margin-bottom: 6px; }
.flow-step p { font-size: .9rem; color: var(--text-mute); margin-bottom: 0; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .hero-cta, .nav-toggle { display: none; }
  body { background: #fff; color: #000; }
  a { color: #000; }
}
