/* =============================================
   MATALEGION INC. — Global Styles
   ============================================= */

:root {
  --cream: #F4F0E8;
  --cream-2: #EAE4D6;
  --forest: #173A2B;
  --forest-mid: #254D3A;
  --forest-light: #3A7057;
  --lime: #C8E86A;
  --lime-dim: #9CB84A;
  --sand: #D4C9A8;
  --ink: #141210;
  --muted: #6B6456;
  --white: #F7F1DE;
  --radius: 16px;
  --gap: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  background: var(--cream);
  color: var(--ink);
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* =============================================
   NAV
   ============================================= */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: var(--white);
  border-bottom: 1px solid var(--cream-2);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.nav-logo-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 4px;
}

.nav-links a {
  font-size: 12px;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover { background: var(--cream-2); color: var(--ink); }
.nav-links a.active { background: var(--forest); color: var(--lime); }

.nav-btn {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 22px;
  background: var(--lime);
  color: var(--forest);
  border: none;
  border-radius: 100px;
  transition: background 0.2s;
}

.nav-btn:hover { background: var(--lime-dim); }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-mobile-menu {
  display: none;
  position: absolute;
  top: 65px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--cream-2);
  padding: 16px 32px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a { font-size: 14px; color: var(--muted); padding: 10px 0; border-bottom: 1px solid var(--cream-2); }
.nav-mobile-menu a.active { color: var(--forest); font-weight: 700; }
.nav-mobile-menu .nav-btn { margin-top: 8px; text-align: center; display: block; }

/* =============================================
   BUTTONS
   ============================================= */
.btn-lime {
  font-size: 12px;
  font-weight: 700;
  padding: 11px 24px;
  background: var(--lime);
  color: var(--forest);
  border: none;
  border-radius: 100px;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.btn-lime:hover { background: var(--lime-dim); }

.btn-ghost-white {
  font-size: 12px;
  padding: 10px 22px;
  background: transparent;
  color: rgba(247,241,222,0.7);
  border: 1px solid rgba(247,241,222,0.25);
  border-radius: 100px;
  transition: background 0.2s;
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.1); }

.btn-forest {
  font-size: 12px;
  font-weight: 700;
  padding: 12px 24px;
  background: var(--forest);
  color: var(--lime);
  border: none;
  border-radius: 100px;
  transition: background 0.2s;
}
.btn-forest:hover { background: var(--forest-mid); }

.btn-outline-forest {
  font-size: 12px;
  padding: 11px 22px;
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
  border-radius: 100px;
  transition: background 0.2s;
}
.btn-outline-forest:hover { background: rgba(23,58,43,0.08); }

.btn-outline-rust {
  font-size: 12px;
  padding: 11px 22px;
  background: transparent;
  color: #C4451A;
  border: 1px solid #C4451A;
  border-radius: 100px;
  transition: background 0.2s;
}

/* =============================================
   BENTO GRID (HOME)
   ============================================= */
.bento {
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.bento-row {
  display: grid;
  gap: var(--gap);
}

.row-a { grid-template-columns: 2fr 1fr 1fr; }
.row-b { grid-template-columns: 1fr 1fr 1.2fr; }
.row-c { grid-template-columns: 1.2fr 1fr 1fr; }

.tile {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

/* Hero tile */
.tile-hero {
  background: var(--forest);
  padding: 44px 40px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-watermark {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  pointer-events: none;
  opacity: 0.18;
  z-index: 1;
}
.hero-watermark img {
  width: 240px;
  height: 240px;
  display: block;
}
.hero-watermark-tag {
  font-size: 12px;
  letter-spacing: 5px;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
}
.tile-hero > div:not(.hero-watermark) { position: relative; z-index: 2; }
.tile-hero .hero-actions { position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,232,106,0.15);
  border: 1px solid rgba(200,232,106,0.3);
  padding: 6px 14px; border-radius: 100px; width: fit-content;
}
.hero-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); }
.hero-tag-text { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--lime); }
.hero-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700; line-height: 1.15;
  color: var(--white); letter-spacing: -0.5px;
  margin-top: 24px;
}
.hero-title em {
  font-style: italic; color: var(--lime);
  font-family: Georgia, serif; font-weight: 400;
}
.hero-sub {
  font-size: 13px; color: rgba(247,241,222,0.55);
  line-height: 1.7; max-width: 340px; margin-top: 16px;
}
.hero-actions { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }

