/* Maison du Commerce — production stylesheet */

:root {
  --paper: #f7f5f0;
  --paper-2: #eceae4;
  --ink: #1a2332;
  --ink-2: #243044;
  --ink-soft: #3a4656;
  --muted: #566070;
  --accent: #7a6349;
  --accent-hover: #635139;
  --accent-soft: #9a8268;
  --accent-on-dark: #d4c4a8;
  --text-on-dark: #f7f5f0;
  --text-on-dark-muted: rgba(247, 245, 240, 0.9);
  --overlay: #141c28;
  --line: rgba(26, 35, 50, 0.12);
  --line-light: rgba(247, 245, 240, 0.14);
  --shadow: 0 24px 60px rgba(26, 35, 50, 0.1);
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --maxw: 1160px;
  --header-h: 88px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
section[id] { scroll-margin-top: var(--header-h); }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 12px; z-index: 200;
  background: var(--ink); color: var(--paper); padding: 10px 18px; border-radius: 8px; font-size: 14px;
}
.skip-link:focus { left: 12px; outline: 2px solid var(--accent-soft); outline-offset: 2px; }

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 22px 0; transition: padding 0.35s var(--ease), background 0.35s, box-shadow 0.35s;
}
.site-header:not(.scrolled) {
  background: linear-gradient(180deg, rgba(20, 28, 40, 0.88) 0%, rgba(20, 28, 40, 0.45) 65%, transparent 100%);
}
.site-header.scrolled {
  padding: 12px 0;
  background: rgba(247, 245, 240, 0.96);
  backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: flex; align-items: center; gap: 14px; color: var(--text-on-dark); transition: color 0.35s; min-width: 0; flex-shrink: 1; }
.brand-dark { color: var(--ink); }
.scrolled .brand { color: var(--ink); }
.brand-icon-wrap {
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  width: 52px; height: 52px; padding: 8px;
  background: var(--paper); border-radius: 11px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.28);
  transition: box-shadow 0.35s;
}
.brand-icon-wrap--sm { width: 44px; height: 44px; padding: 7px; border-radius: 9px; box-shadow: 0 1px 8px rgba(26, 35, 50, 0.1); }
.brand-icon-wrap--footer { width: 48px; height: 48px; padding: 7px; border-radius: 10px; }
.scrolled .brand-icon-wrap { box-shadow: 0 1px 8px rgba(26, 35, 50, 0.12); }
.brand-icon { display: block; width: 100%; height: 100%; object-fit: contain; }
.brand-name {
  font-family: var(--serif); font-size: 20px; font-weight: 600;
  letter-spacing: 0.15px; white-space: nowrap; line-height: 1.15;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}
.scrolled .brand-name { text-shadow: none; }

.nav { display: flex; align-items: center; gap: 22px; flex-shrink: 0; }
.nav > a {
  font-size: 14px; font-weight: 500; color: var(--text-on-dark); padding: 6px 0;
  position: relative; transition: color 0.2s;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}
.scrolled .nav > a { color: var(--ink-soft); text-shadow: none; }
.nav > a.is-active { color: var(--accent-on-dark); }
.scrolled .nav > a.is-active { color: var(--accent); }
.nav > a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--accent-on-dark); transition: width 0.25s var(--ease);
}
.scrolled .nav > a:not(.nav-cta)::after { background: var(--accent); }
.nav > a:not(.nav-cta):hover::after,
.nav > a:not(.nav-cta).is-active::after { width: 100%; }

.nav-cta {
  background: var(--accent) !important; color: #fff !important;
  padding: 10px 22px !important; border-radius: 999px;
  text-shadow: none !important;
}
.nav-cta:hover { background: var(--accent-hover) !important; }
.nav-cta::after { display: none !important; }

