/* ═══════════════════════════════════════════════════════════
   DAVER HOLDING GROUP — CSS COMPARTIDO v2.0
   Dave Soluciones Globales S. de R.L. de C.V.
   daver.com.mx
   ═══════════════════════════════════════════════════════════ */

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

/* ─── TOKENS ──────────────────────────────────────────────── */
:root {
  --navy:       #0D1B2A;
  --navy-mid:   #1A3A6B;
  --navy-light: #1E3F72;
  --gold:       #C9A84C;
  --gold-light: #E8CC80;
  --gold-pale:  #F5EDD5;
  --silver:     #8C9BAD;
  --white:      #F8F6F1;
  --white-pure: #FFFFFF;
  --text-dark:  #0D1B2A;
  --text-mid:   #3D5168;
  --text-light: #6B7D91;
  --line:       rgba(201,168,76,0.22);
  --line-navy:  rgba(13,27,42,0.10);
  --dia-green:  #7FBA00;

  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'DM Sans', system-ui, sans-serif;
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-body);
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ─── LAYOUT ──────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

/* ─── REVEAL ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.rd1 { transition-delay: 0.10s; }
.rd2 { transition-delay: 0.22s; }
.rd3 { transition-delay: 0.34s; }
.rd4 { transition-delay: 0.46s; }
.rd5 { transition-delay: 0.58s; }

/* ─── NAVIGATION ──────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: height 0.35s var(--ease-out);
}
nav.scrolled { height: 60px; }

.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo-mark {
  width: 34px; height: 34px;
  border: 1.5px solid var(--gold);
  position: relative;
  flex-shrink: 0;
}
.nav-logo-mark::after {
  content: '';
  position: absolute; right: 5px; bottom: 5px;
  width: 14px; height: 14px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.nav-logo-name {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--white-pure);
  text-transform: uppercase;
  display: block;
}
.nav-logo-sub {
  font-family: var(--f-body);
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 1px;
}

.nav-menu { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 8px 16px;
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248,246,241,0.65);
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--white-pure); }
.nav-menu > li > a.active::after {
  content: '';
  position: absolute; bottom: -1px; left: 16px; right: 16px;
  height: 1px; background: var(--gold);
}

/* Dropdown */
.nav-dropdown {
  position: absolute; top: 100%; left: 0;
  min-width: 220px;
  background: rgba(13,27,42,0.98);
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  list-style: none;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s var(--ease-out);
  z-index: 300;
}
.nav-menu > li:hover .nav-dropdown { opacity: 1; visibility: visible; transform: none; }
.nav-dropdown li a {
  display: block;
  padding: 12px 20px;
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(248,246,241,0.6);
  border-bottom: 1px solid rgba(201,168,76,0.08);
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown li:last-child a { border-bottom: none; }
.nav-dropdown li a:hover { color: var(--gold-light); background: rgba(201,168,76,0.05); }

.nav-cta {
  margin-left: 12px;
  padding: 10px 22px !important;
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  transition: background 0.3s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }
.nav-cta.active::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white-pure); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  padding: 40px 32px;
  flex-direction: column; gap: 4px;
  overflow-y: auto;
  z-index: 190;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: block;
  padding: 14px 0;
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(248,246,241,0.7);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--gold-light); }
.nav-mobile .mob-section {
  font-family: var(--f-body);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 24px; margin-bottom: 4px;
}
.nav-mobile .mob-cta {
  margin-top: 24px;
  display: inline-block;
  background: var(--gold);
  color: var(--navy) !important;
  padding: 14px 28px;
  font-weight: 600;
  border-bottom: none !important;
}

/* ─── PAGE HERO (interior pages) ─────────────────────────── */
.page-hero {
  min-height: 58vh;
  padding: 140px 0 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
}
.page-hero-accent {
  position: absolute; top: 0; right: 0;
  width: 38%; height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(26,58,107,0.45) 100%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}
