/* ============================================================
   Étude Notariale Toussaint, Me Sandra TOUSSAINT, Notaire
   style.css — Feuille de style partagée FR + EN
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --navy:        #0d1b2a;
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --bg-light:    #f8f6f2;
  --border-gold: rgba(201, 168, 76, 0.28);
  --gray-text:   #6b7280;
}

/* ── BASE ── */
body {
  font-family: 'Jost', sans-serif;
  color: var(--navy);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
}

/* ── SECTION LABELS ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ── BUTTONS ── */
.btn-gold {
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: .85rem 2.2rem;
  border-radius: 0;
  transition: all .3s;
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-outline-gold {
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .5);
  padding: .85rem 2.2rem;
  border-radius: 0;
  transition: all .3s;
}
.btn-outline-gold:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-navy {
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--navy);
  color: #fff;
  border: none;
  padding: .85rem 2.2rem;
  border-radius: 0;
  transition: all .3s;
}
.btn-navy:hover {
  background: #162032;
  color: #fff;
  transform: translateY(-2px);
}

/* ── LANGUAGE SWITCH ── */
.lang-switch {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .3rem .7rem;
  border: 1px solid rgba(255, 255, 255, .45);
  color: rgba(255, 255, 255, .85);
  transition: all .3s;
  border-radius: 0;
}
.lang-switch:hover {
  border-color: var(--gold);
  color: var(--gold);
}
#mainNav.scrolled .lang-switch {
  border-color: rgba(13, 27, 42, .35);
  color: var(--navy);
}
#mainNav.scrolled .lang-switch:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── NAVBAR ── */
#mainNav {
  transition: background .4s, padding .4s, box-shadow .4s;
  background: transparent;
  padding: 1.2rem 0;
}
#mainNav.scrolled {
  background: rgba(255, 255, 255, .97) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--border-gold);
  padding: .7rem 0;
}
.navbar-brand .brand-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .04em;
  display: block;
  line-height: 1.1;
  transition: color .4s;
}
.navbar-brand .brand-sub {
  font-size: .90rem;
  letter-spacing: .2em;
  text-transform: none;
  color: var(--gold);
  font-weight: 600;
}
#mainNav.scrolled .brand-main {
  color: var(--navy);
}

/* ── NAVBAR LOGO IMAGE ──
   Location : /images/logo.png  (inside public_html/images/ on Bluehost)
   Size     : 120 × 60 px max, transparent background, PNG recommended
   To change: simply replace /images/logo.png on Bluehost — no CSS edit needed
   Fallback : if logo.png is missing the image hides automatically (onerror in HTML)
              and only the text name is displayed instead               */
.navbar-logo {
  height: 90px;        /* display height — increase or decrease freely  */
  width: auto;         /* keeps the original aspect ratio               */
  object-fit: contain;
  transition: filter .4s, opacity .4s;
  /* On the transparent hero navbar the logo is forced white so it shows
     on any dark background photo */
  filter: brightness(0) invert(1);
}
/* Once the navbar turns white on scroll, show the logo in its real colours */
#mainNav.scrolled .navbar-logo {
  filter: none;
}

.nav-link {
  font-size: .76rem !important;
  font-weight: 400 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, .85) !important;
  padding: .4rem 1rem !important;
  transition: color .3s !important;
}
#mainNav.scrolled .nav-link {
  color: var(--navy) !important;
}
.nav-link:hover {
  color: var(--gold) !important;
}
.navbar-toggler {
  border-color: rgba(255, 255, 255, .4);
}
#mainNav.scrolled .navbar-toggler {
  border-color: var(--navy);
}
.navbar-toggler-icon {
  filter: invert(1);
}
#mainNav.scrolled .navbar-toggler-icon {
  filter: none;
}

/* ── HERO CAROUSEL ── */
#heroCarousel {
  height: 100vh;
  min-height: 640px;
}
.hero-slide {
  height: 100vh;
  min-height: 640px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 27, 42, .68) 0%,
    rgba(13, 27, 42, .45) 55%,
    rgba(13, 27, 42, .78) 100%
  );
}
.slide-1 { background-image: url('/images/slide-1.png'); }
.slide-2 { background-image: url('/images/slide-2.png'); }
.slide-3 { background-image: url('/images/slide-3.png'); }

.hero-body {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
}
.hero-badge {
  display: inline-block;
  font-size: .95rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: .38rem 1.1rem;
  margin-bottom: 1.8rem;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1.2rem;
  animation: fadeUp .9s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: .95rem;
  font-weight: 300;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .75);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  animation: fadeUp .9s .2s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
#heroCarousel .carousel-indicators button {
  width: 36px;
  height: 2px;
  border-radius: 0;
  background: rgba(255, 255, 255, .4);
  border: none;
  opacity: 1;
  transition: all .3s;
}
#heroCarousel .carousel-indicators .active {
  background: var(--gold);
  width: 54px;
}

