/* ============= TOKENS — V2 Modern Austin Polish ============= */
:root {
  --color-primary: #0F2A40;        /* deep navy with green undertone */
  --color-accent: #B85A3E;         /* muted oxblood / Tuscan red */
  --color-bg: #FAFAF6;             /* bone white / barely-warm off-white */
  --color-bg-alt: #F0EFE9;         /* warm gray */
  --color-text: #13181A;           /* deep cool ink */
  --color-text-mute: rgba(19, 24, 26, 0.62);
  --color-sage: #8FA398;           /* unexpected sage green */
  --color-line: rgba(15, 42, 64, 0.12);

  --font-heading: 'Instrument Serif', Georgia, serif;
  --font-body: 'Onest', system-ui, -apple-system, sans-serif;

  --max-w: 1320px;
  --side: max(1.5rem, calc((100vw - var(--max-w)) / 2));

  --shadow-sm: 0 1px 2px rgba(15, 42, 64, 0.04), 0 4px 12px rgba(15, 42, 64, 0.06), 0 12px 36px rgba(15, 42, 64, 0.04);
  --shadow-md: 0 1px 2px rgba(15, 42, 64, 0.04), 0 6px 18px rgba(15, 42, 64, 0.08), 0 18px 48px rgba(15, 42, 64, 0.06);
  --shadow-lg: 0 2px 4px rgba(15, 42, 64, 0.06), 0 10px 28px rgba(15, 42, 64, 0.10), 0 24px 60px rgba(15, 42, 64, 0.08);

  --radius-sm: 4px;
  --radius-md: 10px;
}

/* ============= RESET / BASE ============= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  font-feature-settings: 'kern', 'liga';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; padding: 0; color: inherit; }
ul { padding: 0; margin: 0; list-style: none; }

h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  color: var(--color-primary);
  line-height: 1.1;
}
h1, h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.75rem, 6.5vw, 6rem); }
h2 { font-size: clamp(2.25rem, 4.4vw, 4rem); }
h3 { font-family: var(--font-body); font-size: 1.2rem; font-weight: 600; letter-spacing: -0.005em; }
h4 { font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-accent); }
p { margin: 0 0 1em; }
em { font-style: italic; color: var(--color-accent); }

/* Reveal pattern */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s cubic-bezier(0.16,1,0.3,1), transform 1s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: none; }
.stagger-2 { transition-delay: 0.15s; }
.stagger-3 { transition-delay: 0.30s; }

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.85em 1.6em;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border-radius: 4px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn-large { padding: 1em 2em; font-size: 1.05rem; }
.btn-primary {
  background: var(--color-accent);
  color: var(--color-bg);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: #A14D33;
}
.btn-ghost {
  border: 1.5px solid currentColor;
  color: var(--color-bg);
  background: transparent;
}
.btn-ghost:hover { background: rgba(255,255,255,0.10); transform: translateY(-2px); }

/* ============= NAV ============= */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 246, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-line);
  transition: padding 0.3s ease;
}
.site-nav.scrolled { padding-block: 0; }
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav-logo svg { width: 220px; height: auto; display: block; }
.nav-cta-short { display: none; }
.nav-links { justify-self: end; display: flex; gap: 2.25rem; align-items: center; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-primary);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--color-accent);
  transition: right 0.3s ease;
}
.nav-links a:hover::after { right: 0; }

/* ============= HERO ============= */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  padding: 6rem var(--side) 4rem;
}
.hero-bg-img {
  position: absolute;
  inset: -5% 0;
  z-index: -2;
  overflow: hidden;
}
.hero-bg-img img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center 35%;
  will-change: transform;
  filter: contrast(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(15,42,64,0.30) 0%, rgba(15,42,64,0.20) 30%, rgba(15,42,64,0.40) 60%, rgba(15,42,64,0.85) 100%);
  mix-blend-mode: multiply;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  color: var(--color-bg);
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 2rem;
  display: inline-block;
  padding: 0.4em 0.9em;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(184, 90, 62, 0.4);
  border-radius: 4px;
}
.hero-headline {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2.75rem, 7vw, 6.5rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--color-bg);
  margin: 0 0 2rem;
  max-width: 16ch;
}
.hero-headline em { color: var(--color-accent); font-style: italic; }
.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: rgba(250, 250, 246, 0.80);
  max-width: 68ch;
  margin: 0 0 2.5rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-meta {
  position: absolute;
  bottom: 2rem;
  left: var(--side);
  right: var(--side);
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(250, 250, 246, 0.7);
  letter-spacing: 0.12em;
  z-index: 1;
}
.hero-meta strong { color: var(--color-accent); margin-right: 0.5em; font-weight: 600; }
.meta-divider { color: rgba(250, 250, 246, 0.3); }

