/* Blacklight Detailing — styles */
/* palette */
:root {
  --ink: #0a0a0c;
  --ink-2: #0e0618;
  --green: #2d0f6e;
  
  
  --brass: #C9A84C;
  --brass-deep: #A07830;
  --bg: #1e0845;
  --bg-2: #2a1060;
  --ivory-2: #f5f3ff;
  --ivory: #f0ecff;
  --serif: "Cormorant Garamond", "Garamond", "Georgia", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ivory);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================= TOP */
.top {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.2rem 2rem;
  background: transparent;
  color: var(--ivory);
  border: 1px solid transparent;
  border-radius: 0;
  margin: 0 auto;
  max-width: 100%;
  transition:
    top 0.55s cubic-bezier(0.22, 0.61, 0.36, 1),
    max-width 0.55s cubic-bezier(0.22, 0.61, 0.36, 1),
    padding 0.4s ease,
    background-color 0.35s ease,
    border-color 0.35s ease,
    border-radius 0.4s ease,
    box-shadow 0.4s ease,
    backdrop-filter 0.3s ease;
}
/* Subtle scrim keeps ivory text readable over hero imagery */
.top::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,11,11,0.55), rgba(11,11,11,0));
  pointer-events: none;
  z-index: -1;
  opacity: 1;
  transition: opacity 0.35s ease;
}
/* Scrolled: detach into a centered floating pill */
.top.is-scrolled {
  top: 1rem;
  max-width: 1200px;
  padding: 0.75rem 1.35rem;
  background: rgba(11,11,11,0.72);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  backdrop-filter: blur(16px) saturate(1.3);
  border-color: rgba(201,168,76,0.22);
  border-radius: 12px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
}
.top.is-scrolled::before { opacity: 0; }
.top.is-scrolled .mark-word { font-size: 1.3rem; }
.top.is-scrolled .mark-sub { font-size: 0.58rem; }
.top.is-scrolled .mark-rule { height: 20px; }
.top.is-scrolled .primary { gap: 1.6rem; font-size: 0.72rem; }

/* Mobile menu toggle */
.top-menu-toggle {
  display: none;
  appearance: none;
  border: 1px solid rgba(228,223,210,0.28);
  background: transparent;
  color: var(--ivory);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
  justify-self: end;
}
.top-menu-toggle:hover { background: rgba(228,223,210,0.06); border-color: var(--brass); }
.top-menu-toggle svg { width: 20px; height: 20px; display: block; }
.top-menu-toggle .bar {
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}
body.nav-open .top-menu-toggle .bar-top { transform: translateY(6px) rotate(45deg); }
body.nav-open .top-menu-toggle .bar-mid { opacity: 0; }
body.nav-open .top-menu-toggle .bar-bot { transform: translateY(-6px) rotate(-45deg); }

/* Mobile overlay menu */
.top-mobile {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 49;
  background: rgba(11,11,11,0.97);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  padding: 5.5rem 2rem 2.4rem;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  display: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}
body.nav-open .top-mobile { display: flex; opacity: 1; }
body.nav-open { overflow: hidden; }
.top-mobile a {
  font-family: var(--serif);
  font-size: 2.1rem;
  color: var(--ivory);
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(228,223,210,0.1);
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  transition: color 0.2s;
}
.top-mobile a:hover, .top-mobile a:focus { color: var(--brass); }
.top-mobile .top-mobile-foot {
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.top-mobile .top-mobile-phone {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--brass);
  padding: 0.5rem 0;
  border: 0;
  text-align: center;
}
.top-mobile .top-mobile-book {
  background: var(--brass);
  color: var(--ink) !important;
  text-align: center;
  padding: 1.15rem 1rem;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 0;
  font-weight: 500;
}
.mark {
  display: flex; align-items: center; gap: 0.7rem;
  letter-spacing: 0.01em;
}
.mark-word {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.55rem;
  line-height: 1;
  color: var(--ivory);
}
.mark-rule {
  width: 1px; height: 24px; background: var(--brass); opacity: 0.7;
}
.mark-sub {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
}
.primary {
  display: flex; gap: 2.2rem;
  justify-content: center;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243,240,255,0.82);
}
.primary a { transition: color 0.2s; }
.primary a:hover { color: var(--brass); }
.primary .book-link {
  color: var(--brass);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 2px;
}
.call {
  display: flex; align-items: center; gap: 0.55rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ivory);
  font-variant-numeric: lining-nums tabular-nums;
}
.call-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(201,168,76,0.18); }
  50% { box-shadow: 0 0 0 7px rgba(201,168,76,0.06); }
}

