/* The Fitting Room at Gray House — site styles
   Quiet luxury, clothing-label inspired, old-money restraint */

:root {
  /* INVERTED: slate background, ivory ink */
  --ivory:        #3A4250;        /* page bg (was light) */
  --ivory-deep:   #444C5B;        /* slightly lighter slate panel */
  --paper:        #4A5363;        /* card surface */
  --slate:        #E8E2D6;        /* primary text (was dark) */
  --slate-deep:   #F2EDE2;        /* high-contrast text */
  --charcoal:     #FBF6EB;        /* headings */
  --silver:       #6F7787;        /* line color */
  --silver-soft:  #5A6271;        /* softer line */
  --taupe:        #C4BBAC;        /* warm accent text */
  --taupe-soft:   #A89F92;        /* muted accent */

  /* soft blush — used sparingly as accoutrement only */
  --blush:        #F2B8B2;        /* primary blush — visible against slate */
  --blush-deep:   #E89A93;        /* stronger for italic emphasis & rules */
  --blush-soft:   #F7CDC8;        /* dots, hairlines */

  --serif:  'Cormorant Garamond', 'Cormorant', 'Garamond', 'Hoefler Text', serif;
  --sans:   'Public Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --mono:   'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --rule: 1px solid var(--silver);
  --rule-soft: 1px solid var(--silver-soft);

  --max: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--slate-deep);
  background: var(--ivory);
  font-size: 17.5px;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* extremely subtle paper texture */
  background-image:
    radial-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 7px 7px, 11px 11px;
  background-position: 0 0, 3px 5px;
}

img, svg { max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- type ---------- */
.serif { font-family: var(--serif); font-weight: 400; }
.eyebrow {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 500;
}
.italic-at {
  font-family: var(--serif);
  font-style: italic;
  color: var(--taupe);
}
.h-display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--charcoal);
  margin: 0;
  text-wrap: pretty;
}
h1.h-display { font-size: clamp(40px, 5.6vw, 76px); }
h2.h-display { font-size: clamp(32px, 4.4vw, 56px); }
h3.h-display { font-size: clamp(22px, 2.4vw, 32px); }
.subhead { font-family: var(--serif); font-size: clamp(18px, 1.6vw, 22px); color: var(--slate); font-style: italic; }

/* dotted ornamental rule echoing the logo */
.rule-dot {
  display: flex; align-items: center; gap: 16px;
  color: var(--taupe);
  font-family: var(--serif); font-style: italic; font-size: 18px;
}
.rule-dot::before, .rule-dot::after {
  content: ""; flex: 1; height: 1px;
  background-image: linear-gradient(to right, var(--blush-deep) 50%, transparent 50%);
  background-size: 8px 1px; background-repeat: repeat-x;
  opacity: 0.55;
}
.rule-dot em { color: var(--blush); font-size: 1.05em; }

.center { text-align: center; }
.lede { color: #F5EFE1; font-size: 19px; max-width: 60ch; line-height: 1.65; font-weight: 400; }

/* ---------- layout ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: clamp(56px, 7vw, 96px) 0; position: relative; }
section + section { border-top: var(--rule-soft); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(58, 66, 80, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: var(--rule-soft);
}
.site-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 16px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.nav-primary {
  display: flex; gap: clamp(18px, 2.4vw, 36px);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  justify-content: center;
}
.nav-actions { display: flex; gap: 12px; align-items: center; justify-content: flex-end; }
.nav-primary a {
  color: var(--slate); text-decoration: none;
  padding: 8px 0; position: relative;
  transition: color 160ms ease;
}
.nav-primary a:hover { color: var(--charcoal); }
.nav-primary a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px;
  height: 1px; background: var(--blush-deep);
  transform: scaleX(0); transform-origin: center;
  transition: transform 220ms ease;
}
.nav-primary a:hover::after { transform: scaleX(1); }
.nav-brand a { display: block; }
.mobile-toggle { display: none; }

@media (max-width: 880px) {
  .nav-primary { display: none; }
  .site-header-inner { grid-template-columns: auto 1fr auto; }
  .mobile-toggle {
    display: inline-flex; flex-direction: column; gap: 4px;
    background: transparent; border: none; padding: 6px;
  }
  .mobile-toggle span { width: 22px; height: 1px; background: var(--slate); display: block; }
  .nav-actions .btn { display: none; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  font-family: var(--serif);
  font-size: 13px; letter-spacing: 3px; text-transform: uppercase;
  border: 1px solid var(--charcoal);
  background: var(--charcoal); color: #3A4250;
  text-decoration: none;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
  cursor: pointer;
  border-radius: 0;
}
.btn:hover { background: var(--slate-deep); border-color: var(--slate-deep); color: #3A4250; }
.btn:active { background: var(--slate); border-color: var(--slate); color: #3A4250; }
.btn-primary { /* default styles above */ }
.btn-ghost {
  background: transparent; color: var(--slate); border-color: var(--silver);
}
.btn-ghost:hover { color: var(--charcoal); border-color: var(--taupe); background: transparent; }
.btn-lg { padding: 16px 30px; font-size: 13px; }
.btn-link {
  background: transparent; color: var(--slate); border: none; padding: 0;
  border-bottom: 1px solid var(--taupe);
  letter-spacing: 3px; padding-bottom: 4px;
}
.btn-link:hover { color: var(--charcoal); border-color: var(--charcoal); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }

