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

@font-face {
  font-family: 'Swiss721';
  src: url('../fonts/Swiss721LTBTThin.ttf') format('truetype');
  font-weight: 100 300;
  font-style: normal;
  font-display: swap;
}

/* =============================================
   dp ARCHITECTURE — Main Stylesheet
   ============================================= */

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

:root {
  --navy:   #1c2b4a;
  --amber:  #c8783a;
  --cream:  #f7f5f0;
  --white:  #ffffff;
  --dark:   #141414;
  --mid:    #7a7870;
  --pale:   #eeebe4;
  --border: rgba(28,43,74,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Swiss721', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  background: var(--white);
  color: var(--dark);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* =============================================
   NAVIGATION
   ============================================= */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 80px;
  background: rgba(247,245,240,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.site-nav.scrolled { box-shadow: 0 2px 24px rgba(28,43,74,0.08); }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
}

.nav-brand-sub {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 300;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--dark);
  padding-bottom: 4px;
  position: relative;
  transition: color 0.25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--amber);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--amber); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--navy);
  transition: all 0.3s;
}

/* =============================================
   PAGE HERO
   ============================================= */

.page-hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.page-hero-bg.loaded { transform: scale(1); }

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28,43,74,0.1) 0%,
    rgba(28,43,74,0.25) 50%,
    rgba(28,43,74,0.72) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 80px;
  width: 100%;
  max-width: 860px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.page-hero h1 em {
  font-style: italic;
  color: rgba(200,120,58,0.9);
}

.page-hero-body {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  line-height: 1.85;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-block;
  font-family: 'Swiss721', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 14px 38px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  line-height: 1;
}

.btn-primary {
  background: var(--amber);
  color: var(--white);
}

.btn-primary:hover { background: #b36a2d; }

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover { background: #14203a; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.55);
}

.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.btn-ghost {
  background: transparent;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 400;
  transition: gap 0.3s, color 0.3s;
}

.btn-ghost::after { content: '→'; font-size: 13px; }
.btn-ghost:hover { gap: 18px; color: var(--amber); }

/* =============================================
   SCROLL INDICATOR
   ============================================= */

.scroll-cue {
  position: absolute;
  bottom: 36px;
  right: 60px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 300;
}

.scroll-cue-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(var(--amber), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* =============================================
   PILL / TAG BAR
   ============================================= */

.tag-bar {
  background: var(--navy);
  padding: 22px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
}

.tag-bar-inner {
  display: flex;
  align-items: center;
  gap: 52px;
  flex-wrap: wrap;
  justify-content: center;
}

.tag-item {
  font-size: 10px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 52px;
}

.tag-item::after {
  content: '◆';
  color: var(--amber);
  font-size: 6px;
  letter-spacing: 0;
}

.tag-item:last-child::after { display: none; }

/* =============================================
   SECTIONS
   ============================================= */

.section {
  padding: 110px 60px;
}

.section-sm { padding: 80px 60px; }

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 400;
  margin-bottom: 18px;
}

.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 20px;
}

.section-title em { font-style: italic; color: var(--amber); }

.section-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.9;
  max-width: 560px;
}

/* =============================================
   SERVICES GRID
   ============================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--pale);
  margin-top: 64px;
}

.service-card {
  background: var(--white);
  padding: 48px 40px;
  transition: background 0.3s;
}

.service-card:hover { background: var(--cream); }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--amber);
  font-weight: 300;
  margin-bottom: 22px;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}

.service-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
}

/* =============================================
   SPLIT ABOUT SECTION
   ============================================= */

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split-img {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.split-img:hover img { transform: scale(1.03); }

.split-content {
  padding: 90px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-content.dark {
  background: var(--navy);
  color: var(--white);
}

.split-content.dark .section-title { color: var(--white); }
.split-content.dark .section-body { color: rgba(255,255,255,0.6); }

.stats-row {
  display: flex;
  gap: 48px;
  margin: 40px 0;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

/* =============================================
   PROJECT GRID
   ============================================= */

.project-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 340px 240px;
  gap: 3px;
  margin-top: 60px;
}

.project-tile {
  position: relative;
  overflow: hidden;
  background: var(--pale);
}

.project-tile:first-child { grid-row: 1 / 3; }

.project-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.project-tile:hover img { transform: scale(1.05); }

.project-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 26px;
  background: linear-gradient(transparent, rgba(20,20,20,0.78));
  color: var(--white);
  transform: translateY(6px);
  transition: transform 0.35s;
}

.project-tile:hover .project-info { transform: translateY(0); }

.project-cat {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 6px;
  font-weight: 400;
}

.project-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.2;
}

/* =============================================
   CTA BAND
   ============================================= */

.cta-band {
  background: var(--navy);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.cta-band-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
}

.cta-band-title em { font-style: italic; color: var(--amber); }