/* ============================================================= HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: flex-end;
  padding: 8rem 2.5rem 5rem;
  color: var(--ivory);
  overflow: hidden;
  background: var(--ink);
}
.hero-art { position: absolute; inset: 0; }
.hero-art img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.15) brightness(0.62); }
.hero-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% 20%, transparent, rgba(11,11,11,0.7)),
    linear-gradient(180deg, rgba(11,11,11,0.5) 0%, rgba(11,11,11,0.0) 30%, rgba(11,11,11,0.88) 100%);
}
.hero-text { position: relative; z-index: 2; max-width: 720px; }
.eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 2.4rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(201,168,76,0.35);
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin-bottom: 1.8rem;
}
.hero h1 em { font-style: italic; color: var(--brass); font-weight: 400; }
.hero-lede {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  font-style: italic;
  line-height: 1.55;
  color: rgba(243,240,255,0.88);
  max-width: 580px;
  margin-bottom: 2.6rem;
}
.hero-ctas { display: flex; gap: 1.4rem; align-items: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  background: var(--brass);
  color: var(--ink);
  padding: 1.05rem 2.2rem;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.25s, color 0.25s;
  border: 1px solid var(--brass);
}
.btn-primary:hover { background: var(--ivory); border-color: var(--ivory); }
.btn-ghost {
  color: var(--ivory);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  border-bottom: 1px solid rgba(243,240,255,0.45);
  padding-bottom: 3px;
}
.btn-ghost:hover { color: var(--brass); border-color: var(--brass); }
.hero-scroll {
  position: absolute;
  right: 2.5rem;
  bottom: 2.6rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(243,240,255,0.55);
  z-index: 2;
}
.hero-scroll::after {
  content: "";
  display: block;
  width: 1px; height: 40px;
  background: linear-gradient(180deg, rgba(243,240,255,0.55), transparent);
  margin: 0.8rem auto 0;
}

/* ============================================================= INTERLUDE */
.interlude {
  background: var(--bg-2);
  color: var(--ivory);
  padding: 8rem 2rem;
  text-align: center;
}
.interlude-rule {
  width: 1px; height: 60px;
  background: var(--brass-deep);
  margin: 0 auto 2.8rem;
}
.interlude-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 2.4rem;
}
.interlude-body {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1.5;
  max-width: 820px;
  margin: 0 auto 2.4rem;
  color: rgba(240,236,255,0.88);
  font-weight: 400;
}
.interlude-sig {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(240,236,255,0.7);
  letter-spacing: 0.02em;
}

/* ============================================================= SECTION LABEL (shared) */
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 1.6rem;
  font-weight: 500;
}
.section-label-light { color: var(--brass); }

/* ============================================================= SERVICE */
.service {
  background: var(--ivory-2);
  color: var(--ink);
  padding: 7rem 2rem 5rem;
}
.service-head {
  max-width: 980px; margin: 0 auto 5rem;
  padding: 0 1rem;
}
.service-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.005em;
  max-width: 780px;
}
.service-head h2 em { font-style: italic; color: var(--brass-deep); font-weight: 400; }
.tier {
  max-width: 980px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 4rem;
  padding: 3.2rem 1rem;
  border-top: 1px solid rgba(11,11,11,0.14);
  align-items: start;
}
.tier:last-of-type { border-bottom: 1px solid rgba(11,11,11,0.14); }
.tier-featured {
  background: var(--ink);
  color: var(--ivory);
  margin-top: -1px;
  padding: 3.2rem 2rem;
  border-top-color: rgba(201,168,76,0.3);
  border-bottom-color: rgba(201,168,76,0.3);
}
.tier-featured .tier-index,
.tier-featured .tier-time { color: rgba(243,240,255,0.7) !important; }
.tier-featured h3 { color: var(--ivory) !important; }
.tier-featured .tier-price { color: var(--brass) !important; }
.tier-featured .tier-body p,
.tier-featured p { color: rgba(243,240,255,0.92) !important; }
.tier-featured .tier-prices dt { color: rgba(243,240,255,0.7) !important; }
.tier-featured .tier-prices dd { color: var(--brass) !important; }
.tier-featured .tier-prices > div { border-bottom-color: rgba(243,240,255,0.18) !important; }

.tier-index {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--brass-deep);
  margin-bottom: 0.6rem;
}
.tier h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.04;
  margin-bottom: 0.8rem;
}
.tier-time {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(11,11,11,0.55);
  font-weight: 500;
}
.tier-body p {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(11,11,11,0.82);
}
.tier-price {
  font-family: var(--serif) !important;
  font-size: 2rem !important;
  font-style: italic;
  color: var(--brass-deep) !important;
  margin-top: 1.4rem;
  font-weight: 500;
}