/* ---------- hero ---------- */
.hero {
  padding-top: clamp(60px, 8vw, 110px);
  padding-bottom: clamp(60px, 8vw, 110px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; }
.hero-eyebrow .dot { width: 5px; height: 5px; background: var(--blush); border-radius: 50%; box-shadow: 0 0 0 3px rgba(232, 201, 199, 0.18); }
.hero-h1 { margin-top: 28px; max-width: 22ch; }
.hero-h1 em { font-style: italic; color: var(--slate); font-weight: 400; }
.h-display em { position: relative; }
.hero p.lede { margin-top: 28px; max-width: 56ch; }
.hero-ctas { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 56px; padding-top: 24px; border-top: var(--rule-soft);
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
  font-size: 12px; color: var(--taupe);
  font-family: var(--serif); letter-spacing: 2.4px; text-transform: uppercase;
}
.hero-meta .meta-dot { color: var(--silver); }

.hero-photo {
  margin: 0; position: relative;
  background: var(--paper); padding: 14px;
  border: 1px solid var(--silver-soft);
}
.hero-photo img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 4 / 5; object-fit: cover;
  filter: saturate(0.92) contrast(0.96);
}
.hero-photo figcaption {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(58, 66, 80, 0.78);
  padding: 8px 14px;
  font-family: var(--serif); font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--ivory-deep);
  backdrop-filter: blur(6px);
}
.hero-photo::before, .hero-photo::after {
  content: ""; position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--taupe);
}
.hero-photo::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.hero-photo::after  { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.atelier-frame {
  margin: 0; padding: 12px;
  background: var(--paper); border: 1px solid var(--silver-soft);
}
.atelier-frame img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 4 / 5; object-fit: cover;
  filter: saturate(0.92) contrast(0.96);
}

/* ---------- animations ---------- */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
@keyframes revealImg {
  from { opacity: 0; transform: translateY(20px) scale(0.985); }
  to   { opacity: 1; transform: none; }
}
@keyframes hairline {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.reveal-up {
  opacity: 0;
  animation: revealUp 900ms cubic-bezier(.2,.7,.2,1) forwards;
}
.reveal-img {
  opacity: 0;
  animation: revealImg 1100ms cubic-bezier(.2,.7,.2,1) 200ms forwards;
}
@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-img { animation: none; opacity: 1; }
}

/* In-view reveal for sections below the fold */
.in-view-up   { opacity: 0; transform: translateY(18px); transition: opacity 900ms ease, transform 900ms cubic-bezier(.2,.7,.2,1); }
.in-view-up.in { opacity: 1; transform: none; }

/* ---------- label-frame: a clothing-label-style border for section heads & cards ---------- */
.label-frame {
  position: relative;
  padding: 28px 32px;
  border: 1px solid var(--silver);
  background: var(--paper);
}
.label-frame::before, .label-frame::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  width: calc(100% - 24px);
  height: 1px; background: var(--silver-soft);
}
.label-frame::before { top: 6px; }
.label-frame::after { bottom: 6px; }

