/* ═══════════════════════════════════════════════
   MERIDIAN PACIFIC COMMERCIAL — Premium Stylesheet
   ═══════════════════════════════════════════════ */

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

:root {
  --navy:        #0a1c30;
  --deep:        #060f1d;
  --navy-mid:    #0f2540;
  --navy-light:  #142d4a;
  --gold:        #c9a84c;
  --gold-light:  #e2c97e;
  --gold-dim:    #a8893a;
  --gold-pale:   #f5edd8;
  --sand:        #f2ece0;
  --white:       #ffffff;
  --muted:       #7a8fa6;
  --text:        #1e2e3e;
  --text-light:  #4a6070;
  --border:      rgba(201,168,76,0.22);
  --border-faint:rgba(201,168,76,0.1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── FOCUS VISIBLE (keyboard nav accessibility) ── */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

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

/* ═════════════════ NAV ═════════════════ */
.site-nav {
  position: fixed; top: 0; width: 100%; z-index: 200;
  padding: 24px 64px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.5s, padding 0.4s, box-shadow 0.4s;
}
.site-nav.scrolled {
  background: rgba(6,15,29,0.97);
  padding: 14px 64px;
  box-shadow: 0 1px 0 var(--border), 0 8px 40px rgba(0,0,0,0.5);
  backdrop-filter: blur(20px);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--white); line-height: 1.15;
}
.nav-logo span { color: var(--gold); }
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}
.site-footer .nav-logo-img {
  height: 40px;
  opacity: 1;
}
.nav-logo small {
  display: block; font-size: 9px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); font-family: 'DM Sans', sans-serif;
  margin-top: 3px;
}
.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  color: rgba(255,255,255,0.65);
  font-size: 11px; font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 9px 16px;
  transition: color 0.2s; display: block; position: relative;
}
.nav-menu > li > a::after {
  content: ''; position: absolute; bottom: 4px; left: 16px; right: 16px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after { transform: scaleX(1); }
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--gold-light); }

.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--deep);
  border: 1px solid var(--border); border-top: 2px solid var(--gold);
  min-width: 230px; padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: all 0.28s;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.dropdown a {
  display: block; padding: 11px 22px;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s, padding-left 0.25s, background 0.2s;
  border-left: 2px solid transparent;
}
.dropdown a:hover {
  color: var(--gold-light); padding-left: 30px;
  background: rgba(201,168,76,0.06); border-left-color: var(--gold);
}
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim)) !important;
  color: var(--deep) !important; padding: 10px 24px !important;
  font-weight: 600 !important; letter-spacing: 0.08em !important;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: opacity 0.2s, transform 0.2s !important;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
body.nav-open .nav-hamburger { display: none !important; }
.nav-hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: all 0.3s; }
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: var(--deep); padding: 90px 48px 48px;
  flex-direction: column; gap: 4px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5); font-size: 18px;
  width: 40px; height: 40px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s, border-color 0.2s;
}
.mobile-nav-close:hover { color: var(--gold); border-color: var(--gold); }
.mobile-nav-sub-label {
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); opacity: 0.6; padding: 16px 0 4px;
}
.mobile-nav a { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 300; color: rgba(255,255,255,0.6); padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); transition: color 0.2s, padding-left 0.25s; display: block; }
.mobile-nav a.mobile-sub { font-size: 18px; padding: 7px 0 7px 16px; color: rgba(255,255,255,0.4); }
.mobile-nav a:hover { color: var(--gold); padding-left: 12px; }
.mobile-nav a.mobile-nav-cta { color: var(--gold); font-weight: 400; border-bottom: none; margin-top: 12px; }
.mobile-nav a.mobile-nav-cta:hover { color: var(--gold-light); }

/* ═════════════════ PAGE HERO ═════════════════ */
.page-hero {
  height: 440px; position: relative;
  display: flex; align-items: flex-end;
  padding: 0 72px 72px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.page-hero:hover .page-hero-bg { transform: scale(1.08); }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,15,29,0.96) 0%, rgba(10,28,48,0.78) 50%, rgba(6,15,29,0.72) 100%);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.055) 1px, transparent 1px);
  background-size: 64px 64px;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(201,168,76,0.3), transparent);
}
/* Corner ornament */
.page-hero::before {
  content: ''; position: absolute; top: 80px; right: 72px;
  width: 120px; height: 120px;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-right: 1px solid rgba(201,168,76,0.2);
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.breadcrumb a { color: rgba(201,168,76,0.75); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,0.15); }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5.5vw, 74px); font-weight: 300;
  color: var(--white); line-height: 1.05;
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero-tag {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); border-left: 2px solid var(--gold);
  padding-left: 14px; margin-bottom: 18px; display: inline-block;
}