/* ============================================================= VISIT */
.visit {
  background: var(--ink);
  color: var(--ivory);
  padding: 7rem 0 5rem;
  overflow: hidden;
}
.visit-head {
  padding: 0 2rem;
  max-width: 980px;
  margin: 0 auto 3.5rem;
}
.visit-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.04;
  max-width: 780px;
}
.visit-note {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(243,240,255,0.55);
  margin-top: 1.4rem;
  font-size: 0.95rem;
}
.visit-rail {
  display: flex;
  gap: 2rem;
  padding: 1rem 2rem 2.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  list-style: none;
  scrollbar-color: var(--brass) transparent;
}
.visit-rail::-webkit-scrollbar { height: 6px; }
.visit-rail::-webkit-scrollbar-track { background: rgba(243,240,255,0.08); }
.visit-rail::-webkit-scrollbar-thumb { background: var(--brass-deep); border-radius: 3px; }
.visit-card {
  flex: 0 0 min(460px, 80vw);
  scroll-snap-align: start;
  display: flex; flex-direction: column;
  gap: 1.4rem;
}
.visit-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink-2);
}
.visit-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.2) brightness(0.92);
  transition: transform 0.7s cubic-bezier(0.2,0.6,0.2,1), filter 0.5s;
}
.visit-card:hover .visit-img img { transform: scale(1.04); filter: grayscale(0) brightness(1); }
.visit-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--brass);
}
.visit-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.85rem;
  line-height: 1.08;
  color: var(--ivory);
}
.visit-card p {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.5;
  color: rgba(243,240,255,0.78);
  max-width: 400px;
}

/* ============================================================= WORK MOSAIC */
.work {
  background: var(--bg);
  padding: 7rem 2rem 5rem;
  color: var(--ivory);
}
.work-head {
  max-width: 1200px; margin: 0 auto 4rem;
}
.work-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.02;
}
.work-note {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(240,236,255,0.55);
  margin-top: 0.7rem;
}
.work-mosaic {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 1.1rem;
}
.work-mosaic figure {
  position: relative;
  overflow: hidden;
  background: var(--ivory-2);
}
.work-mosaic figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2,0.6,0.2,1);
}
.work-mosaic figure:hover img { transform: scale(1.05); }
.work-mosaic figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.2rem 1.1rem 0.9rem;
  color: var(--ivory);
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  background: linear-gradient(0deg, rgba(11,11,11,0.85) 0%, rgba(11,11,11,0.0) 100%);
}
.w1 { grid-column: span 4; grid-row: span 2; }
.w2 { grid-column: span 2; grid-row: span 1; }
.w3 { grid-column: span 2; grid-row: span 1; }
.w4 { grid-column: span 2; grid-row: span 2; }
.w5 { grid-column: span 2; grid-row: span 2; }
.w6 { grid-column: span 2; grid-row: span 2; }
.w7 { grid-column: span 3; grid-row: span 2; }
.w8 { grid-column: span 3; grid-row: span 2; }

/* ============================================================= VOICES */
.voices {
  position: relative;
  padding: 9rem 2rem;
  color: var(--ivory);
  overflow: hidden;
}
.voices-bg { position: absolute; inset: 0; z-index: 0; }
.voices-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.4) brightness(0.35); }
.voices-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(45,15,110,0.75), rgba(11,11,11,0.8));
}
.voices-inner {
  position: relative; z-index: 2;
  max-width: 1040px; margin: 0 auto;
  display: grid; gap: 4rem;
}
.quote {
  max-width: 780px;
}
.quote:nth-child(odd) { margin-left: auto; text-align: right; }
.quote p {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.35;
  color: var(--ivory);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 1.4rem;
}
.quote footer {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  font-style: normal;
  font-family: var(--sans);
}

/* ============================================================= COVERAGE */
.coverage {
  background: var(--green);
  color: var(--ivory);
  padding: 8rem 2rem;
  text-align: center;
}
.coverage .section-label { color: var(--brass); margin-bottom: 2rem; }
.coverage h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.005em;
  margin-bottom: 2rem;
}
.coverage-body {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  max-width: 720px;
  margin: 0 auto 4rem;
  color: rgba(243,240,255,0.88);
}
.phone-anchor {
  display: inline-block;
  text-align: center;
  padding: 2.2rem 3.6rem;
  border: 1px solid rgba(201,168,76,0.35);
  transition: background 0.3s, border-color 0.3s;
}
.phone-anchor:hover { background: rgba(201,168,76,0.08); border-color: var(--brass); }
.phone-pre {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1rem;
}
.phone-num {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1;
  color: var(--ivory);
  letter-spacing: 0.01em;
  font-variant-numeric: lining-nums;
  margin-bottom: 1rem;
}
.phone-hours {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(243,240,255,0.65);
}

