:root {
  --navy: #0b2545;
  --navy-deep: #071a33;
  --gold: #c8a951;
  --gold-light: #e6cf8a;
  --cream: #faf7f0;
  --ink: #1b2430;
  --muted: #5b6472;
  --border: #e4ddc9;
  --maxw: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Georgia", "Iowan Old Style", "Palatino Linotype", serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a { color: inherit; }

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

/* Header / Nav */
header.site-header {
  background: linear-gradient(160deg, #fdfcf8, #f3efe2);
  color: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--gold);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--navy);
}

.brand .crest-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand strong {
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", serif;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  color: var(--navy);
}
.brand span.role {
  display: block;
  font-size: 0.7rem;
  color: #8a6d1f;
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", serif;
  font-style: italic;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

nav.main-nav > ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
}

nav.main-nav > ul > li {
  display: flex;
  align-items: center;
}

nav.main-nav a {
  color: var(--navy);
  text-decoration: none;
  font-size: 0.86rem;
  font-family: system-ui, sans-serif;
  letter-spacing: 0.02em;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

nav.main-nav a:hover,
nav.main-nav a.active { border-color: var(--gold); color: #8a6d1f; }

/* Burger button (mobile) */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile slide-down menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fdfcf8;
  border-top: 1px solid var(--border);
  padding: 6px 24px 22px;
}

.mobile-menu.open { display: flex; }

.mobile-menu-title {
  font-family: system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 14px 0 8px;
}

.mobile-menu ul { list-style: none; display: flex; flex-direction: column; }

.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: var(--navy);
  text-decoration: none;
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", serif;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a.active { color: #8a6d1f; font-weight: bold; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding: 72px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 2px solid rgba(200,169,81,0.25);
}

.hero::before {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -140px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 2px solid rgba(200,169,81,0.15);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  font-family: system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(230,207,138,0.5);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.7rem;
  line-height: 1.15;
  margin-bottom: 14px;
}