/* Stat tiles */
.tile-stat {
  background: var(--white);
  padding: 32px 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 160px;
}
.tile-stat-top { display: flex; align-items: flex-start; justify-content: space-between; }
.tile-stat-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.tile-stat-icon {
  width: 32px; height: 32px;
  background: var(--cream-2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.tile-stat-icon svg { width: 16px; height: 16px; stroke: var(--forest-light); fill: none; stroke-width: 1.5; }
.tile-stat-num { font-size: 44px; font-weight: 700; color: var(--forest); line-height: 1; letter-spacing: -2px; }
.tile-stat-sub { font-size: 12px; color: var(--muted); margin-top: 4px; }

.tile-lime {
  background: var(--lime);
  padding: 32px 28px; min-height: 160px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.tile-lime .tile-stat-label { color: var(--forest); opacity: 0.65; }
.tile-lime .tile-stat-num { color: var(--forest); }
.tile-lime .tile-stat-sub { color: var(--forest-mid); opacity: 0.75; }

/* Service tiles */
.tile-service {
  background: var(--white);
  padding: 36px 32px; min-height: 240px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.service-num { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--sand); margin-bottom: 16px; }
.service-icon-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.service-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--cream); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.service-icon svg { width: 22px; height: 22px; stroke: var(--forest); fill: none; stroke-width: 1.5; }
.service-title { font-size: 16px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.service-body { font-size: 13px; color: var(--muted); line-height: 1.75; flex: 1; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.service-tag { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; padding: 5px 10px; background: var(--cream); color: var(--muted); border-radius: 100px; }

.tile-service-forest {
  background: var(--forest-mid);
  padding: 36px 32px; min-height: 240px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.service-icon-forest {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.service-title-light { font-size: 16px; font-weight: 700; color: var(--white); line-height: 1.3; }
.service-body-light { font-size: 13px; color: rgba(247,241,222,0.55); line-height: 1.75; flex: 1; }
.service-tag-light { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; padding: 5px 10px; background: rgba(255,255,255,0.1); color: rgba(247,241,222,0.7); border-radius: 100px; }

/* Tagline, CTA, Contact tiles */
.tile-tagline {
  background: var(--cream-2);
  padding: 36px 32px; min-height: 240px;
  display: flex; flex-direction: column; justify-content: center;
  border: 1px solid rgba(0,0,0,0.06);
}
.tagline-eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--forest-light); margin-bottom: 16px; }
.tagline-text { font-size: clamp(16px, 2vw, 22px); font-weight: 400; color: var(--ink); line-height: 1.5; font-family: Georgia, serif; font-style: italic; }
.tagline-attr { font-size: 11px; color: var(--muted); margin-top: 20px; letter-spacing: 1px; text-transform: uppercase; }

.tile-cta {
  background: var(--ink);
  padding: 36px 32px; min-height: 240px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.cta-head { font-size: 20px; font-weight: 700; color: var(--white); line-height: 1.3; }
.cta-head em { font-style: italic; color: var(--lime); font-family: Georgia, serif; font-weight: 400; }
.cta-sub { font-size: 13px; color: rgba(247,241,222,0.45); line-height: 1.6; margin-top: 12px; }
.tile-cta .btn-lime { margin-top: 24px; width: fit-content; display: inline-block; text-align: center; }

.tile-contact {
  background: var(--forest);
  padding: 36px 32px; min-height: 240px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.contact-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(200,232,106,0.6); }
.contact-line { font-size: 13px; color: rgba(247,241,222,0.7); margin-top: 14px; line-height: 1.8; }
.contact-line strong { color: var(--white); display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; font-family: Arial, sans-serif; }

/* Wide CTA bar */
.tile-wide-cta {
  background: var(--lime);
  padding: 36px 40px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  border-radius: var(--radius);
}
.wide-cta-left { max-width: 500px; }
.wide-cta-title { font-size: 20px; font-weight: 700; color: var(--forest); line-height: 1.3; }
.wide-cta-sub { font-size: 13px; color: var(--forest-mid); opacity: 0.75; margin-top: 8px; }
.wide-cta-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* =============================================
   INNER PAGE HERO
   ============================================= */
.page-hero {
  background: var(--forest);
  padding: 64px 32px 56px;
  text-align: center;
}
.page-hero-lockup {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  margin: 0 auto 36px;
  mix-blend-mode: screen;
}
.page-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,232,106,0.15);
  border: 1px solid rgba(200,232,106,0.3);
  padding: 6px 16px; border-radius: 100px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--lime);
  margin-bottom: 24px;
}
.page-hero-title { font-size: clamp(28px, 4vw, 48px); font-weight: 700; color: var(--white); line-height: 1.15; letter-spacing: -0.5px; }
.page-hero-title em { font-style: italic; color: var(--lime); font-family: Georgia, serif; font-weight: 400; }
.page-hero-sub { font-size: 15px; color: rgba(247,241,222,0.6); line-height: 1.7; max-width: 560px; margin: 20px auto 0; }

/* =============================================
   SECTION UTILITIES
   ============================================= */
.section { padding: 64px 32px; }
.section-sm { padding: 40px 32px; }
.section-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--forest-light); margin-bottom: 12px; }
.section-title { font-size: clamp(24px, 3vw, 36px); font-weight: 700; color: var(--ink); line-height: 1.2; margin-bottom: 16px; }
.section-title em { font-style: italic; color: var(--forest-light); font-family: Georgia, serif; font-weight: 400; }
.section-body { font-size: 15px; color: var(--muted); line-height: 1.8; max-width: 680px; }