.lang-switch { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 500; color: var(--text-on-dark); }
.scrolled .lang-switch { color: var(--ink-soft); }
.lang-switch button {
  background: none; border: none; color: inherit; opacity: 0.75; padding: 4px 6px; border-radius: 4px;
  transition: opacity 0.2s, background 0.2s;
}
.lang-switch button.is-active { opacity: 1; font-weight: 600; }
.lang-switch button:hover { opacity: 1; }
.lang-switch button:focus-visible { outline: 2px solid var(--accent-soft); outline-offset: 2px; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.menu-toggle span { width: 22px; height: 2px; background: var(--text-on-dark); transition: transform 0.3s, opacity 0.3s, background 0.3s; border-radius: 1px; }
.scrolled .menu-toggle span { background: var(--ink); }

.nav-backdrop {
  position: fixed; inset: 0; z-index: 90; background: rgba(20, 28, 40, 0.55);
  opacity: 0; transition: opacity 0.35s; pointer-events: none;
}
.nav-backdrop.is-visible { opacity: 1; pointer-events: auto; }

/* Hero */
.hero {
  position: relative; min-height: 100svh; color: var(--text-on-dark); overflow: hidden;
}
.hero picture { position: absolute; inset: 0; z-index: -2; display: block; }
.hero-img, .hero picture img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(20, 28, 40, 0.9) 0%, rgba(20, 28, 40, 0.72) 38%, rgba(20, 28, 40, 0.28) 68%, rgba(20, 28, 40, 0.15) 100%),
    linear-gradient(180deg, rgba(20, 28, 40, 0.55) 0%, transparent 35%, rgba(20, 28, 40, 0.4) 100%);
}
.hero-layout {
  position: relative; z-index: 1; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: var(--header-h);
}
.hero-inner {
  padding: 64px 0 52px;
  max-width: 620px;
}
.eyebrow {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-on-dark); margin-bottom: 22px; font-weight: 600;
}
.hero-title {
  font-family: var(--serif); font-weight: 400; color: #fff;
  font-size: clamp(2.5rem, 5.5vw, 4.1rem); line-height: 1.08; letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.hero-lead {
  font-size: 1.08rem; color: rgba(247, 245, 240, 0.86);
  max-width: 480px; margin-bottom: 36px; line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero .btn-primary {
  background: var(--paper); color: var(--ink);
  padding: 15px 30px;
}
.hero .btn-primary:hover:not(:disabled) {
  background: #fff; color: var(--ink); transform: translateY(-1px);
}
.hero .btn-ghost {
  padding: 15px 30px;
  border-color: rgba(247, 245, 240, 0.5);
  background: transparent;
}
.hero .btn-ghost:hover {
  background: rgba(247, 245, 240, 0.1);
  border-color: rgba(247, 245, 240, 0.8);
}

/* Hero strip (pillars) */
.hero-strip {
  background: rgba(20, 28, 40, 0.82);
  backdrop-filter: blur(14px) saturate(120%);
  border-top: 1px solid rgba(247, 245, 240, 0.12);
  padding: 36px 0 40px;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
.pillar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 0 2rem;
  border-right: 1px solid rgba(247, 245, 240, 0.1);
}
.pillar:first-child { padding-left: 0; }
.pillar:last-child { padding-right: 0; border-right: none; }
.pillar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  color: var(--accent-on-dark);
  background: rgba(247, 245, 240, 0.07);
  border: 1px solid rgba(247, 245, 240, 0.12);
  border-radius: 10px;
}
.pillar h3 {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: #fff;
  line-height: 1.3;
  min-height: 2.6em;
}
.pillar p {
  font-size: 0.9rem;
  color: rgba(247, 245, 240, 0.68);
  line-height: 1.62;
  margin: 0;
  max-width: none;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px; font-size: 15px; font-weight: 500;
  border: 1px solid transparent; transition: background 0.2s, transform 0.2s, border-color 0.2s, opacity 0.2s;
}
.btn:focus-visible { outline: 2px solid var(--accent-soft); outline-offset: 3px; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover:not(:disabled) { background: var(--accent-hover); transform: translateY(-1px); }
.btn-primary:disabled { opacity: 0.7; cursor: not-allowed; }
.btn-ghost { border-color: rgba(247, 245, 240, 0.55); color: var(--text-on-dark); background: rgba(20, 28, 40, 0.25); }
.btn-ghost:hover { background: rgba(247, 245, 240, 0.12); border-color: rgba(247, 245, 240, 0.85); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn.is-loading { pointer-events: none; }
.btn.is-loading::after {
  content: ""; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff; border-radius: 50%; animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Sections */
.section { padding: 110px 0; }
.section-label { font-size: 11px; letter-spacing: 2.4px; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; font-weight: 600; }
.section-label.light { color: var(--accent-on-dark); }
.section-title { font-family: var(--serif); font-weight: 400; font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.1; letter-spacing: -0.4px; }
.section-title.light { color: var(--paper); }

/* About */
.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.about-media { position: relative; }
.about-media picture { display: block; width: 100%; }
.about-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 14px; box-shadow: var(--shadow); }
.about-body p { color: var(--ink-soft); font-size: 1.06rem; }
.about-p2 { margin-top: 18px; }


/* How we work (capabilities + process) */
.how { background: var(--paper); }
.cap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 64px; }
.cap-card {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 14px;
  padding: 24px 22px; transition: box-shadow 0.3s, border-color 0.3s;
}
.cap-card:hover { box-shadow: var(--shadow); border-color: rgba(122, 99, 73, 0.28); }
.cap-num { font-size: 11px; font-weight: 600; letter-spacing: 1.2px; color: var(--accent); display: block; margin-bottom: 12px; }
.cap-card h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; margin-bottom: 8px; line-height: 1.2; }
.cap-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
.how-sub {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 400; text-align: center;
  margin-bottom: 40px; color: var(--ink);
}

/* Process */
.process-steps {
  list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  counter-reset: none; position: relative;
}
.process-steps::before {
  content: ""; position: absolute; top: 28px; left: 12%; right: 12%; height: 1px;
  background: var(--line); z-index: 0;
}
.process-step { position: relative; z-index: 1; text-align: center; padding: 0 8px; }
.process-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%; background: var(--paper-2);
  border: 1px solid var(--line); font-family: var(--sans); font-size: 13px;
  font-weight: 600; color: var(--accent); margin-bottom: 20px;
}
.process-step h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; margin-bottom: 10px; }
.process-step p { font-size: 0.92rem; color: var(--muted); line-height: 1.6; }

