/* =============================================================
   Christian Schlatter — Website Styles
   Strict CD: Forest Green only · Terracotta only on claim dots
   ============================================================= */

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

@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/PlayfairDisplay-VariableFont_wght.ttf') format('truetype-variations'),
       url('fonts/PlayfairDisplay-VariableFont_wght.ttf') format('truetype');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/PlayfairDisplay-Italic-VariableFont_wght.ttf') format('truetype-variations'),
       url('fonts/PlayfairDisplay-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 400 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --forest:      #2D5A27;
  --forest-mid:  #4A7C42;
  --terra:       #A0522D;
  --near-black:  #1A1A1A;
  --slate:       #4A5568;
  --off-white:   #FAFAF8;
  --rule:        #D8D8D4;
  --rule-soft:   #EDEDE8;
  --serif:       'Playfair Display', 'Cambria', Georgia, 'Times New Roman', serif;
  --sans:        'Source Sans 3', 'Calibri', 'Segoe UI', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--near-black);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--forest); text-decoration: none; transition: opacity 150ms ease-out; }
a:hover { opacity: 0.85; }

::selection { background: var(--forest); color: var(--off-white); }

/* ---- Layout primitives ------------------------------------ */

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

.green-bar {
  position: fixed;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--forest);
  z-index: 60;
}

.claim-dot { color: var(--terra); }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--forest);
  padding-left: 14px;
  border-left: 2px solid var(--forest);
  line-height: 1.3;
}

.h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(34px, 5.2vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--near-black);
  margin: 0;
  text-wrap: balance;
}

.h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--near-black);
  margin: 0;
  text-wrap: balance;
}

.h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--near-black);
  margin: 0;
}

.lead {
  font-family: var(--sans);
  font-size: 19px;
  line-height: 1.55;
  color: var(--slate);
  margin: 0;
  max-width: 60ch;
  text-wrap: pretty;
}

p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--slate);
  margin: 0;
  max-width: 65ch;
  text-wrap: pretty;
}

.stack > * + * { margin-top: var(--gap, 16px); }

/* ---- Buttons --------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 14px 24px;
  border: 1px solid var(--forest);
  background: var(--forest);
  color: var(--off-white);
  cursor: pointer;
  transition: opacity 150ms ease-out, filter 150ms ease-out;
}
.btn:hover { opacity: 0.85; }
.btn:active { filter: saturate(0.9); }

.btn--ghost {
  background: transparent;
  color: var(--forest);
}
.btn--ghost:hover { background: var(--forest); color: var(--off-white); opacity: 1; }

.btn--inverse {
  background: var(--off-white);
  color: var(--forest);
  border-color: var(--off-white);
}

/* ---- Navbar ---------------------------------------------- */

.nav {
  position: fixed;
  top: 5px;
  left: 0; right: 0;
  z-index: 50;
  background: rgba(250, 250, 248, 0.96);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid var(--rule);
}
.nav__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__brand--logo {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.nav__brand--logo > .nav__text-stack {
  display: flex;
  flex-direction: column;
}
.nav__vogellogo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.nav__name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--near-black);
}
.nav__tag {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  margin-top: 4px;
}
.nav__links {
  display: flex;
  gap: 36px;
}
.nav__link {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
}
.nav__link:hover { color: var(--forest); opacity: 1; }
.nav__toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: var(--near-black);
}
.nav__toggle svg { display: block; }

.nav__mobile {
  display: none;
  border-top: 1px solid var(--rule);
  padding: 16px 32px 24px;
  background: var(--off-white);
}
.nav__mobile a {
  display: block;
  padding: 12px 0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  border-bottom: 1px solid var(--rule-soft);
}
.nav__mobile a:last-child { border-bottom: 0; }
.nav.is-open .nav__mobile { display: block; }