.divider { height: 1px; background: var(--cream-2); margin: 0 32px; }

/* =============================================
   SERVICES PAGE CARDS
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--cream-2);
  transition: box-shadow 0.2s;
}
.service-card:hover { box-shadow: 0 4px 24px rgba(23,58,43,0.08); }
.service-card.featured { background: var(--forest); }

.service-card-num { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--sand); margin-bottom: 20px; }
.service-card.featured .service-card-num { color: rgba(200,232,106,0.5); }

.service-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card.featured .service-card-icon { background: rgba(255,255,255,0.1); }
.service-card-icon svg { width: 24px; height: 24px; stroke: var(--forest); fill: none; stroke-width: 1.5; }
.service-card.featured .service-card-icon svg { stroke: var(--lime); }

.service-card-title { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 12px; line-height: 1.3; }
.service-card.featured .service-card-title { color: var(--white); }
.service-card-body { font-size: 13px; color: var(--muted); line-height: 1.75; }
.service-card.featured .service-card-body { color: rgba(247,241,222,0.55); }

.service-card-list { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.service-card-list li {
  font-size: 12px; color: var(--muted);
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.5;
}
.service-card.featured .service-card-list li { color: rgba(247,241,222,0.6); }
.service-card-list li::before { content: '—'; color: var(--forest-light); flex-shrink: 0; }
.service-card.featured .service-card-list li::before { color: var(--lime); }

/* =============================================
   LEGACY PAGE
   ============================================= */
.legacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.legacy-tile {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  border: 1px solid var(--cream-2);
}
.legacy-tile.dark { background: var(--forest); border-color: var(--forest); }

