/* site/site.css — Rai Wealth Management marketing site
   Layered over ../colors_and_type.css
   Spec: white-bg nav with gold links, dark navy section bands,
         page headings in gold on white. */

html, body { background: #ffffff; }

/* ── Shell ───────────────────────────────────────────────── */
.site { min-height: 100vh; display: flex; flex-direction: column; }
.site-main { flex: 1; }

/* ── Top Nav (white bg, gold links) ──────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--hairline);
  height: 88px;
}
.nav-inner {
  max-width: 1360px;
  height: 100%;
  margin-inline: auto;
  padding-inline: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo img {
  height: 64px;
  width: auto;
  max-width: 100%;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}
.nav-links { display: flex; gap: 28px; align-items: center; flex-wrap: nowrap; }
.nav-link {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  white-space: nowrap;
  transition: color var(--duration-fast) var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transition: left var(--duration) var(--ease), right var(--duration) var(--ease);
}
.nav-link:hover { color: var(--gold-deep); }
.nav-link:hover::after,
.nav-link.is-active::after { left: 0; right: 0; }
.nav-link.is-active { color: var(--gold-deep); }

/* ── Page heading band (gold heading on white) ───────────── */
.page-heading {
  background: #ffffff;
  padding: 96px 0 72px;
  text-align: center;
}
.page-heading .ph-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
  display: inline-block;
}
.page-heading h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 76px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--gold);
}
.page-heading .ph-rule {
  display: block;
  width: 64px;
  height: 2px;
  background: var(--gold);
  margin: 28px auto 0;
}
.page-heading .ph-sub {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  color: var(--ink);
  margin-top: 24px;
  letter-spacing: -0.005em;
}

/* ── Navy section ────────────────────────────────────────── */
.section-navy {
  background: var(--navy);
  color: var(--on-navy);
  padding: 112px 0;
}
.section-white {
  background: #ffffff;
  padding: 112px 0;
}
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 56px;
}

/* ── Section head (gold heading on navy) ─────────────────── */
.s-head { text-align: center; margin-bottom: 64px; }
.s-head .eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: block;
  margin-bottom: 18px;
}
.s-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--gold);
}
.s-head .rule {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 24px auto 0;
}
.s-head .lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--on-navy);
  margin-top: 22px;
  letter-spacing: -0.005em;
}

/* on-navy variants for narrative copy */
.section-navy p { color: var(--on-navy); }
.copy-navy {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  color: var(--on-navy);
}
.copy-navy.muted { color: var(--on-navy-soft); }

/* ── Buttons (this site) ─────────────────────────────────── */
.btn-gold-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 36px;
  background: var(--gold);
  color: #ffffff;
  border: none;
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--duration-fast) var(--ease), transform var(--duration-fast) var(--ease);
}
.btn-gold-solid:hover { background: var(--gold-deep); }
.btn-gold-solid:active { transform: translateY(1px); }

.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 28px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--duration-fast) var(--ease), color var(--duration-fast) var(--ease);
}
.btn-gold-outline:hover { background: var(--gold); color: var(--navy); }

/* ── Home — Hero ─────────────────────────────────────────── */
.home-hero {
  background: #ffffff;
  padding: 120px 0 144px;
  text-align: center;
  position: relative;
}
.home-hero .pillar {
  height: 132px;
  width: auto;
  display: block;
  margin: 0 auto 40px;
  opacity: 0.95;
}
.home-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 92px;
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--gold);
}
.home-hero .hero-divider {
  display: block;
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 36px auto;
}
.home-hero .hero-tagline {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 30px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.home-hero .hero-tagline .pipe {
  color: var(--gold);
  font-style: normal;
  margin: 0 14px;
  font-weight: 400;
}

/* ── Editorial photo (shared) — warm-toned, gold hairline ── */
.ed-photo {
  position: relative;
  display: block;
  margin: 0;
  overflow: hidden;
  background: var(--navy-soft);
  border: 1px solid var(--hairline-navy);
  border-radius: 2px;
  width: 100%;
}
.ed-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.02) brightness(0.92) sepia(0.08);
  transition: transform 600ms var(--ease), filter var(--duration) var(--ease);
}
.ed-photo:hover img { transform: scale(1.03); filter: saturate(0.88) contrast(1.04) brightness(0.95) sepia(0.06); }
.ed-photo .ed-photo-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(24,43,73,0) 55%, rgba(14,31,56,0.18) 100%);
  pointer-events: none;
}
.ed-photo .ed-photo-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
  opacity: 0.65;
  text-align: center;
  padding: 16px;
}
.ed-photo--missing { background: var(--navy-deep); }
.ed-photo--missing .ed-photo-fallback { display: flex; }

