/* ═══════════════════════════════════════════════════════════════
   SVS LAW — Premium Design System
   Black & Gold Luxury Theme
═══════════════════════════════════════════════════════════════ */

/* ─── Override Bootstrap base variables ─── */
:root {
  --bs-body-bg:         #060606;
  --bs-body-color:      #f5f0e2;
  --bs-body-font-family:"Source Sans 3", sans-serif;
  --bs-link-color:      #d4af37;
  --bs-link-hover-color:#f2d060;
  --bs-border-color:    rgba(212, 175, 55, 0.18);
  --bs-card-bg:         #131313;
  --bs-card-border-color: rgba(212, 175, 55, 0.18);

  /* Design tokens */
  --gold:         #d4af37;
  --gold-light:   #f2d060;
  --gold-dim:     rgba(212, 175, 55, 0.65);
  --gold-border:  rgba(212, 175, 55, 0.22);
  --gold-glow:    rgba(212, 175, 55, 0.12);

  --black:        #060606;
  --surface-1:    #0c0c0c;
  --surface-2:    #121212;
  --surface-3:    #191919;

  --ink:          #f5f0e2;
  --ink-muted:    #c4b896;
  --ink-dim:      #7a6e5a;

  --radius:       12px;
  --radius-lg:    20px;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --trans:        0.3s var(--ease);
  --shadow:       0 28px 70px rgba(0, 0, 0, 0.65);
  --shadow-card:  0 8px 32px rgba(0, 0, 0, 0.45);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  background: var(--black);
  color: var(--ink);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
p   { margin: 0 0 1.1rem; color: var(--ink); }
p:last-child { margin-bottom: 0; }
ul  { list-style: none; padding: 0; margin: 0; }
a   { color: var(--gold); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--gold-light); }

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: "Cormorant Garamond", serif;
  color: var(--ink);
  line-height: 1.1;
  font-weight: 600;
  margin: 0 0 0.9rem;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); }
h4 { font-size: 1.2rem; }

.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.lead {
  font-size: 1.18rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

.section-heading {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 0.5rem;
}
.section-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.section-heading.text-center::after {
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
}

/* ─── Scroll reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.32s; }

/* ─── Skip link ─── */
.skip-link {
  position: absolute;
  top: 0;
  left: -9999px;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  padding: 0.6rem 1.2rem;
  z-index: 9999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ═══════════════ HEADER ═══════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(4, 4, 4, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-border);
  transition: background var(--trans), box-shadow var(--trans);
}
.site-header.scrolled {
  background: rgba(4, 4, 4, 0.96);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 1.5rem;
}

/* Brand */
.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
}
.brand-monogram {
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  transition: background var(--trans), box-shadow var(--trans);
}
.brand:hover .brand-monogram {
  background: var(--gold-glow);
  box-shadow: 0 0 18px var(--gold-glow);
}
.brand-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.brand-sub {
  font-size: 0.67rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* Hamburger */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--ink);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: border-color var(--trans), background var(--trans);
  padding: 0;
  flex-shrink: 0;
}
.menu-toggle:hover {
  border-color: var(--gold);
  background: var(--gold-glow);
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
  transform-origin: center;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.primary-nav a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 226, 0.78);
  padding: 0.5rem 0.9rem;
  border-radius: 7px;
  text-decoration: none;
  transition: color var(--trans), background var(--trans);
}
.primary-nav a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}
.primary-nav a.active {
  color: var(--gold);
  background: var(--gold-glow);
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero {
  min-height: 52vh;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 10s var(--ease);
}
.hero.loaded .hero-image {
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.3) 100%),
    linear-gradient(0deg, rgba(0,0,0,0.55) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 130px 0 90px;
}
.hero-content h1 {
  animation: heroUp 1s var(--ease) 0.35s both;
  margin-bottom: 1.1rem;
}
.hero-content .eyebrow {
  animation: heroUp 0.9s var(--ease) 0.1s both;
}
.hero-content .hero-desc {
  animation: heroUp 0.9s var(--ease) 0.55s both;
  font-size: 1.15rem;
  color: var(--ink-muted);
  max-width: 500px;
  margin-bottom: 2.2rem;
}
.hero-cta {
  animation: heroUp 0.9s var(--ease) 0.75s both;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@keyframes heroUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════ STATS BAR ═══════════════ */
.stats-bar {
  background: var(--surface-1);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 2rem 0;
}
.stat-item {
  text-align: center;
  padding: 0.75rem 1.5rem;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 44px;
  width: 1px;
  background: var(--gold-border);
}
.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.9rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 0.3rem;
}

