/* CityPlace bnb — deal site. Editorial offering-memorandum aesthetic.
   Newsreader (display serif, variable) + Archivo (grotesk, variable). No external requests. */

@font-face {
  font-family: 'Newsreader';
  src: url('/buy/fonts/newsreader-var-latin.woff2') format('woff2');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Newsreader';
  src: url('/buy/fonts/newsreader-italic-latin.woff2') format('woff2');
  font-weight: 200 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('/buy/fonts/archivo-var-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #faf8f4;
  --paper-2: #f1eee6;
  --ink: #17171e;
  --ink-soft: #2c2c35;
  --muted: #595b66;
  --line: #e0dccf;
  --line-dark: #c9c4b4;
  --plum: #66407f;
  --plum-deep: #4f3163;
  --amber: #a87b2f;
  --dark: #201c27;
  --dark-2: #2a2534;
  --on-dark: #efeae0;
  --on-dark-muted: #b3add2;
  --serif: 'Newsreader', 'Iowan Old Style', Georgia, serif;
  --sans: 'Archivo', 'Avenir Next', 'Helvetica Neue', sans-serif;
  --wrap: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--sans);
  font-size: 1.0rem;
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: lining-nums;
}

img { max-width: 100%; display: block; }
a { color: var(--plum); text-underline-offset: 3px; }
a:hover { color: var(--plum-deep); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2.4rem); }

.skip {
  position: absolute; left: -9999px; top: 0; background: var(--ink); color: var(--paper);
  padding: .6rem 1rem; z-index: 100;
}
.skip:focus { left: 0; }

