/* ============================================================
   BIG BEAUTIFUL BINS — v3 "DECO RAND"
   Art deco architecture × Paul Rand's Cummins palette.
   Midnight navy + brass ornament; cobalt / vermilion /
   sunflower / kelly doing the shouting.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* inks & papers */
  --ink:        #151e3c;   /* midnight navy */
  --ink-deep:   #0e152c;
  --ink-soft:   #232e55;
  --cream:      #f5edd8;
  --paper:      #fbf5e6;

  /* Rand primaries */
  --cobalt:     #2a4fb2;
  --cobalt-deep:#20408f;
  --vermilion:  #d8432a;
  --vermilion-deep: #b53420;
  --sunflower:  #edaf2e;
  --kelly:      #1e7a4a;
  --kelly-deep: #175f3a;

  /* deco brass */
  --gold:       #c69a45;
  --gold-light: #e6c87e;

  --font-display: "Limelight", "Georgia", serif;
  --font-body: "Josefin Sans", "Avenir Next", "Century Gothic", sans-serif;

  --wrap: 1120px;
  --radius: 4px;
  --header-h: 76px;
  --shadow-card: 0 2px 0 rgba(21,30,60,.18), 0 14px 34px -18px rgba(21,30,60,.45);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.06rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
h1, h2, h3 { line-height: 1.12; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
a { color: var(--cobalt); }
:focus-visible { outline: 3px solid var(--vermilion); outline-offset: 3px; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }

.visually-hidden, .hidden-field {
  position: absolute !important; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--sunflower); color: var(--ink);
  padding: 10px 18px; font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ============================================================
   TYPE — deco display + geometric sans
   ============================================================ */
.kicker {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 14px;
}
/* — ◆ — flanking rules on kickers inside centered section heads */
.sec-head .kicker { justify-content: center; }
.kicker::before, .kicker::after {
  content: ""; height: 1px; width: 42px; background: currentColor; opacity: .55;
}

h1, h2, .display { font-family: var(--font-display); font-weight: 400; }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); letter-spacing: .02em; }
h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.25rem; letter-spacing: .04em; text-transform: uppercase; }

.sec-head { text-align: center; max-width: 760px; margin: 0 auto 46px; }
.sec-intro { font-size: 1.12rem; }

/* deco diamond divider under section h2 */
.sec-head h2::after {
  content: "";
  display: block;
  width: 130px; height: 9px;
  margin: 20px auto 0;
  background:
    linear-gradient(currentColor, currentColor) left  50% / 44px 1px no-repeat,
    linear-gradient(currentColor, currentColor) right 50% / 44px 1px no-repeat,
    conic-gradient(from 45deg, currentColor 0 25%, transparent 0 50%, currentColor 0 75%, transparent 0) 50% 50% / 9px 9px no-repeat;
  opacity: .8;
}

/* ============================================================
   WORDMARK — stacked deco marquee (hero) + inline (header/footer)
   ============================================================ */