/* ═══════════════ SECTIONS ═══════════════ */
.section {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}
.section-alt  { background: var(--surface-1); }
.section-dark { background: var(--surface-2); }

/* Gold rule divider */
.gold-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}
.gold-rule::before,
.gold-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold-border);
}
.gold-rule-diamond {
  color: var(--gold);
  font-size: 0.65rem;
}

/* ═══════════════ CARDS — Service ═══════════════ */
.service-card {
  background: var(--surface-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  height: 100%;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: var(--shadow), 0 0 0 1px rgba(212, 175, 55, 0.12);
}
.service-card h3 {
  color: var(--ink);
  font-size: 1.4rem;
  margin: 0.9rem 0 0.6rem;
}
.service-card p {
  color: var(--ink-muted);
  font-size: 0.93rem;
  margin: 0;
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 11px;
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--gold);
  transition: background var(--trans), box-shadow var(--trans);
}
.service-card:hover .service-icon {
  background: rgba(212, 175, 55, 0.2);
  box-shadow: 0 0 14px var(--gold-glow);
}

/* ═══════════════ CARDS — Team ═══════════════ */
.team-card {
  background: var(--surface-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  height: 100%;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: var(--shadow);
}
.team-card h3, .team-card p { color: var(--ink); }
.team-card a {
  color: var(--gold);
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
}
.team-card a:hover { color: var(--gold-light); }

.team-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin: 0.65rem 0 0.4rem;
}

/* ═══════════════ CARDS — Contact ═══════════════ */
.contact-card {
  background: var(--surface-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex;
  gap: 1.3rem;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
  height: 100%;
  transition: transform var(--trans), border-color var(--trans);
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.45);
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-card h3 {
  color: var(--ink);
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}
.contact-card p {
  color: var(--ink-muted);
  font-size: 0.93rem;
  margin-bottom: 0.2rem;
}
.contact-card a {
  color: var(--gold);
  font-size: 0.93rem;
}
.contact-card a:hover { color: var(--gold-light); }

.map-embed-wrap {
  background: var(--surface-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.map-embed-frame {
  display: block;
  width: 100%;
  min-height: 440px;
  border: 0;
}

/* ═══════════════ BUTTONS ═══════════════ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, #d4af37 0%, #b78c1f 100%);
  color: #130d00 !important;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 1.9rem;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  text-decoration: none !important;
  box-shadow: 0 8px 28px rgba(183, 140, 31, 0.32);
  transition: box-shadow var(--trans), transform var(--trans), filter var(--trans);
}
.btn-gold:hover {
  color: #000 !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(183, 140, 31, 0.5);
  filter: brightness(1.08);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: transparent;
  color: var(--ink) !important;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 1.9rem;
  border-radius: 8px;
  border: 1px solid rgba(245, 240, 226, 0.35);
  cursor: pointer;
  text-decoration: none !important;
  transition: border-color var(--trans), background var(--trans), color var(--trans);
}
.btn-outline:hover {
  color: var(--ink) !important;
  border-color: rgba(245, 240, 226, 0.7);
  background: rgba(255, 255, 255, 0.06);
}

/* ═══════════════ PANEL IMAGE ═══════════════ */
.panel-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--gold-border);
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* ═══════════════ BLOCKQUOTE ═══════════════ */
.blockquote-gold {
  border-left: 3px solid var(--gold);
  padding: 1.4rem 2rem;
  background: var(--gold-glow);
  border-radius: 0 12px 12px 0;
  margin: 0 0 2.5rem;
}
.blockquote-gold p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.45;
  margin: 0;
}

/* ═══════════════ VALUES ROW ═══════════════ */
.value-item {
  text-align: center;
  padding: 0 1rem;
}
.value-item .service-icon {
  margin: 0 auto 1.1rem;
}

/* ═══════════════ CTA BANNER ═══════════════ */
.cta-banner {
  background: linear-gradient(105deg, var(--surface-1) 0%, var(--surface-2) 100%);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 5rem 0;
  text-align: center;
}
.cta-banner h2 { color: var(--ink); margin-bottom: 0.75rem; }
.cta-banner .lead { margin-bottom: 2.2rem; }

/* ═══════════════ RESOURCES HUB ═══════════════ */
.resources-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(212, 175, 55, 0.08), transparent 42%),
    var(--surface-2);
}