.svc-card, .policy-cell, .about-card, .book-card, .book-embed, .contact-card, .atelier-frame, .policy-text {
  opacity: 0; transform: translateY(16px);
  transition: opacity 900ms ease, transform 900ms cubic-bezier(.2,.7,.2,1);
}
.svc-card.in, .policy-cell.in, .about-card.in, .book-card.in, .book-embed.in, .contact-card.in, .atelier-frame.in, .policy-text.in {
  opacity: 1; transform: none;
}
.section-head .eyebrow { margin-bottom: 16px; color: var(--blush-deep); }
.section-head h2 { margin-top: 12px; }
.section-head p { margin-top: 20px; color: #F5EFE1; font-size: 17.5px; line-height: 1.7; font-weight: 400; }
.section-head h2 em { color: var(--blush); }

/* Quiet section — calmer, left-aligned, less busy */
.quiet-head {
  max-width: 760px;
  display: grid;
  gap: 18px;
  margin-bottom: clamp(56px, 8vw, 96px);
}
.quiet-head .eyebrow { color: var(--blush-deep); margin: 0; }
.quiet-h {
  margin: 0;
  font-size: clamp(36px, 5.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.012em;
}
.quiet-h-soft {
  display: block;
  font-style: italic;
  color: var(--slate-deep);
  opacity: 0.78;
  font-weight: 400;
}
.quiet-head .lede { margin: 6px 0 0; max-width: 56ch; }
@media (max-width: 720px) {
  .quiet-head { gap: 14px; margin-bottom: 48px; }
}

/* ---------- now accepting strip ---------- */
.accepting {
  padding: clamp(36px, 5vw, 64px) 0;
  border-bottom: var(--rule-soft);
}
.accepting-card {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 56px);
  background: var(--paper);
  border: 1px solid var(--silver-soft);
  position: relative;
  opacity: 0; transform: translateY(16px);
  transition: opacity 900ms ease, transform 900ms cubic-bezier(.2,.7,.2,1);
}
.accepting-card.in { opacity: 1; transform: none; }
.accepting-card::before, .accepting-card::after {
  content: ""; position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--taupe);
}
.accepting-card::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.accepting-card::after  { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.accepting-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--serif); font-size: 11px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--taupe);
}
.accepting-eyebrow .dot { width: 4px; height: 4px; background: var(--taupe); border-radius: 50%; }
.accepting-line {
  font-family: var(--serif); font-size: clamp(22px, 2.4vw, 30px);
  color: var(--charcoal); line-height: 1.45;
  margin: 18px auto 0; max-width: 60ch;
}
.accepting-line em { font-style: italic; color: var(--blush); font-weight: 500; }
.accepting-foot {
  margin: 18px auto 0; padding-top: 14px; border-top: var(--rule-soft);
  font-family: var(--serif); font-style: italic; color: var(--taupe);
  font-size: 16px; max-width: 56ch;
}
.accepting-eyebrow .dot { background: var(--blush); width: 5px; height: 5px; border-radius: 50%; box-shadow: 0 0 0 3px rgba(242, 184, 178, 0.18); }
.trust {
  padding: 36px 0;
  background: var(--paper);
  border-top: var(--rule-soft);
  border-bottom: var(--rule-soft);
}
.trust-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  font-family: var(--serif); font-size: 14px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--taupe);
  text-align: center;
}
.trust-row > div { padding: 8px 0; }
.trust-row strong {
  display: block;
  font-family: var(--serif); font-style: italic;
  font-size: 36px; letter-spacing: 0;
  color: var(--slate-deep); font-weight: 500; text-transform: none;
  margin-bottom: 6px;
}
@media (max-width: 720px) {
  .trust-row { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* ---------- about / quiet section ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.split-flip > .split-art { order: -1; }
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
}
.split p { margin-top: 24px; max-width: 50ch; }
.split p + p { margin-top: 18px; }

/* ---------- services ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--silver-soft);
  border: 1px solid var(--silver-soft);
}
.svc-card {
  background: var(--paper);
  padding: clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 18px;
  min-height: 280px;
  transition: background 240ms ease;
}
.svc-card:hover { background: var(--ivory-deep); }
.svc-num {
  font-family: var(--mono); font-size: 11px; color: var(--taupe);
  letter-spacing: 2px;
}
.svc-card h3 { margin: 0; font-size: 24px; }
.svc-card p { margin: 0; font-size: 16px; color: #F5EFE1; line-height: 1.7; font-weight: 400; }
.svc-card .svc-meta {
  margin-top: auto; padding-top: 20px; border-top: var(--rule-soft);
  font-family: var(--serif); font-size: 12px; letter-spacing: 2.4px;
  text-transform: uppercase; color: var(--taupe);
}
.svc-card.is-feature {
  background: #2D343F; color: var(--slate-deep);
  grid-column: span 2;
  position: relative;
}
.svc-card.is-feature::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: var(--blush);
  opacity: 0.55;
}
.svc-card.is-feature h3 { color: var(--paper); font-style: italic; }
.svc-card.is-feature p { color: var(--silver-soft); }
.svc-card.is-feature .svc-num { color: var(--taupe-soft); }
.svc-card.is-feature .svc-meta {
  border-top-color: rgba(255,255,255,0.12);
  color: var(--taupe-soft);
}
.svc-card.is-feature:hover { background: var(--slate); }

@media (max-width: 1080px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } .svc-card.is-feature { grid-column: span 2; } }
@media (max-width: 560px)  { .svc-grid { grid-template-columns: 1fr; } .svc-card.is-feature { grid-column: span 1; } }

/* ---------- about portrait ---------- */
.about-card {
  display: grid; grid-template-columns: 340px 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
  padding: clamp(28px, 4vw, 48px);
  background: var(--paper);
  border: 1px solid var(--silver-soft);
}
.about-tags {
  margin-top: 28px;
  display: flex; gap: 22px; flex-wrap: wrap;
  align-items: center;
}
.about-tags span {
  font-family: var(--serif); font-style: italic; font-size: 16px;
  color: var(--taupe); letter-spacing: 0.3px;
  position: relative;
}
.about-tags span + span::before {
  content: "·"; position: absolute; left: -14px; color: var(--silver);
}

/* Catherine's portrait — editorial frame, full-height */
.catherine-portrait {
  margin: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
}
.catherine-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
  border: 1px solid var(--silver-soft);
  outline: 1px solid var(--silver-soft);
  outline-offset: 6px;
  background: var(--paper);
  filter: saturate(0.92) contrast(1.02);
  transition: filter 400ms ease;
}
.catherine-portrait:hover img {
  filter: saturate(1) contrast(1.04);
}
@media (max-width: 720px) {
  .about-card { grid-template-columns: 1fr; }
  .catherine-portrait { min-height: 0; }
  .catherine-portrait img {
    aspect-ratio: 3 / 4;
    height: auto;
    object-position: 50% 20%;
  }
}

