/* ------------------------------------------------------------------
   _shared/base.css
   Brand-neutral foundation consumed by every archetype. Palette, type,
   and scale are driven entirely by CSS custom properties. The :root
   below is the DEFAULT token set; generate.js injects a per-prospect
   <style id="brand-tokens"> AFTER the stylesheet link, so brand tokens
   override these defaults (equal specificity, later wins). Veils and
   overlays are derived from --bg with color-mix so they track any palette.

   Also owns the frozen contact-form styles (the form markup is the single
   shared partial archetypes/_shared/contact-form.partial.html), the header,
   footer, buttons, make-it-mine CTA, reveal animation, and a11y utilities.
   ------------------------------------------------------------------ */

:root {
  /* palette (default: charcoal-sienna) */
  --bg: #0d0e0a;
  --surface: #161812;
  --surface-2: #1f221c;
  --text: #f4ede0;
  --text-soft: rgba(244,237,224,0.78);
  --text-mute: rgba(244,237,224,0.55);
  --text-dim: rgba(244,237,224,0.22);
  --accent: #c47753;
  --accent-deep: #a4623f;
  --highlight: #9bb47a;
  --on-accent: #f4ede0;
  --rule: rgba(244,237,224,0.14);
  /* type */
  --serif: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --sans: 'Karla', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --display-clamp: clamp(2.6rem, 6.2vw, 5.4rem);
  --display-lh: 0.98;
  --display-ls: -0.015em;
  --base-size: 17px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: var(--base-size);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--text); text-decoration: none; }
a:hover { color: var(--accent); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
@media (min-width: 900px) { .wrap { padding: 0 56px; } }

.skip {
  position: absolute; left: -9999px;
  background: var(--text); color: var(--bg); padding: 10px 16px;
}
.skip:focus { left: 8px; top: 8px; z-index: 1000; }

/* ---------- Shared type primitives ---------- */
.kicker {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0 0 22px;
  display: flex; align-items: center; gap: 14px;
}
.kicker-line { display: inline-block; width: 32px; height: 1px; background: var(--accent); }
.kicker-center { justify-content: center; }

.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: var(--display-clamp);
  line-height: var(--display-lh);
  letter-spacing: var(--display-ls);
  color: var(--text);
  margin: 0 0 24px;
}
.display em { font-style: italic; color: var(--highlight); font-weight: 400; }

.section-lede { font-size: 1.05rem; color: var(--text-soft); max-width: 50ch; margin: 0; }
.section-head { margin: 0 0 56px; max-width: 640px; }
.section-head-center { margin: 0 auto 64px; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 32px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 0;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .15s ease;
  text-align: center;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: var(--on-accent); transform: translateY(-1px); }
.btn-block { width: 100%; padding: 18px 32px; }
.btn-link { display: inline-flex; align-items: center; gap: 8px; color: var(--text-soft); font-size: 14px; font-weight: 500; letter-spacing: 0.02em; }
.btn-link:hover { color: var(--accent); }

/* ---------- Header ---------- */
.site-header { position: absolute; top: 0; left: 0; right: 0; z-index: 50; padding: 0; }
.header-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; row-gap: 12px; padding-top: 28px; padding-bottom: 28px; }
.wordmark { display: flex; flex-direction: column; gap: 2px; line-height: 1.1; flex-shrink: 0; }
.wordmark-text { font-family: var(--serif); font-weight: 600; font-size: 24px; letter-spacing: -0.005em; color: var(--text); }
.wordmark-sub { font-family: var(--sans); font-size: 9px; font-weight: 600; letter-spacing: 0.3em; color: var(--text-mute); text-transform: uppercase; }
.nav { display: none; gap: 36px; align-items: center; }
.nav a { color: var(--text-soft); font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; position: relative; padding-bottom: 4px; }
.nav a:hover { color: var(--text); }
.nav a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--accent); transition: width .3s ease; }
.nav a:hover::after { width: 100%; }
.header-phone { color: var(--text); font-family: var(--serif); font-weight: 500; font-size: 18px; font-feature-settings: "lnum"; border-bottom: 1px solid var(--text-dim); padding-bottom: 2px; white-space: nowrap; transition: border-color .25s ease, color .25s ease; }
.header-phone:hover { border-color: var(--accent); color: var(--accent); }
@media (min-width: 1000px) { .nav { display: flex; } }