.partners-spotlight {
  background:
    radial-gradient(circle at 88% 10%, rgba(212, 175, 55, 0.16), transparent 38%),
    linear-gradient(180deg, #0f0f0f 0%, #121212 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.partners-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  color: #ffe8a8;
  background: linear-gradient(140deg, rgba(212, 175, 55, 0.16), rgba(212, 175, 55, 0.04));
  border: 1px solid rgba(212, 175, 55, 0.36);
  border-radius: 12px;
  padding: 1rem 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans), background var(--trans);
}

.partners-grid a i {
  font-size: 0.85rem;
}

.partners-grid a:hover {
  color: #fff4cf;
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.62);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(212, 175, 55, 0.25);
  background: linear-gradient(140deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.08));
}

.resource-card {
  background: linear-gradient(165deg, #151515, #101010);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  height: 100%;
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
}

.resource-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.48);
  box-shadow: var(--shadow), 0 0 0 1px rgba(212, 175, 55, 0.14);
}

.resource-card-head {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  margin-bottom: 1.2rem;
}

.resource-card-head h3 {
  margin: 0 0 0.15rem;
}

.resource-subtitle {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.resource-links {
  display: grid;
  gap: 0.55rem;
}

.resource-links li {
  margin: 0;
}

.resource-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  border: 1px solid rgba(212, 175, 55, 0.14);
  background: rgba(212, 175, 55, 0.04);
  color: #f3e3b2;
  border-radius: 10px;
  padding: 0.62rem 0.75rem;
  line-height: 1.2;
  font-size: 0.9rem;
  transition: background var(--trans), border-color var(--trans), transform var(--trans), color var(--trans);
}

.resource-links a:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.4);
  color: #fff2cc;
  transform: translateX(2px);
}

.resource-links a i {
  font-size: 0.78rem;
  color: var(--gold);
}

.resource-links em {
  font-style: normal;
  color: var(--ink-muted);
}

/* ═══════════════ FOOTER ═══════════════ */
.site-footer {
  background: #030303;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  padding: 4rem 0 1.8rem;
  color: var(--ink-muted);
}

.footer-brand-monogram {
  width: 50px;
  height: 50px;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.footer-brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.footer-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.footer-body {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-top: 1rem;
  max-width: 290px;
  line-height: 1.6;
}

.footer-heading {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-links { margin: 0; padding: 0; }
.footer-links li {
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}
.footer-links a {
  color: var(--ink-muted);
  text-decoration: none;
  transition: color var(--trans);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin: 3rem 0 1.5rem;
}
.footer-bottom {
  font-size: 0.82rem;
  color: var(--ink-dim);
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 992px) {
  .panel-image img { height: 380px; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }

  .primary-nav {
    position: absolute;
    top: 82px;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    min-width: 240px;
    background: #0c0c0c;
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    padding: 0.75rem;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  }
  .primary-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .primary-nav a {
    text-align: left;
    padding: 0.65rem 0.9rem;
  }

  .stat-item + .stat-item::before { display: none; }
  .hero-content { padding: 120px 0 60px; }
  .panel-image img { height: 280px; }
  .blockquote-gold p { font-size: 1.3rem; }
  .partners-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .brand-text-group { display: none; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .stat-number { font-size: 2.2rem; }
  .resource-card {
    padding: 1.25rem;
  }
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero-image { transform: none; }
}