/* ---- Hero ----------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Full-bleed background image */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: auto 88%;
  background-repeat: no-repeat;
  background-position: right -2% center;
  filter: grayscale(18%) contrast(1.02);
}
/* Forest-green overlay: opaque left, fades to transparent right */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26, 61, 22, 0.93) 0%,
    rgba(45, 90, 39, 0.88) 30%,
    rgba(45, 90, 39, 0.65) 55%,
    rgba(45, 90, 39, 0.18) 78%,
    rgba(45, 90, 39, 0.0) 100%
  );
}

/* Content sits above the bg */
.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 180px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
}

.hero__text {
  max-width: 620px;
}
.hero__text > * + * { margin-top: 24px; }
.hero h1 { margin-top: 16px; }

/* Text on dark hero bg */
.hero .h1 { color: var(--off-white); }
.hero p { color: rgba(250,250,248,0.85); max-width: 52ch; }
.hero .eyebrow { color: rgba(250,250,248,0.7); border-left-color: rgba(250,250,248,0.4); }

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.btn--ghost-light {
  background: transparent;
  color: var(--off-white);
  border-color: rgba(250,250,248,0.5);
}
.btn--ghost-light:hover {
  background: rgba(250,250,248,0.12);
  opacity: 1;
}

/* Credentials strip — fades from green to off-white */
.hero__credentials {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: 32px 0 40px;
  border-top: 1px solid rgba(250,250,248,0.2);
  background: linear-gradient(to bottom, rgba(45,90,39,0.55) 0%, rgba(250,250,248,0) 100%);
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.cred {
  border-left: 2px solid var(--forest);
  padding-left: 14px;
}
.cred__num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16px;
  color: var(--near-black);
  line-height: 1.2;
}
.cred__label {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--slate);
  margin-top: 2px;
}

/* Hero credentials on dark bg */
.hero__credentials .cred {
  border-left-color: rgba(250,250,248,0.45);
}
.hero__credentials .cred__num {
  color: var(--off-white);
}
.hero__credentials .cred__label {
  color: rgba(250,250,248,0.65);
}

/* (hero photo now full-bleed bg — see .hero__bg-img) */

/* ---- Generic sections ----------------------------------- */

section { scroll-margin-top: 96px; }

.section {
  padding: 112px 0;
}
.section--alt {
  background: #ffffff;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.section--dark {
  background: var(--near-black);
  color: var(--off-white);
}
.section--green {
  background: var(--forest);
  color: var(--off-white);
}

.section-head {
  margin-bottom: 56px;
  max-width: 720px;
}
.section-head .h2 { margin-top: 16px; }
.section-head p { margin-top: 20px; }

/* ---- Why / Sustainalysis -------------------------------- */

.why { max-width: 760px; }
.why p + p { margin-top: 14px; }
.why strong { color: var(--near-black); font-weight: 600; }

.solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid var(--rule);
}
.solution__text > * + * { margin-top: 16px; }
.solution__text strong { color: var(--near-black); font-weight: 600; }
.solution__img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.solution__img img {
  width: 100%;
  max-width: 460px;
  border: 0;
  background: transparent;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}
.stat {
  border-left: 2px solid var(--forest);
  padding: 4px 0 4px 16px;
}
.stat--wide { grid-column: 1 / -1; }
.stat__num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 28px;
  color: var(--forest);
  line-height: 1.1;
}
.stat__label {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--slate);
  margin-top: 4px;
}

/* ---- Services grid -------------------------------------- */

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.service {
  padding: 32px 28px 36px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--off-white);
  transition: background 150ms ease-out;
}
.service:hover { background: #fff; }
.service:nth-child(3n) { border-right: 0; }
.service__icon {
  width: 32px;
  height: 32px;
  color: var(--forest);
  margin-bottom: 16px;
  display: block;
}
.service__num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--forest);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
  opacity: 0.6;
}
.service__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.25;
  color: var(--near-black);
  margin: 0 0 12px;
}
.service__text {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--slate);
  margin: 0;
}

/* ---- Reference / Case study ----------------------------- */

