/* ============================================================
   Faye | Quad Cities Wedding & Event Pianist  (v2)
   A concert programme after dark: cinematic photo heroes,
   nocturne indigo with stage-light glow, aged gold, parchment.
   Type: Marcellus / Cormorant Garamond italic / Jost.
   ============================================================ */

:root {
  --nocturne: #131a2c;
  --nocturne-deep: #0c1120;
  --parchment: #f6f1e5;
  --parchment-deep: #ede5d2;
  --brass: #a9834f;
  --brass-bright: #d3b077;
  --gold-hi: #e6cf9a;
  --stagelight: #8aa9d6;
  --ink: #262c3e;
  --ink-soft: #565d72;
  --white: #fdfbf6;
  --max: 1140px;
  --shadow-photo: 0 34px 70px -32px rgba(10, 15, 30, .55);
  --shadow-card: 0 22px 44px -24px rgba(19, 26, 44, .28);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Jost", "Avenir Next", "Segoe UI", sans-serif;
  font-weight: 300;
  font-size: 1.07rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--brass-bright); color: var(--nocturne-deep); }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--brass); text-decoration: none; transition: color .2s ease; }
a:hover { color: #8b6a3c; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

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

/* ---------- Typography ---------- */

h1, h2, h3 {
  font-family: "Marcellus", "Palatino Linotype", Georgia, serif;
  font-weight: 400;
  color: var(--nocturne);
  line-height: 1.12;
  letter-spacing: .012em;
}

h1 { font-size: clamp(2.5rem, 5.6vw, 4.1rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: .55em; }
h3 { font-size: 1.28rem; margin-bottom: .4em; }

.kicker {
  font-family: "Jost", sans-serif;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.1rem;
}
.kicker-line::before {
  content: "";
  width: 46px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--brass-bright));
}

.romantic {
  font-family: "Cormorant Garamond", "Palatino Linotype", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  color: var(--ink-soft);
  line-height: 1.45;
}

.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .romantic { color: var(--stagelight); }
.section-dark p { color: #c9cfdf; }
.section-dark .kicker { color: var(--brass-bright); }

p + p { margin-top: 1em; }

/* ---------- Header ---------- */

.site-head {
  background: rgba(246, 241, 229, .94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(169, 131, 79, .38);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  font-family: "Marcellus", Georgia, serif;
  font-size: 1.6rem;
  color: var(--nocturne);
  letter-spacing: .06em;
  line-height: 1;
}
.brand span {
  font-family: "Jost", sans-serif;
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--brass);
  display: block;
  margin-top: 5px;
}

.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a {
  font-size: .9rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: .07em;
  text-transform: uppercase;
  font-size: .82rem;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
}
.site-nav a:hover { color: var(--brass); }
.site-nav a.active { color: var(--brass); border-bottom-color: var(--brass); }
.site-nav a.btn, .site-nav a.btn:hover { border-bottom: 1px solid transparent; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--brass);
  border-radius: 3px;
  color: var(--nocturne);
  font-family: "Jost", sans-serif;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 9px 16px;
  cursor: pointer;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  background: linear-gradient(180deg, var(--gold-hi) 0%, #c39a5e 58%, var(--brass) 100%);
  color: #191f33;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: .88rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 16px 38px;
  border: 1px solid #caa568;
  border-radius: 3px;
  cursor: pointer;
  box-shadow: 0 14px 30px -14px rgba(169, 131, 79, .75);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 20px 38px -16px rgba(169, 131, 79, .85);
  color: #191f33;
}

.btn-ghost {
  background: transparent;
  color: var(--brass-bright);
  border: 1px solid rgba(211, 176, 119, .8);
  box-shadow: none;
}
.btn-ghost:hover {
  background: rgba(211, 176, 119, .12);
  filter: none;
  color: var(--gold-hi);
  box-shadow: none;
}
section:not(.section-dark) .btn-ghost, .site-head .btn-ghost { color: var(--brass); border-color: var(--brass); }

.btn-small { padding: 11px 24px; font-size: .76rem; }

/* ---------- Cinematic hero ---------- */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 86vh;
  min-height: 86svh;
  overflow: hidden;
  background: var(--nocturne-deep);
}
.hero-sub { min-height: 64vh; min-height: 64svh; }

.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(96deg, rgba(8, 12, 24, .95) 0%, rgba(10, 15, 29, .86) 34%, rgba(12, 17, 32, .45) 68%, rgba(12, 17, 32, .6) 100%),
    radial-gradient(ellipse at 78% 24%, rgba(138, 169, 214, .22), transparent 58%);
}

.hero .wrap { position: relative; z-index: 2; width: 100%; }
.hero-inner { max-width: 680px; padding: 120px 0 130px; }
.hero-sub .hero-inner { padding: 90px 0 100px; }