/* ---------- gallery section ---------- */
#gallery {
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--ivory-deep);
  border-top: 1px solid var(--silver-soft);
  border-bottom: 1px solid var(--silver-soft);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: clamp(24px, 3vw, 40px);
  margin-top: clamp(40px, 5vw, 64px);
}
.gallery-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--paper);
  transition: filter 400ms ease, transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.gallery-item figcaption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.2px;
  color: var(--taupe);
  text-align: center;
  padding-top: 4px;
}

/* Single-image gallery item */
.gallery-single .single-button {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
  border: 1px solid var(--silver-soft);
  outline: 1px solid var(--silver-soft);
  outline-offset: 4px;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  width: 100%;
}
.gallery-single .single-button:hover img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.04);
}
.gallery-single .single-button:focus-visible {
  outline-color: var(--charcoal);
}

/* Before/After paired item */
.gallery-pair .pair-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 1px solid var(--silver-soft);
  outline: 1px solid var(--silver-soft);
  outline-offset: 4px;
  background: var(--silver-soft);
  aspect-ratio: 8 / 5;
  overflow: hidden;
}
.gallery-pair .pair-half {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
  border: 0;
  background: var(--paper);
  cursor: zoom-in;
  overflow: hidden;
}
.gallery-pair .pair-half img {
  height: 100%;
}
.gallery-pair .pair-half:hover img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.04);
}
.gallery-pair .pair-half:focus-visible {
  outline: 2px solid var(--charcoal);
  outline-offset: -2px;
}
.gallery-pair .pair-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-family: var(--mono, "JetBrains Mono", ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(58, 66, 80, 0.82);
  color: #F5EFE3;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 1px;
  pointer-events: none;
}

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-pair .pair-images { aspect-ratio: 4 / 5; }
}

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 24, 31, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  padding: clamp(20px, 4vw, 60px);
  animation: lightboxIn 280ms ease-out;
  cursor: zoom-out;
}
@keyframes lightboxIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lightbox-inner {
  position: relative;
  max-width: 1200px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: default;
}
.lightbox-inner img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border: 1px solid rgba(245, 239, 227, 0.18);
  background: var(--ivory-deep);
}
.lightbox-caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: rgba(245, 239, 227, 0.78);
  text-align: center;
}
.lightbox-tag {
  font-family: var(--mono, ui-monospace, monospace);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--blush);
}
.lightbox-close {
  position: absolute;
  top: clamp(16px, 2vw, 32px);
  right: clamp(16px, 2vw, 32px);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245, 239, 227, 0.3);
  background: transparent;
  color: rgba(245, 239, 227, 0.85);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: border-color 200ms ease, color 200ms ease;
}
.lightbox-close:hover {
  border-color: rgba(245, 239, 227, 0.7);
  color: #F5EFE3;
}

/* ---------- booking section ---------- */
.book {
  background: var(--paper);
}
.book-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 880px) { .book-grid { grid-template-columns: 1fr; } }

.book-card {
  border: 1px solid var(--silver);
  background: var(--ivory);
  padding: clamp(28px, 4vw, 40px);
  position: relative;
}
.book-card::before {
  content: ""; position: absolute; top: -1px; left: 24px; width: 56px;
  height: 1px; background: var(--blush); opacity: 0.7;
}
.book-card h3 { margin: 0 0 6px; font-style: italic; }
.book-list { list-style: none; padding: 0; margin: 24px 0 0; }
.book-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0; border-top: var(--rule-soft);
  gap: 16px; font-size: 14px;
}
.book-list li:first-child { border-top: none; padding-top: 0; }
.book-list .lbl {
  font-family: var(--serif); letter-spacing: 2.4px; text-transform: uppercase;
  font-size: 12px; color: var(--taupe);
}
.book-list .val { color: var(--charcoal); text-align: right; }