/* ============================================================= BOOK */
.book {
  background: var(--bg-2);
  color: var(--ivory);
  padding: 8rem 2rem;
}
.book-head {
  max-width: 860px; margin: 0 auto 4rem;
  text-align: left;
}
.book-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.06;
}
.book-form {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem 2.2rem;
}
.book-form label {
  display: flex; flex-direction: column; gap: 0.55rem;
}
.book-form label.full { grid-column: 1 / -1; }
.book-form label span {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 500;
}
.book-form input,
.book-form select,
.book-form textarea {
  font-family: var(--serif);
  font-size: 1.2rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(240,236,255,0.25);
  padding: 0.7rem 0.2rem;
  color: var(--ivory);
  transition: border-color 0.2s;
  font-weight: 400;
}
.book-form input::placeholder,
.book-form textarea::placeholder { color: rgba(240,236,255,0.35); font-style: italic; }
.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus { outline: none; border-bottom-color: var(--brass-deep); }
.book-form textarea { resize: vertical; font-family: var(--sans); font-size: 1rem; line-height: 1.55; }
.book-form select { font-family: var(--sans); font-size: 1rem; }
.btn-primary-large {
  grid-column: 1 / -1;
  padding: 1.25rem 2.4rem;
  font-size: 0.85rem;
  justify-self: start;
  margin-top: 1.2rem;
  cursor: pointer;
}
.book-legal {
  grid-column: 1 / -1;
  font-family: var(--serif);
  font-style: italic;
  color: rgba(240,236,255,0.55);
  font-size: 0.95rem;
}
.book-thanks {
  max-width: 860px; margin: 0 auto;
  text-align: center;
  padding: 4rem 2rem;
}
.book-thanks h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 2.6rem;
  margin-bottom: 1rem;
  color: var(--brass-deep);
}
.book-thanks p {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: rgba(240,236,255,0.8);
}

/* ============================================================= FOOT */
.foot {
  background: var(--ink);
  color: rgba(243,240,255,0.7);
  padding: 5rem 2rem 2.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
  border-top: 1px solid rgba(201,168,76,0.18);
}
.foot-mark { display: flex; flex-direction: column; gap: 0.4rem; }
.foot-word {
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--ivory);
  font-weight: 500;
  line-height: 1;
}
.foot-sub {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
}
.foot-col p {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(243,240,255,0.7);
}
.foot-col a { color: var(--ivory); border-bottom: 1px solid rgba(201,168,76,0.4); padding-bottom: 2px; }
.foot-col a:hover { color: var(--brass); }
.foot-label {
  font-size: 0.68rem !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase !important;
  color: var(--brass) !important;
  margin-bottom: 0.8rem;
  font-family: var(--sans) !important;
  font-weight: 500;
}
.foot-fine {
  grid-column: 1 / -1;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(243,240,255,0.4);
  padding-top: 2.4rem;
  border-top: 1px solid rgba(201,168,76,0.15);
  margin-top: 2rem;
}

/* ============================================================= RESPONSIVE */
@media (max-width: 900px) {
  .top { grid-template-columns: auto 1fr auto; padding: 0.9rem 1.2rem; gap: 1rem; }
  .top.is-scrolled { max-width: calc(100% - 1.6rem); top: 0.8rem; }
  .primary { display: none; }
  .top .call { display: none; }
  .top-menu-toggle { display: inline-flex; }
  .mark-word { font-size: 1.25rem; }
  .mark-sub { font-size: 0.56rem; letter-spacing: 0.22em; }
  .call { font-size: 0.92rem; }

  .hero { padding: 7rem 1.4rem 3.5rem; }
  .hero h1 { font-size: 3rem; }
  .hero-scroll { display: none; }

  .interlude { padding: 5rem 1.4rem; }
  .interlude-body { font-size: 1.2rem; }

  .service { padding: 5rem 1.2rem; }
  .service-head { margin-bottom: 3rem; }
  .tier {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2.4rem 0.6rem;
  }
  .tier-featured { padding: 2.4rem 1.2rem; }

  .visit { padding: 5rem 0 3rem; }
  .visit-head { padding: 0 1.4rem; margin-bottom: 2.2rem; }
  .visit-rail { padding: 1rem 1.4rem 2rem; gap: 1.2rem; }
  .visit-card { flex-basis: 78vw; }

  .work { padding: 5rem 1.2rem; }
  .work-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 0.7rem;
  }
  .w1 { grid-column: span 2; grid-row: span 2; }
  .w2, .w3, .w4, .w5, .w6, .w7, .w8 { grid-column: span 1; grid-row: span 1; }
  .w4, .w5 { grid-row: span 2; }

  .voices { padding: 5rem 1.4rem; }
  .quote:nth-child(odd) { text-align: left; margin-left: 0; }

  .coverage { padding: 5rem 1.4rem; }
  .phone-anchor { padding: 1.8rem 2rem; display: block; }

  .book { padding: 5rem 1.4rem; }
  .book-form { grid-template-columns: 1fr; gap: 1.4rem; }

  .foot {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 4rem 1.4rem 2rem;
  }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .hero-lede { font-size: 1.05rem; }
  .btn-primary { padding: 0.9rem 1.5rem; font-size: 0.72rem; letter-spacing: 0.2em; }
  .tier h3 { font-size: 1.7rem; }
  .phone-num { font-size: 2.4rem; }
}

/* ============================================================
   ALTERNATE LAYOUT MODES (toggled via body[data-*-mode="..."])
   ============================================================ */