.hero h1 {
  color: var(--white);
  margin-bottom: .35em;
  text-shadow: 0 3px 40px rgba(5, 8, 18, .55);
}
.hero .romantic { color: var(--stagelight); margin-bottom: 1.3em; }
.hero p.lede { color: #ccd2e1; max-width: 52ch; margin-bottom: 2.1em; font-size: 1.1rem; }
.hero .kicker { color: var(--brass-bright); }

.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.hero-phone { font-size: .95rem; color: #a7aec4; letter-spacing: .05em; margin-top: 1.8rem; }
.hero-phone a { color: var(--brass-bright); }
.hero-phone a:hover { color: var(--gold-hi); }

/* ---------- Sections ---------- */

section { padding: 96px 0; }
.section-dark {
  background:
    radial-gradient(ellipse at 18% 0%, rgba(138, 169, 214, .13), transparent 52%),
    linear-gradient(180deg, var(--nocturne) 0%, var(--nocturne-deep) 100%);
  color: #c9cfdf;
}
.section-tint { background: var(--parchment-deep); }

.center { text-align: center; }
.center .kicker-line::after {
  content: "";
  width: 46px;
  height: 1px;
  background: linear-gradient(to left, transparent, var(--brass-bright));
}
.narrow { max-width: 740px; margin-left: auto; margin-right: auto; }

/* Ornament divider (moth flourish) */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 auto 2.4rem;
  color: var(--brass);
}
.section-dark .ornament { color: var(--brass-bright); }
.ornament::before, .ornament::after {
  content: "";
  height: 1px;
  width: 84px;
  background: linear-gradient(to right, transparent, var(--brass));
}
.ornament::after { background: linear-gradient(to left, transparent, var(--brass)); }
.ornament svg { width: 38px; height: 28px; }

/* ---------- Trust strip ---------- */

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(169, 131, 79, .45);
  border-bottom: 1px solid rgba(169, 131, 79, .45);
}
.trust > div { padding: 40px 20px; text-align: center; }
.trust > div + div { border-left: 1px solid rgba(169, 131, 79, .35); }
.trust .num {
  font-family: "Marcellus", Georgia, serif;
  font-size: 2.6rem;
  color: var(--nocturne);
  display: block;
  line-height: 1.1;
}
.trust .lbl {
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 8px;
  display: inline-block;
}

/* ---------- Cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 26px;
  margin-top: 2.6rem;
}
.card {
  background: var(--white);
  border: 1px solid rgba(169, 131, 79, .28);
  border-radius: 4px;
  padding: 36px 30px 32px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--brass-bright), transparent);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 30px 56px -26px rgba(19, 26, 44, .38); }
.card p { font-size: .98rem; color: var(--ink-soft); }
.card .price {
  display: block;
  margin-top: 16px;
  font-family: "Marcellus", Georgia, serif;
  color: var(--brass);
  font-size: 1.12rem;
  letter-spacing: .03em;
}

/* ---------- Programme (song list with leader dots) ---------- */

.programme { max-width: 780px; margin: 0 auto; }
.prog-group { margin-bottom: 2.8rem; }
.prog-group h3 {
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .95rem;
  color: var(--brass);
  border-bottom: 1px solid rgba(169, 131, 79, .45);
  padding-bottom: 12px;
  margin-bottom: 20px;
}
.section-dark .prog-group h3 { color: var(--brass-bright); }
.prog-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 8px 0;
  font-size: 1.02rem;
}
.section-dark .prog-item { color: #dde2ef; }
.prog-item .leader {
  flex: 1;
  border-bottom: 1px dotted rgba(169, 131, 79, .6);
  transform: translateY(-4px);
}
.prog-item .composer {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.08rem;
  color: var(--ink-soft);
  white-space: nowrap;
}
.section-dark .prog-item .composer { color: var(--stagelight); }

/* ---------- Steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 2.6rem;
  counter-reset: step;
}
.step { position: relative; padding-top: 22px; border-top: 1px solid rgba(169, 131, 79, .4); }
.step::before {
  counter-increment: step;
  content: counter(step, upper-roman);
  font-family: "Marcellus", Georgia, serif;
  font-size: .95rem;
  letter-spacing: .24em;
  color: var(--brass);
  display: block;
  margin-bottom: 12px;
}
.step h3 { font-size: 1.18rem; }
.step p { font-size: .98rem; color: var(--ink-soft); }
.section-dark .step p { color: #c2c8da; }
.section-dark .step { border-top-color: rgba(211, 176, 119, .35); }

/* ---------- Split (image + text) ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.frame { position: relative; }
.frame img {
  border-radius: 4px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-photo);
}
.frame::after {
  content: "";
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1px solid rgba(169, 131, 79, .65);
  border-radius: 4px;
  z-index: 1;
}

/* ---------- Gallery ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2.4rem;
}
.gallery img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-card);
}

/* ---------- Testimonials ---------- */

.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: 26px;
  margin-top: 2.4rem;
}
.quote {
  background: var(--white);
  border-left: 3px solid var(--brass);
  padding: 32px;
  border-radius: 4px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.quote p { font-family: "Cormorant Garamond", Georgia, serif; font-style: italic; font-size: 1.25rem; color: var(--ink); line-height: 1.5; }
.quote cite {
  display: block;
  margin-top: auto;
  padding-top: 16px;
  font-family: "Jost", sans-serif;
  font-style: normal;
  font-size: .76rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brass);
}