.book-embed {
  border: 1px dashed var(--silver);
  background: var(--ivory);
  padding: clamp(28px, 4vw, 48px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 14px;
  min-height: 320px;
}
.book-embed .eyebrow { color: var(--taupe); }
.book-embed .stub-h {
  font-family: var(--serif); font-style: italic; font-size: 28px;
  color: var(--charcoal); margin: 0;
}
.book-embed p { margin: 0; max-width: 36ch; color: var(--taupe); font-size: 15.5px; }
.vendor-row {
  display: flex; gap: 12px; align-items: center; margin-top: 12px;
  font-family: var(--mono); font-size: 11px; color: var(--taupe);
  letter-spacing: 1.4px;
}
.vendor-row .v-dot { width: 4px; height: 4px; background: var(--blush); border-radius: 50%; }

/* ---------- policies ---------- */
.policy-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: var(--silver-soft);
  border: 1px solid var(--silver-soft);
  margin-bottom: 56px;
}
.policy-cell {
  background: var(--paper); padding: 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.policy-cell p { margin: 0; font-size: 16px; line-height: 1.7; color: #F5EFE1; font-weight: 400; }
.policy-cell .num {
  font-family: var(--serif); font-style: italic; font-size: 28px;
  color: var(--blush);
}
@media (max-width: 1000px) { .policy-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .policy-grid { grid-template-columns: 1fr; } }

.policy-text {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 4vw, 64px);
  padding: clamp(36px, 4vw, 56px);
  background: var(--paper);
  border: 1px solid var(--silver-soft);
}
.policy-text h3 { margin: 0 0 8px; font-style: italic; }
.policy-text .body p { margin: 0 0 18px; max-width: 56ch; font-size: 16.5px; line-height: 1.8; color: #F5EFE1; font-weight: 400; }
.policy-text .body p:last-child { margin-bottom: 0; }
@media (max-width: 880px) { .policy-text { grid-template-columns: 1fr; } }

/* ---------- contact ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
}
.contact-banner {
  margin: 0 0 clamp(40px, 5vw, 64px);
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--silver-soft);
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 14px;
  align-items: stretch;
  opacity: 0; transform: translateY(20px);
  transition: opacity 1100ms ease, transform 1100ms cubic-bezier(.2,.7,.2,1);
}
.contact-banner.in { opacity: 1; transform: none; }
.contact-banner-img {
  position: relative; overflow: hidden;
}
.contact-banner-img img {
  display: block; width: 100%; height: 100%;
  aspect-ratio: 4 / 3; object-fit: cover;
  object-position: 30% 35%;
  filter: saturate(0.95) contrast(0.97);
}
.contact-banner-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(58,66,80,0.18) 100%);
  pointer-events: none;
}
.contact-banner-cap {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(180deg, transparent 0, transparent 100%),
    var(--ivory-deep);
  position: relative;
}
.contact-banner-cap::before {
  content: ""; position: absolute; top: 24px; left: 24px;
  width: 36px; height: 1px; background: var(--blush);
  opacity: 0.7;
}
.contact-banner-quote {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.4;
  color: var(--charcoal);
  font-style: italic;
  margin: 18px 0 0;
  max-width: 30ch;
  position: relative;
}
.contact-banner-quote em { color: var(--blush); font-style: italic; }
.contact-banner-quote .open-quote,
.contact-banner-quote .close-quote {
  font-family: var(--serif); font-style: normal;
  color: var(--blush-deep); opacity: 0.7;
  font-size: 1.4em; line-height: 0;
  margin: 0 0.05em;
}
.contact-banner-sig {
  margin-top: 22px; padding-top: 16px;
  border-top: var(--rule-soft);
  font-family: var(--serif); font-style: italic;
  color: var(--taupe); letter-spacing: 0.02em;
  font-size: 14px;
}
@media (max-width: 880px) {
  .contact-banner { grid-template-columns: 1fr; }
  .contact-banner-img img { aspect-ratio: 16 / 10; object-position: 30% 30%; }
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { padding: clamp(28px, 4vw, 40px); border: 1px solid var(--silver-soft); background: var(--paper); }
.contact-row {
  display: flex; gap: 18px; align-items: baseline;
  padding: 18px 0; border-top: var(--rule-soft);
}
.contact-row:first-of-type { border-top: none; padding-top: 0; }
.contact-row .lbl {
  width: 100px; flex-shrink: 0;
  font-family: var(--serif); letter-spacing: 2.4px; text-transform: uppercase;
  font-size: 11px; color: var(--taupe);
}
.contact-row .val { color: var(--charcoal); font-size: 16px; line-height: 1.6; font-weight: 400; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }

/* ---------- footer ---------- */
.site-footer {
  background: #2A313D;
  color: #E8E2D6;
  padding: 80px 0 32px;
  border-top: 1px solid rgba(242, 184, 178, 0.18);
}
.site-footer .wrap.foot-top {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1.4fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.foot-brand img { filter: brightness(1.04); display: block; }
.site-footer .signature {
  font-family: var(--serif); font-style: italic;
  font-size: 18px; color: #F5EFE1;
  margin-top: 20px; line-height: 1.45;
  letter-spacing: 0.005em;
}
.foot-contact {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex; flex-direction: column; gap: 8px;
}
.foot-email {
  font-family: var(--sans); font-size: 15px;
  color: #F5EFE1 !important; font-weight: 500;
  letter-spacing: 0.005em;
  text-decoration: none;
  word-break: keep-all;
}
.foot-email:hover { color: var(--blush) !important; }
.foot-loc {
  font-family: var(--sans); font-size: 13px;
  color: #B8B2A4; letter-spacing: 0.02em;
}

.foot-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px);
}
.site-footer h4 {
  font-family: var(--serif); font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--blush-deep);
  margin: 6px 0 18px; font-weight: 500;
}
.foot-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 11px;
}
.site-footer a {
  color: #E8E2D6; text-decoration: none;
  font-family: var(--sans); font-size: 15px;
  font-weight: 400; letter-spacing: 0.005em;
  transition: color 200ms ease;
  display: inline-block;
}
.site-footer a:hover { color: var(--blush); }