::selection { background: var(--plum); color: #fff; }

/* ---------- type ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.12; letter-spacing: -0.012em; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.1rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.22rem; line-height: 1.3; }
.num, td.num, output { font-variant-numeric: tabular-nums; }

.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 640;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 1rem;
}
.eyebrow .n { color: var(--amber); margin-right: .55em; }
.on-dark .eyebrow { color: var(--on-dark-muted); }
.on-dark .eyebrow .n { color: var(--amber); }

.lede { font-size: 1.08rem; color: var(--muted); max-width: 46em; }
.small { font-size: .84rem; color: var(--muted); }
.fine { font-size: .8rem; color: var(--muted); }

/* editorial section head: label column + content column */
section { padding: clamp(3.6rem, 8vw, 6.2rem) 0; }
section.tight { padding: clamp(2.4rem, 5vw, 3.6rem) 0; }
.sec-rule { border-top: 1px solid var(--line); }
.section-head { max-width: 50em; margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.section-head h2 { margin-bottom: .7rem; }

.alt-bg { background: var(--paper-2); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; gap: 1.6rem; height: 62px; }
.brand { text-decoration: none; color: var(--ink); display: flex; align-items: baseline; gap: .6rem; white-space: nowrap; }
.brand .mark { font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 1.3rem; letter-spacing: -0.01em; }
.brand .tag { font-size: .66rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.header-nav { margin-left: auto; display: flex; gap: 1.35rem; }
.header-nav a {
  font-size: .8rem; font-weight: 560; letter-spacing: .04em; text-decoration: none; color: var(--ink-soft);
}
.header-nav a:hover { color: var(--plum); }
.header-actions { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.header-contact {
  display: none; align-items: center; gap: .35rem;
  font-size: .76rem; color: var(--ink-soft); margin: 0;
}
.header-contact a { color: var(--ink-soft); text-decoration: none; font-weight: 620; }
.header-contact a:hover { color: var(--plum); }
.header-phone-num { white-space: nowrap; }
.header-cta {
  font-size: .8rem; font-weight: 640; letter-spacing: .05em; text-decoration: none;
  color: var(--paper); background: var(--ink); padding: .55rem 1.05rem; white-space: nowrap;
}
.header-cta:hover { background: var(--plum-deep); color: #fff; }
@media (min-width: 640px) { .header-contact { display: flex; } }
@media (max-width: 860px) { .header-nav { display: none; } .header-actions { margin-left: auto; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; text-decoration: none; font-family: var(--sans);
  font-size: .92rem; font-weight: 640; letter-spacing: .04em;
  padding: .95rem 1.7rem; border: 1px solid var(--ink); cursor: pointer;
  transition: background .18s, color .18s, border-color .18s;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--plum-deep); border-color: var(--plum-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { border-color: var(--plum); color: var(--plum); }
.on-dark .btn-primary { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.on-dark .btn-primary:hover { background: #fff; color: var(--plum-deep); }

/* ---------- hero (full-bleed photo, paper card) ---------- */
.hero { padding: clamp(2.6rem, 6vw, 5rem) 0 clamp(2.8rem, 6vw, 4.6rem); }
.hero-bleed {
  position: relative; overflow: hidden;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  min-height: min(78vh, 44rem); display: flex; align-items: center;
}
/* modal */
dialog.form-modal {
  position: fixed; inset: 0; margin: auto;
  border: 1px solid var(--ink); background: var(--paper);
  padding: clamp(1.3rem, 3vw, 2.1rem);
  width: min(46rem, 92vw); max-height: 86vh; overflow: auto;
  box-shadow: 12px 12px 0 rgba(23,23,30,.4);
}
dialog.form-modal::backdrop { background: rgba(15,12,20,.58); }
.modal-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: 1rem; }
.modal-head h3 { margin: 0; }
.modal-close {
  border: 1px solid var(--ink); background: transparent; font: inherit;
  font-size: .85rem; padding: .3rem .7rem; cursor: pointer;
}
.modal-close:hover { background: var(--ink); color: var(--paper); }
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%; z-index: 0;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(270deg, rgba(15,12,20,.42) 0%, rgba(15,12,20,.10) 45%, rgba(15,12,20,0) 70%);
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-content { display: flex; justify-content: flex-end; }
.hero-glass {
  width: min(26rem, 100%);
  background: rgba(20, 15, 26, .84);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  backdrop-filter: blur(20px) saturate(120%);
  border: 1px solid rgba(255,255,255,.22);
  padding: clamp(1.3rem, 2.6vw, 1.9rem);
  color: #fff;
}
.hero-glass .eyebrow { color: rgba(255,255,255,.72); }
.hero-glass h1 { font-size: clamp(1.4rem, 2.3vw, 1.85rem); margin: .3rem 0 .7rem; color: #fff; }
.hero-glass h1 em { color: #e3c9f5; }
.hb-sub { font-size: .88rem; color: rgba(255,255,255,.82); margin: 0 0 1.15rem; }
.hb-sub b { color: #fff; font-weight: 640; }
.micro-form { display: flex; flex-direction: column; gap: .55rem; }
.micro-form input[type="email"] {
  width: 100%; padding: .85rem .9rem;
  border: 1px solid rgba(255,255,255,.5); background: rgba(255,255,255,.95);
  font: inherit; font-size: .95rem; color: var(--ink);
}
.micro-form .btn { white-space: nowrap; justify-content: center; text-align: center; }
.hero-glass .btn-primary { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.hero-glass .btn-primary:hover { background: #fff; color: var(--plum-deep); }
.hb-note { font-size: .74rem; color: rgba(255,255,255,.68); margin-top: .7rem; }
.hb-note a { color: #fff; }
.hb-done { font-size: .98rem; color: #fff; }
.sr-only { position: absolute; left: -9999px; }
@media (max-width: 860px) {
  /* mobile: photo becomes a normal block at the top; card flows beneath it */
  .hero-bleed {
    min-height: 0; display: block; background: var(--paper);
    padding: 0 0 1.5rem; overflow: visible;
  }
  .hero-bg {
    position: static; display: block; width: 100%; height: 38vh;
    object-fit: cover; object-position: 32% 36%; margin-bottom: 1.3rem;
  }
  .hero-scrim { display: none; }
  .hero-content { justify-content: stretch; }
  .hero-glass {
    width: 100%; padding: 0 0 1.4rem;
    background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none;
    border: 0; color: var(--ink);
  }
  .hero-glass .eyebrow { color: var(--plum); font-size: .64rem; }
  .hero-glass h1 { font-size: 1.42rem; margin: .3rem 0 .55rem; color: var(--ink); }
  .hero-glass h1 em { color: var(--plum); }
  .hb-sub { font-size: .86rem; color: var(--muted); margin-bottom: 1rem; }
  .hb-sub b { color: var(--ink); }
  .micro-form input[type="email"] { border-color: var(--ink); background: #fff; }
  .hero-glass .btn-primary { background: var(--ink); color: var(--paper); border-color: var(--ink); }
  .hb-note { font-size: .72rem; color: var(--muted); }
  .hb-note a { color: var(--plum); }
  .on-dark.buyer-contact { color: var(--ink-soft); }
  .on-dark.buyer-contact a { color: var(--plum); }
}
.hero h1 { margin: .2rem 0 1.3rem; }
.hero h1 em { font-style: italic; color: var(--plum); }
.hero-sub { font-size: 1.02rem; color: var(--muted); max-width: 34em; margin-bottom: 1.7rem; }
.hero-sub b { color: var(--ink); font-weight: 640; }
.hero-sub .sep { margin: 0 .5em; color: var(--line-dark); }
.cta-row { display: flex; gap: .8rem; flex-wrap: wrap; }
.hero-note { margin-top: 1.15rem; font-size: .8rem; color: var(--muted); max-width: 36em; }
.hero-caption {
  margin-top: 1.6rem; font-size: .78rem; color: var(--muted);
  display: flex; justify-content: space-between; gap: 1rem;
  border-top: 1px solid var(--line-dark); padding-top: .8rem;
}
@media (max-width: 660px) {
  .hero-bleed { padding: 2.4rem 0; }
  .hero-card { box-shadow: 6px 6px 0 rgba(23,23,30,.35); }
  .hero-caption { margin-top: 1.2rem; }
}

/* ---------- stats bar ---------- */
.stats { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); padding: 0; }
.stats .wrap {
  display: grid; grid-template-columns: repeat(5, 1fr);
}
.stat { padding: 1.5rem 1.2rem 1.4rem 0; border-left: 1px solid var(--line); padding-left: 1.2rem; }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat .v { font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 2.05rem); font-weight: 500; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }
.stat .v em { font-style: italic; color: var(--plum); }
.stat .k { font-size: .74rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); margin-top: .3rem; }
@media (max-width: 900px) {
  .stats .wrap { grid-template-columns: repeat(2, 1fr); }
  .stat, .stat:first-child { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); }
  .stats .wrap .stat:nth-child(-n+2) { border-top: 0; }
}

/* ---------- the numbers ---------- */
.uw-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem, 3vw, 2.6rem); align-items: start; }
.uw-cols.single { grid-template-columns: minmax(0, 36rem); justify-content: center; }
@media (max-width: 860px) { .uw-cols { grid-template-columns: 1fr; } }
.uw-card { border: 1px solid var(--ink); background: #fff; }
.uw-card.norm { background: var(--paper-2); }
.uw-card header { padding: 1.15rem 1.4rem .95rem; border-bottom: 1px solid var(--line-dark); }
.uw-card header .label { font-size: .7rem; font-weight: 660; letter-spacing: .15em; text-transform: uppercase; color: var(--plum); }
.uw-card header h3 { font-size: 1.3rem; margin-top: .25rem; }
.uw-card table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.uw-card td, .uw-card th { text-align: left; padding: .68rem 1.4rem; border-top: 1px solid var(--line); vertical-align: top; }
.uw-card tr:first-child td { border-top: 0; }
.uw-card td:last-child { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; font-weight: 560; }
.uw-card td .why { display: block; font-size: .78rem; color: var(--muted); font-weight: 400; margin-top: .1rem; }
.uw-card tr.total td { border-top: 1px solid var(--ink); font-family: var(--serif); font-size: 1.14rem; font-weight: 560; padding-top: .85rem; padding-bottom: .95rem; }
.uw-card .footnote { padding: .8rem 1.4rem 1.1rem; font-size: .78rem; color: var(--muted); border-top: 1px solid var(--line); }

/* ---------- price slider panel ---------- */
.slider-panel { background: var(--dark); color: var(--on-dark); margin-top: clamp(2.2rem, 5vw, 3.4rem); }
.slider-panel .inner { padding: clamp(2.2rem, 5vw, 3.4rem) clamp(1.4rem, 3.5vw, 2.8rem); }
.slider-panel h3 { font-size: clamp(1.45rem, 2.6vw, 1.9rem); }
.slider-panel h3 em { font-style: italic; color: #cbb1e4; }
.slider-panel .intro { color: var(--on-dark-muted); max-width: 44em; margin: .6rem 0 2rem; font-size: .96rem; }

.price-readout { display: flex; align-items: baseline; gap: 1.4rem; flex-wrap: wrap; margin-bottom: .9rem; }
.price-readout output {
  font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 500; letter-spacing: -0.01em; line-height: 1;
}
.price-readout .perdoor { font-size: .95rem; color: var(--on-dark-muted); }

input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 34px; background: transparent; cursor: pointer;
}
input[type="range"]::-webkit-slider-runnable-track { height: 2px; background: #4d4460; }
input[type="range"]::-moz-range-track { height: 2px; background: #4d4460; }
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 26px; height: 26px; margin-top: -12px;
  border-radius: 50%; background: var(--paper); border: 2px solid var(--plum);
}
input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%; background: var(--paper); border: 2px solid var(--plum);
}
input[type="range"]:focus-visible { outline: 2px solid #cbb1e4; outline-offset: 4px; }
.range-ends { display: flex; justify-content: space-between; font-size: .78rem; color: var(--on-dark-muted); margin-top: .1rem; }

.slider-out { display: grid; grid-template-columns: minmax(0, 30rem); justify-content: center; gap: 1.2rem; margin-top: 1.8rem; }
@media (max-width: 760px) { .slider-out { grid-template-columns: 1fr; } }
.out-card { border: 1px solid #453d57; padding: 1.15rem 1.3rem 1.2rem; background: var(--dark-2); }
.out-card .t { font-size: .7rem; font-weight: 660; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-muted); margin-bottom: .8rem; }
.out-card dl { display: grid; grid-template-columns: 1fr auto; row-gap: .32rem; font-size: .92rem; }
.out-card dt { color: var(--on-dark-muted); }
.out-card dd { text-align: right; font-variant-numeric: tabular-nums; font-weight: 560; }
.out-card dd.neg { color: #e8a1a1; }
.out-card .cap { font-family: var(--serif); font-size: 2.1rem; font-weight: 500; line-height: 1.1; margin-bottom: .55rem; }
.out-card .cap span:last-child { font-size: .95rem; font-family: var(--sans); font-weight: 480; color: var(--on-dark-muted); margin-left: .45rem; }
.slider-note { margin-top: 1.4rem; font-size: .78rem; color: var(--on-dark-muted); max-width: 56em; }

/* ---------- operation ---------- */
.op-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
@media (max-width: 900px) { .op-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .op-grid { grid-template-columns: 1fr; } }
.op-item { border: 1px solid var(--line-dark); background: #fff; padding: 1.1rem 1.2rem 1.15rem; }
.op-item h3 { font-family: var(--sans); font-size: .95rem; font-weight: 660; }
.op-item p { font-size: .88rem; color: var(--muted); margin-top: .35rem; }
.op-banner {
  margin-top: 2rem; border: 1px solid var(--ink); background: #fff;
  display: grid; grid-template-columns: auto 1fr; gap: 1.6rem; align-items: center;
  padding: 1.4rem 1.6rem;
}
.op-banner .big { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 500; line-height: 1; white-space: nowrap; }
.op-banner .big small { display: block; font-family: var(--sans); font-size: .72rem; font-weight: 620; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: .35rem; }
.op-banner p { font-size: .95rem; color: var(--ink-soft); }
@media (max-width: 640px) { .op-banner { grid-template-columns: 1fr; gap: .8rem; } }

/* ---------- deal room / verifiability ---------- */
.dr-cols { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.8rem, 4vw, 3.4rem); align-items: start; }
@media (max-width: 860px) { .dr-cols { grid-template-columns: 1fr; } }
.dr-list { list-style: none; border-top: 1px solid var(--ink); }
.dr-list li { border-bottom: 1px solid var(--line); padding: .95rem .1rem .95rem 0; display: grid; grid-template-columns: auto 1fr; gap: .9rem; }
.dr-list .idx { font-family: var(--serif); font-style: italic; color: var(--amber); font-size: 1.05rem; min-width: 1.6em; }
.dr-list b { font-weight: 660; }
.dr-list span.d { display: block; font-size: .85rem; color: var(--muted); }

/* ---------- blip / prose feature ---------- */
.prose-feature { max-width: 44em; }
.prose-feature p { margin-bottom: 1.05rem; font-size: 1.02rem; }
.prose-feature p.kicker { font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 1.7rem); line-height: 1.35; color: var(--ink); }
.prose-feature p.kicker em { color: var(--plum); }

/* ---------- location ---------- */
.loc-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 4vw, 3.2rem); align-items: start; }
@media (max-width: 860px) { .loc-cols { grid-template-columns: 1fr; } }
.loc-cols .prose p { margin-bottom: 1rem; }
.fact-list { list-style: none; border-top: 1px solid var(--ink); }
.fact-list li { display: grid; grid-template-columns: 1fr auto; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid var(--line); font-size: .93rem; }
.fact-list li b { font-variant-numeric: tabular-nums; white-space: nowrap; font-weight: 640; }

/* ---------- gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; }
@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-grid a { display: block; border: 1px solid var(--line-dark); background: #fff; }
.gallery-grid a:hover { border-color: var(--plum); }
.gallery-grid img { width: 100%; height: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

.lightbox { border: 0; background: rgba(18, 15, 24, .96); padding: 0; max-width: 100vw; max-height: 100vh; width: 100vw; height: 100vh; }
.lightbox::backdrop { background: rgba(18, 15, 24, .96); }
.lightbox figure { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; gap: .8rem; padding: 3.4rem 4.6rem; }
.lightbox img { max-width: 100%; max-height: 82vh; object-fit: contain; }
.lightbox figcaption { color: var(--on-dark-muted); font-size: .85rem; }
.lb-btn { position: absolute; background: transparent; color: #efeae0; border: 1px solid #57506a; font-size: 1.3rem; width: 46px; height: 46px; cursor: pointer; }
.lb-btn:hover { border-color: #cbb1e4; color: #cbb1e4; }
.lb-close { top: 1rem; right: 1rem; }
.lb-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) { .lightbox figure { padding: 3.2rem .8rem; } }

/* ---------- per-door ---------- */
.door-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin: 2rem 0 1.6rem; }
@media (max-width: 760px) { .door-row { grid-template-columns: 1fr; } }
.door-card { border-top: 1px solid var(--ink); padding-top: 1rem; }
.door-card .v { font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 500; font-variant-numeric: tabular-nums; }
.door-card .k { font-size: .78rem; font-weight: 620; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: .3rem; }
.door-card p { font-size: .88rem; color: var(--muted); margin-top: .5rem; }

/* ---------- FAQ ---------- */
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-of-type { border-top: 1px solid var(--ink); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: baseline; gap: 1.5rem;
  font-family: var(--serif); font-size: 1.18rem; font-weight: 500; padding: 1.15rem .1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--sans); color: var(--plum); font-size: 1.2rem; flex-shrink: 0; }
.faq details[open] summary::after { content: "\2212"; }
.faq .a { padding: 0 .1rem 1.3rem; max-width: 46em; color: var(--ink-soft); }
.faq .a p { margin-bottom: .8rem; }

/* ---------- form ---------- */
.form-sec .card { border: 1px solid var(--ink); background: #fff; padding: clamp(1.6rem, 4vw, 2.6rem); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem 1.4rem; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.field label { display: block; font-size: .72rem; font-weight: 660; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: .96rem; color: var(--ink); background: var(--paper);
  border: 1px solid var(--line-dark); padding: .7rem .8rem; border-radius: 0; -webkit-appearance: none; appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2317171e'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .8rem center; padding-right: 2.2rem;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--plum); outline-offset: 1px; border-color: var(--plum); }
.field.full { grid-column: 1 / -1; }
.hp { position: absolute; left: -9999px; }

.buyer-contact { margin-top: 1.1rem; font-size: .95rem; }
.buyer-contact a { font-weight: 620; text-decoration: none; }
.buyer-contact a:hover { text-decoration: underline; }
.on-dark.buyer-contact { color: rgba(255,255,255,.88); margin-top: .85rem; font-size: .92rem; }
.on-dark.buyer-contact a { color: #fff; }
.on-dark.buyer-contact a:hover { color: #e3c9f5; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--ink); padding: 2.6rem 0 5.4rem; }
.site-footer .cols { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
@media (max-width: 760px) { .site-footer .cols { grid-template-columns: 1fr; } }
.site-footer .mark { font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 1.25rem; }
.site-footer p { font-size: .88rem; color: var(--muted); margin-top: .5rem; }
.site-footer a { color: var(--ink-soft); }
.site-footer strong { color: var(--ink); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.disclosure { font-size: .78rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: 1.2rem; max-width: 72em; }

/* ---------- sticky CTA ---------- */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  background: var(--ink); border-top: 1px solid var(--plum);
  text-align: center;
}
.sticky-cta a {
  display: block; color: var(--paper); text-decoration: none; font-size: .88rem; font-weight: 640; letter-spacing: .05em;
  padding: .8rem 1rem;
}
.sticky-cta a:hover { color: #cbb1e4; }
@media (min-width: 861px) { .sticky-cta { display: none; } }

/* ---------- scroll reveal ---------- */
.rv { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; } }

/* ---------- AEO article pages ---------- */
.answer-hero { background: var(--paper-2); border-bottom: 1px solid var(--line); padding: clamp(2.6rem, 6vw, 4.2rem) 0; }
.answer-hero h1 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); margin-bottom: 1.1rem; max-width: 22em; }
.answer-hero .direct { max-width: 50em; font-size: 1.05rem; }
.article { max-width: 46em; }
.article h2 { margin: 2.4rem 0 .9rem; }
.article p, .article li { margin-bottom: .9rem; }
.article ol, .article ul { padding-left: 1.3rem; }
.callout { border: 1px solid var(--ink); background: #fff; padding: 1.4rem 1.6rem; margin: 2rem 0; }
.callout p { margin-bottom: .6rem; }

/* ---------- thanks / 404 ---------- */
.center-page { min-height: 55vh; display: flex; align-items: center; }
.center-page .inner { max-width: 40em; }
.center-page h1 { margin-bottom: 1rem; }
.center-page p { margin-bottom: 1rem; color: var(--ink-soft); }

/* Mobile header fit (390px-class viewports): drop kicker tag, compact CTA */
@media (max-width: 660px) {
  .brand .tag { display: none; }
  .brand .mark { font-size: 1.15rem; }
  .header-cta { font-size: .72rem; padding: .5rem .8rem; letter-spacing: .02em; }
  .site-header .wrap { gap: .9rem; }
}