/* ---------- HERO: SPLIT MODE ---------- */
body[data-hero-mode="split"] .hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 100vh;
  padding: 0;
  align-items: stretch;
}
body[data-hero-mode="split"] .hero-art {
  position: relative; inset: auto;
  height: 100%;
}
body[data-hero-mode="split"] .hero-art img { filter: grayscale(0.05) brightness(0.85); }
body[data-hero-mode="split"] .hero-vignette {
  background: linear-gradient(90deg, rgba(11,11,11,0.15), transparent 40%, transparent 60%, rgba(11,11,11,0.4));
}
body[data-hero-mode="split"] .hero-text {
  padding: 9rem 3.5rem 3rem;
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: center;
  align-self: stretch;
}
body[data-hero-mode="split"] .hero-scroll { display: none; }
@media (max-width: 900px) {
  body[data-hero-mode="split"] .hero {
    grid-template-columns: 1fr;
  }
  body[data-hero-mode="split"] .hero-art { height: 45vh; }
  body[data-hero-mode="split"] .hero-text { padding: 3rem 1.4rem; min-height: 55vh; }
}

/* ---------- HERO: CENTERED MODE ---------- */
body[data-hero-mode="centered"] .hero {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
}
body[data-hero-mode="centered"] .hero-text {
  max-width: 860px; margin: 0 auto; text-align: center;
}
body[data-hero-mode="centered"] .eyebrow {
  border-bottom: none;
  border-top: 1px solid rgba(201,168,76,0.4);
  padding-top: 0.8rem;
  padding-bottom: 0;
  margin: 0 auto 2rem;
}
body[data-hero-mode="centered"] .hero-lede { margin-left: auto; margin-right: auto; }
body[data-hero-mode="centered"] .hero-ctas { justify-content: center; }
body[data-hero-mode="centered"] .hero-art img { filter: grayscale(0.4) brightness(0.35); }

