/* ===================== TOKENS ===================== */
:root {
  --forest-dark: #142A20;
  --forest: #1F4033;
  --forest-light: #2E5C48;
  --forest-lighter: #4A7862;
  --gold: #D4A24C;
  --gold-light: #E8C583;
  --gold-dark: #B5822F;
  --cream: #FAF6EC;
  --cream-alt: #F2EBDA;
  --white: #FFFFFF;
  --ink: #1B1B16;
  --ink-soft: #55554C;
  --ink-faint: #8B8A7F;
  --border: rgba(27, 27, 22, 0.08);

  --font-display: "Fraunces", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(20, 42, 32, 0.06);
  --shadow-md: 0 12px 32px rgba(20, 42, 32, 0.10);
  --shadow-lg: 0 24px 60px rgba(20, 42, 32, 0.16);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ===================== RESET ===================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; color: var(--forest-dark); line-height: 1.15; }
section[id] { scroll-margin-top: 84px; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--forest-dark);
  box-shadow: 0 8px 20px rgba(212, 162, 76, 0.35);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(212, 162, 76, 0.45);
}
.btn--ghost {
  background: rgba(31, 64, 51, 0.07);
  color: var(--forest-dark);
  border: 1.5px solid var(--forest-light);
}
.btn--ghost:hover {
  border-color: var(--forest-dark);
  background: rgba(31, 64, 51, 0.14);
  transform: translateY(-2px);
}
.btn--light {
  background: var(--cream);
  color: var(--forest-dark);
}
.btn--sm { padding: 9px 18px; font-size: 0.85rem; }
.btn--block { width: 100%; padding: 15px; }

/* ===================== NAV ===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.is-scrolled {
  padding: 10px 0;
  background: rgba(250, 246, 236, 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 4px 24px rgba(20,42,32,0.08);
}
.nav__inner { display: flex; align-items: center; gap: 28px; }
.nav__brand { display: flex; align-items: center; gap: 9px; margin-right: auto; }
.nav__mark { width: 48px; height: 48px; flex-shrink: 0; }
.nav__mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav__word { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; color: var(--forest-dark); }
.brand-a { color: inherit; }
.brand-b { color: var(--gold); }
.nav__slogan { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.01em; color: var(--gold-dark); }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color .2s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .25s var(--ease);
}
.nav__links a:hover { color: var(--forest-dark); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { flex-shrink: 0; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
}
.nav__toggle span {
  width: 22px; height: 2px;
  background: var(--forest-dark);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  padding: 70px 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream) 70%, var(--cream-alt) 100%);
}
.hero__field {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 500px at 85% 10%, rgba(212,162,76,0.16), transparent 60%),
    radial-gradient(ellipse 700px 500px at 5% 30%, rgba(31,64,51,0.10), transparent 60%);
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
}
.blob--1 {
  width: 420px; height: 420px;
  background: var(--gold-light);
  top: -140px; right: -100px;
  animation: float1 14s ease-in-out infinite;
}
.blob--2 {
  width: 320px; height: 320px;
  background: var(--forest-lighter);
  opacity: 0.25;
  bottom: -60px; left: -80px;
  animation: float2 16s ease-in-out infinite;
}
@keyframes float1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-30px, 40px) scale(1.08); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.05); }
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  padding: 50px 24px 90px;
}
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(212,162,76,0.14);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero__title {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  margin-bottom: 22px;
  color: var(--forest-dark);
}
.hero__title .highlight {
  color: var(--gold-dark);
  position: relative;
  white-space: nowrap;
}
.hero__lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__visual {
  position: relative;
  height: 420px;
}
.hero__ring {
  position: absolute;
  inset: 30px;
  border: 1.5px dashed rgba(31,64,51,0.25);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.stat-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  width: 240px;
  animation: bob 6s ease-in-out infinite;
}
.stat-card strong { display: block; color: var(--forest-dark); font-size: 0.95rem; }
.stat-card span { color: var(--ink-faint); }
.stat-card__icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-alt);
  color: var(--forest);
}
.stat-card__icon svg { width: 20px; height: 20px; }
.stat-card--1 { top: 10px; left: 20px; animation-delay: 0s; }
.stat-card--2 { top: 190px; right: 0; animation-delay: 1.5s; }
.stat-card--3 { bottom: 20px; left: 50px; animation-delay: 3s; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.trust-bar {
  position: relative;
  border-top: 1px solid rgba(31, 64, 51, 0.14);
  background: rgba(31, 64, 51, 0.055);
  padding: 18px 0;
}
.trust-bar__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 28px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--forest-dark);
}

/* ===================== SECTIONS ===================== */
.section { padding: 110px 0; }
.section--alt { background: var(--cream-alt); }
.section__head { max-width: 640px; margin-bottom: 56px; }
.section__head h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 14px; }
.section__lead { color: var(--ink-soft); font-size: 1.05rem; }

