/* ═══════════════════════════════════════════════════
   Dähn Strategic Flow Consulting — style.css
   Palette: warm slate · pearl white · brushed gold
   Tone: business-casual, refined, modern
   ═══════════════════════════════════════════════════ */

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

/* ── Reset ──────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ── Tokens ─────────────────────────────────────── */
:root {
  /* Core palette – warm slate, not brown */
  --bg:          #e8e5e0;          /* warm off-white page bg */
  --bg-alt:      #e0ddd7;          /* slightly deeper section bg */
  --surface:     #f5f3ef;          /* card / panel surface */
  --surface-2:   #eeebe5;          /* subtle inset surface */

  /* Slate dark for text & UI */
  --ink:         #1e1c1a;          /* primary text */
  --ink-2:       #3d3a36;          /* secondary text */
  --ink-3:       #7a766f;          /* muted / labels */
  --ink-4:       #b0aa9f;          /* placeholder / dividers */

  /* Borders – very quiet */
  --border:      rgba(30,28,26,0.10);
  --border-mid:  rgba(30,28,26,0.16);

  /* Accent – brushed gold, not fluorescent yellow */
  --gold:        #b8912a;
  --gold-light:  #d4aa4a;
  --gold-pale:   #f5edd6;
  --gold-grad:   linear-gradient(135deg, #b8912a 0%, #d4aa4a 50%, #b8912a 100%);

  /* Header */
  --header-bg:   rgba(232,229,224,0.93);

  /* Shadows – light and airy */
  --shadow-sm:   0 1px 4px rgba(30,28,26,0.06), 0 2px 8px rgba(30,28,26,0.04);
  --shadow-md:   0 4px 16px rgba(30,28,26,0.08), 0 8px 24px rgba(30,28,26,0.05);
  --shadow-lg:   0 12px 40px rgba(30,28,26,0.10), 0 4px 12px rgba(30,28,26,0.05);

  /* Motion */
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --trans:       all 0.35s var(--ease);

  /* Layout */
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --max-w:       1340px;           /* wider cap so content doesn't look boxed on 27" */
}

/* ── Base ────────────────────────────────────────── */
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.75;
  padding-top: 128px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.6rem); }
h4 { font-size: 1.05rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }

p { color: var(--ink-2); }

a { color: inherit; text-decoration: none; transition: color 0.2s; }

img { display: block; max-width: 100%; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Header ─────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 128px;
}

.header__logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  line-height: 1;
}

.header__logo img {
  height: 78px;
  width: auto;
  opacity: 0.9;
}

.header__logo-sub {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 5px;
}

.header__strip {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 5px;
}

.header__word {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  min-width: 52px;
  transition: opacity 0.4s;
}

.header__dots {
  display: flex;
  gap: 5px;
}

.header__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  transition: transform 0.4s, box-shadow 0.4s;
}

.header__dot:nth-child(1) {
  background: #e05252;           /* red */
  box-shadow: 0 0 4px rgba(224,82,82,0.4);
}

.header__dot:nth-child(2) {
  background: #e4b526;           /* amber / yellow */
  box-shadow: 0 0 4px rgba(228,181,38,0.4);
}

.header__dot:nth-child(3) {
  background: #4caf7d;           /* green */
  box-shadow: 0 0 4px rgba(76,175,125,0.4);
}

.header__dot.active {
  transform: scale(1.35);
  filter: brightness(1.15);
}

/* Nav */
.header__nav {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
}

.header__nav a {
  display: block;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: var(--radius-sm);
  transition: var(--trans);
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--ink);
  background: var(--bg-alt);
}

.header__nav .nav-cta {
  background: var(--ink);
  color: var(--bg) !important;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.header__nav .nav-cta:hover {
  background: var(--gold);
  color: #fff !important;
}

.header__nav .nav-cta.active {
  background: var(--gold);
  color: #fff !important;
}

/* Burger */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--trans);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 12px 0 20px;
}

.mobile-nav a {
  padding: 11px 32px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--gold);
}

.mobile-nav.open {
  display: flex;
}