.cta-contact {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-location {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 4px;
}

.cta-contact a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.cta-contact a:hover { color: var(--amber); }

/* =============================================
   INNER PAGE HEADER (non-homepage)
   ============================================= */

.page-header {
  padding: 160px 60px 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: attr(data-title);
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(100px, 14vw, 180px);
  font-weight: 300;
  color: rgba(28,43,74,0.045);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
  color: var(--navy);
  max-width: 700px;
}

.page-header-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--mid);
  max-width: 560px;
  margin-top: 22px;
  line-height: 1.85;
}

/* =============================================
   PROCESS STEPS (routines page)
   ============================================= */

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--pale);
  margin-top: 64px;
}

.process-step {
  background: var(--white);
  padding: 52px 44px;
  position: relative;
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  color: rgba(28,43,74,0.08);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.step-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.85;
}

.step-accent {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--amber);
  margin-bottom: 20px;
}

/* =============================================
   CONTACT PAGE (reach)
   ============================================= */

.reach-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}

.contact-form .form-group {
  margin-bottom: 24px;
}

.contact-form label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 400;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  background: var(--cream);
  font-family: 'Swiss721', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--dark);
  outline: none;
  transition: border-color 0.25s;
  border-radius: 0;
  appearance: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--amber);
  background: var(--white);
}

.contact-form textarea {
  height: 140px;
  resize: vertical;
}

.contact-info-block {
  position: sticky;
  top: 100px;
}

.contact-location-card {
  background: var(--cream);
  padding: 40px;
  margin-bottom: 3px;
}

.location-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 16px;
}

.location-detail {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-detail a { color: var(--mid); transition: color 0.2s; }
.location-detail a:hover { color: var(--amber); }

.location-icon {
  width: 16px;
  color: var(--amber);
  font-style: normal;
  flex-shrink: 0;
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
  background: var(--dark);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 80px 60px 60px;
}

.footer-brand img {
  width: 48px;
  margin-bottom: 14px;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 300;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 300;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 18px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0;
  transition: border-color 0.2s, color 0.2s;
}

.footer-socials a:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.footer-col-title {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 400;
  margin-bottom: 24px;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-list a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.footer-nav-list a:hover { color: var(--amber); }

.footer-contact-item {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-item a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--amber); }

.footer-contact-icon {
  color: var(--amber);
  font-style: normal;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding: 22px 60px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.1em;
}

.footer-bottom-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-bottom-links a {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--amber); }

/* =============================================
   TICKER
   ============================================= */

.ticker {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  animation: tickerMove 22s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 300;
}

.ticker-dot {
  color: var(--amber);
  font-size: 6px;
}

@keyframes tickerMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   UTILITIES
   ============================================= */

.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }

.divider {
  width: 40px;
  height: 1px;
  background: var(--amber);
  margin: 24px 0;
}

/* =============================================
   ACUMEN PAGE — Team / Values
   ============================================= */

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--pale);
  margin-top: 60px;
}

.value-card {
  background: var(--white);
  padding: 48px 44px;
}

.value-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--amber);
  font-weight: 300;
  margin-bottom: 16px;
}

.value-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 14px;
}

.value-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.85;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .site-nav { padding: 0 36px; }
  .section, .section-sm { padding: 80px 36px; }
  .page-hero-content { padding: 0 36px 70px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 48px; padding: 60px 36px 48px; }
  .footer-bottom { padding: 18px 36px; }
  .cta-band { padding: 70px 36px; }
  .tag-bar { padding: 18px 36px; }
  .page-header { padding: 130px 36px 60px; }
  .project-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .project-tile:first-child { grid-row: auto; grid-column: 1 / -1; min-height: 320px; }
}

@media (max-width: 768px) {
  .site-nav { padding: 0 24px; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 80px; left: 0; right: 0; background: var(--cream); padding: 32px 24px; gap: 28px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 12px; }
  .nav-toggle { display: flex; }
  .section, .section-sm { padding: 64px 24px; }
  .page-hero-content { padding: 0 24px 60px; }
  .page-header { padding: 120px 24px 52px; }
  .services-grid, .process-steps { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; }
  .split-img { min-height: 300px; }
  .split-content { padding: 52px 24px; }
  .project-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .project-tile:first-child { grid-column: auto; min-height: 260px; }
  .project-tile { min-height: 220px; }
  .cta-band { grid-template-columns: 1fr; gap: 36px; padding: 56px 24px; }
  .cta-contact { text-align: left; }
  .reach-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-main { grid-template-columns: 1fr 1fr; padding: 52px 24px 40px; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; padding: 18px 24px; }
  .tag-bar { padding: 16px 24px; }
  .tag-bar-inner { gap: 28px; }
  .scroll-cue { display: none; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer-main { grid-template-columns: 1fr; }
  .stats-row { gap: 32px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 16px; }
}