/* ============= TRUST BAR ============= */
.trust-bar {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-line);
  padding: 3rem var(--side);
}
.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}
.trust-item .t-num {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2.25rem, 3.2vw, 3.25rem);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.trust-item .t-num sup { font-size: 0.5em; color: var(--color-accent); top: -0.7em; left: 0.1em; position: relative; }
.trust-item .t-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-mute);
}
.trust-divider { width: 1px; height: 36px; background: var(--color-sage); flex-shrink: 0; }

/* ============= SECTION SHARED ============= */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 1.5rem;
}
.section-h2 {
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  font-weight: 400;
  margin: 0 0 1.5rem;
  max-width: 22ch;
  line-height: 1.05;
}
.section-intro { font-size: 1.15rem; color: var(--color-text-mute); margin: 0 0 3rem; max-width: 56ch; }

/* ============= WHY WE EXIST ============= */
.why-we-exist {
  padding: 9rem var(--side);
  background: var(--color-bg);
  position: relative;
}
.why-we-exist .section-h2 { max-width: none; text-align: center; margin-inline: auto; max-width: 24ch; margin-bottom: 4rem; }
.why-we-exist .section-eyebrow { text-align: center; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}
.why-grid p { font-size: 1.125rem; line-height: 1.7; }

/* ============= PRACTICE AREAS — BENTO GRID ============= */
.practice-areas {
  background: var(--color-bg-alt);
  padding: 8rem 0;
}
.bento-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
  margin-top: 3rem;
}
.bento-card {
  background: var(--color-bg);
  padding: 2.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s cubic-bezier(0.16,1,0.3,1);
  display: flex;
  flex-direction: column;
  position: relative;
}
.bento-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.bento-feature {
  grid-row: span 2;
  background: var(--color-primary);
  color: var(--color-bg);
}
.bento-feature h3, .bento-feature p { color: var(--color-bg); }
.bento-feature .bento-num { color: var(--color-accent); }
.bento-feature .bento-icon { color: var(--color-accent); }
.bento-feature .card-link { color: var(--color-accent); }
.bento-num {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 5rem;
  line-height: 0.9;
  color: var(--color-sage);
  opacity: 0.7;
  margin-bottom: 1rem;
}
.bento-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  color: var(--color-primary);
}
.bento-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.bento-feature h3 { font-size: 1.85rem; font-weight: 500; font-family: var(--font-heading); letter-spacing: -0.01em; }
.bento-card p { font-size: 0.97rem; line-height: 1.6; flex: 1; }
.card-link {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  transition: gap 0.25s ease;
}
.card-link:hover { gap: 0.7em; }
.bento-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  padding: 0.4em 0.8em;
  border-radius: 3px;
}

/* ============= HOW WE WORK ============= */
.how-we-work {
  padding: 8rem 0;
  background: var(--color-bg);
}
.steps {
  margin-top: 4rem;
  display: grid;
  gap: 4rem;
  max-width: 920px;
  margin-inline: auto;
}
.step {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: start;
}
.step-num {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(5rem, 11vw, 9rem);
  line-height: 0.85;
  color: var(--color-primary);
  letter-spacing: -0.04em;
  text-align: right;
}
.step-body h3 { font-size: 1.65rem; margin: 0.25em 0 0.5rem; padding-top: 0.5em; }
.step-body p { font-size: 1.05rem; line-height: 1.6; max-width: 56ch; margin: 0; }

/* ============= REVIEWS ============= */
.reviews {
  padding: 8rem 0;
  background: var(--color-bg-alt);
}
.reviews-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}
.reviews-stamp svg { width: 100%; height: auto; display: block; }
.reviews-list { display: grid; gap: 1.5rem; }
.review {
  margin: 0;
  padding: 2rem;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  border-left: 3px solid var(--color-accent);
}
.review::before {
  content: '"';
  position: absolute;
  top: 0.4em;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.4;
}
.review-body {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--color-primary);
  margin: 0 0 0.8rem;
}
.review-attr {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--color-text-mute);
  font-weight: 500;
  letter-spacing: 0.08em;
}

/* ============= ABOUT TEASER ============= */
.about-teaser { padding: 8rem 0; background: var(--color-bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text p { font-size: 1.075rem; line-height: 1.65; }
.about-credentials {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-line);
}
.about-credentials h4 { color: var(--color-accent); margin-bottom: 1rem; }
.about-credentials ul { display: grid; gap: 0.5rem; }
.about-credentials li {
  font-size: 0.95rem;
  color: var(--color-text);
  padding-left: 1.25rem;
  position: relative;
}
.about-credentials li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 1px;
  background: var(--color-accent);
}
.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.portrait-wrap {
  position: relative;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.team-portrait {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(0.4) contrast(1.05);
  display: block;
}
.portrait-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-primary);
  mix-blend-mode: multiply;
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
}
.portrait-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(15,42,64,0.85) 100%);
  color: var(--color-bg);
  z-index: 2;
}
.portrait-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 0.2em;
}
.portrait-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}