/* ── Hero / Page Hero ───────────────────────────── */
.hero-section {
  position: relative;
  background:
    linear-gradient(160deg, rgba(232,229,224,0.72) 20%, rgba(224,221,215,0.50) 100%),
    url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  filter: contrast(1.06) saturate(0.92);
}

.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-section__content {
  max-width: 680px;
}

.hero-section h1 {
  color: var(--ink);
  margin-bottom: 18px;
  animation: fadeUp 0.8s var(--ease) both;
}

.hero-section p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--ink-2);
  max-width: 520px;
  animation: fadeUp 0.8s 0.15s var(--ease) both;
}

.hero-section__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.28s var(--ease) both;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1.5s 1s var(--ease) both;
}

.scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}

.scroll-hint__mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid var(--border-mid);
  border-radius: 12px;
  position: relative;
}

.scroll-hint__mouse::after {
  content: '';
  width: 3px;
  height: 6px;
  background: var(--gold);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
  0%   { top: 6px; opacity: 1; }
  100% { top: 16px; opacity: 0; }
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 64px 0 52px;
}

.page-hero h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 10px;
}

.page-hero p {
  color: var(--ink-3);
  font-size: 1.05rem;
}

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  border: none;
  transition: var(--trans);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-gold {
  background: var(--ink);
  color: var(--bg);
}

.btn-gold:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,145,42,0.28);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border-mid);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ── Stats Band ──────────────────────────────────── */
.stats-band {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}

.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  max-width: 860px;              /* keeps the 4 boxes tight, not stretched across the full screen */
  margin: 0 auto;
}

.stats-band__item {
  background: var(--surface);
  padding: 28px 20px;
  text-align: center;
}

.stats-band__num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.1rem;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 5px;
}

.stats-band__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Main intro section ──────────────────────────── */
.intro {
  padding: 96px 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.intro h2 {
  text-align: center;
  margin-bottom: 12px;
}

.subheading {
  text-align: center;
  color: var(--ink-3);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto 56px;
}

/* ── Feature tiles (services grid) ──────────────── */
.grid-layout {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--border);
}

.feature-tile {
  display: flex;
  gap: 3rem;
  background: var(--surface);
  padding: 3rem 3.5rem;
  align-items: center;
  transition: background 0.25s;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), background 0.2s;
}

.feature-tile.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-tile:hover {
  background: var(--surface-2);
}

.feature-tile img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  filter: saturate(0.85) brightness(1.02);
}

.feature-text h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.feature-text p {
  color: var(--ink-3);
  font-size: 0.975rem;
  line-height: 1.7;
}

.feature-tile:nth-child(even) {
  flex-direction: row-reverse;
}

/* Services page: tiles without images */
#services-grid .feature-tile {
  display: block;
  padding: 2.5rem 3rem;
}

#services-grid .feature-text h3 {
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 14px;
}

#services-grid .feature-text h3::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* ── Quote band ──────────────────────────────────── */
.quote-band {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 32px;
  text-align: center;
}

.quote-band blockquote {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--bg);
  max-width: 820px;
  margin: 0 auto 16px;
  line-height: 1.45;
  font-style: italic;
}

.quote-band__author {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}

/* ── CTA band ────────────────────────────────────── */
.cta-band {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 32px;
  text-align: center;
}

.cta-band h2 {
  margin-bottom: 12px;
}

.cta-band p {
  color: var(--ink-3);
  max-width: 480px;
  margin: 0 auto 28px;
  font-size: 1rem;
}

/* ── About page ──────────────────────────────────── */
.about-text {
  max-width: 720px;
  margin: 0 auto 16px;
}

.about-text p {
  color: var(--ink-2);
  margin-bottom: 16px;
  font-size: 1.025rem;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 32px;
}

.value-card {
  background: var(--surface);
  padding: 2rem 2.25rem;
  transition: background 0.2s;
}

.value-card:hover {
  background: var(--gold-pale);
}

.value-card__icon {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--gold);
  opacity: 0.8;
}

.value-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--ink-3);
  line-height: 1.65;
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 32px;
}

.team-card {
  background: var(--surface);
  padding: 2.25rem 2.5rem;
  transition: background 0.2s;
}

.team-card:hover {
  background: var(--surface-2);
}