/* ---------- Contact (frozen partial) ---------- */
.contact { padding: 110px 0; background: var(--surface); border-top: 1px solid var(--rule); }
.contact-wrap { display: grid; gap: 56px; grid-template-columns: 1fr; }
.contact-lede { color: var(--text-soft); font-size: 1.1rem; max-width: 40ch; margin: 0 0 36px; }
.contact-direct { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--rule); }
.contact-direct li { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--rule); align-items: baseline; }
.cd-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-mute); font-weight: 600; }
.contact-direct a, .contact-direct li > span:last-child { font-family: var(--serif); font-size: 1.2rem; color: var(--text); }
.contact-direct a:hover { color: var(--accent); }
.contact-form { display: flex; flex-direction: column; gap: 22px; background: var(--bg); padding: 40px 32px; border: 1px solid var(--rule); }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mute); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 16px; padding: 14px 0;
  background: transparent; border: 0; border-bottom: 1px solid var(--rule);
  color: var(--text); width: 100%; transition: border-color .25s ease; border-radius: 0;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--accent); }
.field select {
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23ffffff' stroke-opacity='.5' stroke-width='1.5' fill='none'/></svg>");
  background-repeat: no-repeat; background-position: right 4px center; padding-right: 24px;
}
.field select option { background: var(--bg); color: var(--text); }
.field textarea { resize: vertical; min-height: 84px; }
.row { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 600px) { .row { grid-template-columns: 1fr 1fr; } }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; height: 0 !important; width: 0 !important; }
.form-status { margin: 0; font-size: 14px; min-height: 20px; color: var(--text-soft); }
.form-status.ok { color: var(--highlight); }
.form-status.err { color: var(--accent); }
.form-fineprint { font-size: 11px; color: var(--text-mute); margin: 0; letter-spacing: 0.05em; }
@media (min-width: 900px) { .contact-wrap { grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg); border-top: 1px solid var(--rule); padding: 70px 0 0; }
.footer-wrap { display: grid; gap: 48px; grid-template-columns: 1fr; padding-bottom: 50px; border-bottom: 1px solid var(--rule); }
.footer-name { font-family: var(--serif); font-size: 1.7rem; margin: 0 0 8px; color: var(--text); }
.footer-tagline { color: var(--text-mute); font-size: 14px; margin: 0; max-width: 36ch; }
.footer-cols { display: grid; gap: 36px; grid-template-columns: 1fr 1fr; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-h { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-mute); font-weight: 600; margin: 0 0 8px; }
.footer-col a, .footer-col span { font-family: var(--serif); font-size: 1rem; color: var(--text-soft); }
.footer-fine { padding: 24px 0; }
.footer-fine p { margin: 0; font-size: 12px; color: var(--text-mute); }
@media (min-width: 800px) { .footer-wrap { grid-template-columns: 1.3fr 1fr; align-items: start; } }

/* ---------- Make-it-Mine ---------- */
.make-it-mine {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  background: var(--text); color: var(--bg); padding: 14px 22px; border-radius: 0;
  font-size: 14px; font-weight: 500; display: flex; flex-direction: column; line-height: 1.2;
  transition: background .25s ease, color .25s ease, transform .2s ease;
  max-width: 240px; border: 1px solid var(--text);
  box-shadow: 0 18px 40px color-mix(in srgb, var(--bg) 60%, transparent);
}
.make-it-mine:hover { background: var(--accent); border-color: var(--accent); color: var(--on-accent); transform: translateY(-2px); }
.mim-label { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.7; }
.mim-cta { font-family: var(--serif); font-size: 17px; font-style: italic; }
@media (max-width: 600px) { .make-it-mine { padding: 12px 18px; bottom: 16px; right: 16px; max-width: 200px; } }

