/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  color: #0a1f3f;
  background: #fff;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Custom Properties ── */
:root {
  --navy: #0a1f3f;
  --navy-600: #091a34;
  --navy-700: #07142a;
  --gold: #c8a44e;
  --gold-light: #f5e0a0;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --light-line: rgba(10, 31, 63, 0.08);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Common ── */
.section {
  padding: 120px 0;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-desc {
  font-size: 1.05rem;
  color: rgba(10, 31, 63, 0.65);
  max-width: 560px;
  line-height: 1.8;
}

/* ── Gold italic helper ── */
.gold-italic {
  font-style: italic;
  color: var(--gold);
}
.gold-dot { color: var(--gold); }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-line);
  transition: box-shadow var(--transition);
}
.nav.scrolled {
  box-shadow: 0 1px 20px rgba(10,31,63,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.nav-logo-text { font-family: 'Inter', sans-serif; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(10,31,63,0.7);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--navy); }
.nav-link:hover::after { width: 100%; }

/* Gold CTA button in nav */
.btn-gold {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.875rem;
  transition: background var(--transition), transform var(--transition);
}
.btn-gold::after { display: none; }
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110;
}
.nav-line {
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  transition: var(--transition);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .nav-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-line:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  /* Explicit dark gradient background — hero gets dark bg + light text */
  background: linear-gradient(
    135deg,
    #040914 0%,
    #0a1f3f 35%,
    #0d2a52 55%,
    #0a1f3f 75%,
    #060f1f 100%
  );
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(200,164,78,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(200,164,78,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(13,42,82,0.5) 0%, transparent 70%);
  pointer-events: none;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  padding: 8px 20px;
  border: 1px solid rgba(200,164,78,0.3);
  border-radius: 100px;
  background: rgba(200,164,78,0.06);
}
.badge-line {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto 44px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(200,164,78,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 14px 28px;
  border-radius: 100px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,164,78,0.25);
}
.btn-primary-lg {
  padding: 18px 36px;
  font-size: 1rem;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 400;
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  transition: border-color var(--transition), background var(--transition);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
}
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 0.9375rem;
  font-weight: 400;
  padding: 14px 28px;
  border: 1px solid rgba(10,31,63,0.2);
  border-radius: 100px;
  transition: border-color var(--transition), background var(--transition);
}
.btn-ghost-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 14px 28px;
  border: 1px solid var(--navy);
  border-radius: 100px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline-light {
  border-color: rgba(10,31,63,0.3);
  color: var(--navy);
}
.btn-outline-light:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ── SERVICES ── */
.services {
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
  background: var(--light-line);
  border: 1px solid var(--light-line);
  border-radius: 16px;
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 44px 36px;
  transition: background var(--transition);
}
.service-card:hover {
  background: var(--off-white);
}
.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--light-line);
  border-radius: 12px;
  margin-bottom: 24px;
  background: var(--white);
  transition: border-color var(--transition);
}
.service-card:hover .service-icon {
  border-color: var(--gold);
}
.service-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-desc {
  font-size: 0.9rem;
  color: rgba(10,31,63,0.6);
  line-height: 1.75;
}

/* ── ABOUT ── */
.about {
  background: var(--off-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image {
  width: 100%;
  height: 700px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.about-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  border: 1px solid var(--gold);
  border-radius: 12px;
  z-index: -1;
  opacity: 0.4;
}
.about-content { max-width: 480px; }
.about-text {
  font-size: 1rem;
  color: rgba(10,31,63,0.65);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 40px 0;
  padding: 32px 0;
  border-top: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
}
.stat { flex: 1; }
.stat-number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(10,31,63,0.5);
  letter-spacing: 0.04em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--light-line);
  flex-shrink: 0;
}

/* ── WHY US ── */
.why-us {
  background: var(--navy);
  color: var(--white);
}
.why-us .section-title { color: var(--white); }
.why-us .section-desc { color: rgba(255,255,255,0.55); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 64px;
}
.why-item {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.why-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 20px;
}
.why-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.why-desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 400px;
}

/* ── AREAS ── */
.areas {
  background: var(--white);
}
.areas-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.areas-desc {
  font-size: 1rem;
  color: rgba(10,31,63,0.65);
  line-height: 1.85;
  margin-bottom: 36px;
}
.areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
  margin-bottom: 40px;
}
.areas-list li {
  position: relative;
  padding-left: 16px;
  font-size: 0.9375rem;
  color: rgba(10,31,63,0.75);
}
.areas-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.areas-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-placeholder {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  background: var(--off-white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--light-line);
}

/* ── CTA BANNER ── */
.cta-banner {
  position: relative;
  padding: 100px 24px;
  text-align: center;
  /* Explicit dark background for CTA */
  background: linear-gradient(
    135deg,
    #040914 0%,
    #0a1f3f 50%,
    #060f1f 100%
  );
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(200,164,78,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.cta-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── CONTACT ── */
.contact {
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-details {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(10,31,63,0.4);
  margin-bottom: 6px;
}
.contact-detail-value {
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.6;
}
.contact-detail-value a {
  color: var(--navy);
  border-bottom: 1px solid rgba(10,31,63,0.15);
  transition: border-color var(--transition), color var(--transition);
}
.contact-detail-value a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── FORM ── */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--light-line);
  border-radius: 16px;
  padding: 48px;
}
.form-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 32px;
  line-height: 1.3;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(10,31,63,0.5);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--navy);
  background: var(--off-white);
  border: 1px solid var(--light-line);
  border-radius: 8px;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
}
.form-input:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-input::placeholder { color: rgba(10,31,63,0.3); }
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230a1f3f' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 16px 28px;
  border-radius: 100px;
  border: 1px solid var(--navy);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-submit:hover {
  background: var(--navy-600);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(10,31,63,0.2);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.btn-submit-loader { display: none; }
.btn-submit.loading .btn-submit-text { display: none; }
.btn-submit.loading .btn-submit-loader { display: flex; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-note {
  font-size: 0.8rem;
  color: rgba(10,31,63,0.4);
  margin-top: 16px;
  text-align: center;
}
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(200,164,78,0.1);
  border: 1px solid rgba(200,164,78,0.3);
  border-radius: 10px;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
}
.form-success.visible { display: flex; }

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 80px 24px 40px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-top: 20px;
  max-width: 280px;
}
.footer-heading {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-list { display: flex; flex-direction: column; gap: 10px; }
.footer-list a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-list a:hover { color: var(--white); }
.footer-contact address {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}
.footer-phone a, .footer-email a {
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: border-color var(--transition), color var(--transition);
}
.footer-phone a:hover, .footer-email a:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .areas-layout, .contact-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    border-left: 1px solid var(--light-line);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 100;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-toggle { display: flex; }
  .hero { min-height: 100svh; padding: 100px 20px 60px; }
  .hero-headline { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions a { width: 100%; justify-content: center; }
  .hero-trust { gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { height: 400px; }
  .about-accent { display: none; }
  .about-content { max-width: 100%; }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .areas-layout { grid-template-columns: 1fr; }
  .areas-visual { order: -1; }
  .map-placeholder { max-width: 100%; }
  .cta-banner { padding: 80px 20px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions a { width: 100%; justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-scroll { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 64px 0; }
  .service-card { padding: 32px 24px; }
  .about-stats { flex-direction: column; align-items: flex-start; gap: 20px; }
  .stat-divider { width: 40px; height: 1px; }
  .areas-list { grid-template-columns: 1fr; }
}

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