.foot-base {
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex; align-items: center;
  gap: 14px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11px;
  color: #B8B2A4; letter-spacing: 1.4px; text-transform: uppercase;
}
.foot-dot { width: 3px; height: 3px; background: var(--blush); border-radius: 50%; opacity: 0.7; }
.foot-spacer { flex: 1; }
.foot-secure {
  color: #B8B2A4;
  display: inline-flex; align-items: center; gap: 6px;
}
.foot-secure em {
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: #F5EFE1; letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 900px) {
  .site-footer .wrap.foot-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
@media (max-width: 540px) {
  .foot-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-base { font-size: 10px; }
  .foot-spacer { display: none; }
}

/* ---------- responsive: tablet + mobile bridges ---------- */
@media (max-width: 1080px) {
  body { font-size: 17px; line-height: 1.65; }
  h1.h-display { font-size: clamp(34px, 5.4vw, 56px); }
  h2.h-display { font-size: clamp(30px, 4.6vw, 48px); }
  .lede { font-size: 18px; }
  .accepting-line { font-size: clamp(20px, 2.8vw, 26px); }
  .about-card { grid-template-columns: 200px 1fr; }
  .book-grid { gap: 36px; }
  .policy-text { grid-template-columns: 1fr; padding: clamp(28px, 4vw, 44px); }
  .contact-banner { grid-template-columns: 1fr; }
  .contact-banner-img img { aspect-ratio: 16 / 9; object-position: 30% 30%; }
}
@media (max-width: 880px) {
  section { padding: clamp(48px, 8vw, 72px) 0; }
  body { font-size: 16.5px; line-height: 1.6; }
  h1.h-display { font-size: clamp(30px, 7vw, 42px); line-height: 1.1; }
  h2.h-display { font-size: clamp(26px, 6vw, 36px); }
  h3.h-display { font-size: clamp(20px, 4vw, 24px); }
  .lede { font-size: 17px; line-height: 1.6; }
  .section-head p { font-size: 16.5px; }
  .svc-card { min-height: 0; padding: 28px 24px; }
  .svc-card p { font-size: 16px; }
  .policy-cell { padding: 22px; }
  .policy-cell p { font-size: 15.5px; }
  .policy-text .body p { font-size: 16px; }
  .accepting-card { padding: 26px 22px; }
  .accepting-line { font-size: clamp(18px, 4.4vw, 22px); line-height: 1.5; }
  .contact-banner { padding: 10px; gap: 10px; }
  .contact-banner-cap { padding: 26px 22px; }
  .contact-row { padding: 14px 0; }
  .contact-row .lbl { width: 84px; }
  .hero-meta { font-size: 11px; gap: 10px; }
  .hero-ctas { gap: 10px; }
  .hero-ctas .btn { padding: 14px 22px; }
  .site-footer { padding: 56px 0 32px; }
  .site-footer .wrap { gap: 32px; }
}
@media (max-width: 560px) {
  :root { --gutter: 18px; }
  body { font-size: 16px; }
  h1.h-display { font-size: clamp(26px, 8vw, 34px); }
  h2.h-display { font-size: clamp(22px, 7vw, 30px); }
  .hero-ctas .btn { width: 100%; text-align: center; justify-content: center; }
  .hero-meta { display: none; }
  .accepting-line { font-size: 17px; }
  .accepting-foot { font-size: 14px; }
  .svc-card { padding: 24px 20px; min-height: 0; }
  .svc-card h3 { font-size: 22px; }
  .about-tags { gap: 18px; }
  .book-list .lbl { font-size: 11px; letter-spacing: 1.6px; }
  .book-list .val { font-size: 14px; }
  .contact-row { flex-direction: column; gap: 4px; }
  .contact-row .lbl { width: auto; }
}

/* ---------- mobile booking sticky ---------- */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  background: rgba(245,241,234,0.96);
  border-top: var(--rule-soft);
  padding: 12px var(--gutter);
  backdrop-filter: blur(8px);
}
.mobile-cta-bar .btn { width: 100%; }
@media (max-width: 720px) {
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 76px; }
}

/* ---------- mobile menu drawer ---------- */
.m-drawer {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(31, 37, 48, 0.4);
  backdrop-filter: blur(4px);
  display: flex; justify-content: flex-end;
}
.m-drawer-inner {
  width: min(360px, 90vw);
  background: var(--ivory); padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
}
.m-drawer-inner a {
  font-family: var(--serif); font-size: 22px; color: var(--charcoal); text-decoration: none;
  padding: 14px 0; border-bottom: var(--rule-soft);
}
.m-drawer-close {
  background: none; border: none; align-self: flex-end; font-size: 28px;
  color: var(--slate);
}

/* ---------- booking flow modal ---------- */
.bk-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(31,37,48, 0.55);
  display: flex; align-items: stretch; justify-content: center;
  padding: 24px;
  animation: bk-fade 220ms ease;
}
@keyframes bk-fade { from { opacity: 0 } to { opacity: 1 } }