.page-hero-watermark {
  position: absolute;
  bottom: -30px; right: 32px;
  font-family: var(--f-display);
  font-size: clamp(100px, 16vw, 200px);
  font-weight: 700;
  color: rgba(201,168,76,0.05);
  line-height: 1;
  user-select: none; pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.page-hero-eyebrow-line { width: 32px; height: 1px; background: var(--gold); }
.page-hero-eyebrow-text {
  font-family: var(--f-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.page-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white-pure);
  margin-bottom: 20px;
}
.page-hero h1 strong { font-weight: 700; }
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero-desc {
  font-family: var(--f-body);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(248,246,241,0.6);
  max-width: 560px;
  margin-bottom: 40px;
}
.page-hero-stat-row {
  display: flex; gap: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.page-hero-stat-num {
  font-family: var(--f-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.page-hero-stat-label {
  font-family: var(--f-body);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(248,246,241,0.45);
  margin-top: 4px;
}

/* ─── SECTION LABELS ──────────────────────────────────────── */
.section-tag {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.section-tag-line { width: 26px; height: 1px; background: var(--gold); flex-shrink: 0; }
.section-tag-text {
  font-family: var(--f-body);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy);
}
.section-title strong { font-weight: 700; }
.section-title em { font-style: italic; color: var(--gold); }
.section-title.on-dark { color: var(--white-pure); }
.section-title.on-dark strong { color: var(--gold-light); }

.section-sub {
  font-family: var(--f-body);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-light);
  max-width: 560px;
  margin-top: 16px;
}
.section-sub.on-dark { color: rgba(248,246,241,0.55); }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer; border: none;
}
.btn-gold { background: var(--gold); color: var(--navy); padding: 15px 32px; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 13px 28px;
}
.btn-outline-gold:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-ghost-light {
  color: rgba(248,246,241,0.65);
  border-bottom: 1px solid rgba(201,168,76,0.35);
  padding-bottom: 3px;
}
.btn-ghost-light:hover { color: var(--gold-light); border-color: var(--gold); }
.btn svg { width: 14px; height: 14px; }

/* ─── CARDS GRID ──────────────────────────────────────────── */
.cards-grid-3 {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--line);
}
.cards-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line); }
.card-base {
  padding: 44px 36px;
  transition: background 0.3s;
  position: relative; overflow: hidden;
}
.card-base::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}
.card-base:hover::after { transform: scaleX(1); }
.card-on-navy { background: var(--navy); }
.card-on-navy:hover { background: rgba(26,58,107,0.6); }
.card-on-white { background: var(--white-pure); }
.card-on-white:hover { background: var(--gold-pale); }
.card-on-pale  { background: var(--gold-pale); }
.card-on-pale:hover  { background: var(--white-pure); }