.wordmark {
  font-family: var(--font-display);
  text-decoration: none;
  letter-spacing: .06em;
  color: var(--cream);
}
/* light tints — the header/footer wordmark sits on midnight navy */
.wordmark .b1 { color: #7d9af0; }
.wordmark .b2 { color: #ef7a5a; }
.wordmark .b3 { color: var(--sunflower); }
.wordmark--sm { font-size: 1.28rem; white-space: nowrap; }
/* on light backgrounds */
.on-light .wordmark, .site-footer .footer-brand .wordmark { color: var(--cream); }

.wordmark--hero {
  display: block;
  font-size: clamp(2.6rem, 7.2vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 3px 0 rgba(14,21,44,.55);
}
.wordmark--hero .b1, .wordmark--hero .b2, .wordmark--hero .b3 { text-shadow: 0 3px 0 rgba(14,21,44,.55); }
.wordmark--hero .b1 { color: #6f8fe0; }
.wordmark--hero .b2 { color: #ef7a5a; }
.wordmark--hero .b3 { color: var(--sunflower); }

/* ============================================================
   BUTTONS — marquee plaques
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  color: var(--cream);
  background: var(--vermilion);
  border: 2px solid var(--ink);
  padding: 15px 30px 13px;
  border-radius: var(--radius);
  box-shadow: 0 0 0 2px var(--cream) inset, 0 4px 0 var(--ink);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 0 0 2px var(--cream) inset, 0 6px 0 var(--ink); }
.btn:active { transform: translateY(2px); box-shadow: 0 0 0 2px var(--cream) inset, 0 2px 0 var(--ink); }
.btn-primary { background: var(--vermilion); }
.btn-primary:hover { background: var(--vermilion-deep); }
.btn-secondary { background: var(--cobalt); }
.btn-secondary:hover { background: var(--cobalt-deep); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-sm { padding: 10px 18px 8px; font-size: .84rem; box-shadow: 0 0 0 2px var(--cream) inset, 0 3px 0 var(--ink); }
.btn-lg { padding: 18px 40px 16px; font-size: 1.06rem; }
.btn-block { display: block; width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; margin: 26px 0; }

/* ============================================================
   HEADER — theatre marquee bar
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--ink);
  color: var(--cream);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 1px 0 var(--ink-deep), 0 10px 26px -18px rgba(14,21,44,.9);
}
/* thin rainbow Rand strip along the very top */
.site-header::before {
  content: "";
  display: block; height: 5px;
  background: linear-gradient(90deg,
    var(--cobalt) 0 25%, var(--vermilion) 25% 50%,
    var(--sunflower) 50% 75%, var(--kelly) 75% 100%);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; min-height: var(--header-h);
}
.primary-nav { display: flex; gap: 26px; }
.primary-nav a {
  color: var(--cream); text-decoration: none;
  font-weight: 600; font-size: .84rem;
  letter-spacing: .22em; text-transform: uppercase;
  padding: 6px 0 4px;
  border-bottom: 2px solid transparent;
}
.primary-nav a:hover { color: var(--gold-light); }
.primary-nav a.is-active { color: var(--gold-light); border-bottom-color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.phone-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-light); text-decoration: none;
  font-weight: 700; letter-spacing: .06em; white-space: nowrap;
}
.phone-link:hover { color: var(--cream); }
.ico { width: 1.05em; height: 1.05em; flex: none; }

.nav-toggle {
  display: none;
  background: none; border: 2px solid var(--gold); border-radius: var(--radius);
  color: var(--cream); font-family: var(--font-body); font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; font-size: .74rem;
  padding: 8px 12px; cursor: pointer;
  align-items: center; gap: 8px;
}
.nav-toggle-bars {
  display: block; width: 18px; height: 2px; background: currentColor; position: relative;
}
.nav-toggle-bars::before, .nav-toggle-bars::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: currentColor;
}
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--ink-deep);
  border-top: 1px solid var(--gold);
  padding: 10px 22px 22px;
}
.mobile-menu[data-open] { display: flex; }
.mobile-menu a {
  color: var(--cream); text-decoration: none;
  font-weight: 600; letter-spacing: .18em; text-transform: uppercase; font-size: .95rem;
  padding: 13px 4px;
  border-bottom: 1px solid rgba(198,154,69,.25);
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu .mm-cta { color: var(--sunflower); }
.mobile-menu .mm-call { color: var(--gold-light); border-bottom: 0; }

/* ============================================================
   SECTIONS — color blocks with deco furniture
   ============================================================ */
.sec { padding: 84px 0; position: relative; }
.sec--cream { background: var(--cream); }
.sec--paper { background: var(--paper); }
.sec--ink    { background: var(--ink); color: var(--cream); }
.sec--cobalt { background: var(--cobalt); color: var(--cream); }
.sec--ink a:not(.btn), .sec--cobalt a:not(.btn) { color: var(--gold-light); }
.sec--ink .kicker, .sec--cobalt .kicker { color: var(--gold-light); }
.sec--cream .kicker, .sec--paper .kicker { color: var(--vermilion); }

/* stepped ziggurat edge — drop on any dark section that follows cream */
.zig-top { padding-top: 110px; }
.zig-top::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 36px;
  background:
    linear-gradient(var(--cream), var(--cream)) 50% 0 / 60% 12px,
    linear-gradient(var(--cream), var(--cream)) 50% 0 / 80% 24px,
    linear-gradient(var(--cream), var(--cream)) 50% 0 / 100% 36px;
  background-repeat: no-repeat;
  z-index: 0;
  /* steps carved: widest at top (cream behind), narrowing into section color */
  -webkit-mask: linear-gradient(#000, #000);
          mask: linear-gradient(#000, #000);
}
/* simpler, robust ziggurat: three stacked cream bars, narrowing downward */
.zig-top::before {
  background:
    linear-gradient(var(--cream), var(--cream)) top center / 100% 12px no-repeat,
    linear-gradient(var(--cream), var(--cream)) top 12px center / 72% 12px no-repeat,
    linear-gradient(var(--cream), var(--cream)) top 24px center / 44% 12px no-repeat;
  -webkit-mask: none; mask: none;
}

/* chevron band divider */
.chevron-band {
  height: 26px;
  background:
    repeating-linear-gradient(135deg, var(--gold) 0 9px, transparent 9px 18px),
    repeating-linear-gradient(45deg,  var(--gold) 0 9px, transparent 9px 18px),
    var(--ink);
  background-blend-mode: normal;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

/* ============================================================
   HERO — midnight marquee with rising deco sun
   ============================================================ */
.sec--hero {
  background:
    radial-gradient(140% 90% at 50% 112%, rgba(42,79,178,.5), transparent 60%),
    var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 96px 0 0;
  text-align: center;
}
.hero-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.hero-copy { max-width: 780px; display: flex; flex-direction: column; align-items: center; }
.sec--hero .kicker { color: var(--gold-light); justify-content: center; }
.hero-line {
  display: block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1.25rem, 2.6vw, 1.8rem);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 22px;
}
.hero-sub { font-size: 1.16rem; max-width: 560px; margin-top: 18px; color: #e9e0c8; }
.sec--hero .btn-row { justify-content: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .95rem; color: var(--gold-light);
  border: 1px solid rgba(198,154,69,.5);
  border-radius: 2px;
  padding: 10px 18px;
  margin-bottom: 40px;
  background: rgba(14,21,44,.5);
}
.hero-badge strong { color: var(--cream); }

/* the deco sunburst: layered CSS — rainbow fan rays + concentric brass arcs
   + stepped skyline base. Pure CSS, zero images. */
.hero-sun {
  position: relative;
  width: min(1200px, 160vw);
  height: clamp(150px, 26vw, 300px);
  margin-top: 8px;
  flex: none;
  pointer-events: none;
}
.hero-sun::before {                          /* rainbow fan rays */
  content: ""; position: absolute; inset: 0;
  background:
    repeating-conic-gradient(from -90deg at 50% 100%,
      var(--cobalt)    0deg  7.5deg,  var(--ink) 7.5deg 11.25deg,
      var(--vermilion) 11.25deg 18.75deg, var(--ink) 18.75deg 22.5deg,
      var(--sunflower) 22.5deg 30deg,  var(--ink) 30deg 33.75deg,
      var(--kelly)     33.75deg 41.25deg, var(--ink) 41.25deg 45deg);
  border-radius: 999px 999px 0 0;
  -webkit-mask: radial-gradient(100% 200% at 50% 100%, transparent 0 24%, #000 24.5% 98%, transparent 98.5%);
          mask: radial-gradient(100% 200% at 50% 100%, transparent 0 24%, #000 24.5% 98%, transparent 98.5%);
}
.hero-sun::after {                           /* brass arc rings + core sun */
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(100% 200% at 50% 100%,
      var(--gold-light) 0 6%, var(--ink) 6.5% 8.5%,
      var(--gold) 9% 10%, transparent 10.5%,
      transparent 14%, var(--gold) 14.5% 15.5%, transparent 16%,
      transparent 21%, var(--gold) 21.5% 23%, transparent 23.5%,
      transparent 97%, var(--gold) 97.5% 99%, transparent 99.5%);
  border-radius: 999px 999px 0 0;
}

/* ============================================================
   CARD-NOTE — framed deco plaque ("what it is", thanks pages)
   ============================================================ */
.card-note {
  max-width: 780px;
  margin: 0 auto;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 0 0 0 6px var(--paper), 0 0 0 7px var(--gold), var(--shadow-card);
  padding: 52px clamp(24px, 6vw, 64px) 44px;
  position: relative;
  text-align: center;
}
.card-note::before, .card-note::after {     /* corner diamonds */
  content: "◆ ◆ ◆";
  display: block;
  color: var(--gold);
  letter-spacing: .8em;
  font-size: .62rem;
  text-indent: .8em;
}
.card-note::before { margin-bottom: 22px; }
.card-note::after { margin-top: 26px; }
.card-note h1, .card-note h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.card-note em { font-style: normal; color: var(--vermilion); }
.card-note .lede { font-size: 1.18rem; font-weight: 600; }

/* ============================================================
   THROUGHLINE BAND
   ============================================================ */
.sec--throughline {
  background: var(--ink);
  color: var(--cream);
  padding: 64px 0;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  text-align: center;
}
.throughline {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 2.1rem);
  line-height: 1.5;
  max-width: 900px;
  margin: 0 auto;
}
.hl { padding: 0 .12em; white-space: nowrap; }
.hl--blue   { color: #7d9af0; }
.hl--yellow { color: var(--sunflower); }
.hl--green  { color: #58c98b; }

/* ============================================================
   THE BINS — arch-top deco poster cards
   ============================================================ */
.bin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: stretch;
}
.bin-card {
  position: relative;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-card);
  padding: 0 26px 26px;
  display: flex; flex-direction: column;
  text-align: center;
}
.bin-illo {
  margin: 26px auto 20px;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 5 / 6;
  border: 2px solid var(--ink);
  border-radius: 999px 999px 0 0 / 62% 62% 0 0;   /* deco archway */
  box-shadow: 0 0 0 5px var(--paper), 0 0 0 6px var(--gold);
  overflow: hidden;
  background: var(--ink);
}
.bin-illo svg { width: 100%; height: 100%; }
.bin-tag { font-weight: 600; font-size: 1.02rem; }
.bin-fits { font-size: .95rem; margin-top: auto; }
.ribbon {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  font-size: .7rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
  padding: 7px 16px 5px;
  border: 1px solid var(--ink);
  white-space: nowrap;
}
.ribbon--flagship { background: var(--sunflower); color: var(--ink); }
.ribbon--soon { background: var(--kelly); color: var(--cream); }

/* ============================================================
   SERVICE AREA — cobalt hall with plaque list
   ============================================================ */
.sec--area { border-bottom: 3px solid var(--gold); }
.area-inner {
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) minmax(260px, .9fr);
  gap: 56px;
  align-items: center;
}
.area-copy h2 { color: var(--cream); }
.area-note { font-style: italic; color: var(--gold-light); }
.area-list {
  list-style: none; margin: 0; padding: 34px 34px 30px;
  background: var(--ink);
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 6px var(--ink), 0 0 0 7px rgba(198,154,69,.5);
}
.area-list li {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: .08em;
  padding: 11px 2px;
  display: flex; align-items: center; gap: 14px;
}
.area-list li + li { border-top: 1px solid rgba(198,154,69,.3); }
.area-list li::before {
  content: "◆";
  font-size: .6em;
  color: var(--sunflower);
}
.area-list li:nth-child(4n+2)::before { color: #7d9af0; }
.area-list li:nth-child(4n+3)::before { color: #ef7a5a; }
.area-list li:nth-child(4n)::before   { color: #58c98b; }

/* ============================================================
   ARTIST PROGRAM — medallion steps
   ============================================================ */
.commission-badge {
  text-align: center;
  margin: -10px 0 48px;
}
.commission-amount {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  color: var(--vermilion);
  display: inline-block;
  padding: 6px 26px 2px;
  border-top: 3px double var(--gold);
  border-bottom: 3px double var(--gold);
}
.steps {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  counter-reset: step;
  text-align: center;
}
.step {
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-card);
  padding: 40px 26px 28px;
  position: relative;
}
.step-num {
  position: absolute; top: -26px; left: 50%; transform: translateX(-50%);
  width: 52px; height: 52px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  border-radius: 50%;
  border: 2px solid var(--ink);
  box-shadow: 0 0 0 4px var(--paper), 0 0 0 5px var(--gold);
}
.step:nth-child(1) .step-num { background: var(--cobalt); }
.step:nth-child(2) .step-num { background: var(--vermilion); }
.step:nth-child(3) .step-num { background: var(--kelly); }
.artists-cta { text-align: center; margin-top: 44px; }

/* ============================================================
   GALLERY — deco poster grid
   ============================================================ */
.sec--gallery { background: var(--paper); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 26px;
}
.gal-card {
  border: 2px solid var(--ink);
  background: var(--ink);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.gal-art { aspect-ratio: 4 / 3; }
.gal-art svg { width: 100%; height: 100%; display: block; }
.gal-plate {
  background: var(--cream);
  border-top: 2px solid var(--gold);
  padding: 12px 16px 10px;
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
}
.gal-title { font-weight: 700; letter-spacing: .06em; font-size: .98rem; }
.gal-city {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--vermilion);
  white-space: nowrap;
}
.noscript-note { text-align: center; }

/* Instagram placeholder */
.ig-embed { margin-top: 64px; text-align: center; }
.ig-title {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 1.15rem; letter-spacing: .04em;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 12px;
  margin: 22px 0 26px;
}
.ig-tile {
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  background:
    repeating-linear-gradient(45deg, rgba(21,30,60,.12) 0 8px, transparent 8px 16px);
}
.ig-tile:nth-child(4n+1) { background-color: var(--cobalt); }
.ig-tile:nth-child(4n+2) { background-color: var(--vermilion); }
.ig-tile:nth-child(4n+3) { background-color: var(--sunflower); }
.ig-tile:nth-child(4n)   { background-color: var(--kelly); }

/* ============================================================
   FORMS — paper documents in brass frames
   ============================================================ */
.sec--quote { border-top: 3px solid var(--gold); }
.form-card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 0 0 0 6px var(--paper), 0 0 0 7px var(--gold), var(--shadow-card);
  padding: 40px clamp(22px, 5vw, 52px) 36px;
}
.form-legend { font-size: .9rem; letter-spacing: .04em; color: var(--ink-soft); }
.req { color: var(--vermilion); font-weight: 700; }
.field { margin: 0 0 20px; }
.field label {
  display: block;
  font-weight: 700; font-size: .82rem;
  letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 12px 14px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--cobalt);
  box-shadow: 0 0 0 3px rgba(42,79,178,.28);
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0 24px;
}
.field-set {
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  margin: 6px 0 24px;
  padding: 18px 20px 0;
}
.field-set legend {
  font-weight: 700; font-size: .82rem;
  letter-spacing: .22em; text-transform: uppercase;
  padding: 0 12px;
  color: var(--vermilion);
}
.form-fineprint { text-align: center; font-size: .95rem; margin: 18px 0 0; }

/* ============================================================
   ABOUT / TRUST
   ============================================================ */
.sec--about { background: var(--ink); color: var(--cream); }
.about-inner {
  display: grid;
  grid-template-columns: minmax(300px, 1.25fr) minmax(240px, .75fr);
  gap: 56px;
  align-items: start;
}
.sec--about .kicker { color: var(--gold-light); }
.founder-quote {
  font-size: 1.12rem;
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 22px;
  color: #eee5cd;
}
.founder-attrib { color: var(--gold-light); letter-spacing: .06em; }
.trust-badges {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 18px;
}
.trust-badges li {
  border: 1px solid var(--gold);
  background: var(--ink-deep);
  text-align: center;
  padding: 22px 18px 18px;
}
.trust-big {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.15;
  color: var(--sunflower);
  margin-bottom: 6px;
}
.trust-badges li:nth-child(2) .trust-big { color: #7d9af0; }
.trust-badges li:nth-child(3) .trust-big { color: #ef7a5a; }
.trust-label { font-size: .84rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-light); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.sec--news { background: var(--kelly); color: var(--cream); border-top: 3px solid var(--gold); }
.news-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(280px, .9fr);
  gap: 44px;
  align-items: center;
}
.sec--news h2 { color: var(--cream); }
.news-form { display: flex; flex-wrap: wrap; gap: 14px; align-items: stretch; }
.news-form input[type="email"] {
  flex: 1 1 220px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  padding: 14px 16px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}
.news-status { flex-basis: 100%; margin: 0; font-weight: 600; color: var(--sunflower); }

/* ============================================================
   FOOTER — skyline over midnight
   ============================================================ */
.site-footer {
  background: var(--ink-deep);
  color: var(--cream);
  padding-top: 0;
}
/* stepped skyline strip */
.site-footer::before {
  content: "";
  display: block;
  height: 34px;
  background:
    linear-gradient(var(--ink-deep), var(--ink-deep)) bottom center / 100% 12px no-repeat,
    linear-gradient(var(--ink-deep), var(--ink-deep)) bottom 12px center / 72% 12px no-repeat,
    linear-gradient(var(--ink-deep), var(--ink-deep)) bottom 24px center / 44% 10px no-repeat;
}
.sec--news + .site-footer::before { background-color: var(--kelly); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-top: 30px;
  padding-bottom: 44px;
}
.footer-brand p { color: #cfc6ab; font-size: .98rem; margin-top: 12px; }
.footer-col h2 {
  font-family: var(--font-body);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  color: var(--cream); text-decoration: none;
  padding: 4px 0; font-size: .98rem;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-area { color: #cfc6ab; font-size: .95rem; }
.footer-legal {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px;
  border-top: 1px solid rgba(198,154,69,.35);
  padding-top: 20px; padding-bottom: 26px;
  font-size: .88rem; color: #b7ae95;
}
.footer-legal a { color: var(--gold-light); }

/* ============================================================
   STICKY MOBILE CALL BAR
   ============================================================ */
.callbar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  border-top: 2px solid var(--gold);
}
.callbar-btn {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 1rem;
  letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none;
  padding: 16px 10px calc(14px + env(safe-area-inset-bottom));
  color: var(--cream);
}
.callbar-call { background: var(--ink); }
.callbar-quote { background: var(--vermilion); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .primary-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .area-inner, .about-inner, .news-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .sec { padding: 64px 0; }
  .header-actions .phone-link span { display: none; }
  .header-actions .btn { display: none; }
  .callbar { display: flex; }
  body { padding-bottom: 58px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .hero-sub { font-size: 1.05rem; }
}

/* ============================================================
   MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
