/* ===========================================================
   Anytime Anywhere Mobile Notary Services LLC
   Shared stylesheet
   Palette: deep black, metallic gold, royal purple, soft off-white
   =========================================================== */

:root {
  /* Core palette */
  --ink:        #0b0a0f;   /* main dark background, purple-black */
  --ink-2:      #14101d;   /* raised dark panel */
  --ink-3:      #1d1730;   /* card on dark */
  --gold:       #c9a227;   /* metallic gold base */
  --gold-light: #ecd28c;   /* gold highlight */
  --gold-deep:  #937218;   /* gold shadow */
  --purple:     #6b2fa0;   /* royal purple */
  --purple-deep:#3d1a63;   /* deep purple */
  --purple-soft:#9a6bd0;   /* light purple accent */
  --cream:      #f7f4ef;   /* off-white content areas */
  --cream-2:    #fbfaf6;   /* lighter off-white */
  --line:       #e6dfd2;   /* hairline on light */

  /* Text */
  --text:       #211b2c;   /* body text on light */
  --text-muted: #5c5568;   /* secondary text on light */
  --text-onlight-serif: #2a2036;
  --text-ondark: #efe9df;  /* body text on dark */
  --text-ondark-muted: #b7afc4;

  /* Gold foil gradient (for text/accents on dark only) */
  --foil: linear-gradient(135deg, #f2dc9c 0%, #d7b24a 38%, #c9a227 60%, #9c7a1c 100%);
  --foil-line: linear-gradient(90deg, transparent, #c9a227 20%, #ecd28c 50%, #c9a227 80%, transparent);

  /* Type */
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Metrics */
  --maxw: 1160px;
  --gap: clamp(1rem, 2.5vw, 2rem);
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-soft: 0 18px 50px -22px rgba(11, 10, 15, 0.55);
  --shadow-card: 0 12px 34px -18px rgba(61, 26, 99, 0.35);
  --header-h: 76px;
}

/* -------------------- Reset / base -------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.1; color: var(--text-onlight-serif); margin: 0 0 0.5em; letter-spacing: 0.005em; }
p { margin: 0 0 1rem; }
:focus-visible { outline: 3px solid var(--purple-soft); outline-offset: 2px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--purple-deep); color: #fff; padding: 0.7rem 1.1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* -------------------- Layout helpers -------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.2rem); }
.section { padding-block: clamp(3.2rem, 7vw, 6rem); }
.section--dark { background: var(--ink); color: var(--text-ondark); }
.section--ink2 { background: var(--ink-2); color: var(--text-ondark); }
.section--cream2 { background: var(--cream-2); }
.section--tight { padding-block: clamp(2.4rem, 5vw, 4rem); }
.narrow { max-width: 780px; }
.center { text-align: center; }

.eyebrow {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple);
  margin: 0 0 0.9rem;
  display: inline-block;
}
.section--dark .eyebrow, .section--ink2 .eyebrow { color: var(--gold); }

.section-title { font-size: clamp(1.9rem, 4.4vw, 3rem); margin-bottom: 0.4em; }
.section--dark .section-title, .section--ink2 .section-title { color: #fff; }
.section-lead { font-size: 1.08rem; color: var(--text-muted); max-width: 62ch; }
.section--dark .section-lead, .section--ink2 .section-lead { color: var(--text-ondark-muted); }
.center .section-lead { margin-inline: auto; }

/* Gold foil text (dark backgrounds only, per contrast rules) */
.foil {
  background: var(--foil);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Quill flourish accent under eyebrows / titles */
.flourish { display: inline-block; width: 108px; height: 12px; margin: 0.2rem 0 1.2rem; }
.flourish svg { width: 100%; height: 100%; display: block; }
.center .flourish { margin-inline: auto; }

/* -------------------- Buttons -------------------- */
.btn {
  --_bg: var(--purple);
  --_fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--body); font-weight: 600; font-size: 0.98rem; letter-spacing: 0.01em;
  padding: 0.85rem 1.5rem; border-radius: 999px; border: 1.5px solid transparent;
  background: var(--_bg); color: var(--_fg); cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  text-align: center; line-height: 1.2;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  --_fg: #221a06;
  background: linear-gradient(135deg, #f2dc9c, #d7b24a 55%, #b98f21);
  box-shadow: 0 10px 26px -12px rgba(201, 162, 39, 0.7);
  border-color: rgba(255,255,255,0.15);
}
.btn-gold:hover { box-shadow: 0 16px 34px -12px rgba(201, 162, 39, 0.85); }

.btn-purple { --_bg: var(--purple); --_fg: #fff; box-shadow: 0 10px 26px -14px rgba(107, 47, 160, 0.8); }
.btn-purple:hover { --_bg: #7c3bb6; }

.btn-ghost {
  --_bg: transparent; --_fg: var(--text);
  border-color: var(--purple);
}
.btn-ghost:hover { --_bg: var(--purple); --_fg: #fff; }

.btn-ghost-gold {
  --_bg: transparent; --_fg: var(--gold-light);
  border-color: var(--gold);
}
.btn-ghost-gold:hover { --_bg: rgba(201,162,39,0.12); --_fg: #fff; }

.btn-block { width: 100%; }
.btn-lg { padding: 1rem 1.8rem; font-size: 1.05rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.center .btn-row { justify-content: center; }

/* -------------------- Header / nav -------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 10, 15, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.28);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); gap: 0.8rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.brand img { height: 46px; width: auto; }
.brand-name { display: none; font-family: var(--display); font-size: 1.15rem; color: #fff; line-height: 1; }
.brand-name span { display: block; font-family: var(--body); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-top: 3px; }

.nav-menu { display: flex; align-items: center; gap: 0.6rem; }
.nav-links { display: flex; align-items: center; flex-wrap: nowrap; gap: 0.2rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--text-ondark); font-weight: 500; font-size: 0.9rem;
  padding: 0.5rem 0.55rem; border-radius: 8px; letter-spacing: 0.01em; white-space: nowrap;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.06); text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--gold-light); }
.nav-cta { margin-left: 0.3rem; flex-shrink: 0; }
.nav-cta .btn { padding: 0.5rem 0.85rem; font-size: 0.88rem; white-space: nowrap; }

.nav-toggle {
  display: none; background: transparent; border: 1.5px solid rgba(201,162,39,0.5);
  border-radius: 10px; width: 46px; height: 42px; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--gold-light); border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle span::before { transform: translateY(-7px); }
.nav-toggle span::after { transform: translateY(5px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(0) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-2px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: var(--ink); border-bottom: 1px solid rgba(201,162,39,0.28);
    display: grid; gap: 0.2rem; padding: 1rem clamp(1.1rem, 4vw, 2.2rem) 1.5rem;
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity 0.22s ease, transform 0.22s ease;
    box-shadow: var(--shadow-soft);
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0.1rem; }
  .nav-links a { padding: 0.85rem 0.7rem; font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,0.05); border-radius: 0; }
  .nav-cta { margin: 0.8rem 0 0; }
  .nav-cta .btn { width: 100%; }
}
@media (min-width: 1200px) { .brand-name { display: block; } }

/* -------------------- Hero -------------------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(107, 47, 160, 0.4), transparent 60%),
    radial-gradient(760px 420px at 8% 108%, rgba(201, 162, 39, 0.16), transparent 62%),
    var(--ink);
  color: var(--text-ondark);
  padding-block: clamp(2rem, 5vw, 4.2rem);
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--foil-line); opacity: 0.7;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.hero-logo-frame {
  max-width: 440px; margin: 0 auto; padding: clamp(1.3rem, 3vw, 2.1rem);
  border-radius: 22px;
  background:
    radial-gradient(115% 90% at 50% 8%, rgba(107,47,160,0.22), transparent 68%),
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0));
  border: 1px solid rgba(201,162,39,0.38);
  box-shadow: 0 32px 70px -34px rgba(0,0,0,0.75), inset 0 1px 0 rgba(255,255,255,0.06);
}
.hero-logo { max-width: 100%; margin: 0 auto; filter: drop-shadow(0 10px 26px rgba(0,0,0,0.45)); }
.hero h1 {
  font-size: clamp(2.3rem, 5.6vw, 3.9rem); color: #fff; margin-bottom: 0.35em; line-height: 1.05;
}
.hero h1 .foil { font-style: italic; }
.hero-sub { font-size: clamp(1.02rem, 1.8vw, 1.2rem); color: var(--text-ondark-muted); max-width: 54ch; margin-bottom: 1.6rem; }
.hero .btn-row { margin-bottom: 1.3rem; }
.hero-trust-line {
  font-family: var(--display); font-style: italic; font-size: 1.15rem; color: var(--gold-light);
  letter-spacing: 0.01em; margin: 0;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero .btn-row { justify-content: center; }
  .hero-media { order: -1; }
  .hero-logo-frame { max-width: 340px; margin-bottom: 0.5rem; }
  .hero-sub { margin-inline: auto; }
}

/* -------------------- Trust bar -------------------- */
.trustbar { background: var(--ink-2); border-top: 1px solid rgba(201,162,39,0.2); border-bottom: 1px solid rgba(201,162,39,0.2); }
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem 1.8rem;
  padding-block: clamp(1.6rem, 4vw, 2.4rem);
}
@media (max-width: 860px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-item { display: flex; align-items: center; gap: 0.7rem; color: var(--text-ondark); font-size: 0.95rem; font-weight: 500; }
.trust-item .tick { flex-shrink: 0; width: 26px; height: 26px; }
.trust-item .tick svg { width: 100%; height: 100%; }
.gbp-strip { background: var(--ink); border-bottom: 1px solid rgba(201,162,39,0.2); padding-block: clamp(1.4rem, 3vw, 1.9rem); text-align: center; }
.gbp-strip .gbp-label { font-family: var(--body); font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.9rem; }
.gbp-strip .btn-row { flex-wrap: wrap; }

/* -------------------- Cards / services -------------------- */
.grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(1rem, 2.4vw, 1.6rem); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem 1.7rem; box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 22px 46px -22px rgba(61,26,99,0.4); border-color: rgba(201,162,39,0.5); }
.card .icon {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 1rem;
  background: linear-gradient(140deg, var(--purple-deep), var(--purple));
  box-shadow: inset 0 0 0 1px rgba(201,162,39,0.4);
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.4rem; margin-bottom: 0.4rem; color: var(--text-onlight-serif); }
.card p { color: var(--text-muted); font-size: 0.97rem; margin-bottom: 1rem; }
.card .card-note { font-size: 0.82rem; color: var(--purple-deep); background: #f3ecfa; border-left: 3px solid var(--purple); padding: 0.55rem 0.7rem; border-radius: 0 8px 8px 0; margin-bottom: 1rem; }
.card .btn { margin-top: auto; align-self: flex-start; }

/* On dark sections, cards invert */
.section--dark .card, .section--ink2 .card { background: var(--ink-3); border-color: rgba(201,162,39,0.22); box-shadow: none; }
.section--dark .card h3, .section--ink2 .card h3 { color: #fff; }
.section--dark .card p, .section--ink2 .card p { color: var(--text-ondark-muted); }
.section--dark .card .card-note, .section--ink2 .card .card-note { background: rgba(154,107,208,0.14); color: #d9c6f0; border-left-color: var(--purple-soft); }

/* -------------------- How it works -------------------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(1rem, 2.5vw, 1.8rem); counter-reset: step; }
.step { position: relative; padding-top: 0.5rem; }
.step .num {
  font-family: var(--display); font-size: 2.6rem; line-height: 1; display: inline-block; margin-bottom: 0.4rem;
}
.section--dark .step .num, .section--ink2 .step .num { background: var(--foil); -webkit-background-clip: text; background-clip: text; color: transparent; }
.step:not(.section--dark .step) .num { color: var(--purple); }
.step h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.section--dark .step h3, .section--ink2 .step h3 { color: #fff; }
.step p { font-size: 0.95rem; color: var(--text-ondark-muted); margin: 0; }

/* -------------------- About -------------------- */
.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.about-photo {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(201,162,39,0.4);
  box-shadow: 0 24px 60px -26px rgba(0,0,0,0.6); background: #fff;
}
.about-photo img { width: 100%; display: block; }
.about-body h2 { font-size: clamp(2rem, 4.4vw, 2.8rem); }
.about-body .foil-frame { border-left: 3px solid var(--gold); padding-left: 1rem; margin-top: 1.4rem; }
@media (max-width: 760px) { .about-grid { grid-template-columns: 1fr; } .about-photo { max-width: 340px; margin-inline: auto; } }

/* -------------------- Pricing -------------------- */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: clamp(1rem, 2.4vw, 1.6rem); }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem; box-shadow: var(--shadow-card); display: flex; flex-direction: column;
}
.price-card.featured { border-color: var(--gold); box-shadow: 0 20px 44px -20px rgba(201,162,39,0.5); position: relative; }
.price-card.featured::before {
  content: "Standard Service"; position: absolute; top: -0.8rem; left: 1.4rem;
  background: linear-gradient(135deg, #f2dc9c, #c9a227); color: #221a06; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 999px;
}
.price-card h3 { font-size: 1.45rem; margin-bottom: 0.2rem; }
.price-amount { font-family: var(--display); font-size: 2.1rem; color: var(--purple-deep); line-height: 1; margin: 0.3rem 0 0.2rem; }
.price-amount small { font-family: var(--body); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 0.2rem; }
.price-card ul { list-style: none; margin: 1rem 0 1.2rem; padding: 0; display: grid; gap: 0.5rem; }
.price-card ul li { position: relative; padding-left: 1.5rem; font-size: 0.95rem; color: var(--text); }
.price-card ul li::before { content: ""; position: absolute; left: 0; top: 0.45em; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,0.18); }
.price-card .fine { font-size: 0.85rem; color: #333333; margin-top: auto; }
.price-state-fee {
  display: inline-flex; align-items: baseline; gap: 0.5rem; background: #f3ecfa; border: 1px solid #e3d3f5;
  border-radius: 10px; padding: 0.5rem 0.85rem; font-size: 0.9rem; color: var(--purple-deep); font-weight: 600; margin-top: 0.6rem;
}
.price-list { display: grid; gap: 0.4rem; margin: 0.6rem 0 0; }
.price-list .row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.55rem 0; border-bottom: 1px dashed var(--line); font-size: 0.97rem; }
.price-list .row:last-child { border-bottom: 0; }
.price-list .row .amt { font-weight: 600; color: var(--purple-deep); white-space: nowrap; }

/* Collapsible / accordion (shared by FAQ + additional charges) */
.accordion { display: grid; gap: 0.7rem; }
details.acc {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
}
.section--dark details.acc, .section--ink2 details.acc { background: var(--ink-3); border-color: rgba(201,162,39,0.22); }
details.acc > summary {
  cursor: pointer; list-style: none; padding: 1.05rem 1.2rem; font-weight: 600; font-size: 1.02rem; color: var(--text-onlight-serif);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.section--dark details.acc > summary, .section--ink2 details.acc > summary { color: #fff; }
details.acc > summary::-webkit-details-marker { display: none; }
details.acc > summary::after {
  content: ""; flex-shrink: 0; width: 12px; height: 12px; border-right: 2px solid var(--purple); border-bottom: 2px solid var(--purple);
  transform: rotate(45deg); transition: transform 0.2s ease; margin-top: -4px;
}
.section--dark details.acc > summary::after, .section--ink2 details.acc > summary::after { border-color: var(--gold); }
details.acc[open] > summary::after { transform: rotate(-135deg); margin-top: 2px; }
details.acc .acc-body { padding: 0 1.2rem 1.2rem; color: var(--text-muted); font-size: 0.97rem; }
.section--dark details.acc .acc-body, .section--ink2 details.acc .acc-body { color: var(--text-ondark-muted); }
details.acc .acc-body ul { margin: 0.3rem 0 0; padding-left: 1.2rem; }
details.acc .acc-body li { margin-bottom: 0.3rem; }

/* -------------------- Form -------------------- */
.form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow-card); }
.tally-embed iframe { display: block; width: 100%; border: 0; margin: 0; background: transparent; min-height: 500px; overflow: hidden; }
.tally-embed .hint { color: #333333; font-size: 0.9rem; line-height: 1.55; background: #fdf6e6; border-left: 4px solid var(--gold-deep); border-radius: 0 8px 8px 0; padding: 0.8rem 1rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem; }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field.col-2 { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 0.9rem; color: var(--text-onlight-serif); }
.field .req { color: var(--purple); }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 1rem; color: var(--text);
  padding: 0.7rem 0.8rem; border: 1.5px solid var(--line); border-radius: 10px; background: var(--cream-2);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(107,47,160,0.15); }
.field textarea { resize: vertical; min-height: 110px; }
.field .hint { font-size: 0.82rem; color: var(--text-muted); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #b3261e; }
.field .error { display: none; font-size: 0.8rem; color: #b3261e; font-weight: 600; }
.field.invalid .error { display: block; }
.checkbox-field { grid-column: 1 / -1; display: flex; gap: 0.6rem; align-items: flex-start; }
.checkbox-field input { width: 20px; height: 20px; margin-top: 3px; flex-shrink: 0; accent-color: var(--purple); }
.checkbox-field label { font-weight: 500; font-size: 0.92rem; color: var(--text); }

.form-warning {
  grid-column: 1 / -1; background: #fdf6e6; border: 1px solid #ecd9a6; border-left: 4px solid var(--gold-deep);
  border-radius: 0 10px 10px 0; padding: 0.85rem 1rem; font-size: 0.9rem; color: #6b530f;
}
.form-status { grid-column: 1 / -1; border-radius: 10px; padding: 0.85rem 1rem; font-weight: 600; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: #e9f7ee; color: #1c6b3a; border: 1px solid #b9e3c8; }
.form-status.err { background: #fdeceb; color: #b3261e; border: 1px solid #f2c6c2; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }

/* -------------------- Reviews -------------------- */
.reviews-box {
  text-align: center; border: 1px dashed rgba(201,162,39,0.55); border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem); background: var(--ink-2);
}
.reviews-box .rev-title { font-family: var(--display); font-size: clamp(1.6rem, 4vw, 2.2rem); color: var(--gold-light); margin-bottom: 0.6rem; }
.reviews-box p { color: var(--text-ondark-muted); max-width: 52ch; margin-inline: auto; }
.rev-placeholder { margin-top: 1.4rem; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-ondark-muted); opacity: 0.7; }

/* -------------------- Contact -------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem, 4vw, 3rem); align-items: start; }
.contact-lines { display: grid; gap: 0.9rem; margin: 1.2rem 0 1.6rem; list-style: none; padding: 0; }
.contact-lines li { display: grid; grid-template-columns: 150px 1fr; align-items: center; gap: 0.7rem; line-height: 1.4; }
.contact-lines li > :not(.lbl) { min-width: 0; overflow-wrap: anywhere; }
.contact-lines .lbl { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 700; white-space: nowrap; }
.contact-lines a { color: var(--text-ondark); }
.contact-lines a:hover { color: var(--gold-light); }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 0.6rem; }
.hours-table th, .hours-table td { text-align: left; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.95rem; }
.hours-table th { font-weight: 500; color: var(--text-ondark-muted); font-family: var(--body); }
.hours-table td { color: #fff; font-weight: 500; text-align: right; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

/* -------------------- CTA band -------------------- */
.cta-band {
  background:
    radial-gradient(700px 300px at 20% 0%, rgba(107,47,160,0.5), transparent 60%),
    radial-gradient(600px 280px at 100% 100%, rgba(201,162,39,0.16), transparent 60%),
    var(--ink);
  color: #fff; text-align: center;
}
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 4.4vw, 2.8rem); }
.cta-band p { color: var(--text-ondark-muted); max-width: 56ch; margin-inline: auto 1.4rem; }

/* -------------------- Footer -------------------- */
.site-footer { background: #08070b; color: var(--text-ondark-muted); padding-block: clamp(2.6rem, 5vw, 3.6rem) 2rem; border-top: 1px solid rgba(201,162,39,0.25); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.footer-brand img { width: 200px; max-width: 100%; height: auto; object-fit: contain; display: block; margin-bottom: 0.8rem; }
.footer-brand p { font-size: 0.92rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--body); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.9rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.footer-col a { color: var(--text-ondark-muted); font-size: 0.94rem; }
.footer-col a:hover { color: var(--gold-light); }
.footer-disclaimer { margin-top: 2.2rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.82rem; line-height: 1.65; color: #c3bcd0; }
.footer-bottom { margin-top: 1.2rem; display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; justify-content: space-between; font-size: 0.82rem; color: #b7afc4; }
.footer-bottom a { color: #cfc7de; }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-note { font-style: italic; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; } }

/* -------------------- Misc content -------------------- */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); margin-top: 2rem; }
.prose h3 { font-size: 1.25rem; margin-top: 1.5rem; }
.prose p, .prose li { color: var(--text); }
.prose ul { padding-left: 1.3rem; }
.prose li { margin-bottom: 0.5rem; }
.legal-updated { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; }

.pill-list { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.2rem 0; padding: 0; list-style: none; }
.pill-list li {
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 0.5rem 1rem; font-size: 0.94rem; font-weight: 500; color: var(--text);
  box-shadow: 0 6px 16px -12px rgba(61,26,99,0.4);
}
.section--dark .pill-list li, .section--ink2 .pill-list li { background: var(--ink-3); border-color: rgba(201,162,39,0.28); color: var(--text-ondark); }

.note-band { background: #f3ecfa; border: 1px solid #e3d3f5; border-radius: 12px; padding: 1rem 1.2rem; color: var(--purple-deep); font-size: 0.95rem; }

.mini-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }

/* 404 */
.notfound { min-height: 60vh; display: grid; place-items: center; text-align: center; }
.notfound .code { font-family: var(--display); font-size: clamp(4rem, 14vw, 8rem); line-height: 1; }