/* ---------- FAQ ---------- */

.faq { max-width: 780px; margin: 2.2rem auto 0; }
.faq details {
  background: var(--white);
  border: 1px solid rgba(169, 131, 79, .3);
  border-radius: 4px;
  padding: 4px 26px;
  margin-bottom: 12px;
  box-shadow: 0 12px 26px -18px rgba(19, 26, 44, .25);
}
.faq summary {
  font-family: "Marcellus", Georgia, serif;
  font-size: 1.12rem;
  color: var(--nocturne);
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brass); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { padding: 0 0 20px; color: var(--ink-soft); }

/* ---------- Forms ---------- */

.form-card {
  background: var(--white);
  border: 1px solid rgba(169, 131, 79, .32);
  border-radius: 5px;
  padding: 48px;
  box-shadow: 0 34px 70px -34px rgba(19, 26, 44, .4);
  position: relative;
}
.form-card::before {
  content: "";
  position: absolute;
  top: 0; left: 40px; right: 40px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--brass-bright), transparent);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 26px;
}
.form-sect {
  grid-column: 1 / -1;
  font-family: "Marcellus", Georgia, serif;
  font-size: 1.05rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--nocturne);
  border-bottom: 1px solid rgba(169, 131, 79, .45);
  padding-bottom: 10px;
  margin-top: 10px;
}
.form-sect:first-child { margin-top: 0; }
.form-sect span {
  font-family: "Jost", sans-serif;
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: none;
  color: var(--ink-soft);
  margin-left: 12px;
}
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 9px;
}
.field label em { color: var(--brass); font-style: normal; }
.field input, .field select, .field textarea {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--parchment);
  border: 1px solid rgba(169, 131, 79, .45);
  border-radius: 3px;
  padding: 14px 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(211, 176, 119, .25);
  outline: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .9rem; color: var(--ink-soft); margin-top: 20px; }

/* ---------- Video ---------- */

.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 900px;
  margin: 2.4rem auto 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-photo);
  background: #000;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- CTA band ---------- */

.cta-band { text-align: center; }
.cta-band .btn { margin-top: 1.6rem; }

/* ---------- Footer ---------- */

.site-foot {
  background: var(--nocturne-deep);
  color: #a6adc3;
  padding: 72px 0 36px;
  font-size: .95rem;
  border-top: 2px solid var(--brass);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 44px;
}
.site-foot h3 {
  color: var(--white);
  font-size: .92rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-foot a { color: var(--brass-bright); }
.site-foot a:hover { color: var(--gold-hi); }
.foot-links { list-style: none; }
.foot-links li { margin-bottom: 9px; }
.foot-small {
  border-top: 1px solid rgba(169, 131, 79, .3);
  padding-top: 26px;
  font-size: .82rem;
  color: #7b8299;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Blog ---------- */

.post-list { display: grid; gap: 30px; margin-top: 2.6rem; }
.post-card {
  background: var(--white);
  border: 1px solid rgba(169, 131, 79, .28);
  border-left: 3px solid var(--brass);
  border-radius: 4px;
  padding: 36px 40px;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 28px 52px -26px rgba(19, 26, 44, .36); }
.post-card .meta {
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass);
}
.post-card h3 { margin-top: 10px; }
.post-card h3 a { color: var(--nocturne); }
.post-card h3 a:hover { color: var(--brass); }
.post-card p { color: var(--ink-soft); font-size: .98rem; }

.article { max-width: 780px; margin: 0 auto; }
.article .meta {
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.1rem;
  display: block;
}
.article h1 { margin-bottom: .6em; font-size: clamp(2.1rem, 4.4vw, 3.1rem); }
.article h2 { margin-top: 2.1em; font-size: 1.65rem; }
.article h3 { margin-top: 1.7em; }
.article ul, .article ol { margin: 1em 0 1em 1.4em; }
.article li { margin-bottom: .55em; }
.article .lede-p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ink-soft);
  margin-bottom: 1.7em;
  line-height: 1.5;
}
.article img { margin: 2em 0; border-radius: 4px; box-shadow: var(--shadow-card); }
.article .cta-inline {
  background: var(--parchment-deep);
  border-left: 3px solid var(--brass);
  padding: 26px 30px;
  margin: 2.6em 0;
  border-radius: 4px;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  section { padding: 68px 0; }
  .hero { min-height: 72vh; min-height: 72svh; }
  .hero-inner { padding: 84px 0 92px; }
  .hero-sub .hero-inner { padding: 70px 0 78px; }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split.reverse { direction: ltr; }
  .steps, .gallery { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr; }
  .trust > div + div { border-left: none; border-top: 1px solid rgba(169, 131, 79, .35); }
  .gallery img { height: 340px; }
  .foot-grid { grid-template-columns: 1fr; gap: 34px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 32px 24px; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--parchment);
    border-bottom: 1px solid rgba(169, 131, 79, .38);
    flex-direction: column;
    padding: 22px 28px 30px;
    gap: 20px;
    align-items: flex-start;
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}