.legacy-tile-eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--forest-light); margin-bottom: 16px; }
.legacy-tile.dark .legacy-tile-eyebrow { color: rgba(200,232,106,0.6); }
.legacy-tile-title { font-size: 22px; font-weight: 700; color: var(--ink); line-height: 1.3; margin-bottom: 14px; }
.legacy-tile.dark .legacy-tile-title { color: var(--white); }
.legacy-tile-body { font-size: 14px; color: var(--muted); line-height: 1.8; }
.legacy-tile.dark .legacy-tile-body { color: rgba(247,241,222,0.55); }

.values-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.value-chip {
  background: var(--cream);
  border-radius: 12px; padding: 20px;
  border: 1px solid var(--cream-2);
}
.value-chip-title { font-size: 14px; font-weight: 700; color: var(--forest); margin-bottom: 6px; }
.value-chip-body { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  margin-top: 40px;
  align-items: start;
}

.contact-form-tile {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  border: 1px solid var(--cream-2);
}

.form-title { font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.form-sub { font-size: 13px; color: var(--muted); margin-bottom: 32px; line-height: 1.6; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--cream-2);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--forest-light); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--forest);
  color: var(--lime);
  border: none;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--forest-mid); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form-success-icon {
  width: 56px; height: 56px;
  background: rgba(23,58,43,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.form-success-icon svg { width: 28px; height: 28px; stroke: var(--forest); fill: none; stroke-width: 2; }
.form-success-title { font-size: 18px; font-weight: 700; color: var(--forest); margin-bottom: 8px; }
.form-success-body { font-size: 14px; color: var(--muted); line-height: 1.6; }

.contact-sidebar { display: flex; flex-direction: column; gap: 12px; }

.contact-info-tile {
  background: var(--forest);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.contact-info-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(200,232,106,0.6); margin-bottom: 20px; }
.contact-info-item { margin-bottom: 18px; }
.contact-info-item strong { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: rgba(247,241,222,0.5); display: block; margin-bottom: 4px; font-weight: 400; }
.contact-info-item span { font-size: 14px; color: var(--white); line-height: 1.6; }
.contact-info-item a { color: var(--lime); }

.calendly-tile {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--cream-2);
}
.calendly-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--forest-light); margin-bottom: 8px; }
.calendly-title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.calendly-sub { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 20px; }
.calendly-btn {
  display: block; width: 100%; padding: 13px;
  background: var(--lime); color: var(--forest);
  border: none; border-radius: 100px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  text-align: center;
  transition: background 0.2s;
}
.calendly-btn:hover { background: var(--lime-dim); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--forest);
  padding: 56px 32px 0;
  margin-top: 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand-logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.footer-logo-mark {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.footer-logo-text { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); }
.footer-tagline { font-size: 13px; color: rgba(255,250,244,0.78); line-height: 1.7; font-style: italic; }

.footer-col-title { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(200,232,106,0.6); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,250,244,0.88); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0;
}
.footer-copy { font-size: 11px; color: rgba(255,250,244,0.7); letter-spacing: 1px; }
.footer-mark { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(200,232,106,0.4); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .bento { padding: 16px; }
  .row-a, .row-b, .row-c { grid-template-columns: 1fr 1fr; }
  .tile-hero { grid-column: 1 / -1; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .contact-grid, .legacy-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav-links, .nav-btn { display: none; }
  .nav-hamburger { display: flex; }
  .nav { position: relative; }
  .bento { padding: 12px; gap: 10px; }
  .row-a, .row-b, .row-c { grid-template-columns: 1fr; }
  .tile-hero { min-height: 280px; }
  .tile-stat, .tile-lime { min-height: 140px; }
  .tile-wide-cta { padding: 28px 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .section, .section-sm { padding: 40px 20px; }
  .page-hero { padding: 48px 20px 40px; }
  .form-row { grid-template-columns: 1fr; }
}