/* ── Values 3-up ─────────────────────────────────────────── */
.values { padding: 112px 0 128px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 16px;
  align-items: stretch;
}
.value-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  height: 100%;
}
.value-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 38px;
  letter-spacing: -0.01em;
  color: var(--gold);
  margin-bottom: 12px;
}
.value-card .v-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 22px;
}
.value-card p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--on-navy);
  margin-bottom: 36px;
}
.value-card .ed-photo { margin-top: auto; }

/* ── About on home (narrative band) ──────────────────────── */
.about-band { padding: 112px 0; }
.about-band .narrative {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.about-band .narrative p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--on-navy);
}

/* ── Let's Work Together (white CTA section) ─────────────── */
.work-together {
  padding: 144px 0;
  background: #ffffff;
  text-align: center;
}
.work-together h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 64px;
  letter-spacing: -0.015em;
  color: var(--gold);
}
.work-together .wt-rule {
  display: block;
  width: 64px;
  height: 2px;
  background: var(--gold);
  margin: 28px auto 36px;
}
.work-together p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 44px;
  letter-spacing: -0.005em;
}

/* ── About page — Mission & Vision ───────────────────────── */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  margin-top: 24px;
}
.mv-block .mv-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.mv-block h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 48px;
  letter-spacing: -0.015em;
  color: var(--gold);
  margin: 16px 0 20px;
}
.mv-block .mv-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}
.mv-block p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: var(--on-navy);
}

/* ── About page — Founder ────────────────────────────────── */
.founder {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.founder .founder-copy h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 56px;
  letter-spacing: -0.015em;
  color: var(--gold);
  line-height: 1.05;
}
.founder .founder-copy .founder-rule {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 28px 0 32px;
}
.founder .founder-copy p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
  color: var(--on-navy);
  margin-bottom: 22px;
}
.founder .founder-copy p:last-child { margin-bottom: 0; }
.founder .founder-portrait {
  position: sticky;
  top: 120px;
}
.founder .founder-portrait .portrait-frame {
  border: 1px solid var(--gold);
  padding: 14px;
  border-radius: 2px;
  background: var(--navy-soft);
}
.founder .founder-portrait img {
  width: 100%;
  display: block;
  border-radius: 2px;
  filter: saturate(0.92) contrast(1.02);
}
.founder .founder-portrait .name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--gold);
  margin-top: 24px;
  text-align: center;
}
.founder .founder-portrait .title {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--on-navy-soft);
  margin-top: 8px;
  text-align: center;
}

/* ── Services 3x2 grid ───────────────────────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.svc-card {
  background: var(--navy-soft);
  border: 1px solid var(--hairline-navy);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.svc-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.svc-card .ed-photo {
  border: none;
  border-bottom: 1px solid var(--hairline-navy);
  border-radius: 0;
}
.svc-card .svc-body { padding: 36px 32px 40px; }
.svc-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -0.01em;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 14px;
}
.svc-card .svc-rule {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 22px;
}
.svc-card p {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--on-navy);
}
.svc-card p + p { margin-top: 16px; }
.svc-link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in oklab, var(--gold) 55%, transparent);
  transition: border-color var(--duration-fast) var(--ease);
}
.svc-link:hover { border-bottom-color: var(--gold); }

/* ── Case study card ─────────────────────────────────────── */
.cs-card { /* extends svc-card */ }
.cs-card .cs-actions { margin-top: 24px; }
.cs-card .cs-expand {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline-navy);
  animation: cs-fade 320ms var(--ease);
}
@keyframes cs-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.cs-card .cs-expand h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 10px;
}
.cs-card .cs-expand p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--on-navy);
}
.cs-card .cs-placeholder {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px;
  color: var(--on-navy-soft);
  font-style: italic;
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-empty {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 32px;
  border: 1px dashed var(--gold);
  border-radius: 2px;
  background: var(--navy-soft);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 16px;
}
.t-quote {
  background: var(--navy-soft);
  border: 1px solid var(--hairline-navy);
  border-radius: 2px;
  padding: 48px 44px;
  position: relative;
}
.t-quote::before {
  content: "\201C";
  position: absolute;
  top: 16px; left: 24px;
  font-family: var(--font-display);
  font-size: 110px;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
}
.t-quote .q-text {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.5;
  color: var(--on-navy);
  letter-spacing: -0.005em;
  font-style: italic;
  position: relative;
  margin-bottom: 28px;
}
.t-quote .q-meta {
  display: flex; flex-direction: column; gap: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline-navy);
}
.t-quote .q-name {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
}
.t-quote .q-role {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--on-navy-soft);
}