/* Commitments */
.commitments-dark {
  margin-top: 72px; background: var(--ink); color: var(--paper);
  border-radius: 16px; padding: 48px 40px;
}
.commitments-dark .commitments-label { color: var(--accent-on-dark); }
.commitments-dark .commitments-list { grid-template-columns: repeat(2, 1fr); gap: 0 40px; }
.commitments-dark .commitments-list li {
  padding: 22px 0; border-top: 1px solid var(--line-light);
  display: grid; grid-template-columns: 28px 1fr; gap: 14px; align-items: start;
}
.commitments-dark .commitments-list strong { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; color: var(--paper); display: block; margin-bottom: 4px; }
.commitments-dark .commitments-list span { font-size: 0.92rem; color: rgba(247, 245, 240, 0.75); line-height: 1.55; }
.commit-icon { color: var(--accent-on-dark); padding-top: 2px; }

.commitments-label { font-size: 11px; letter-spacing: 2.4px; text-transform: uppercase; font-weight: 600; margin-bottom: 24px; text-align: center; }
.commitments-list { list-style: none; display: grid; }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head-center { text-align: center; margin-left: auto; margin-right: auto; }
.section-intro { margin-top: 18px; font-size: 1.05rem; color: var(--muted); line-height: 1.7; max-width: 560px; }
.section-head-center .section-intro { margin-left: auto; margin-right: auto; }

/* Trade categories */
.trade { background: var(--paper-2); }
.trade-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.trade-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
  padding: 32px 28px; display: flex; flex-direction: column;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.trade-card:hover { box-shadow: var(--shadow); border-color: rgba(122, 99, 73, 0.28); }
.trade-tag {
  display: inline-block; font-size: 10px; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 14px;
}
.trade-card h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; margin-bottom: 12px; line-height: 1.2; }
.trade-card > p:not(.trade-for) { font-size: 0.95rem; color: var(--muted); line-height: 1.65; flex: 1; }
.trade-for { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 0.88rem; color: var(--ink-soft); line-height: 1.5; }
.trade-for span:first-child { font-weight: 600; color: var(--ink); }

/* Band */
.band { position: relative; padding: 130px 0; color: var(--text-on-dark); text-align: center; overflow: hidden; }
.band picture { position: absolute; inset: 0; z-index: -2; display: block; }
.band-img, .band picture img { width: 100%; height: 100%; object-fit: cover; display: block; }
.band-overlay { position: absolute; inset: 0; z-index: -1; background: rgba(20, 28, 40, 0.84); }
.band-inner { max-width: 640px; margin: 0 auto; }
.band-title { font-family: var(--serif); font-size: clamp(1.9rem, 4.2vw, 3rem); line-height: 1.12; margin-bottom: 16px; color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,0.35); }
.band-text { color: var(--text-on-dark-muted); font-size: 1.1rem; margin-bottom: 30px; }