.case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.case__img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border: 1px solid var(--rule);
  filter: grayscale(15%) contrast(0.98);
}
.case__body > * + * { margin-top: 16px; }
.case__title { font-family: var(--serif); font-weight: 700; font-size: 22px; line-height: 1.3; color: var(--near-black); margin: 0; }

/* ---- Mandates ------------------------------------------- */

.mandates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.mandate {
  padding: 22px 24px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.mandate:nth-child(3n) { border-right: 0; }
.mandate__cat {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  display: block;
  margin-bottom: 6px;
}
.mandate__name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 17px;
  color: var(--near-black);
  margin: 0;
}
.mandate__role {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--slate);
  margin: 4px 0 0;
  line-height: 1.4;
}

/* ---- Projects ------------------------------------------- */

.project__logo-inline {
  margin-bottom: 16px;
}
.project__logo-inline img {
  max-width: 180px;
  height: auto;
  object-fit: contain;
}

.project__flowchart {
  margin: 14px 0 16px;
  border: 1px solid var(--rule);
  background: #fff;
  padding: 12px;
}
.project__flowchart img {
  width: 100%;
  height: auto;
  display: block;
}

.projects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.project {
  display: flex;
  flex-direction: column;
  padding: 28px 28px 32px;
  background: var(--off-white);
  border: 1px solid var(--rule);
  color: inherit;
  transition: border-color 150ms ease-out, background 150ms ease-out;
}
.project:hover {
  border-color: var(--forest);
  background: #fff;
  opacity: 1;
}
.project--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 2fr;
  gap: 0;
  padding: 0;
}
.project--featured .project__media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 40px 32px;
  border-right: 1px solid var(--rule);
}
.project--featured .project__logo {
  max-width: 220px;
  width: 100%;
}
.project--featured .project__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.project--featured .project__body {
  padding: 32px 32px 36px;
  display: flex;
  flex-direction: column;
}
.project__link {
  margin-top: auto;
  padding-top: 18px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.project__link:hover { opacity: 0.7; }
.project__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}
.project__cat {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
}
.project__date {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--slate);
}
.project__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: var(--near-black);
  margin: 0 0 12px;
}
.project__excerpt {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--slate);
  margin: 0 0 18px;
}
.project__more {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ---- Testimonials --------------------------------------- */

.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.testimonial {
  border-left: 2px solid var(--forest);
  padding: 4px 0 4px 28px;
}
.testimonial__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.45;
  color: var(--near-black);
  margin: 0;
  text-wrap: pretty;
}
.testimonial__name {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--near-black);
  margin: 24px 0 0;
}
.testimonial__role {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--slate);
  margin: 2px 0 0;
}

/* ---- LinkedIn ------------------------------------------- */

.linkedin {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: center;
}
.linkedin__list {
  margin-top: 32px;
  list-style: none;
  padding: 0;
}
.linkedin__list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--slate);
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
}
.linkedin__list li:last-child { border-bottom: 0; }
.linkedin__list li::before {
  content: "—";
  color: var(--forest);
  font-weight: 700;
}
.linkedin__card {
  background: var(--off-white);
  border: 1px solid var(--rule);
  padding: 36px 32px;
  text-align: center;
}
.linkedin__card .name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  color: var(--near-black);
  margin: 16px 0 4px;
}
.linkedin__card .role {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--slate);
  margin: 0 0 24px;
}
.linkedin__card .url {
  display: block;
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--slate);
  letter-spacing: 0.04em;
}
.linkedin__icon {
  width: 56px;
  height: 56px;
  background: var(--forest);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.linkedin__icon svg { width: 28px; height: 28px; fill: var(--off-white); }

/* ---- Contact -------------------------------------------- */

.contact { background: var(--forest); color: var(--off-white); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact__head .eyebrow {
  color: var(--off-white);
  border-left-color: var(--off-white);
  opacity: 0.85;
}
.contact h2 { color: var(--off-white); }
.contact p { color: rgba(250, 250, 248, 0.78); }

.contact__info {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact__info .row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
}
.contact__info .row strong {
  display: block;
  color: var(--off-white);
  font-weight: 600;
  font-family: var(--serif);
  font-size: 16px;
}
.contact__info .row a,
.contact__info .row span {
  color: rgba(250, 250, 248, 0.85);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
}
.contact__info svg { width: 18px; height: 18px; stroke: rgba(250,250,248,0.7); stroke-width: 1.5; fill: none; margin-top: 3px; }

.form { display: flex; flex-direction: column; gap: 18px; }
.field label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.7);
  margin-bottom: 6px;
}
.field input, .field textarea {
  width: 100%;
  background: rgba(250, 250, 248, 0.06);
  border: 1px solid rgba(250, 250, 248, 0.22);
  color: var(--off-white);
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 14px;
  outline: 0;
  border-radius: 0;
  transition: border-color 150ms ease-out, background 150ms ease-out;
}
.field input:focus, .field textarea:focus {
  border-color: rgba(250, 250, 248, 0.6);
  background: rgba(250, 250, 248, 0.10);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(250, 250, 248, 0.35); }