/* ---------- SERVICE: CARDS MODE ---------- */
body[data-service-mode="cards"] .service {
  background: var(--ink);
  color: var(--ivory);
  padding: 7rem 2rem;
}
body[data-service-mode="cards"] .service-head { color: var(--ivory); }
body[data-service-mode="cards"] .service-head .section-label { color: var(--brass); }
body[data-service-mode="cards"] .service-head h2 em { color: var(--brass); }
body[data-service-mode="cards"] .service .tier,
body[data-service-mode="cards"] .service .tier-featured { all: unset; display: block; }
body[data-service-mode="cards"] .service {
  display: flex; flex-direction: column;
}
body[data-service-mode="cards"] .service-head { margin: 0 auto 4rem; padding: 0 1rem; max-width: 1200px; width: 100%; }
body[data-service-mode="cards"] .service .tier {
  display: flex !important;
  flex-direction: column;
  gap: 1.3rem;
  padding: 2.2rem 1.8rem;
  background: rgba(228,223,210,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 2px;
}
body[data-service-mode="cards"] .service .tier-featured {
  background: var(--brass) !important;
  color: var(--ink) !important;
  border-color: var(--brass);
}
body[data-service-mode="cards"] .service .tier-featured .tier-index,
body[data-service-mode="cards"] .service .tier-featured .tier-time { color: rgba(11,11,11,0.55) !important; }
body[data-service-mode="cards"] .service .tier-featured h3 { color: var(--ink) !important; }
body[data-service-mode="cards"] .service .tier-featured .tier-price { color: var(--ink) !important; font-style: italic; }
body[data-service-mode="cards"] .service .tier-featured .tier-body p { color: rgba(11,11,11,0.8) !important; }
body[data-service-mode="cards"] .service .tier-name { margin: 0; }
body[data-service-mode="cards"] .service .tier-body p { font-size: 1rem !important; }
body[data-service-mode="cards"] .service .tier-body p:first-child {
  font-family: var(--serif) !important;
  font-size: 1.05rem !important;
  line-height: 1.55;
}
body[data-service-mode="cards"] .service .tier-price {
  font-size: 1.6rem !important;
  margin-top: auto !important;
}
body[data-service-mode="cards"] .service .tier:first-of-type,
body[data-service-mode="cards"] .service .tier:nth-of-type(2),
body[data-service-mode="cards"] .service .tier:nth-of-type(3) {
  max-width: none;
  margin: 0;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
body[data-service-mode="cards"] .service > .tier {
  display: none;
}
body[data-service-mode="cards"] .service::after {
  content: none;
}

/* Wrap the 3 tiers into a 3-col grid using CSS only: use display:contents trick */
body[data-service-mode="cards"] .service {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 0;
}
body[data-service-mode="cards"] .service-head { grid-column: 1 / -1; }
body[data-service-mode="cards"] .service > article.tier {
  display: flex !important;
}
/* Put tiers into row with a wrapper via grid-auto-flow */
body[data-service-mode="cards"] .service {
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  body[data-service-mode="cards"] .service {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 1.4rem;
    max-width: 1280px;
    margin: 0 auto;
  }
  body[data-service-mode="cards"] .service-head { grid-column: 1 / -1; }
  body[data-service-mode="cards"] .service > article.tier {
    grid-row: 2;
  }
}

/* ---------- VISIT: NUMBERED STACK MODE ---------- */
body[data-visit-mode="stack"] .visit-rail {
  display: flex !important;
  flex-direction: column;
  gap: 5rem;
  padding: 0 2rem 4rem;
  overflow: visible;
  max-width: 1100px;
  margin: 0 auto;
}
body[data-visit-mode="stack"] .visit-note { display: none; }
body[data-visit-mode="stack"] .visit-card {
  flex: 0 0 auto;
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
body[data-visit-mode="stack"] .visit-card:nth-child(even) {
  direction: rtl;
}
body[data-visit-mode="stack"] .visit-card:nth-child(even) > * {
  direction: ltr;
}
body[data-visit-mode="stack"] .visit-img {
  aspect-ratio: 4 / 3;
}
body[data-visit-mode="stack"] .visit-card h3 { font-size: 2.4rem; }
body[data-visit-mode="stack"] .visit-card p { font-size: 1.2rem; max-width: none; }
@media (max-width: 900px) {
  body[data-visit-mode="stack"] .visit-card {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  body[data-visit-mode="stack"] .visit-card:nth-child(even) { direction: ltr; }
}

/* ---------- GALLERY: UNIFORM GRID MODE ---------- */
body[data-gallery-mode="grid"] .work-mosaic {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 0.8rem;
}
body[data-gallery-mode="grid"] .work-mosaic figure {
  grid-column: span 1 !important;
  grid-row: span 1 !important;
}
@media (max-width: 900px) {
  body[data-gallery-mode="grid"] .work-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
}

/* ---------- SECTION VISIBILITY ---------- */
body.rdk-hide-interlude .interlude,
body.rdk-hide-visit .visit,
body.rdk-hide-work .work,
body.rdk-hide-voices .voices,
body.rdk-hide-coverage .coverage { display: none; }

/* ---------- BACKGROUND TREATMENT ---------- */
body[data-bg-treatment="racing"] .coverage { background: var(--green); }
body[data-bg-treatment="obsidian"] .coverage { background: var(--ink); }
body[data-bg-treatment="bone"] .coverage { background: var(--ivory); color: var(--ink); }
body[data-bg-treatment="bone"] .coverage h2 { color: var(--ink); }
body[data-bg-treatment="bone"] .coverage-body { color: rgba(11,11,11,0.72); }
body[data-bg-treatment="bone"] .coverage .section-label { color: var(--brass-deep); }
body[data-bg-treatment="bone"] .coverage .phone-anchor {
  border-color: rgba(11,11,11,0.2);
}
body[data-bg-treatment="bone"] .coverage .phone-anchor:hover {
  background: rgba(11,11,11,0.04);
}
body[data-bg-treatment="bone"] .coverage .phone-num { color: var(--ink); }
body[data-bg-treatment="bone"] .coverage .phone-hours { color: rgba(11,11,11,0.55); }
body[data-bg-treatment="bone"] .coverage .phone-pre { color: var(--brass-deep); }

/* ============================================================
   COMPETITIVE-PARITY SECTIONS (adapted to editorial voice)
   ============================================================ */

/* ---------- TRUST STRIP ---------- */
.trust {
  background: var(--ivory);
  padding: 2.4rem 2rem;
  border-bottom: 1px solid rgba(11,11,11,0.08);
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 2.2rem;
  max-width: 1200px;
  margin: 0 auto;
  list-style: none;
  align-items: center;
}
.trust-row li {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(240,236,255,0.8);
  padding: 0.45rem 0;
  position: relative;
}
.trust-row li + li::before {
  content: "·";
  position: absolute;
  left: -1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brass-deep);
  font-weight: 600;
  font-size: 1.1rem;
}
@media (max-width: 700px) {
  .trust-row { gap: 0.3rem 1.5rem; }
  .trust-row li { font-size: 0.85rem; }
  .trust-row li + li::before { left: -0.85rem; }
}

/* ---------- TIER PRICES (vehicle matrix) ---------- */
.tier-prices {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 2rem;
  max-width: 420px;
}
.tier-prices > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(11,11,11,0.1);
  gap: 0.8rem;
}
.tier-prices dt {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(11,11,11,0.55);
  font-weight: 500;
  font-family: var(--sans);
}
.tier-prices dd {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--brass-deep);
  font-variant-numeric: lining-nums tabular-nums;
  font-weight: 500;
}
.tier-featured .tier-prices > div { border-bottom-color: rgba(243,240,255,0.18); }
.tier-featured .tier-prices dt { color: rgba(243,240,255,0.65); }
.tier-featured .tier-prices dd { color: var(--brass); }
@media (max-width: 600px) {
  .tier-prices { grid-template-columns: 1fr; max-width: none; }
}

/* ---------- À LA CARTE ---------- */
.alacarte {
  background: var(--bg-2);
  color: var(--ivory);
  padding: 7rem 2rem 6rem;
  border-top: 1px solid rgba(11,11,11,0.08);
}
.alacarte-head {
  max-width: 1080px;
  margin: 0 auto 3.5rem;
}
.alacarte-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.005em;
  margin-bottom: 1rem;
}
.alacarte-head h2 em { font-style: italic; color: var(--brass-deep); font-weight: 400; }
.alacarte-note {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(11,11,11,0.6);
  font-size: 1.05rem;
  max-width: 600px;
}
.alacarte-list {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.alacarte-list > div {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 1.4rem;
  align-items: baseline;
  padding: 1.5rem 1.8rem 1.5rem 0;
  border-top: 1px solid rgba(11,11,11,0.14);
}
.alacarte-list > div:nth-last-child(-n+2) { border-bottom: 1px solid rgba(240,236,255,0.14); }
.alacarte-list > div:nth-child(odd) { padding-right: 2.4rem; border-right: 1px solid rgba(240,236,255,0.08); }
.alacarte-list > div:nth-child(even) { padding-left: 2.4rem; }
.alacarte-list dt {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.15;
  grid-column: 1;
  grid-row: 1;
  color: var(--ivory);
}
.alacarte-list dd {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(240,236,255,0.62);
  grid-column: 1;
  grid-row: 2;
  margin-top: 0.35rem;
}
.alacarte-price {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-style: italic;
  color: var(--brass-deep);
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  font-variant-numeric: lining-nums tabular-nums;
  font-weight: 500;
}
@media (max-width: 800px) {
  .alacarte-list { grid-template-columns: 1fr; }
  .alacarte-list > div:nth-child(odd),
  .alacarte-list > div:nth-child(even) {
    padding: 1.4rem 0;
    border-right: none;
    border-left: none;
  }
  .alacarte-list > div:nth-last-child(-n+2) { border-bottom: none; }
  .alacarte-list > div:last-child { border-bottom: 1px solid rgba(11,11,11,0.14); }
  .alacarte-list dt { font-size: 1.2rem; }
}

/* ---------- CERAMIC CARD ---------- */
.ceramic-card-wrap {
  max-width: 780px;
  margin: 0 auto;
}
.ceramic-card {
  position: relative;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, var(--brass), rgba(201,168,76,0.15), var(--brass-deep), rgba(201,168,76,0.4), var(--brass));
  background-size: 300% 300%;
  animation: ceramic-border-shift 5s ease infinite;
  box-shadow: 0 0 40px rgba(201,168,76,0.18), 0 20px 60px rgba(10,10,12,0.6);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.ceramic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 60px rgba(201,168,76,0.32), 0 30px 80px rgba(10,10,12,0.7);
}
@keyframes ceramic-border-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.ceramic-card-glow {
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.2) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.ceramic-card-inner {
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, #16083a 0%, var(--ink-2) 60%, #0a0618 100%);
  border-radius: 14px;
  padding: 3rem 3.2rem 3.2rem;
}
.ceramic-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.8rem;
}
.ceramic-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  background: rgba(201,168,76,0.06);
}
.ceramic-price-display {
  display: flex;
  align-items: flex-start;
  gap: 0.15rem;
  line-height: 1;
}
.ceramic-dollar {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--brass);
  margin-top: 0.4rem;
  font-weight: 500;
}
.ceramic-amount {
  font-family: var(--serif);
  font-size: 4.5rem;
  font-weight: 500;
  color: var(--brass);
  line-height: 1;
  font-variant-numeric: lining-nums tabular-nums;
  text-shadow: 0 0 30px rgba(201,168,76,0.4);
}
.ceramic-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.ceramic-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(240,236,255,0.55);
  margin-bottom: 2rem;
}
.ceramic-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.4rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.ceramic-features li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: rgba(240,236,255,0.82);
  line-height: 1.4;
}
.ceramic-dot {
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 8px rgba(201,168,76,0.6);
}
.ceramic-cta {
  padding-top: 1.8rem;
  border-top: 1px solid rgba(201,168,76,0.12);
}
@media (max-width: 600px) {
  .ceramic-card-inner { padding: 2rem 1.6rem 2.2rem; }
  .ceramic-amount { font-size: 3.2rem; }
  .ceramic-top { flex-direction: column; gap: 1.2rem; }
}