/* Contact */
.contact { background: var(--paper-2); }
.contact-lead { margin-top: 16px; color: var(--muted); font-size: 1.05rem; max-width: 400px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info { list-style: none; margin-top: 32px; }
.contact-info li { padding: 18px 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; }
.contact-info li:last-child { border-bottom: 1px solid var(--line); }
.ci-k { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.contact-info a { font-weight: 500; transition: color 0.2s; color: var(--ink); }
.contact-info a:hover { color: var(--accent); }

.contact-form { background: var(--ink); color: var(--text-on-dark); border-radius: 16px; padding: 36px; position: relative; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: rgba(247, 245, 240, 0.82); margin-bottom: 8px; font-weight: 500; }
.field input, .field textarea, .field select {
  width: 100%; background: rgba(247, 245, 240, 0.08); border: 1px solid var(--line-light);
  border-radius: 10px; padding: 13px 15px; color: var(--text-on-dark); font: inherit; font-size: 15px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d4c4a8' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.field select option { background: var(--ink); color: var(--paper); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent-on-dark); background: rgba(247, 245, 240, 0.12);
  box-shadow: 0 0 0 3px rgba(212, 196, 168, 0.18);
}
.field.is-invalid input, .field.is-invalid textarea, .field.is-invalid select { border-color: #e07a7a; }
.field-error { display: none; font-size: 12px; color: #e9a3a3; margin-top: 6px; }
.field.is-invalid .field-error { display: block; }
.field input::placeholder, .field textarea::placeholder { color: rgba(247, 245, 240, 0.35); }
.field textarea { resize: vertical; min-height: 110px; }

/* Honeypot — hidden from visitors, catches spam bots */
.field-hp {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.form-note { margin-top: 14px; font-size: 12px; color: rgba(247, 245, 240, 0.58); text-align: center; line-height: 1.5; }
.form-note.success { color: var(--accent-on-dark); }
.form-note.error { color: #e8a0a0; }

/* Footer */
.site-footer { background: var(--overlay); color: rgba(247, 245, 240, 0.75); padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line-light); }
.footer-brand {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 14px;
}
.footer-brand-name {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 600;
  color: var(--text-on-dark); letter-spacing: 0.15px;
}
.footer-tag { font-size: 14px; line-height: 1.6; max-width: 300px; margin-bottom: 10px; color: rgba(247, 245, 240, 0.72); }
.footer-co { font-size: 13px; color: rgba(247, 245, 240, 0.5); letter-spacing: 0.3px; }
.footer-head { font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--accent-on-dark); margin-bottom: 16px; font-weight: 600; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 14px; transition: color 0.2s; color: rgba(247, 245, 240, 0.72); }
.footer-nav a:hover { color: var(--text-on-dark); }
.footer-bottom { padding-top: 28px; text-align: center; font-size: 13px; line-height: 1.8; }

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 20px; left: 20px; right: 20px; z-index: 150;
  max-width: 480px; margin: 0 auto; background: var(--ink); color: var(--paper);
  border: 1px solid var(--line-light); border-radius: 14px; padding: 20px 22px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { flex: 1; font-size: 13px; line-height: 1.5; color: rgba(250,248,244,0.85); min-width: 200px; }

/* Legal page */
.legal-page { background: var(--paper); }
.legal-header { padding: 24px 0; border-bottom: 1px solid var(--line); background: var(--paper); }
.legal-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.legal-back { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.legal-back:hover { color: var(--accent); }
.legal-main { padding: 64px 28px 100px; max-width: 720px; }
.legal-main h1 { font-family: var(--serif); font-size: 2.4rem; margin-bottom: 8px; }
.legal-updated { color: var(--muted); font-size: 14px; margin-bottom: 32px; }
.legal-main h2 { font-family: var(--serif); font-size: 1.35rem; margin: 36px 0 12px; }
.legal-main p { color: var(--ink-soft); margin-bottom: 16px; }
.legal-main a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 960px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .pillar { padding: 0 20px; }
  .pillar p { max-width: none; }
  .trade-grid { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .commitments-dark .commitments-list { grid-template-columns: 1fr; }
  .commitments-dark { padding: 36px 24px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  :root { --header-h: 72px; }
  body { font-size: 16px; }
  .section { padding: 80px 0; }
  .band { padding: 100px 0; }
  .brand-name { font-size: 17px; }
  .brand-icon-wrap { width: 46px; height: 46px; padding: 7px; }
  .brand-icon-wrap--footer { width: 44px; height: 44px; }
  .menu-toggle { display: flex; z-index: 110; }
  .nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(85vw, 340px);
    background: var(--ink); flex-direction: column; align-items: flex-start;
    justify-content: center; gap: 22px; padding: 0 36px;
    transform: translateX(100%); transition: transform 0.4s var(--ease);
    z-index: 100; box-shadow: -16px 0 48px rgba(0,0,0,0.3);
  }
  .nav.open { transform: translateX(0); }
  .nav > a { color: var(--paper) !important; font-size: 1.35rem; font-family: var(--serif); }
  .nav-cta { font-family: var(--sans) !important; font-size: 15px !important; }
  body.menu-open { overflow: hidden; }
  .menu-open .menu-toggle span { background: var(--paper) !important; }
  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
  .hero-inner { padding: 48px 0 40px; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.75rem); }
  .hero-strip { padding: 28px 0 32px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar {
    padding: 20px 0;
    border-right: none;
    border-bottom: 1px solid rgba(247, 245, 240, 0.1);
  }
  .pillar h3 { min-height: 0; }
  .pillar:last-child { border-bottom: none; padding-bottom: 0; }
  .pillar:first-child { padding-top: 0; }
}
@media (max-width: 480px) {
  .cap-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .contact-form { padding: 26px 20px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero .btn { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}