.card-num {
  font-family: var(--f-display);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 20px;
}
.card-title-lg {
  font-family: var(--f-display);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 12px;
}
.card-title-sm {
  font-family: var(--f-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.card-text {
  font-family: var(--f-body);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.78;
}
.card-text-navy { color: rgba(248,246,241,0.55); }
.card-text-mid  { color: var(--text-mid); }
.card-tag {
  font-family: var(--f-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.card-divider { width: 24px; height: 1px; background: rgba(201,168,76,0.35); margin: 16px 0; }

/* ─── STEPS / PROCESO ─────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-navy);
}
.step:first-child { border-top: 1px solid var(--line-navy); }
.step-num {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  min-width: 40px;
  flex-shrink: 0;
}
.step-content {}
.step-title {
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.step-text {
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.72;
  color: var(--text-light);
}

/* Steps on dark */
.step.on-dark { border-bottom-color: rgba(201,168,76,0.12); }
.step.on-dark:first-child { border-top-color: rgba(201,168,76,0.12); }
.step.on-dark .step-title { color: var(--white-pure); }
.step.on-dark .step-text  { color: rgba(248,246,241,0.5); }

/* ─── HIGHLIGHT BOX ───────────────────────────────────────── */
.highlight-box {
  background: var(--navy);
  padding: 48px 52px;
  position: relative;
  overflow: hidden;
}
.highlight-box::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gold);
}
.highlight-box.on-pale {
  background: transparent;
  border: 1px solid rgba(201,168,76,0.25);
}
.highlight-box.on-pale::before { background: var(--gold); }
.highlight-box-label {
  font-family: var(--f-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.highlight-box-title {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white-pure);
  margin-bottom: 12px;
  line-height: 1.2;
}
.highlight-box.on-pale .highlight-box-title { color: var(--navy); }
.highlight-box-text {
  font-family: var(--f-body);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(248,246,241,0.6);
}
.highlight-box.on-pale .highlight-box-text { color: var(--text-mid); }

/* ─── FAQ / ACCORDION ─────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--line-navy); }
.faq-item:first-child { border-top: 1px solid var(--line-navy); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  gap: 16px;
  user-select: none;
  background: none; border: none; width: 100%; text-align: left;
}
.faq-question:hover { color: var(--navy-mid); }
.faq-icon {
  width: 28px; height: 28px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--gold);
  transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--navy); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding-bottom: 22px;
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.78;
  color: var(--text-light);
}

/* ─── CONTACT FORM ────────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label {
  display: block;
  font-family: var(--f-body);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  font-family: var(--f-body);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-dark);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-navy);
  padding: 10px 0;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 90px; }
.form-note {
  font-family: var(--f-body);
  font-size: 0.71rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-light);
  margin-top: 10px;
}
.form-note a { color: var(--gold); border-bottom: 1px solid rgba(201,168,76,0.3); }

/* ─── BREADCRUMB ──────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
}
.breadcrumb a, .breadcrumb span {
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,246,241,0.4);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(201,168,76,0.35); font-size: 0.6rem; }
.breadcrumb .current { color: var(--gold); }

/* ─── CTA BAND ────────────────────────────────────────────── */
.cta-band {
  background: var(--navy-mid);
  padding: 72px 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta-band-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.cta-band-text {}
.cta-band-title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--white-pure);
  line-height: 1.2;
}
.cta-band-title strong { font-weight: 700; color: var(--gold-light); }
.cta-band-sub {
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(248,246,241,0.55);
  margin-top: 10px;
  max-width: 440px;
}
.cta-band-actions { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }

/* ─── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--navy);
  border-top: 1px solid var(--line);
}
.footer-grid {
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand-name {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white-pure);
  letter-spacing: 0.12em;
  display: block;
}
.footer-brand-sub {
  font-family: var(--f-body);
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.footer-brand-text {
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(248,246,241,0.38);
  max-width: 260px;
}
.footer-col-label {
  font-family: var(--f-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(248,246,241,0.45);
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}
.footer-legal {
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 300;
  color: rgba(248,246,241,0.28);
}
.footer-legal a { color: rgba(201,168,76,0.5); }
.footer-legal a:hover { color: var(--gold); }
.footer-rfc {
  font-family: var(--f-body);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: rgba(248,246,241,0.18);
}

/* ─── BLOG CARDS ──────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
}
.blog-card {
  background: var(--navy);
  padding: 36px 30px;
  display: flex; flex-direction: column;
  transition: background 0.3s;
}
.blog-card:hover { background: rgba(26,58,107,0.65); }
.blog-card-date {
  font-family: var(--f-body);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: rgba(248,246,241,0.3);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.blog-card-title {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--white-pure);
  margin-bottom: 14px;
  flex: 1;
}
.blog-card-excerpt {
  font-family: var(--f-body);
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.72;
  color: rgba(248,246,241,0.48);
  margin-bottom: 24px;
}
.blog-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.blog-card-read {
  font-family: var(--f-body);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.blog-card-arrow {
  width: 30px; height: 30px;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.85rem;
  transition: all 0.3s;
}
.blog-card:hover .blog-card-arrow { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ─── SECTION PADDING ─────────────────────────────────────── */
.section-xl  { padding: 120px 0; }
.section-lg  { padding: 96px 0; }
.section-md  { padding: 72px 0; }

.bg-navy   { background: var(--navy); }
.bg-white  { background: var(--white); }
.bg-pure   { background: var(--white-pure); }
.bg-pale   { background: var(--gold-pale); }

/* ─── DIVIDER LINE ────────────────────────────────────────── */
.gold-line {
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 24px 0;
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .nav-menu > li > a { padding: 8px 11px; font-size: 0.65rem; }
  .cards-grid-3 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { padding: 0 22px; }
  nav { padding: 0 22px; }
  .page-hero { padding: 130px 0 60px; min-height: 50vh; }
  .section-xl { padding: 80px 0; }
  .section-lg { padding: 64px 0; }
  .cards-grid-3, .cards-grid-2 { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .highlight-box { padding: 32px 28px; }
}