/* ── VISION BAND ── */
#vision {
  background: var(--navy);
  padding: 4rem 0;
}
.vision-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto;
}
.vision-quote span {
  color: var(--gold);
}

/* ── SERVICES ── */
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: default;
}
.svc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}
.service-card:hover .svc-bg {
  transform: scale(1.07);
}
.svc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,.94) 0%, rgba(13,27,42,.3) 55%, transparent 100%);
  transition: background .4s;
}
.service-card:hover .svc-overlay {
  background: linear-gradient(to top, rgba(13,27,42,.97) 0%, rgba(13,27,42,.55) 100%);
}
.svc-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.8rem 1.5rem;
  z-index: 2;
}
.svc-icon {
  font-size: 1.8rem;
  color: #fff;
  display: block;
  margin-bottom: .6rem;
}
.svc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: .5rem;
}
.svc-desc {
  font-size: .76rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .5s ease, opacity .4s;
}
.service-card:hover .svc-desc {
  max-height: 160px;
  opacity: 1;
}
.svc-link {
  display: inline-block;
  margin-top: .8rem;
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition: all .4s ease .1s;
}
.service-card:hover .svc-link {
  opacity: 1;
  transform: translateY(0);
}

/* Service background images */
.svc-img-1 { background-image: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=800&q=80'); }
.svc-img-2 { background-image: url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=800&q=80'); }
.svc-img-3 { background-image: url(/images/svc-img-3.jpg); }
.svc-img-4 { background-image: url(/images/svc-img-4.jpg); }

/* ── ABOUT ── */
.about-photo-wrap {
  position: relative;
}
.about-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: url('/images/about-photo.png') center / cover;
  display: block;
}
.about-photo-frame {
  position: absolute;
  top: -18px;
  left: -18px;
  right: 18px;
  bottom: 18px;
  border: 1px solid var(--gold);
  z-index: -1;
}
.about-years-badge {
  position: absolute;
  bottom: -1.2rem;
  right: -1.2rem;
  background: var(--navy);
  padding: 1.2rem 1.6rem;
  text-align: center;
}
.badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.badge-label {
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  display: block;
  margin-top: .3rem;
}
.about-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  margin: .5rem 0 .4rem;
}
.about-role {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
  display: block;
}
.about-bio {
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.9;
  color: #4a5568;
}
.stat-item {
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: .65rem;
  letter-spacing: .1em;
  color: var(--gray-text);
  margin-top: .2rem;
}
.cert-pill {
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border: 1px solid var(--border-gold);
  color: var(--navy);
  display: inline-block;
  margin: .25rem .2rem;
}

/* ── ABOUT TABS ── */
.about-tabs {
  gap: 0;
  border-bottom: 1px solid var(--border-gold);
  margin-bottom: 0;
}
.about-tab-btn {
  font-family: 'Jost', sans-serif;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gray-text);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: .55rem 1.1rem;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color .25s, border-color .25s;
}
.about-tab-btn:hover {
  color: var(--navy);
}
.about-tab-btn.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}
.about-tab-content {
  padding-top: 1.6rem;
}
.about-values-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: .04em;
}
.about-values-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.about-value-item {
  padding-left: 1rem;
  border-left: 2px solid var(--border-gold);
}
.about-value-title {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: .25rem;
}
.about-value-text {
  font-size: .84rem;
  font-weight: 300;
  line-height: 1.85;
  color: #4a5568;
  margin: 0;
}

/* ── BLOG ── */
.blog-card {
  background: #fff;
  transition: transform .3s, box-shadow .3s;
  border-radius: 0;
  border: 1px solid #f0ece4;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(13, 27, 42, .08);
}
.blog-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.bimg-1 { background-image: url(/images/bimg-1.png); }
.bimg-2 { background-image: url(/images/bimg-2.png); }
.bimg-3 { background-image: url(/images/bimg-3.png); }
.bimg-4 { background-image: url(/images/bimg-4.png); }
.bimg-5 { background-image: url(/images/bimg-5.png); }
.bimg-6 { background-image: url(/images/bimg-6.png); }

.blog-cat {
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
  display: block;
}
.blog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.35;
}
.blog-excerpt {
  font-size: .78rem;
  font-weight: 300;
  color: var(--gray-text);
  line-height: 1.7;
}
.blog-date {
  font-size: .65rem;
  color: #9ca3af;
}
.blog-link {
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}
.blog-link:hover {
  text-decoration: underline;
}