/* ============= SERVICE AREA ============= */
.service-area { padding: 8rem 0; background: var(--color-bg-alt); }
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.service-text p { font-size: 1.075rem; line-height: 1.65; max-width: 50ch; }
.service-cities {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.service-cities li a {
  display: inline-block;
  padding: 0.6em 1.2em;
  border: 1px solid var(--color-primary);
  border-radius: 3px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-primary);
  transition: background 0.25s ease, color 0.25s ease;
}
.service-cities li a:hover { background: var(--color-primary); color: var(--color-bg); }
.service-map { display: flex; justify-content: center; }
.service-map svg { width: 100%; max-width: 460px; height: auto; }

/* ============= RESOURCES ============= */
.resources-teaser { padding: 8rem 0; background: var(--color-bg); }
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.resource-card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg-alt);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.resource-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.resource-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  margin-bottom: 1rem;
  display: block;
}
.resource-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; }
.resource-card p { color: var(--color-text); flex: 1; font-size: 0.95rem; line-height: 1.55; }

/* ============= CTA ============= */
.cta-section {
  position: relative;
  padding: 8rem var(--side);
  background:
    radial-gradient(circle at 20% 30%, rgba(184,90,62,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(143,163,152,0.06) 0%, transparent 50%),
    var(--color-primary);
  color: var(--color-bg);
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(212,165,116,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.4;
  pointer-events: none;
}
.cta-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-section .section-eyebrow { color: var(--color-accent); }
.cta-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-bg);
  margin: 0 0 1.5rem;
  max-width: 22ch;
  margin-inline: auto;
  letter-spacing: -0.02em;
}
.cta-headline em { color: var(--color-accent); }
.cta-sub { font-size: 1.15rem; color: rgba(250, 250, 246, 0.80); margin-bottom: 2.5rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.cta-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  font-size: 0.92rem;
  color: rgba(250, 250, 246, 0.85);
}
.cta-meta li strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  margin-bottom: 0.4rem;
}
.cta-meta a { color: var(--color-bg); border-bottom: 1px solid rgba(184, 90, 62, 0.5); }
.cta-meta a:hover { border-color: var(--color-accent); }

/* ============= FOOTER ============= */
.site-footer {
  background: var(--color-text);
  color: var(--color-bg);
  padding: 5rem var(--side) 2rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 4rem;
  align-items: start;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(143, 163, 152, 0.15);
}
.footer-logo { width: 240px; height: auto; }
.footer-address { margin-top: 2rem; font-size: 0.95rem; line-height: 1.6; color: rgba(250, 250, 246, 0.75); }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.footer-col h4 { color: var(--color-accent); margin-bottom: 1.25rem; }
.footer-col ul { display: grid; gap: 0.5rem; }
.footer-col a { color: rgba(250, 250, 246, 0.75); font-size: 0.93rem; }
.footer-col a:hover { color: var(--color-accent); }
.footer-meta { text-align: center; font-size: 0.78rem; color: rgba(250, 250, 246, 0.4); margin: 2rem 0 0; }

/* ============= RESPONSIVE ============= */
@media (max-width: 1100px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-feature { grid-row: span 1; grid-column: span 2; }
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-row { grid-template-columns: 1fr; gap: 3rem; }
  .reviews-stamp { max-width: 220px; margin-inline: auto; }
}
@media (max-width: 860px) {
  body { font-size: 16px; }
  .nav-inner { grid-template-columns: 1fr auto; gap: 1rem; padding: 1rem 1.25rem; }
  .nav-links { display: none; }
  .nav-logo svg { width: 180px; }
  .nav-cta .btn { padding: 0.7em 1.1em; font-size: 0.85rem; }
  .nav-cta .nav-cta-full { display: none; }
  .nav-cta .nav-cta-short { display: inline; }
}
@media (max-width: 480px) {
  .nav-logo svg { width: 150px; }
  .nav-cta .btn { padding: 0.65em 1em; font-size: 0.8rem; letter-spacing: 0.04em; }

  .hero { min-height: 80vh; padding-bottom: 6rem; }
  .hero-meta { flex-direction: column; gap: 0.5rem; }

  .trust-inner { flex-wrap: wrap; gap: 1.25rem 1rem; }
  .trust-divider { display: none; }
  .trust-item { flex-basis: calc(50% - 0.5rem); }

  .why-grid { grid-template-columns: 1fr; gap: 2rem; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-feature { grid-column: span 1; }
  .resources-grid { grid-template-columns: 1fr; }

  .step { grid-template-columns: 100px 1fr; gap: 1.5rem; }
  .step-num { font-size: 4rem; }

  .about-grid, .service-grid { grid-template-columns: 1fr; gap: 3rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .cta-meta { flex-direction: column; gap: 1.5rem; }
}