.hero .subtitle {
  font-size: 1.15rem;
  color: #d7deea;
  font-family: system-ui, sans-serif;
  font-weight: 300;
  margin-bottom: 26px;
  max-width: 46ch;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-facts span {
  font-family: system-ui, sans-serif;
  font-size: 0.82rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 7px 14px;
  border-radius: 999px;
  color: #eef1f6;
}

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  font-family: system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { box-shadow: 0 6px 18px rgba(200,169,81,0.35); }

.btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

.hero-portrait {
  display: flex;
  justify-content: center;
}

.portrait-frame {
  width: 280px;
  height: 340px;
  border-radius: 8px;
  background: linear-gradient(160deg, #fdfcf8, #f3efe2);
  border: 1px solid rgba(230,207,138,0.5);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.portrait-logo {
  width: 100%;
  max-width: 230px;
  height: auto;
  object-fit: contain;
}

/* Section shared */
section { padding: 84px 0; }
section.alt { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head .kicker {
  font-family: system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-head h2 { font-size: 2rem; margin-bottom: 12px; color: var(--navy); }
.section-head p { color: var(--muted); font-family: system-ui, sans-serif; font-size: 1rem; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-grid h3 { color: var(--navy); font-size: 1.3rem; margin-bottom: 12px; }
.about-grid p { margin-bottom: 16px; color: #3b4452; }

.pull-quote {
  border-left: 3px solid var(--gold);
  padding: 6px 0 6px 20px;
  font-style: italic;
  color: var(--navy);
  font-size: 1.15rem;
  margin: 20px 0;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding-left: 30px;
  border-left: 2px solid var(--border);
}

.timeline-item { position: relative; padding-bottom: 34px; }
.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-item .year {
  font-family: system-ui, sans-serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  display: block;
}

.timeline-item h4 { color: var(--navy); margin-bottom: 4px; font-size: 1.1rem; }
.timeline-item p { color: var(--muted); font-family: system-ui, sans-serif; font-size: 0.95rem; }

/* Cards grid (roles / business) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 26px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover { box-shadow: 0 10px 30px rgba(11,37,69,0.08); transform: translateY(-2px); }

.card .icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(200,169,81,0.15);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.card h4 { color: var(--navy); margin-bottom: 8px; font-size: 1.05rem; }
.card p { color: var(--muted); font-family: system-ui, sans-serif; font-size: 0.93rem; }

.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.card-link:hover .icon { background: var(--gold); color: #fff; }

/* Charity list */
.charity-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.charity-list li {
  list-style: none;
  background: var(--navy);
  color: #fff;
  padding: 22px;
  border-radius: 8px;
  font-family: system-ui, sans-serif;
  font-size: 0.92rem;
  border-top: 3px solid var(--gold);
}

.charity-list strong { display: block; margin-bottom: 6px; color: var(--gold-light); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; }

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  margin-top: 44px;
}

.stat .num { font-size: 2rem; color: var(--navy); font-weight: bold; }
.stat .label { font-family: system-ui, sans-serif; font-size: 0.85rem; color: var(--muted); margin-top: 4px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-grid:has(.contact-form-card) {
  grid-template-columns: 1.3fr 1fr;
}

.contact-card {
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  padding: 36px;
}

.contact-card h3 { color: var(--gold-light); margin-bottom: 18px; font-size: 1.3rem; }

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-family: system-ui, sans-serif;
  font-size: 0.95rem;
}

.contact-row .tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  width: 60px;
  flex-shrink: 0;
}

.contact-row a { text-decoration: none; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.25); }
.contact-row a:hover { border-color: var(--gold); }

.social-links { display: flex; gap: 12px; margin-top: 22px; }

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.social-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }

.social-links a svg { width: 18px; height: 18px; fill: currentColor; }

.ward-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px;
}

.ward-card h3 { color: var(--navy); margin-bottom: 16px; font-size: 1.3rem; }
.ward-card p { color: var(--muted); margin-bottom: 14px; font-family: system-ui, sans-serif; font-size: 0.95rem; }

.ward-card ul { padding-left: 20px; color: #3b4452; font-family: system-ui, sans-serif; font-size: 0.92rem; }
.ward-card li { margin-bottom: 8px; }

/* Footer */
footer {
  background: var(--navy-deep);
  color: #b9c2d0;
  padding: 40px 0 28px;
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr;
  gap: 48px;
}

.footer-info .footer-social { margin-bottom: 20px; }

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-row a { color: var(--gold-light); text-decoration: none; }
.footer-note { max-width: 640px; color: #7c8798; font-size: 0.78rem; margin-top: 18px; line-height: 1.5; }
.footer-note a { color: var(--gold-light); text-decoration: none; border-bottom: 1px solid rgba(230,207,138,0.4); }
.footer-note a:hover { border-color: var(--gold-light); }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-portrait { order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .card-grid-4 { grid-template-columns: 1fr 1fr; }
  .charity-list { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  nav.main-nav { display: none; }
  .burger-btn { display: flex; }
}

@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 2rem; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .card-grid-4 { grid-template-columns: 1fr; }
}

/* Solo (single-column) hero, used where there's no portrait */
.hero-inner-solo { display: block; }

/* Article body (News & Blog posts) */
.article-body {
  max-width: 720px;
  margin: 0 auto;
}

.article-body p { margin-bottom: 20px; color: #3b4452; }
.article-body h3 { color: var(--navy); margin: 32px 0 12px; font-size: 1.2rem; }

.article-meta {
  font-family: system-ui, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.back-link {
  display: inline-block;
  margin-top: 32px;
  font-family: system-ui, sans-serif;
  font-size: 0.88rem;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.back-link:hover { border-color: var(--gold); color: #8a6d1f; }

/* Splash screen */
.splash-screen {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, #fdfcf8, #f3efe2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.splash-screen.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-logo {
  width: 150px;
  height: auto;
  animation: splashPulse 1.6s ease-in-out infinite;
}

@keyframes splashPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.85; }
}

@media (prefers-reduced-motion: reduce) {
  .splash-logo { animation: none; }
}

/* Header "Menu" dropdown (desktop) */
.nav-dropdown { position: relative; }

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  padding: 6px 0;
  margin: 0;
  cursor: pointer;
  color: var(--navy);
  font: inherit;
  font-size: 0.86rem;
  font-family: system-ui, sans-serif;
  letter-spacing: 0.02em;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.dropdown-trigger:hover,
.nav-dropdown.open .dropdown-trigger,
.nav-dropdown:focus-within .dropdown-trigger {
  border-color: var(--gold);
  color: #8a6d1f;
}

.dropdown-trigger::after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.18s ease;
}

.nav-dropdown.open .dropdown-trigger::after,
.nav-dropdown:hover .dropdown-trigger::after,
.nav-dropdown:focus-within .dropdown-trigger::after {
  transform: rotate(180deg);
}

.dropdown-panel {
  list-style: none;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(-6px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(11, 37, 69, 0.16);
  min-width: 200px;
  padding: 8px 0;
  margin-top: 14px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 200;
}

/* Pointer connecting the panel to the "Menu" trigger */
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  right: 14px;
  margin-top: 5px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: translateY(-4px) rotate(45deg);
  box-shadow: -2px -2px 3px rgba(11, 37, 69, 0.05);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 199;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel,
.nav-dropdown.open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover::before,
.nav-dropdown:focus-within::before,
.nav-dropdown.open::before {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) rotate(45deg);
}

.dropdown-panel li { list-style: none; }

.nav-dropdown .dropdown-panel a {
  display: block;
  padding: 10px 20px;
  margin: 0;
  color: var(--navy);
  text-decoration: none;
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  white-space: nowrap;
  border-bottom: none;
}

.nav-dropdown .dropdown-panel a:hover {
  background: rgba(200, 169, 81, 0.14);
  color: #8a6d1f;
  border-bottom: none;
}

/* Footer Quick Links */
.footer-links { margin-bottom: 24px; }

.footer-links-title {
  font-family: system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #b9c2d0;
  text-decoration: none;
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
}

.footer-links a:hover { color: var(--gold-light); }

/* Footer social icons */
.footer-social { margin-bottom: 24px; }

.footer-social-title {
  font-family: system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.footer-social ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b9c2d0;
  text-decoration: none;
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
}

.footer-social a svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

.footer-social a:hover { color: var(--gold-light); }

/* Contact form */
.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px;
}

.contact-form-card h3 { color: var(--navy); margin-bottom: 8px; font-size: 1.3rem; }
.contact-form-card > p { color: var(--muted); font-family: system-ui, sans-serif; font-size: 0.94rem; margin-bottom: 24px; }

.form-row { margin-bottom: 18px; }
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-row label {
  display: block;
  font-family: system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  font-family: system-ui, sans-serif;
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 11px 14px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}

.form-row textarea { resize: vertical; min-height: 130px; font-family: system-ui, sans-serif; }

.form-submit-btn {
  display: inline-block;
  font-family: system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  background: var(--gold);
  color: var(--navy-deep);
  letter-spacing: 0.02em;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.form-submit-btn:hover { box-shadow: 0 6px 18px rgba(200,169,81,0.35); transform: translateY(-1px); }

.form-status {
  margin-top: 14px;
  font-family: system-ui, sans-serif;
  font-size: 0.86rem;
  color: var(--muted);
}

/* Newsletter signup */
.newsletter-card {
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  padding: 36px;
  margin-top: 40px;
  text-align: center;
}

.newsletter-card h3 { color: var(--gold-light); margin-bottom: 8px; font-size: 1.2rem; }
.newsletter-card p { color: #d7deea; font-family: system-ui, sans-serif; font-size: 0.92rem; margin-bottom: 22px; max-width: 46ch; margin-left: auto; margin-right: auto; }

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
  padding: 11px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.newsletter-form input::placeholder { color: #b9c2d0; }
.newsletter-form input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.14); }

.newsletter-form button {
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  background: var(--gold);
  color: var(--navy-deep);
}

.newsletter-status {
  margin-top: 12px;
  font-family: system-ui, sans-serif;
  font-size: 0.84rem;
  color: var(--gold-light);
}

@media (max-width: 700px) {
  .form-row-split { grid-template-columns: 1fr; }
}