/* ── CONTACT ── */
.contact-detail-icon {
  color: var(--gold);
  font-size: 1.1rem;
}
.contact-label {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
}
.contact-value {
  font-size: .82rem;
  font-weight: 300;
  line-height: 1.6;
}
.form-control,
.form-select {
  border-radius: 0 !important;
  border: 1px solid #e5e7eb;
  background: var(--bg-light);
  font-family: 'Jost', sans-serif;
  font-size: .84rem;
  color: var(--navy);
  padding: .8rem 1rem;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: none;
  background: var(--bg-light);
}
.form-label {
  font-size: .63rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .35rem;
}
.char-count {
  font-size: .65rem;
  color: var(--gray-text);
  text-align: right;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: #fff;
}
.footer-top {
  padding: 5rem 0 3.5rem;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 300;
}
.footer-brand-sub {
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.footer-text {
  font-size: .78rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .55);
  line-height: 1.8;
}
.footer-heading {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.3rem;
}
.footer-link {
  font-size: .78rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  display: block;
  padding: .3rem 0;
  transition: color .3s;
}
.footer-link:hover {
  color: var(--gold);
}
.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  font-size: .82rem;
  transition: all .3s;
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 1.5rem 0;
  font-size: .7rem;
  color: rgba(255, 255, 255, .3);
  font-weight: 300;
}

/* ── FORM VALIDATION ── */
.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #dc3545;
}
.form-check-input.is-invalid {
  border-color: #dc3545;
}
.invalid-feedback {
  display: none;
  font-size: .72rem;
  color: #dc3545;
  margin-top: .3rem;
}
.is-invalid ~ .invalid-feedback {
  display: block;
}
.form-check .form-check-input.is-invalid ~ .invalid-feedback {
  display: block;
}
.form-check-label {
  font-size: .8rem;
  color: var(--navy);
  line-height: 1.5;
}

/* ── TOAST ── */
.toast-custom {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  background: var(--gold);
  color: var(--navy);
  font-size: .82rem;
  font-weight: 500;
  padding: 1rem 1.8rem;
  border-radius: 0;
  border: none;
  display: none;
  transition: opacity .4s ease;
}
.toast-custom.toast-error {
  background: #dc3545;
  color: #fff;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── SECTION HELPERS ── */
.section-white  { padding: 6rem 0; background: #fff; }
.section-bg     { padding: 6rem 0; background: var(--bg-light); }
.section-navy   { padding: 6rem 0; background: var(--navy); }
.bg-light-custom { background: var(--bg-light); }

/* ── RDV SECTION HELPERS ── */
.label-line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin-right: .7rem;
  vertical-align: middle;
}
.rdv-intro {
  font-size: .88rem;
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}
.rdv-icon {
  font-size: 2rem;
  color: var(--gold);
}
.rdv-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: #fff;
  margin: .5rem 0 .3rem;
}
.rdv-text {
  font-size: .76rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.6;
}

/* ── BLOG ARTICLE PAGES ── */
.blog-page-hero {
  background: var(--navy);
  padding: 9rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.blog-page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.1);
  pointer-events: none;
}
.blog-page-hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.07);
  pointer-events: none;
}
.blog-back-link {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: 2rem;
  transition: color .3s;
}
.blog-back-link:hover { color: var(--gold); }
.blog-page-cat {
  font-size: .58rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
  display: block;
}
.blog-page-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #fff;
  line-height: 1.12;
  max-width: 820px;
  margin-bottom: 1.4rem;
}
.blog-page-meta {
  font-size: .68rem;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
}
.blog-page-meta .meta-sep { margin: 0 .6rem; }
.blog-page-meta .meta-cat { color: var(--gold); }

.article-body {
  padding: 5rem 0 4rem;
  background: #fff;
}
.article-intro {
  font-size: .96rem;
  font-weight: 300;
  line-height: 2;
  color: #4a5568;
  border-left: 2px solid var(--gold);
  padding-left: 1.6rem;
  margin-bottom: 3.5rem;
}
.article-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201,168,76,.12);
}
.article-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.article-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201,168,76,.14);
  line-height: 1;
  display: block;
  margin-bottom: -.8rem;
}
.article-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: .75rem;
  line-height: 1.25;
}
.article-text {
  font-size: .87rem;
  font-weight: 300;
  line-height: 2;
  color: #4a5568;
}
.article-closing {
  font-size: .96rem;
  font-weight: 300;
  line-height: 2;
  color: #4a5568;
  font-style: italic;
  margin-top: 2rem;
}
.article-signature {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--bg-light);
  margin-top: 3rem;
  border-top: 1px solid rgba(201,168,76,.2);
}
.article-signature-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--navy);
}
.article-signature-sub {
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: .3rem;
}
.article-cta-band {
  background: var(--navy);
  padding: 4.5rem 0;
  text-align: center;
}
.article-cta-band h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}
.article-cta-band p {
  color: rgba(255,255,255,.5);
  font-size: .84rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
.article-related {
  padding: 5rem 0;
  background: var(--bg-light);
}

/* ── MISC HELPERS ── */
.text-muted-small {
  font-size: .88rem;
  color: var(--gray-text);
}
.contact-intro {
  font-size: .86rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--gray-text);
}
.contact-note {
  font-size: .75rem;
  color: var(--gray-text);
}
.form-label-note {
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
}
.footer-link-gold {
  color: var(--gold) !important;
}
.footer-legal {
  color: rgba(255, 255, 255, .22);
}