/* --- Qui suis-je --- */
.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.split__visual { position: relative; display: flex; justify-content: center; }
.split__visual::before {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  top: -30px; right: 10px;
  background: var(--forest-light);
  opacity: 0.22;
  filter: blur(60px);
  border-radius: 50%;
  z-index: 0;
}
.avatar-card {
  position: relative;
  width: 280px;
  background: var(--forest-dark);
  border-radius: var(--radius-lg);
  padding: 50px 30px;
  text-align: center;
  color: var(--cream);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.avatar-card__ring {
  position: absolute;
  inset: -14px;
  border: 1.5px solid var(--gold);
  border-radius: calc(var(--radius-lg) + 14px);
  opacity: 0.5;
}
.avatar-card__photo {
  width: 96px; height: 96px;
  margin: 0 auto 20px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}
.avatar-card__name { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 4px; }
.avatar-card__role { font-size: 0.85rem; color: var(--gold-light); opacity: 0.85; }

.badge-float {
  position: absolute;
  background: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  z-index: 3;
  animation: bob 7s ease-in-out infinite;
}
.badge-float--1 { top: 0; left: -10px; animation-delay: 0.2s; }
.badge-float--2 { bottom: 60px; right: -30px; animation-delay: 1.8s; }
.badge-float--3 { bottom: -10px; left: 30px; animation-delay: 3.4s; }

.split__text h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); margin-bottom: 20px; }
.split__text p { color: var(--ink-soft); margin-bottom: 18px; }
.callout {
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 24px 0;
  box-shadow: var(--shadow-sm);
}
.callout p { color: var(--forest-dark); font-weight: 600; margin: 0; font-size: 0.98rem; }
.split__note { font-style: italic; color: var(--ink-faint); font-size: 0.95rem; }