.form .btn {
  background: var(--off-white);
  color: var(--forest);
  border-color: var(--off-white);
  margin-top: 4px;
}
.form .btn:hover { opacity: 0.9; }
.form__note {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(250, 250, 248, 0.5);
}
.form__msg {
  font-family: var(--sans);
  font-size: 14px;
}
.form__msg--success {
  border: 1px solid rgba(250, 250, 248, 0.25);
  background: rgba(250, 250, 248, 0.06);
  padding: 24px;
}
.form__msg--success strong {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--off-white);
  margin-bottom: 6px;
}
.form__msg--error { color: #F4C7B8; }

/* ---- Footer --------------------------------------------- */

.foot {
  background: var(--near-black);
  color: rgba(250, 250, 248, 0.55);
  padding: 36px 0;
}
.foot__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.foot__name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
  color: rgba(250, 250, 248, 0.85);
}
.foot__links {
  font-family: var(--sans);
  font-size: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.foot__links a { color: rgba(250, 250, 248, 0.55); }
.foot__links a:hover { color: rgba(250, 250, 248, 0.95); opacity: 1; }
.foot__links .sep { opacity: 0.4; }

/* ---- Responsive ----------------------------------------- */

@media (max-width: 960px) {
  .hero { min-height: 75vh; }
  .hero__content { padding-top: 140px; }
  .hero__text { max-width: 100%; }
  .hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(26,61,22,0.90) 0%,
      rgba(45,90,39,0.80) 50%,
      rgba(45,90,39,0.50) 80%,
      rgba(45,90,39,0.0) 100%
    );
  }
  .solution { grid-template-columns: 1fr; gap: 40px; }
  .case { grid-template-columns: 1fr; gap: 32px; }
  .case__img img { height: 280px; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .service:nth-child(3n) { border-right: 1px solid var(--rule); }
  .service:nth-child(2n) { border-right: 0; }
  .mandates { grid-template-columns: repeat(2, 1fr); }
  .mandate:nth-child(3n) { border-right: 1px solid var(--rule); }
  .mandate:nth-child(2n) { border-right: 0; }
  .projects { grid-template-columns: 1fr; }
  .project--featured { grid-template-columns: 1fr; }
  .project--featured .project__media { border-right: 0; border-bottom: 1px solid var(--rule); padding: 32px; }
  .testimonials { grid-template-columns: 1fr; gap: 40px; }
  .linkedin { grid-template-columns: 1fr; gap: 48px; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .section { padding: 80px 0; }
}

@media (max-width: 720px) {
  .wrap { padding: 0 24px; }
  .nav__inner { padding: 0 24px; }
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .services { grid-template-columns: 1fr; }
  .service { border-right: 0 !important; }
  .mandates { grid-template-columns: 1fr; }
  .mandate { border-right: 0 !important; }
  .stats { grid-template-columns: 1fr; }
  .hero__cta .btn { flex: 1; justify-content: center; }
  .credentials { gap: 20px; }
}