/* ── Contact ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 36px; }
.contact-info .ci-block .ci-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 10px;
}
.contact-info .ci-block .ci-value {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--on-navy);
  letter-spacing: -0.005em;
  line-height: 1.4;
}
.contact-info .ci-block .ci-value a {
  color: var(--on-navy);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color var(--duration-fast) var(--ease);
}
.contact-info .ci-block .ci-value a:hover { color: var(--gold); }
.contact-info .ci-block address {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--on-navy);
  line-height: 1.5;
  letter-spacing: -0.005em;
}
.contact-info .qr-frame {
  align-self: flex-start;
  width: 200px;
  height: 200px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: #ffffff;
  padding: 12px;
  margin-top: 8px;
  box-sizing: border-box;
}
.contact-info .qr-frame .qr-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* Contact form */
.contact-form {
  background: var(--navy-soft);
  border: 1px solid var(--hairline-navy);
  border-radius: 2px;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-form .cf-row { display: flex; flex-direction: column; gap: 8px; }
.contact-form label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 500;
}
.contact-form label .req { color: var(--gold); margin-left: 4px; }
.contact-form input,
.contact-form textarea {
  background: var(--navy-deep);
  border: 1px solid var(--hairline-navy);
  border-radius: 2px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--on-navy);
  transition: border-color var(--duration-fast) var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(173, 140, 37, 0.18);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--on-navy-soft); opacity: 0.6; }
.contact-form textarea { min-height: 140px; resize: vertical; font-family: var(--font-body); }
.contact-form .cf-submit { margin-top: 12px; align-self: flex-start; }
.cf-success {
  background: rgba(173, 140, 37, 0.12);
  border: 1px solid var(--gold);
  padding: 16px 18px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--on-navy);
  display: flex; gap: 12px; align-items: center;
}
.cf-success .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--gold); flex-shrink: 0; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--navy-deep);
  color: var(--on-navy-soft);
  padding: 56px 0 44px;
  border-top: 1px solid rgba(173, 140, 37, 0.18);
}
.footer-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
}
.footer-left {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.85;
  color: var(--on-navy);
}
.footer-left .f-name {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--gold);
  letter-spacing: -0.005em;
  margin-bottom: 8px;
}
.footer-left .f-row a {
  color: var(--on-navy);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--duration-fast) var(--ease);
}
.footer-left .f-row a:hover { border-bottom-color: var(--gold); }
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.footer-right a.linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  color: var(--gold);
  background: transparent;
  transition: background var(--duration-fast) var(--ease), color var(--duration-fast) var(--ease);
}
.footer-right a.linkedin:hover { background: var(--gold); color: var(--navy-deep); }
.footer-right a.linkedin svg { width: 22px; height: 22px; }
.footer-right .f-meta {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-navy-soft);
}

/* ── Animations ──────────────────────────────────────────── */

/* Nav slides down on first load */
.nav { animation: navSlide 500ms var(--ease) both; }
@keyframes navSlide {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Page fade-in — replays on every route change (React key trick) */
@keyframes pageFade {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.site-main { animation: pageFade 380ms var(--ease) both; }

/* Home hero text — elegant stagger */
@keyframes heroUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.home-hero h1           { animation: heroUp 720ms 160ms var(--ease) both; }
.home-hero .hero-divider { animation: heroUp 560ms 380ms var(--ease) both; }
.home-hero .hero-tagline { animation: heroUp 560ms 520ms var(--ease) both; }

/* Scroll reveal — single element */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 680ms var(--ease), transform 680ms var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Stagger grid — children reveal one by one as parent enters view */
.stagger-grid > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 580ms var(--ease), transform 580ms var(--ease);
}
.stagger-grid.is-visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay:   0ms; }
.stagger-grid.is-visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay:  80ms; }
.stagger-grid.is-visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 160ms; }
.stagger-grid.is-visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 240ms; }
.stagger-grid.is-visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 320ms; }
.stagger-grid.is-visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 400ms; }

/* Mobile-ish behavior */
@media (max-width: 900px) {
  .nav-inner { padding-inline: 24px; gap: 16px; }
  .nav-links { gap: 18px; }
  .home-hero h1 { font-size: 56px; }
  .home-hero .hero-tagline { font-size: 22px; }
  .values-grid, .svc-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .mv-grid, .founder, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .container { padding-inline: 24px; }
  .footer-inner { grid-template-columns: 1fr; padding-inline: 24px; }
  .footer-right { align-items: flex-start; }
}

/* ── Featured newsletter (Why It Matters) ───────────────── */
.newsletter-feature {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--hairline-navy);
  border-top: 2px solid var(--gold);
  border-radius: 2px;
  background: var(--navy-soft);
  padding: 72px 56px 76px;
}
.newsletter-feature .nl-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-navy-soft);
  margin-bottom: 18px;
}
.newsletter-feature .nl-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--gold);
}
.newsletter-feature .nl-rule {
  display: block;
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 26px auto 28px;
}
.newsletter-feature .nl-lede {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--on-navy);
  max-width: 560px;
  margin: 0 auto;
  text-wrap: pretty;
}
.newsletter-feature .nl-actions {
  margin-top: 38px;
}
@media (max-width: 720px) {
  .newsletter-feature { padding: 52px 28px 56px; }
  .newsletter-feature .nl-title { font-size: 34px; }
}
