/* =========================================================
   ESMH Consulting — stylesheet
   Palette: warm cream + sage green + soft gold accent
   ========================================================= */

:root {
  --bg:        #F4EFE6;
  --bg-soft:   #FBF7EF;
  --surface:   #FFFFFF;
  --line:      #E4DDCE;
  --ink:       #1A1F1B;
  --ink-soft:  #3A3F3A;
  --muted:     #6B6A60;
  --sage:      #5C6F5A;
  --sage-deep: #2C3A2D;
  --sage-soft: #B7C3B2;
  --gold:      #C9A96E;
  --gold-soft: #EBD9B6;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;

  --shadow-sm: 0 1px 2px rgba(20,25,20,.04), 0 4px 16px rgba(20,25,20,.04);
  --shadow-md: 0 6px 24px rgba(20,25,20,.06), 0 24px 48px rgba(20,25,20,.06);

  --serif: 'Instrument Serif', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --max:   1200px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { padding: 0; margin: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0;
}
h1 { font-size: clamp(40px, 6.4vw, 84px); }
h2 { font-size: clamp(30px, 4.4vw, 56px); }
h3 { font-size: clamp(20px, 2.2vw, 26px); line-height: 1.25; }
em { font-style: italic; color: var(--sage-deep); }

p { margin: 0 0 1em; }
.lead { font-size: 19px; color: var(--ink-soft); }
.muted { color: var(--muted); }
.small { font-size: 14px; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  padding: 6px 12px;
  border: 1px solid var(--sage-soft);
  border-radius: 999px;
  background: rgba(255,255,255,0.5);
}

/* ---------- Layout helpers ---------- */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 140px) var(--gutter);
}
.section__head { margin-bottom: clamp(40px, 6vw, 72px); max-width: 760px; }
.section__head h2 { margin-top: 14px; }
.section__head--row {
  display: flex; align-items: end; justify-content: space-between; gap: 24px;
  max-width: none; flex-wrap: wrap;
}
.badge {
  align-self: end;
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); padding: 8px 14px; border: 1px dashed var(--gold);
  border-radius: 999px; background: rgba(201,169,110,0.06);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn--primary { background: var(--sage-deep); color: var(--bg-soft); }
.btn--primary:hover { background: var(--ink); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--bg-soft); border-color: var(--sage); }
.btn--large { padding: 18px 28px; font-size: 16px; }
.btn--full  { width: 100%; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 24px;
  padding: 18px var(--gutter);
  background: rgba(244,239,230,0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav__brand { flex-shrink: 0; }
.nav__brand img { height: 38px; width: auto; }
.nav__menu {
  display: flex; gap: 28px; margin-left: auto;
  font-size: 15px; font-weight: 500; color: var(--ink-soft);
}
.nav__menu a { position: relative; padding: 8px 2px; }
.nav__menu a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 4px;
  height: 1px; background: var(--sage); transition: right .25s ease;
}
.nav__menu a:hover { color: var(--ink); }
.nav__menu a:hover::after { right: 0; }
.nav__cta { margin-left: 12px; }
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  margin-left: auto;
}
.nav__toggle span {
  display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) var(--gutter) clamp(72px, 10vw, 120px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.hero__inner { max-width: 640px; }
.hero__title { margin: 18px 0 22px; }
.hero__lede {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--ink-soft);
  max-width: 560px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 6px; }
.hero__pillars {
  margin-top: clamp(40px, 5vw, 56px);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  border-top: 1px solid var(--line); padding-top: 28px;
}
.hero__pillars li { display: flex; flex-direction: column; gap: 6px; }
.hero__pillars strong {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(22px, 2vw, 26px); color: var(--sage-deep);
  letter-spacing: 0.01em;
}
.hero__pillars span { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }

.hero__art {
  position: relative;
  aspect-ratio: 1 / 1.05;
  background: linear-gradient(135deg, #EFE8DA 0%, #DAE0CF 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.hero__art-card {
  position: absolute; left: 8%; top: 12%; right: 22%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 18px 14px;
  box-shadow: var(--shadow-sm);
}
.hero__chip {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.hero__chart { width: 100%; height: 110px; }
.hero__chart-foot {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--muted); margin-top: 6px;
}
.hero__art-pill {
  position: absolute;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px; font-weight: 500;
  box-shadow: var(--shadow-sm);
  display: inline-flex; align-items: center; gap: 8px;
}
.hero__art-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); }
.hero__art-pill--1 { right: 6%; top: 18%; }
.hero__art-pill--2 { left: 14%; bottom: 12%; color: var(--sage-deep); border-color: var(--sage-soft); background: #E8EFE3; }

/* ---------- TRUST ---------- */
.trust {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(40px, 6vw, 80px);
  text-align: center;
}
.trust__label {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 18px;
}
.trust__row {
  display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 56px);
  justify-content: center;
  font-family: var(--serif); font-size: clamp(18px, 2vw, 24px);
  color: var(--ink-soft); opacity: 0.7;
}
.trust__row li { padding: 6px 4px; }