.bk-shell {
  background: var(--ivory);
  width: min(1080px, 100%);
  max-height: calc(100vh - 48px);
  display: flex; flex-direction: column;
  border: 1px solid var(--silver);
  overflow: hidden;
  animation: bk-rise 280ms ease;
}
@keyframes bk-rise { from { transform: translateY(12px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }

.bk-shell-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px; border-bottom: var(--rule-soft);
  background: var(--paper);
}
.bk-eyebrow {
  font-family: var(--serif); font-size: 12px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--taupe);
}
.bk-close {
  background: none; border: none; font-size: 28px; color: var(--slate);
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
}
.bk-close:hover { color: var(--charcoal); }

.bk-stepper {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 28px; border-bottom: var(--rule-soft);
  background: var(--paper);
  font-family: var(--serif); font-size: 12px;
  letter-spacing: 2.4px; text-transform: uppercase;
}
.bk-step { display: flex; align-items: center; gap: 10px; color: var(--taupe); }
.bk-step.is-active { color: var(--charcoal); }
.bk-step.is-done { color: var(--slate); }
.bk-step-num { font-family: var(--mono); font-size: 11px; }
.bk-step-rule { flex: 1; height: 1px; background: var(--silver-soft); min-width: 12px; }
.bk-step-rule.is-done { background: var(--taupe); }

.bk-body {
  padding: clamp(20px, 3vw, 36px);
  overflow: auto; flex: 1;
}
.bk-h {
  font-family: var(--serif); font-style: italic; font-size: 22px;
  color: var(--charcoal); margin: 0 0 20px; font-weight: 500;
}
.bk-twocol {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 3vw, 48px);
}
@media (max-width: 880px) { .bk-twocol { grid-template-columns: 1fr; } }

.bk-shell-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px; border-top: var(--rule-soft);
  background: var(--paper);
  gap: 12px;
}
.bk-foot-note { font-family: var(--mono); font-size: 11px; color: var(--taupe); letter-spacing: 1.2px; }

.bk-aside {
  margin-top: 28px; padding: 18px;
  border: 1px solid var(--silver-soft); background: var(--ivory-deep);
}
.bk-aside-row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 6px 0; font-size: 13px;
}
.bk-aside-row span:first-child {
  font-family: var(--serif); text-transform: uppercase;
  letter-spacing: 2px; font-size: 11px; color: var(--taupe);
}

/* calendar */
.cal { border: 1px solid var(--silver-soft); background: var(--paper); padding: 18px; }
.cal-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.cal-nav {
  background: transparent; border: 1px solid var(--silver); width: 32px; height: 32px;
  font-size: 18px; color: var(--slate);
}
.cal-nav:hover { border-color: var(--taupe); color: var(--charcoal); }
.cal-title { font-family: var(--serif); font-size: 18px; color: var(--slate-deep); display: flex; gap: 8px; align-items: baseline; }
.cal-month { font-style: italic; }
.cal-year { color: var(--taupe); font-size: 14px; letter-spacing: 1px; }