/* ═════════════════ LAYOUT ═════════════════ */
.container { max-width: 1320px; margin: 0 auto; padding: 0 72px; }
.section { padding: 104px 72px; }
.section-sm { padding: 72px 72px; }

.section-tag {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); padding-left: 14px;
  margin-bottom: 20px; display: inline-block; position: relative;
}
.section-tag::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%); width: 2px; height: 100%; background: var(--gold);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.8vw, 56px); font-weight: 300;
  color: var(--navy); line-height: 1.08; margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title.light { color: var(--white); }
.section-body { font-size: 15px; font-weight: 300; color: var(--text-light); line-height: 1.9; max-width: 660px; }
.section-body.wide { max-width: 840px; }
.divider { width: 64px; height: 2px; background: linear-gradient(90deg, var(--gold), rgba(201,168,76,0.2)); margin: 24px 0; }
.divider.center { margin: 24px auto; }

/* ═════════════════ BUTTONS ═════════════════ */
.btn {
  display: inline-block;
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 14px 36px;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: all 0.25s; position: relative;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
  color: var(--deep); border: none;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-3px); box-shadow: 0 10px 32px rgba(201,168,76,0.4);
}
.btn-outline {
  background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.22);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.06); }
.btn-outline-dark {
  background: transparent; color: var(--navy); border: 1px solid rgba(10,28,48,0.2);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold-dim); background: rgba(201,168,76,0.05); }

/* ═════════════════ CARDS ═════════════════ */
.card-dark {
  background: var(--navy-light); padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s;
  border: 1px solid rgba(255,255,255,0.04);
}
.card-dark::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.card-dark:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.35); }
.card-dark:hover::before { transform: scaleX(1); }

/* ═════════════════ GRIDS ═════════════════ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-align-center { align-items: center; }

/* ═════════════════ TAG PILLS ═════════════════ */
.tag-pill {
  display: inline-block; padding: 5px 14px;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(201,168,76,0.08); color: var(--gold);
  border: 1px solid rgba(201,168,76,0.12); margin: 3px 2px;
}

/* ═════════════════ FORMS ═════════════════ */
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.form-field input,
.form-field textarea,
.form-field select {
  background: rgba(255,255,255,0.05);
  border: none; border-bottom: 1px solid rgba(255,255,255,0.18);
  color: var(--white); padding: 14px 4px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 300;
  outline: none; transition: border-color 0.25s, background 0.25s; border-radius: 0;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-bottom-color: var(--gold); background: rgba(201,168,76,0.03); }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-field select option { background: var(--navy); }
.form-field textarea { resize: vertical; min-height: 120px; padding: 14px; border: 1px solid rgba(255,255,255,0.1); }
.form-field textarea:focus { border-color: var(--gold); }
.form-field.light input, .form-field.light textarea, .form-field.light select {
  background: transparent; border: none; border-bottom: 1px solid rgba(10,28,48,0.2);
  color: var(--text); padding: 14px 4px;
}
.form-field.light label { color: var(--text-light); }
.form-field.light input:focus, .form-field.light textarea:focus { border-bottom-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* ═════════════════ SECTION TEXTURES ═════════════════ */
/* Dark sections get a subtle radial glow + grid */
.section-dark {
  background: var(--navy); position: relative; overflow: hidden;
}
.section-dark::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 85% 40%, rgba(201,168,76,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 70%, rgba(201,168,76,0.04) 0%, transparent 60%);
}
.section-dark::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  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: 72px 72px;
}
.section-deep {
  background: var(--deep); position: relative; overflow: hidden;
}
.section-deep::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 60% at 15% 50%, rgba(201,168,76,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 35% 40% at 90% 20%, rgba(201,168,76,0.04) 0%, transparent 60%);
}
.section-deep::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  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;
}
/* Sand/light sections get soft warm radial */
.section-sand {
  background: var(--sand); position: relative; overflow: hidden;
}
.section-sand::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 60% at 90% 20%, rgba(201,168,76,0.1) 0%, transparent 60%);
}

/* ═════════════════ STAT ═════════════════ */
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; color: var(--gold); line-height: 1; }
.stat-label { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }

/* ═════════════════ FOOTER ═════════════════ */
.site-footer { background: var(--deep); border-top: 1px solid var(--border); position: relative; }
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201,168,76,0.3), transparent);
}
.footer-main { padding: 80px 72px 56px; display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 52px; }
.footer-brand .nav-logo { font-size: 20px; }
.footer-brand p { margin-top: 18px; font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.32); line-height: 1.85; max-width: 240px; }
.footer-social { margin-top: 28px; display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 12px; font-weight: 600;
  transition: background 0.2s, border-color 0.2s;
  clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
}
.footer-social a:hover { background: rgba(201,168,76,0.15); border-color: var(--gold); }
/* Footer social buttons (used in renderFooter) */
.footer-social-btn {
  width: 34px; height: 34px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 13px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
}
.footer-social-btn:hover { background: rgba(201,168,76,0.12); border-color: var(--gold); }
.footer-col h5 { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; padding-bottom: 10px; border-bottom: 1px solid rgba(201,168,76,0.12); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.38); transition: color 0.2s, padding-left 0.2s; display: block; }
.footer-col ul a:hover { color: var(--gold-light); padding-left: 6px; }
.footer-contact-item { margin-bottom: 18px; }
.footer-contact-item span { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 4px; }
.footer-contact-item a, .footer-contact-item p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.45); transition: color 0.2s; line-height: 1.6; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom { padding: 22px 72px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.18); letter-spacing: 0.04em; }
.footer-bottom-links { display: flex; gap: 28px; }
.footer-bottom-links a { font-size: 11px; color: rgba(255,255,255,0.2); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ═════════════════ CTA BAND ═════════════════ */
.cta-band {
  background: var(--navy); padding: 88px 72px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 48px; flex-wrap: wrap; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dim), transparent);
}
.cta-band::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(201,168,76,0.07) 0%, transparent 70%),
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  pointer-events: none;
}
.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 48px); font-weight: 300;
  color: var(--white); max-width: 600px; line-height: 1.18;
  position: relative; z-index: 1;
}
.cta-band h2 em { color: var(--gold-light); font-style: italic; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ═════════════════ REVEAL ═════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; will-change: opacity, transform; }
.reveal.visible { opacity: 1; transform: translateY(0); will-change: auto; }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.32s; }
.reveal-delay-4 { transition-delay: 0.42s; }

/* ═════════════════ SKIP LINK (accessibility) ═════════════════ */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--gold); color: var(--deep);
  padding: 8px 20px; font-size: 13px; font-weight: 600;
  z-index: 9999; text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 8px; }

/* ═════════════════ RESPONSIVE ═════════════════ */
@media (max-width: 1200px) {
  .site-nav, .site-nav.scrolled { padding-left: 40px; padding-right: 40px; }
  .section, .section-sm { padding-left: 40px; padding-right: 40px; }
  .page-hero { padding-left: 40px; padding-right: 40px; }
  .cta-band { padding-left: 40px; padding-right: 40px; }
  .footer-main { padding-left: 40px; padding-right: 40px; }
  .footer-bottom { padding-left: 40px; padding-right: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .section, .section-sm { padding-left: 32px; padding-right: 32px; }
}
@media (max-width: 768px) {
  .site-nav, .site-nav.scrolled { padding: 14px 18px; }
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }
  .section, .section-sm { padding: 56px 18px; }
  .section-body { font-size: 14px; }
  .section-title { font-size: clamp(26px, 6vw, 40px); }
  .page-hero { padding: 0 18px 40px; height: 300px; }
  .page-hero::before { display: none; }
  .page-hero h1 { font-size: clamp(28px, 8vw, 48px); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; padding: 44px 18px 32px; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { padding: 16px 18px; flex-direction: column; gap: 10px; text-align: center; }
  .cta-band { padding: 48px 18px; flex-direction: column; text-align: center; gap: 28px; }
  .cta-band h2 { font-size: clamp(22px, 6vw, 34px); }
  .btn { padding: 12px 28px; font-size: 10px; }
  .divider { margin: 16px 0; }
}
@media (max-width: 480px) {
  .section, .section-sm { padding: 44px 16px; }
  .page-hero { padding: 0 16px 32px; height: 260px; }
  .footer-main { grid-template-columns: 1fr; padding: 36px 16px 24px; }
  .footer-bottom-links { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .cta-band { padding: 40px 16px; }
  .btn { padding: 11px 22px; }
}