/* ---------- Reveal ---------- */
/* JS adds .reveal (hidden), then .in when scrolled into view. A [data-stagger]
   container sets --reveal-delay per child so a group cascades in. Archetypes
   may add their own reveal flavors; this is the shared default. */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,.61,.36,1); transition-delay: var(--reveal-delay, 0s); }
.reveal.in { opacity: 1; transform: none; }
/* Parallax layers are moved by JS via translate3d; hint the compositor. */
[data-parallax] { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  [data-parallax] { transform: none !important; }
}


/* ------------------------------------------------------------------
   noir-luxe / archetype.css
   Cinematic, high-end luxury for a dark palette. Deep near-black ground,
   large high-contrast serif display, gold/brass accents (var(--accent) is
   gold-family for dark palettes), fine 1px hairline rules, very generous
   whitespace. A full-bleed hero image sits under a dark gradient veil so the
   headline reads over it. Services render as large editorial numbered rows.
   No glassmorphism: solid dark surfaces, hairlines, and gold detailing only.
   Every color derives from injected tokens (--bg, --surface, --text,
   --accent, --rule, ...) via color-mix, so any dark palette recolors the
   page. Motion (parallax hero, count-up stats, staggered reveals) comes from
   the shared reveal script and is disabled under prefers-reduced-motion.
   ------------------------------------------------------------------ */

.arch-noir-luxe {
  background: var(--bg);
  position: relative;
}

/* A faint gold hairline glow at the very top edge, the only "shine". */
.arch-noir-luxe::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    color-mix(in srgb, var(--accent) 55%, transparent) 28%,
    color-mix(in srgb, var(--accent) 70%, transparent) 50%,
    color-mix(in srgb, var(--accent) 55%, transparent) 72%,
    transparent);
  z-index: 60;
  pointer-events: none;
}

.site-header, .arch-noir-luxe main, .site-footer { position: relative; z-index: 2; }

/* ---------- Header polish ---------- */
.arch-noir-luxe .site-header { backdrop-filter: none; }
.arch-noir-luxe .header-wrap { padding-top: 34px; padding-bottom: 34px; }
.arch-noir-luxe .wordmark-text { letter-spacing: 0.01em; font-weight: 500; }
.arch-noir-luxe .nav a { letter-spacing: 0.14em; font-size: 12px; }
.arch-noir-luxe .header-phone { border-bottom-color: color-mix(in srgb, var(--accent) 40%, transparent); }

/* ---------- Squared luxury buttons ---------- */
.arch-noir-luxe .btn { border-radius: 0; letter-spacing: 0.16em; padding: 18px 38px; font-size: 12px; }
.arch-noir-luxe .btn-primary {
  background: transparent;
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 60%, transparent);
}
.arch-noir-luxe .btn-primary:hover {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
  transform: none;
}
.arch-noir-luxe .btn-link { letter-spacing: 0.04em; }

/* ==================================================================
   HERO : full-bleed image, dark gradient veil, headline laid over it
   ================================================================== */
.hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg);
}
.hero-figure {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: 0;
}
.hero-figure img {
  width: 100%;
  height: 116%;            /* extra height so parallax never reveals an edge */
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04) brightness(0.82);
}
/* Veil derived from --bg so any dark palette tints the wash. Heavier at the
   foot where the headline sits, lighter at the top to keep the image alive. */
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      color-mix(in srgb, var(--bg) 62%, transparent) 0%,
      color-mix(in srgb, var(--bg) 18%, transparent) 34%,
      color-mix(in srgb, var(--bg) 52%, transparent) 64%,
      color-mix(in srgb, var(--bg) 92%, transparent) 100%),
    linear-gradient(90deg,
      color-mix(in srgb, var(--bg) 58%, transparent) 0%,
      transparent 58%);
}
.hero-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 200px;
  padding-bottom: 88px;
}
.hero-content { max-width: 19ch; }
.hero-content .kicker { color: color-mix(in srgb, var(--text) 72%, transparent); margin-bottom: 28px; }
.hero-content .kicker-line { background: var(--accent); width: 44px; }
.hero-content .display {
  margin-bottom: 30px;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 40px color-mix(in srgb, var(--bg) 70%, transparent);
}
.hero-content .lede {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 44ch;
  margin: 0 0 42px;
}
.hero-actions { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
@media (min-width: 980px) {
  .hero-wrap { padding-top: 240px; padding-bottom: 110px; }
  .hero-content { max-width: 18ch; }
  .hero-content .lede { max-width: 46ch; }
}

/* ==================================================================
   STATS : thin hairline-ruled row, gold numerals, no fills
   ================================================================== */
.noir-stats { padding: 0; background: var(--bg); }
.nstat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.nstat {
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.nstat + .nstat::before {
  content: '';
  position: absolute;
  left: 0; top: 28px; bottom: 28px;
  width: 1px;
  background: var(--rule);
}
.nstat-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.01em;
  font-feature-settings: "lnum";
}
.nstat-word { font-size: 2rem; color: var(--text); }
.nstat-label { font-size: 0.9rem; color: var(--text); font-weight: 600; margin-top: 14px; letter-spacing: 0.02em; }
.nstat-sub { font-size: 0.74rem; color: var(--text-mute); letter-spacing: 0.08em; text-transform: uppercase; }
@media (min-width: 820px) {
  .nstat-row { grid-template-columns: repeat(4, 1fr); }
  .nstat { border-bottom: 0; padding: 56px 36px; }
  .nstat + .nstat::before { top: 36px; bottom: 36px; }
}

/* ==================================================================
   SECTION RHYTHM : generous luxury whitespace
   ================================================================== */
.services, .work, .area, .about, .reviews { padding: 128px 0; }
@media (max-width: 700px) { .services, .work, .area, .about, .reviews { padding: 88px 0; } }
.arch-noir-luxe .section-head { max-width: 720px; margin-bottom: 72px; }
.arch-noir-luxe .display em { color: var(--accent); }
.services-intro { font-size: 1.1rem; color: var(--text-soft); max-width: 54ch; margin: 22px 0 0; }

/* ==================================================================
   SERVICES : large editorial numbered rows on hairlines
   ================================================================== */
.services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}
.arch-noir-luxe .service-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: baseline;
  padding: 44px 4px;
  border-bottom: 1px solid var(--rule);
  transition: padding-left .5s cubic-bezier(.22,.61,.36,1), background .5s ease;
}
.arch-noir-luxe .service-item:hover {
  padding-left: 22px;
  background: linear-gradient(90deg,
    color-mix(in srgb, var(--accent) 7%, transparent),
    transparent 60%);
}
.arch-noir-luxe .service-num {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.16em;
  line-height: 1;
  padding-top: 10px;
  min-width: 2.4em;
  font-feature-settings: "lnum";
}
.arch-noir-luxe .service-content { display: flex; flex-direction: column; gap: 12px; max-width: 64ch; }
.arch-noir-luxe .service-item h3 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text);
}
.arch-noir-luxe .service-item p { margin: 0; color: var(--text-soft); font-size: 1.04rem; line-height: 1.6; }
@media (min-width: 900px) {
  .arch-noir-luxe .service-item { grid-template-columns: 120px 1fr; gap: 48px; padding: 56px 4px; }
}

/* ==================================================================
   WORK : editorial mosaic, solid dark cards, gold caption rule
   ================================================================== */