/* ---------- Mobile extras ---------- */

@media (max-width: 900px) {
  .hero-veil {
    background:
      linear-gradient(180deg, rgba(8, 12, 24, .92) 0%, rgba(10, 15, 29, .8) 52%, rgba(12, 17, 32, .9) 100%),
      radial-gradient(ellipse at 70% 20%, rgba(138, 169, 214, .16), transparent 60%);
  }
}

@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .hero h1 { font-size: clamp(2.1rem, 9vw, 2.9rem); }
  .hero-cta { width: 100%; }
  .hero-cta .btn { width: 100%; text-align: center; }
  .btn { padding: 15px 26px; }
  .trust .num { font-size: 2.2rem; }
  .prog-item { font-size: .97rem; gap: 9px; }
  .prog-item .composer { font-size: 1rem; }
  .prog-item .title { overflow-wrap: anywhere; }
  .form-card { padding: 28px 18px; }
  .form-card::before { left: 18px; right: 18px; }
  .form-card .btn { width: 100%; text-align: center; }
  .quote { padding: 24px; }
  .post-card { padding: 28px 24px; }
}

/* ---------- Dark mode ---------- */

@media (prefers-color-scheme: dark) {
:root {
  --parchment: #0f1526;
  --parchment-deep: #131a2e;
  --white: #171f36;
  --ink: #e8e3d5;
  --ink-soft: #aab1c6;
  --shadow-card: 0 22px 44px -24px rgba(0, 0, 0, .55);
  --shadow-photo: 0 34px 70px -32px rgba(0, 0, 0, .7);
  color-scheme: dark;
}
h1, h2, h3 { color: #f3edde; }
a:hover { color: var(--gold-hi); }
.site-head { background: rgba(13, 18, 33, .92); border-bottom-color: rgba(211, 176, 119, .3); }
.brand { color: #f3edde; }
.site-nav a { color: #dfe3ee; }
.site-nav a:hover { color: var(--brass-bright); }
.site-nav a.active { color: var(--brass-bright); border-bottom-color: var(--brass-bright); }
.nav-toggle { color: #f3edde; }
.kicker { color: var(--brass-bright); }
.ornament { color: var(--brass-bright); }
.trust { border-top-color: rgba(211, 176, 119, .3); border-bottom-color: rgba(211, 176, 119, .3); }
.trust > div + div { border-left-color: rgba(211, 176, 119, .22); }
.trust .num { color: #f3edde; }
.card { border-color: rgba(211, 176, 119, .22); }
.card .price { color: var(--brass-bright); }
.section-dark { border-top: 1px solid rgba(169, 131, 79, .22); border-bottom: 1px solid rgba(169, 131, 79, .22); }
.prog-group h3 { color: var(--brass-bright); border-bottom-color: rgba(211, 176, 119, .35); }
.prog-item .leader { border-bottom-color: rgba(211, 176, 119, .45); }
.prog-item .composer { color: var(--stagelight); }
.step { border-top-color: rgba(211, 176, 119, .3); }
.faq details { border-color: rgba(211, 176, 119, .25); }
.faq summary { color: #f3edde; }
.quote p { color: var(--ink); }
.post-card { border-color: rgba(211, 176, 119, .22); }
.post-card h3 a { color: #f3edde; }
.post-card h3 a:hover { color: var(--brass-bright); }
.field input, .field select, .field textarea { background: #0d1322; border-color: rgba(211, 176, 119, .35); color: var(--ink); }
.form-card { border-color: rgba(211, 176, 119, .28); }
.article .cta-inline { border-left-color: var(--brass-bright); }
section:not(.section-dark) .btn-ghost { color: var(--brass-bright); border-color: rgba(211, 176, 119, .7); }
@media (max-width: 900px) {
  .site-nav { background: #10172a; border-bottom-color: rgba(211, 176, 119, .3); }
}
}