.cal-dow {
  display: grid; grid-template-columns: repeat(7, 1fr);
  font-family: var(--mono); font-size: 10px; color: var(--taupe);
  text-align: center; letter-spacing: 1px;
  padding-bottom: 8px; border-bottom: var(--rule-soft); margin-bottom: 6px;
}
.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px;
  margin-top: 4px;
}
.cal-cell {
  aspect-ratio: 1 / 1;
  background: transparent; border: 1px solid transparent;
  font-family: var(--serif); font-size: 16px; color: var(--slate);
  display: flex; align-items: center; justify-content: center;
}
.cal-cell.is-empty { visibility: hidden; }
.cal-cell.is-closed { color: var(--silver); cursor: not-allowed; }
.cal-cell.is-open:hover { border-color: var(--taupe); color: var(--slate-deep); }
.cal-cell.is-selected { background: var(--charcoal); color: #3A4250; border-color: var(--charcoal); }

.cal-foot { font-family: var(--mono); font-size: 10px; color: var(--taupe); margin-top: 12px; letter-spacing: 1px; }

/* slots */
.slots { border: 1px solid var(--silver-soft); background: var(--paper); padding: 18px; }
.slots-empty {
  border: 1px dashed var(--silver); padding: 36px 18px;
  text-align: center; font-family: var(--serif); font-style: italic;
  color: var(--taupe); background: var(--paper);
}
.slots-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.slots-eyebrow { font-family: var(--serif); font-size: 11px; letter-spacing: 2.4px; text-transform: uppercase; color: var(--taupe); }
.slots-date { font-family: var(--serif); font-style: italic; color: var(--charcoal); }
.slots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.slot {
  background: transparent; border: 1px solid var(--silver);
  padding: 12px 8px;
  font-family: var(--serif); font-size: 14px; color: var(--slate);
  letter-spacing: 0.5px;
}
.slot:hover { border-color: var(--taupe); color: var(--slate-deep); }
.slot.is-selected { background: var(--charcoal); color: #3A4250; border-color: var(--charcoal); }

/* form */
.form-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px;
}
.fld { display: flex; flex-direction: column; gap: 6px; }
.fld-span-12 { grid-column: span 12; }
.fld-span-6  { grid-column: span 6; }
@media (max-width: 720px) { .fld-span-6 { grid-column: span 12; } }
.fld-label {
  font-family: var(--serif); font-size: 11px; letter-spacing: 2.4px;
  text-transform: uppercase; color: var(--taupe);
}
.fld-hint { font-family: var(--mono); font-size: 10px; color: var(--taupe); letter-spacing: 0.6px; }
.ipt {
  background: var(--paper); border: 1px solid var(--silver);
  padding: 12px 14px; font-size: 15px; color: var(--slate-deep);
  outline: none; transition: border-color 160ms ease;
  border-radius: 0;
}
.ipt:focus { border-color: var(--slate-deep); }
.ipt-area { resize: vertical; font-family: var(--sans); }

.seg { display: flex; gap: 0; border: 1px solid var(--silver); }
.seg-opt {
  flex: 1; background: transparent; border: none; padding: 12px;
  font-family: var(--serif); font-size: 13px; letter-spacing: 1.4px;
  color: var(--slate); border-right: 1px solid var(--silver);
}
.seg-opt:last-child { border-right: none; }
.seg-opt.is-on { background: var(--charcoal); color: #3A4250; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: transparent; border: 1px solid var(--silver);
  padding: 8px 14px;
  font-family: var(--serif); font-size: 13px; letter-spacing: 1px;
  color: var(--slate);
}
.chip:hover { border-color: var(--taupe); color: var(--slate-deep); }
.chip.is-on { background: var(--charcoal); color: #3A4250; border-color: var(--charcoal); }

/* payment */
.pay {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(20px, 3vw, 36px);
}
@media (max-width: 880px) { .pay { grid-template-columns: 1fr; } }
.pay-summary {
  border: 1px solid var(--silver-soft); background: var(--paper);
  padding: 24px;
}
.pay-title {
  font-family: var(--serif); font-style: italic; font-size: 18px;
  margin: 0 0 14px; color: var(--charcoal);
}
.pay-dl { margin: 0; padding: 0; }
.pay-dl > div {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 8px 0; font-size: 14px;
}
.pay-dl dt {
  font-family: var(--serif); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--taupe); margin: 0;
}
.pay-dl dd { margin: 0; color: var(--charcoal); text-align: right; }
.pay-rule { height: 1px; background: var(--silver-soft); margin: 14px 0; }
.pay-money dt { color: var(--slate); }
.pay-money .pay-total dt, .pay-money .pay-total dd {
  font-family: var(--serif); font-style: italic; font-size: 22px;
  color: var(--charcoal); letter-spacing: 0; text-transform: none;
}
.pay-fineprint {
  margin-top: 18px; padding-top: 14px; border-top: var(--rule-soft);
  font-size: 13px; color: var(--slate); font-style: italic;
  font-family: var(--serif);
}
.pay-form {
  display: flex; flex-direction: column; gap: 14px;
  border: 1px solid var(--silver-soft); background: var(--paper); padding: 24px;
}
.pay-vendor {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 1.4px;
  color: var(--taupe);
  padding-bottom: 12px; border-bottom: var(--rule-soft);
}
.pay-vendor .pay-lock { color: #5a8c69; font-size: 8px; }
.pay-note { font-family: var(--mono); font-size: 10px; color: var(--taupe); letter-spacing: 1px; margin: 0; text-align: center; }

.agree {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 13px; line-height: 1.55; color: var(--slate);
  padding: 14px; border: 1px solid var(--silver-soft); background: var(--ivory-deep);
}
.agree input { margin-top: 4px; flex-shrink: 0; accent-color: var(--charcoal); }

/* confirmation */
.confirm {
  text-align: center; max-width: 520px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 16px; align-items: center;
  padding: 24px 0;
}
.confirm-title { font-family: var(--serif); font-style: italic; font-size: 32px; color: var(--charcoal); margin: 8px 0 0; }
.confirm-sub { color: var(--slate); margin: 0; }
.confirm-card {
  width: 100%; margin-top: 16px;
  border: 1px solid var(--silver-soft); background: var(--paper); padding: 20px;
}
.confirm-row {
  display: flex; justify-content: space-between; padding: 10px 0;
  border-bottom: var(--rule-soft); font-size: 14px;
}
.confirm-row:last-child { border-bottom: none; }
.confirm-row span {
  font-family: var(--serif); text-transform: uppercase; letter-spacing: 2px;
  font-size: 11px; color: var(--taupe);
}
.confirm-row strong { color: var(--charcoal); font-weight: 500; }
.confirm-actions { display: flex; gap: 12px; margin-top: 12px; }

/* fade-in */
.reveal { opacity: 0; transform: translateY(8px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.in { opacity: 1; transform: none; }