.work-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.arch-noir-luxe .work-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--rule);
}
.arch-noir-luxe .work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  filter: saturate(0.94) brightness(0.9);
  transition: transform 1s cubic-bezier(.22,.61,.36,1), filter .6s ease;
}
.arch-noir-luxe .work-card:hover img { transform: scale(1.04); filter: saturate(1) brightness(1); }
.arch-noir-luxe .work-card-meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 28px 24px;
  background: linear-gradient(180deg,
    transparent,
    color-mix(in srgb, var(--bg) 78%, transparent) 42%,
    color-mix(in srgb, var(--bg) 94%, transparent));
}
.arch-noir-luxe .work-loc {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  padding-bottom: 8px;
  display: inline-block;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
}
.arch-noir-luxe .work-card-meta p {
  margin: 12px 0 0;
  color: var(--text);
  font-size: 1.1rem;
  font-family: var(--serif);
  line-height: 1.3;
}
@media (min-width: 720px) {
  .work-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 1fr; gap: 24px; }
  .arch-noir-luxe .work-card-big { grid-column: span 2; }
  .arch-noir-luxe .work-card-big img { aspect-ratio: 16 / 8; }
}

/* ==================================================================
   AREA : serif town names on a thin baseline, gold underline on hover
   ================================================================== */
.area { border-top: 1px solid var(--rule); }
.towns-row { display: flex; flex-wrap: wrap; gap: 14px 40px; justify-content: center; max-width: 820px; margin: 0 auto; }
.arch-noir-luxe .town {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--text-soft);
  position: relative;
  padding-bottom: 4px;
  transition: color .35s ease;
}
.arch-noir-luxe .town::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .4s cubic-bezier(.22,.61,.36,1);
}
.arch-noir-luxe .town:hover { color: var(--text); }
.arch-noir-luxe .town:hover::after { width: 100%; }

/* ==================================================================
   ABOUT : large portrait, gold signature rule
   ================================================================== */
.about { border-top: 1px solid var(--rule); }
.about-wrap { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.about-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--rule);
  position: relative;
}
.about-figure img {
  width: 100%;
  aspect-ratio: 4 / 3.6;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.88);
}
.about-text p { color: var(--text-soft); margin: 0 0 20px; font-size: 1.1rem; line-height: 1.7; }
.about-text .sig {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  position: relative;
}
.about-text .sig::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 56px; height: 1px;
  background: var(--accent);
}
.sig-role { font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mute); }
@media (min-width: 900px) { .about-wrap { grid-template-columns: 0.94fr 1.06fr; gap: 80px; } }

/* ==================================================================
   REVIEWS : solid dark cards, gold stars, large serif quotes
   ================================================================== */
.reviews { border-top: 1px solid var(--rule); }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--rule); }
.arch-noir-luxe .review-card {
  background: transparent;
  border-bottom: 1px solid var(--rule);
  padding: 56px 8px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.arch-noir-luxe .review-card .stars {
  color: var(--accent);
  letter-spacing: 6px;
  font-size: 0.95rem;
}
.arch-noir-luxe .review-card blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  letter-spacing: -0.005em;
}
.arch-noir-luxe .review-card cite {
  font-style: normal;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 600;
}
@media (min-width: 860px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); column-gap: 1px; background: var(--rule); }
  .arch-noir-luxe .review-card { background: var(--bg); padding: 56px 36px; border-bottom: 0; }
}

/* ==================================================================
   CONTACT + FOOTER : solid surfaces, gold accents on the form
   ================================================================== */
.arch-noir-luxe .contact { background: var(--surface); border-top: 1px solid var(--rule); padding: 128px 0; }
.arch-noir-luxe .contact-form { background: var(--bg); border: 1px solid var(--rule); border-radius: 0; }
.arch-noir-luxe .btn-block { border-radius: 0; letter-spacing: 0.16em; }
.arch-noir-luxe .site-footer { background: var(--bg); }
.arch-noir-luxe .footer-name { font-weight: 500; }
.arch-noir-luxe .make-it-mine { border-radius: 0; }