/* ---------- GUARANTEE PLEDGE ---------- */
.pledge {
  background: var(--ink);
  color: var(--ivory);
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
}
.pledge::before,
.pledge::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: var(--brass);
  margin: 0 auto 2.4rem;
}
.pledge::after {
  margin: 2.6rem auto 0;
}
.pledge .section-label {
  color: var(--brass);
  margin-bottom: 1.8rem;
}
.pledge h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  line-height: 1.12;
  max-width: 900px;
  margin: 0 auto 2rem;
  letter-spacing: -0.005em;
}
.pledge h2 em { font-style: italic; color: var(--brass); font-weight: 400; }
.pledge-body {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: rgba(243,240,255,0.78);
  max-width: 640px;
  margin: 0 auto 2rem;
}
.pledge-sig {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--brass);
  letter-spacing: 0.02em;
}

/* ---------- FAQ (card accordion, plus → minus morph) ---------- */
.faq {
  background: var(--ivory-2);
  color: var(--ink);
  padding: 7rem 2rem 6rem;
}
.faq-head {
  max-width: 720px;
  margin: 0 auto 2.6rem;
}
.faq-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid rgba(11,11,11,0.16);
  border-radius: 12px;
  overflow: hidden;
  background: var(--ivory);
  box-shadow: 0 1px 0 rgba(11,11,11,0.02);
}
.faq-item {
  border-bottom: 1px solid rgba(11,11,11,0.12);
  background: transparent;
}
.faq-item:last-child { border-bottom: 0; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 3rem 1.15rem 1.3rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.08rem;
  line-height: 1.4;
  color: var(--ink);
  position: relative;
  transition: background 0.2s, color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: rgba(11,11,11,0.025); }