.team-card__role {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.team-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--ink);
}

.team-card p {
  font-size: 0.9rem;
  color: var(--ink-3);
  line-height: 1.65;
}

/* ── Contact page ────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info__item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.contact-info__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 4px;
}

.contact-info__val {
  font-size: 0.95rem;
  color: var(--ink-2);
  font-weight: 500;
}

.contact-info__val a {
  color: var(--ink-2);
  transition: color 0.2s;
}

.contact-info__val a:hover {
  color: var(--gold);
}

/* Form */
.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.form__input,
.form__select,
.form__textarea {
  padding: 11px 16px;
  background: var(--surface);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

.form__textarea {
  min-height: 140px;
  resize: vertical;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--ink-4);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,145,42,0.12);
}

.form-status {
  font-size: 0.875rem;
  color: var(--ink-3);
  margin-top: 4px;
}

/* ── Insights page ───────────────────────────────── */
.insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.insight-card--featured {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
}

.insight-card {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}

.insight-card:hover {
  background: var(--surface-2);
}

.insight-card__img {
  flex-shrink: 0;
}

.insight-card--featured .insight-card__img {
  width: 42%;
}

.insight-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
  filter: saturate(0.8) brightness(1.02);
}

.insight-card__body {
  padding: 2rem 2.25rem;
  flex: 1;
}

.insight-card__cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.insight-card__body h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  line-height: 1.35;
}

.insight-card__body p {
  font-size: 0.9rem;
  color: var(--ink-3);
  line-height: 1.65;
}

.insight-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 2.25rem 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--ink-4);
  font-weight: 500;
}

/* Newsletter strip */
.newsletter-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 32px;
  text-align: center;
}

.newsletter-strip h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.newsletter-strip p {
  color: var(--ink-3);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.newsletter-strip__form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
  justify-content: center;
}

.newsletter-strip__form .form__input {
  flex: 1;
}

/* ── Footer ──────────────────────────────────────── */
.footer {
  background: #2e2b27;           /* warm dark espresso, not pitch black */
  color: #e8e5e0;
  padding: 72px 32px 40px;
  margin-top: auto;
  border-top: 3px solid var(--gold);  /* gold accent line lifts it out of obituary territory */
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(232,229,224,0.12);
  margin-bottom: 32px;
}

.footer__brand img {
  height: 32px;
  width: auto;
  opacity: 0.55;
  margin-bottom: 16px;
  filter: invert(1) brightness(0.9) sepia(0.15);
}

.footer__brand p {
  font-size: 0.85rem;
  color: rgba(232,229,224,0.5);
  line-height: 1.7;
  max-width: 260px;
}

.footer__col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);        /* gold headers instead of barely-visible grey */
  margin-bottom: 16px;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col a {
  font-size: 0.875rem;
  color: rgba(232,229,224,0.72);   /* noticeably more readable */
  transition: color 0.2s;
}

.footer__col a:hover {
  color: var(--gold-light);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__copy,
.footer__tagline {
  font-size: 0.78rem;
  color: rgba(232,229,224,0.38);
}

.footer__tagline {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── Scroll reveal ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }

/* ── Animations ──────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .values-grid,
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-band__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  body { padding-top: 100px; }

  .header__inner { height: 100px; }

  .header__logo img { height: 62px; }

  .header__logo-sub { font-size: 0.6rem; }

  .header__word { font-size: 0.65rem; min-width: 42px; }

  .header__nav { display: none; }
  .header__burger { display: flex; }

  .hero-section { min-height: 75vh; }

  .grid-layout {
    border-radius: var(--radius-md);
  }

  .feature-tile,
  .feature-tile:nth-child(even) {
    flex-direction: column !important;
    padding: 2rem;
  }

  .feature-tile img {
    width: 100%;
    height: 200px;
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }

  .insight-card--featured {
    flex-direction: column;
  }

  .insight-card--featured .insight-card__img {
    width: 100%;
  }

  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .stats-band__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  #services-grid .feature-tile {
    padding: 1.75rem 2rem;
  }

  .newsletter-strip__form {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }

  .header__inner { padding: 0 20px; }

  .stats-band__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }
}