/* ---------- ABOUT ---------- */
.section--about { background: var(--bg-soft); border-radius: var(--radius-lg); margin: 0 var(--gutter); padding-left: clamp(28px, 5vw, 80px); padding-right: clamp(28px, 5vw, 80px); }
.about__grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.about__copy p { max-width: 56ch; }
.about__bullets { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.about__bullets li {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--serif); font-size: 22px;
}
.about__bullets span {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; color: var(--gold);
  background: var(--gold-soft); padding: 6px 10px; border-radius: 999px;
}
.about__photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #DCE3D4;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  position: relative;
  aspect-ratio: 4 / 5;
}
.about__photo picture,
.about__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* keeps face in the upper portion of the crop when using a wider photo */
  object-position: 50% 28%;
}
.about__caption {
  position: absolute; left: 20px; bottom: 20px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex; flex-direction: column;
  font-size: 14px;
}
.about__caption strong { font-family: var(--serif); font-size: 18px; font-weight: 400; }
.about__caption span { color: var(--muted); font-size: 12px; }

/* ---------- SERVICES ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 36px);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-soft);
}
.service__num {
  font-family: var(--serif); font-style: italic;
  color: var(--gold); font-size: 22px;
}
.service h3 { margin-bottom: 4px; }
.service p { color: var(--ink-soft); }
.service ul { margin-top: 10px; display: flex; flex-direction: column; gap: 6px; }
.service ul li {
  position: relative; padding-left: 18px;
  font-size: 14px; color: var(--ink-soft);
}
.service ul li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px; border: 1.5px solid var(--sage); border-radius: 50%;
}

/* ---------- PROCESS ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.process::before {
  content: "";
  position: absolute; left: 4%; right: 4%; top: 32px;
  height: 1px; background: linear-gradient(90deg, transparent, var(--sage-soft), transparent);
}
.process__step {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
}
.process__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--sage-deep); color: var(--bg-soft);
  font-family: var(--serif); font-size: 18px;
  margin-bottom: 16px;
}
.process__step h3 { margin-bottom: 6px; }
.process__step p { color: var(--ink-soft); font-size: 15px; margin: 0; }

/* ---------- CASES ---------- */
.cases__grid, .insights__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.case {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.case:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.case__cover {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #DDE5D2 0%, #B7C3B2 100%);
}
.case__cover--alt  { background: linear-gradient(135deg, #EFE3CC 0%, #D9C7A1 100%); }
.case__cover--alt2 { background: linear-gradient(135deg, #E8DDD0 0%, #C9B8A0 100%); }
.case__body { padding: 22px 24px 28px; display: flex; flex-direction: column; gap: 8px; }
.tag {
  align-self: flex-start;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  color: var(--sage); border: 1px solid var(--sage-soft);
  padding: 4px 10px; border-radius: 999px; background: rgba(255,255,255,0.5);
}
.case h3 { font-size: 22px; }
.case p { margin: 0; }
.case--placeholder { opacity: 0.95; }
.case--placeholder .case__cover { position: relative; }
.case--placeholder .case__cover::after {
  content: "Coming soon";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--sage-deep); font-family: var(--serif); font-size: 26px; opacity: 0.55;
  letter-spacing: 0.04em;
}

/* ---------- TESTIMONIAL ---------- */
.testimonial {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 100px) var(--gutter);
  text-align: center;
}
.testimonial blockquote { margin: 0; }
.testimonial p {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 18px;
}
.testimonial footer { color: var(--muted); font-size: 14px; }
.testimonial cite { font-style: normal; }

/* ---------- INSIGHTS ---------- */
.post {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 26px 30px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.post:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.post__date {
  font-size: 12px; color: var(--muted); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
}
.post h3 { font-size: 22px; }
.post__read {
  margin-top: auto;
  font-family: var(--sans); font-weight: 600; font-size: 14px;
  color: var(--sage);
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  margin: 0 var(--gutter);
  background: var(--sage-deep);
  color: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 7vw, 96px) clamp(24px, 5vw, 80px);
  background-image:
    radial-gradient(circle at 80% 20%, rgba(201,169,110,0.18), transparent 50%),
    radial-gradient(circle at 10% 110%, rgba(255,255,255,0.06), transparent 60%);
}
.cta-banner__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.cta-banner h2 { color: var(--bg-soft); }
.cta-banner h2 em { color: var(--gold); }
.cta-banner p { color: rgba(251,247,239,0.78); margin: 18px auto 28px; max-width: 56ch; }
.cta-banner .btn--primary {
  background: var(--bg-soft); color: var(--sage-deep);
}
.cta-banner .btn--primary:hover { background: #fff; color: var(--ink); }

/* ---------- CONTACT ---------- */
.section--contact { padding-bottom: clamp(80px, 10vw, 140px); }
.contact__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact__copy h2 { margin: 14px 0 18px; }
.contact__copy p { color: var(--ink-soft); max-width: 48ch; }
.contact__details { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.contact__details li {
  display: grid; grid-template-columns: 110px 1fr; gap: 8px;
  padding: 12px 0; border-top: 1px solid var(--line);
}
.contact__label {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  color: var(--muted);
}
.contact__details a { color: var(--sage-deep); text-decoration: underline; text-underline-offset: 4px; }

.contact__form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 13px; font-weight: 600; color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.field input, .field textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  color: var(--ink);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--sage);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(92,111,90,0.15);
}
.field textarea { resize: vertical; min-height: 120px; }

/* Honeypot — off-screen, not display:none (some bots skip display:none) */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form__note { margin: 6px 0 0; font-size: 14px; color: var(--sage-deep); min-height: 20px; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--sage-deep);
  color: var(--bg-soft);
  margin-top: clamp(48px, 8vw, 96px);
  padding: clamp(48px, 6vw, 72px) var(--gutter) 32px;
}
.footer__top {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding-bottom: 32px; border-bottom: 1px solid rgba(251,247,239,0.15);
  flex-wrap: wrap;
}
.footer__brand img { height: 38px; width: auto; }
.footer__nav {
  display: flex; gap: 24px; flex-wrap: wrap;
  font-size: 14px; color: rgba(251,247,239,0.78);
}
.footer__nav a:hover { color: #fff; }
.footer__bottom {
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-between; gap: 12px;
  padding-top: 24px;
  font-size: 13px; color: rgba(251,247,239,0.6);
  flex-wrap: wrap;
}
.footer__legal {
  max-width: var(--max); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 8px 12px; align-items: center;
  padding: 18px 0 6px;
  font-size: 13px; color: rgba(251,247,239,0.78);
}
.footer__legal a { color: rgba(251,247,239,0.95); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.footer__legal a:hover { color: #fff; }
.footer__legal span { color: rgba(251,247,239,0.45); }

/* ---------- Legal pages (privacy / imprint / terms) ---------- */
.legal-body { background: var(--bg); }

.legal-nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  background: rgba(244,239,230,0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.legal-nav__brand img { height: 38px; width: auto; display: block; }
.legal-nav__back {
  font-size: 14px; font-weight: 500; color: var(--ink-soft);
  padding: 8px 4px;
}
.legal-nav__back:hover { color: var(--ink); }

.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) var(--gutter) clamp(64px, 8vw, 120px);
  font-size: 16px; line-height: 1.7;
  color: var(--ink-soft);
}
.legal-page__head { margin-bottom: clamp(32px, 4vw, 56px); }
.legal-page__head h1 {
  font-size: clamp(34px, 4.5vw, 54px);
  margin: 14px 0 10px;
  color: var(--ink);
}
.legal-page section { margin-bottom: clamp(28px, 4vw, 44px); }
.legal-page h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--ink);
  margin: 0 0 14px;
  padding-top: 4px;
}
.legal-page h3 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin: 22px 0 8px;
  letter-spacing: 0.01em;
}
.legal-page p { margin: 0 0 14px; }
.legal-page ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.legal-page ul li {
  position: relative;
  padding: 4px 0 4px 22px;
}
.legal-page ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
}
.legal-page address {
  font-style: normal;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.7;
}
.legal-page a {
  color: var(--sage-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.legal-page a:hover { color: var(--ink); }
.legal-page strong { color: var(--ink); font-weight: 600; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-height: 380px; aspect-ratio: 16 / 11; }
  .about__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process::before { display: none; }
  .cases__grid, .insights__grid { grid-template-columns: 1fr 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__menu {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 14px var(--gutter) 22px;
  }
  .nav.is-open .nav__menu a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav.is-open .nav__cta { display: block; padding: 14px var(--gutter); }

  .hero__pillars { grid-template-columns: 1fr; gap: 18px; }
  .hero__pillars strong { font-size: 20px; }
  .cases__grid, .insights__grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .section--about { margin: 0 12px; }
  .cta-banner { margin: 0 12px; }
  .section__head--row { align-items: start; }
  .badge { align-self: flex-start; }
  .contact__details li { grid-template-columns: 1fr; gap: 2px; }
}