.faq-item[open] summary { color: var(--brass-deep); }

/* Plus icon — ::before is horizontal, ::after is vertical (together = plus) */
.faq-item summary::before,
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 1.3rem;
  top: 50%;
  width: 13px;
  height: 1.5px;
  background: currentColor;
  opacity: 0.6;
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}
.faq-item summary::before {
  transform: translateY(-50%);
}
.faq-item summary::after {
  transform: translateY(-50%) rotate(90deg);
}
/* Open: vertical bar rotates flat + fades → leaves horizontal = minus */
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(0deg);
  opacity: 0;
}
.faq-item[open] summary::before { opacity: 0.8; }

.faq-a {
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(11,11,11,0.7);
  padding: 0 1.3rem;
  max-width: 640px;
  /* Always rendered so JS can animate height, overrides UA details hiding */
  display: block;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    padding-top 0.3s ease,
    padding-bottom 0.3s ease,
    opacity 0.3s ease;
  opacity: 0;
}
.faq-item.is-open .faq-a {
  padding-top: 0.1rem;
  padding-bottom: 1.2rem;
  opacity: 1;
}
@media (max-width: 600px) {
  .faq-item summary { padding: 1.05rem 2.6rem 1.05rem 1.1rem; font-size: 1rem; }
  .faq-item summary::before,
  .faq-item summary::after { right: 1.1rem; }
  .faq-a { padding-left: 1.1rem; padding-right: 1.1rem; font-size: 0.96rem; }
  .faq-item.is-open .faq-a { padding-bottom: 1.1rem; }
}

/* ---------- SECTION VISIBILITY (add new sections to hide) ---------- */
body.rdk-hide-trust .trust,
body.rdk-hide-alacarte .alacarte,
body.rdk-hide-pledge .pledge,
body.rdk-hide-faq .faq { display: none; }

/* ============================================================
   LOGO UPLOAD (v4)
   ============================================================ */
.mark-logo, .foot-logo {
  display: none;
  max-height: 2.4rem;
  width: auto;
  object-fit: contain;
}
.foot-logo { max-height: 3rem; }
body[data-logo="on"] .mark-logo,
body[data-logo="on"] .foot-logo { display: inline-block; }
body[data-logo="on"] .mark-word,
body[data-logo="on"] .mark-rule,
body[data-logo="on"] .mark-sub,
body[data-logo="on"] .foot-word { display: none; }

/* ============================================================
   GALLERY FINISHED / ARRIVAL TOGGLE (v4)
   ============================================================ */
.work-toggle {
  display: inline-flex;
  margin-top: 1.5rem;
  border: 1px solid rgba(228,223,210,0.22);
  border-radius: 2rem;
  overflow: hidden;
  background: rgba(0,0,0,0.2);
}
.work-toggle button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.6rem 1.3rem;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.work-toggle button[aria-pressed="true"] {
  background: var(--brass);
  color: var(--ink);
}
.work-mosaic figure.ba {
  position: relative;
}
.work-mosaic figure.ba::before {
  content: "After";
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
  padding: 0.25rem 0.6rem;
  background: rgba(11,11,11,0.7);
  color: var(--brass);
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--brass);
  backdrop-filter: blur(4px);
}
body[data-gallery-state="before"] .work-mosaic figure.ba::before {
  content: "Before";
  color: var(--ivory);
  border-color: rgba(228,223,210,0.4);
}
.work-mosaic figure.ba img {
  transition: opacity 0.4s ease;
}