/* --- Portfolio --- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.port-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.port-card--live { display: block; }
.port-card--live:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.port-card--live img {
  width: 100%; height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.port-card--live:hover img { transform: scale(1.08); }
.port-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(0deg, rgba(20,42,32,0.92) 0%, rgba(20,42,32,0.35) 55%, rgba(20,42,32,0) 100%);
  color: var(--cream);
}
.port-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--gold);
  color: var(--forest-dark);
  padding: 4px 10px;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 10px;
}
.port-card__overlay h3 { font-family: var(--font-display); color: var(--white); font-size: 1.3rem; margin-bottom: 6px; }
.port-card__overlay p { font-size: 0.88rem; color: var(--gold-light); margin-bottom: 16px; }
.port-card__visit {
  width: fit-content;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.port-card--live:hover .port-card__visit { opacity: 1; transform: translateY(0); }

.port-card--soon {
  background: var(--white);
  border: 1.5px dashed rgba(31,64,51,0.25);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 36px;
  color: var(--ink-faint);
}
.port-card--soon svg { width: 34px; height: 34px; color: var(--forest-light); margin-bottom: 16px; }
.port-card--soon h3 { font-size: 1.15rem; color: var(--forest-dark); margin-bottom: 8px; }
.port-card--soon p { font-size: 0.9rem; }
.port-card__badge {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--cream-alt);
  color: var(--forest);
  padding: 5px 10px;
  border-radius: 999px;
}
.port-card__link {
  margin-top: 14px;
  font-weight: 700;
  color: var(--gold-dark);
  transition: gap .2s;
}
.port-card__link:hover { text-decoration: underline; }

/* --- Why grid --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card__icon {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--forest-dark), var(--forest));
  color: var(--gold-light);
  margin-bottom: 20px;
}
.why-card__icon svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.why-card p { color: var(--ink-soft); font-size: 0.94rem; }

/* --- Process flow diagram --- */
.process-flow {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.flow-step {
  flex: 1;
  min-width: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.flow-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.flow-node {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--forest-dark);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.flow-step h3 { font-size: 1rem; margin-bottom: 8px; }
.flow-step p { font-size: 0.87rem; color: var(--ink-soft); }
.flow-arrow {
  width: 34px;
  height: 24px;
  flex-shrink: 0;
  color: var(--gold-dark);
  margin-top: 34px;
  opacity: 0.7;
}
.process-followup {
  margin-top: 28px;
  background: var(--forest-dark);
  border-radius: var(--radius-lg);
  padding: 34px 40px;
}
.process-followup h3 { font-family: var(--font-display); color: var(--white); font-size: 1.25rem; margin-bottom: 10px; }
.process-followup p { color: rgba(250,246,236,0.8); font-size: 0.95rem; max-width: 640px; }

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}
.contact-info {
  background: var(--forest-dark);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
}
.contact-info h3 { font-family: var(--font-display); color: var(--white); font-size: 1.4rem; margin-bottom: 14px; }
.contact-info > p { color: var(--gold-light); opacity: 0.9; margin-bottom: 22px; font-size: 0.95rem; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  margin-bottom: 12px;
  color: var(--cream);
}
.checklist span {
  color: var(--gold);
  font-weight: 700;
}
.contact-info__promise {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(250,246,236,0.15);
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}
.contact-details {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(250,246,236,0.15);
}
.contact-details__title {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 20px;
}
.contact-details__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.info-item { display: flex; align-items: flex-start; gap: 14px; }
.info-item__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(212,162,76,0.14);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-item__icon svg { width: 24px; height: 24px; }
.info-item__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  margin-bottom: 3px;
}
.info-item__value {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--white);
  margin-bottom: 2px;
}
.info-item__value a { transition: color .2s; }
.info-item__value a:hover { color: var(--gold-light); }
.info-item__sub { font-size: 0.82rem; color: rgba(250,246,236,0.65); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form__title { font-size: 1.3rem; margin-bottom: 4px; }
.captcha-wrap { display: flex; }
.btn__icon { width: 17px; height: 17px; flex-shrink: 0; }
.field-row { display: flex; gap: 16px; }
.field-row .field { flex: 1; }
.field { display: flex; flex-direction: column; }
.field input, .field textarea {
  padding: 20px 22px;
  border: 1.5px solid rgba(27, 27, 22, 0.16);
  border-radius: 16px;
  background: var(--cream);
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest-dark);
  transition: border-color .2s, background .2s;
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder {
  color: var(--ink-soft);
  font-weight: 700;
  opacity: 1;
}
.field textarea { min-height: 160px; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.contact-form__note { font-size: 0.88rem; font-weight: 700; color: var(--forest); min-height: 1.2em; }
.contact-form__note.is-error { color: #B5453A; }
.contact-form__note.is-success { color: var(--forest); }

/* ===================== FOOTER ===================== */
.footer { background: var(--forest-dark); color: var(--cream); padding-top: 60px; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(250,246,236,0.12);
}
.footer__brand { display: flex; gap: 14px; align-items: flex-start; }
.footer__word { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 6px; }
.footer__tagline { font-size: 0.87rem; color: rgba(250,246,236,0.65); max-width: 260px; }
.footer__links, .footer__contact { display: flex; flex-direction: column; gap: 12px; font-size: 0.92rem; }
.footer__links a, .footer__contact a { color: rgba(250,246,236,0.75); transition: color .2s; }
.footer__links a:hover, .footer__contact a:hover { color: var(--gold-light); }
.footer__bottom {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(250,246,236,0.5);
  padding: 22px 0;
}

/* ===================== FAB ===================== */
.fab {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest-dark);
  display: none;
  align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(212,162,76,0.45);
  z-index: 90;
  transition: transform .25s var(--ease);
}
.fab.is-visible { display: flex; }
.fab:hover { transform: scale(1.08); }
.fab svg { width: 22px; height: 22px; }

/* ===================== REVEAL ANIMATION ===================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { height: 320px; margin-top: 20px; }
  .split { grid-template-columns: 1fr; gap: 50px; }
  .split__visual { margin-bottom: 10px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .process-flow { flex-direction: column; }
  .flow-arrow { transform: rotate(90deg); margin: -6px auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-details__grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 20px 24px 26px;
    box-shadow: var(--shadow-md);
    gap: 16px;
  }
  .trust-bar__inner { justify-content: flex-start; gap: 10px 20px; }
  .trust-bar__inner span { font-size: 0.8rem; }
  .section { padding: 70px 0; }
  .hero__visual { height: 400px; }
  .stat-card { width: calc(100% - 40px); max-width: 240px; }
  .stat-card--1 { top: 0; left: 0; }
  .stat-card--2 { top: 140px; right: 0; left: auto; }
  .stat-card--3 { top: 280px; bottom: auto; left: 20px; }
  .hero__ring { inset: 50px 10px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .field-row { flex-direction: column; gap: 18px; }
  .process-followup { padding: 28px 24px; }
  .fab { display: none !important; }
}
