
:root {
  --wine: #8f1d2c;
  --wine-2: #b22b3e;
  --wine-dark: #52101a;
  --ink: #111317;
  --ink-2: #242933;
  --muted: #687182;
  --line: rgba(17,19,23,.12);
  --paper: #ffffff;
  --cream: #f7f4ef;
  --mist: #f4f6f8;
  --dark: #121417;
  --dark-2: #1a1d22;
  --gold: #c7a45a;
  --radius-xs: 12px;
  --radius-sm: 18px;
  --radius: 28px;
  --radius-lg: 42px;
  --shadow: 0 28px 80px rgba(17, 19, 23, .14);
  --shadow-soft: 0 18px 50px rgba(17, 19, 23, .08);
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 8% 12%, rgba(143,29,44,.08), transparent 24rem),
    radial-gradient(circle at 92% 4%, rgba(199,164,90,.10), transparent 28rem);
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0; color: var(--muted); }
strong { color: inherit; }

.skip-link {
  position: absolute;
  top: -80px;
  left: 18px;
  z-index: 999;
  padding: .75rem 1rem;
  border-radius: 999px;
  background: var(--wine);
  color: #fff;
  font-weight: 800;
  transition: top .18s ease;
}
.skip-link:focus { top: 16px; }
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.section { padding: 110px 0; position: relative; }
.section--warm { background: linear-gradient(180deg, #fbfaf7, var(--cream)); }

h1, h2, h3 { margin: 0; line-height: .98; letter-spacing: -.045em; color: var(--ink); }
h1 { font-size: clamp(3rem, 7vw, 6.7rem); max-width: 920px; }
h2 { font-size: clamp(2.05rem, 4vw, 4.2rem); max-width: 800px; }
h3 { font-size: 1.24rem; letter-spacing: -.02em; line-height: 1.18; }
.eyebrow, .overline {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--wine);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before, .overline::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.section-head { margin-bottom: 48px; }
.section-head--split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .62fr);
  gap: 44px;
  align-items: end;
}
.section-head p { font-size: 1.06rem; line-height: 1.8; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  gap: .65rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: .9rem 1.22rem;
  font-weight: 900;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--wine), var(--wine-2));
  box-shadow: 0 18px 38px rgba(143,29,44,.28);
}
.btn--primary:hover { box-shadow: 0 24px 52px rgba(143,29,44,.35); }
.btn--secondary {
  color: var(--ink);
  background: rgba(255,255,255,.82);
  border-color: rgba(17,19,23,.12);
  backdrop-filter: blur(16px);
}
.btn--text { padding-inline: .2rem; color: var(--ink); background: transparent; }
.btn--text span { transition: transform .18s ease; }
.btn--text:hover span { transform: translateX(4px); }

.site-header {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 100;
  transition: inset .25s ease, background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  padding: 9px 10px 9px 18px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 20px 70px rgba(17,19,23,.11);
  backdrop-filter: blur(26px);
}
.site-header.is-scrolled { inset: 8px 0 auto; }
.site-header.is-scrolled .header-inner { background: rgba(255,255,255,.94); border-color: rgba(17,19,23,.08); }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 218px;
}
.brand img { width: auto; height: 50px; object-fit: contain; }
.brand span { display: grid; line-height: 1.05; }
.brand strong { font-size: .98rem; letter-spacing: -.03em; }
.brand small { margin-top: 4px; color: var(--muted); font-size: .72rem; font-weight: 800; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: 3px; }
.site-nav > a {
  padding: .74rem .78rem;
  border-radius: 999px;
  color: #3d4450;
  font-size: .9rem;
  font-weight: 850;
  transition: background .18s ease, color .18s ease;
}
.site-nav > a:hover, .site-nav > a.is-current { background: #f0f2f5; color: var(--ink); }
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 8px;
  padding: 4px;
  border-radius: 999px;
  background: #f1f3f6;
}
.language-link {
  min-width: 34px;
  text-align: center;
  padding: .42rem .54rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 900;
}
.language-link.is-active { background: var(--ink); color: #fff; }
.header-actions { display: inline-flex; align-items: center; gap: 8px; }
.header-phone { color: var(--ink); font-weight: 900; white-space: nowrap; padding: .4rem .55rem; }
.header-quote { min-height: 48px; padding-inline: 1rem; }
.nav-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}
.nav-toggle span {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform .2s ease, top .2s ease;
}
.nav-toggle span:first-child { top: 18px; }
.nav-toggle span:last-child { top: 27px; }
body.nav-open .nav-toggle span:first-child { top: 23px; transform: rotate(45deg); }
body.nav-open .nav-toggle span:last-child { top: 23px; transform: rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 154px 0 0;
  min-height: 780px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 44%, rgba(247,244,239,.92) 100%),
    url('../images/intro-bg-entrepreneur.png') center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: min(58vw, 850px);
  background: linear-gradient(155deg, rgba(143,29,44,.12), rgba(199,164,90,.08) 45%, transparent 80%);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, .78fr);
  align-items: center;
  gap: 58px;
}
.hero-copy { padding: 42px 0 64px; }
.hero-lead {
  max-width: 760px;
  margin: 28px 0 34px;
  color: #3e4653;
  font-size: clamp(1.12rem, 1.75vw, 1.34rem);
  line-height: 1.72;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 28px; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero-proof li {
  padding: .52rem .72rem;
  border: 1px solid rgba(17,19,23,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: #3f4652;
  font-size: .86rem;
  font-weight: 800;
}
.hero-visual { position: relative; min-height: 560px; }
.visual-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--dark);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
  isolation: isolate;
}
.visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,19,23,.1), rgba(17,19,23,.78));
  z-index: 1;
}
.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.45) contrast(1.08);
  transform: scale(1.08);
}
.visual-overlay {
  position: absolute;
  inset: auto 24px 24px 24px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
}
.visual-overlay span { font-weight: 900; letter-spacing: .08em; text-transform: uppercase; font-size: .8rem; color: rgba(255,255,255,.76); }
.visual-overlay strong { font-size: clamp(4rem, 9vw, 7rem); line-height: .8; letter-spacing: -.08em; color: rgba(255,255,255,.95); }
.floating-note {
  position: absolute;
  right: -18px;
  bottom: 54px;
  z-index: 3;
  width: min(330px, 76%);
  padding: 24px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 26px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 24px 70px rgba(17,19,23,.18);
  backdrop-filter: blur(18px);
}
.floating-note strong { display: block; margin-bottom: 8px; font-size: 1.05rem; letter-spacing: -.025em; }
.metric-band {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  transform: translateY(50%);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: var(--radius);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}
.metric { min-height: 126px; padding: 26px 28px; border-right: 1px solid rgba(17,19,23,.08); }
.metric:last-child { border-right: none; }
.metric strong { display: block; color: var(--wine); font-size: clamp(2rem, 3.1vw, 3.3rem); line-height: .95; letter-spacing: -.06em; }
.metric span { display: block; margin-top: 10px; color: var(--muted); font-weight: 850; }

.expertise { padding-top: 180px; background: #fff; }
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.service-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(17,19,23,.1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 1px 0 rgba(17,19,23,.03);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: auto -35% -45% 10%;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(143,29,44,.13), transparent 70%);
  opacity: 0;
  transition: opacity .2s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: rgba(143,29,44,.22); }
.service-card:hover::before { opacity: 1; }
.service-card__number { color: var(--gold); font-size: .88rem; font-weight: 950; letter-spacing: .12em; }
.service-card h3 { margin-bottom: 18px; font-size: 1.55rem; }
.service-card p { line-height: 1.75; }

.why-layout { display: grid; grid-template-columns: minmax(320px, .84fr) minmax(0, 1.16fr); gap: 30px; align-items: stretch; }
.why-panel {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 34px;
  background: var(--dark);
  color: #fff;
}
.why-panel h2 { position: relative; z-index: 2; margin-top: 18px; color: #fff; }
.why-panel .eyebrow { position: relative; z-index: 2; color: var(--gold); }
.why-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .48;
  filter: grayscale(.25) contrast(1.08);
}
.why-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,19,23,.86), rgba(17,19,23,.24) 52%, rgba(17,19,23,.82));
}
.compact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.compact-card {
  min-height: 314px;
  padding: 30px;
  border: 1px solid rgba(17,19,23,.09);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.compact-card h3 { margin-bottom: 18px; font-size: 1.48rem; }
.compact-card p { line-height: 1.8; }
.compact-card::before {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin-bottom: 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--wine), var(--gold));
}

.method-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(18,20,23,.96), rgba(18,20,23,.98)),
    url('../images/venue-bg.jpg') center/cover no-repeat;
  color: #fff;
}
.method-section h2, .method-section h3 { color: #fff; }
.method-section .eyebrow { color: var(--gold); }
.method-section p { color: rgba(255,255,255,.72); }
.method-intro { max-width: 840px; margin-bottom: 54px; }
.method-intro p { margin-top: 24px; max-width: 680px; font-size: 1.08rem; line-height: 1.8; }
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 41px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
}
.timeline-step {
  position: relative;
  min-height: 300px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(12px);
}
.timeline-step span {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--wine), var(--wine-2));
  color: #fff;
  font-size: .82rem;
  font-weight: 950;
  box-shadow: 0 18px 44px rgba(143,29,44,.34);
}
.timeline-step h3 { margin-bottom: 16px; }

.projects-section { background: #fff; }
.project-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.project-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(17,19,23,.09);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #fbfbfc);
  transition: transform .2s ease, box-shadow .2s ease;
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.project-card__logo {
  display: grid;
  place-items: center;
  height: 102px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(17,19,23,.08);
  padding: 14px;
}
.project-card__logo img { max-height: 74px; object-fit: contain; }
.project-card h3 { margin-bottom: 8px; }
.client-marquee {
  overflow: hidden;
  margin-top: 40px;
  border: 1px solid rgba(17,19,23,.09);
  border-radius: var(--radius);
  background: var(--mist);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.client-track {
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;
  padding: 26px 28px;
  animation: scroll-logos 46s linear infinite;
}
.client-track img { width: 128px; max-height: 54px; object-fit: contain; filter: grayscale(1); opacity: .72; transition: filter .2s ease, opacity .2s ease; }
.client-marquee:hover .client-track { animation-play-state: paused; }
.client-track img:hover { filter: grayscale(0); opacity: 1; }
@keyframes scroll-logos { to { transform: translateX(-50%); } }

.compliance-section {
  background: linear-gradient(180deg, #f8f8f6, #fff);
}
.compliance-layout {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}
.compliance-layout > div:first-child p { margin-top: 24px; font-size: 1.06rem; line-height: 1.8; }
.compliance-grid { display: grid; gap: 18px; }
.compliance-card, .compliance-logos {
  padding: 28px;
  border: 1px solid rgba(17,19,23,.09);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.compliance-card h3 { margin-bottom: 12px; }
.compliance-card p { line-height: 1.8; }
.compliance-logos { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: center; }
.compliance-logos img { width: 92px; height: 76px; object-fit: contain; border-radius: 12px; }

.contact-section {
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 8%, rgba(143,29,44,.33), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(199,164,90,.16), transparent 24rem);
  pointer-events: none;
}
.contact-section .container { position: relative; z-index: 2; }
.contact-section h2, .contact-section h3 { color: #fff; }
.contact-section .eyebrow { color: var(--gold); }
.contact-section p { color: rgba(255,255,255,.72); }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .72fr); gap: 22px; }
.map-panel, .contact-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.06);
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
}
.map-panel { min-height: 560px; }
.map-panel iframe { width: 100%; height: 100%; min-height: 560px; border: 0; filter: grayscale(.8) contrast(1.1) invert(.88); opacity: .78; }
.contact-card { padding: 34px; backdrop-filter: blur(16px); }
.contact-card h3 { margin-bottom: 24px; }
.office { padding: 20px 0; border-top: 1px solid rgba(255,255,255,.12); display: grid; gap: 6px; }
.office strong { color: #fff; }
.office span { color: rgba(255,255,255,.64); }
.office a { color: #fff; font-weight: 900; }
.contact-actions { display: grid; gap: 10px; margin-top: 22px; }
.contact-actions a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  color: #fff;
  font-weight: 900;
}
.contact-actions a span { color: rgba(255,255,255,.56); font-weight: 800; }

.footer {
  background: #0c0d10;
  color: #fff;
  padding: 34px 0;
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer img { width: 132px; height: auto; margin-bottom: 10px; }
.footer p { color: rgba(255,255,255,.58); font-size: .92rem; }
.footer nav { display: flex; flex-wrap: wrap; justify-content: end; gap: 10px; }
.footer nav a { padding: .6rem .78rem; border-radius: 999px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.76); font-weight: 850; font-size: .88rem; }
.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--wine);
  color: #fff;
  box-shadow: 0 18px 38px rgba(143,29,44,.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease;
  font-weight: 950;
}
.back-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .header-phone { display: none; }
  .brand { min-width: auto; }
  .brand small { display: none; }
  .site-nav > a { padding-inline: .62rem; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card { min-height: 280px; }
  .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 78px 0; }
  .header-inner { border-radius: 28px; padding-left: 14px; }
  .brand img { height: 46px; }
  .header-quote { display: none; }
  .nav-toggle { display: inline-block; }
  .site-nav {
    position: fixed;
    top: 98px;
    left: 14px;
    right: 14px;
    display: grid;
    justify-items: stretch;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(17,19,23,.1);
    border-radius: 28px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease;
  }
  body.nav-open .site-nav { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav > a { padding: 1rem 1.1rem; background: #f5f6f8; }
  .language-switcher { margin-left: 0; justify-content: center; }
  .hero { padding-top: 126px; min-height: auto; }
  .hero-layout, .section-head--split, .why-layout, .compliance-layout, .contact-layout { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 30px; }
  .hero-visual { min-height: 420px; }
  .floating-note { right: 14px; bottom: 24px; }
  .metric-band { transform: translateY(0); margin-top: 24px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .metric { min-height: 108px; border-bottom: 1px solid rgba(17,19,23,.08); }
  .metric:nth-child(2n) { border-right: none; }
  .expertise { padding-top: 78px; }
  .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline::before { display: none; }
  .map-panel, .map-panel iframe { min-height: 380px; }
}

@media (max-width: 640px) {
  h1 { font-size: clamp(2.7rem, 15vw, 4.5rem); }
  .hero-actions { align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .btn--text { justify-content: center; }
  .hero-proof { display: grid; }
  .hero-visual { min-height: 360px; }
  .visual-frame { border-radius: 30px; }
  .floating-note { width: calc(100% - 28px); left: 14px; right: 14px; }
  .metric-band, .service-grid, .compact-grid, .timeline, .project-grid { grid-template-columns: 1fr; }
  .metric { border-right: none; }
  .why-panel { min-height: 420px; }
  .project-card { grid-template-columns: 88px 1fr; padding: 18px; }
  .project-card__logo { height: 84px; }
  .contact-card { padding: 24px; }
  .contact-actions a { display: grid; gap: 4px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer nav { justify-content: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* ==========================================================
   Hybrid executive layer
   Base: V2 premium. Header + homepage hero: V3 executive.
   ========================================================== */
:root {
  --red: var(--wine);
  --red-2: var(--wine-2);
  --sand: var(--gold);
  --executive-dark: #101217;
}
body.menu-open { overflow: hidden; }

/* Executive navigation */
.site-header[data-site-header] {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(16,18,23,.62);
  backdrop-filter: blur(22px);
  color: #fff;
  transition: background .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.site-header[data-site-header].is-scrolled,
.site-header[data-site-header].is-open {
  background: rgba(255,255,255,.94);
  border-bottom-color: var(--line);
  color: var(--ink);
  box-shadow: 0 18px 55px rgba(16,18,23,.08);
}
.header-grid {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.site-header[data-site-header] .brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}
.site-header[data-site-header] .brand img {
  width: 50px;
  height: 46px;
  object-fit: contain;
}
.site-header[data-site-header] .brand span { display: grid; line-height: 1.08; }
.site-header[data-site-header] .brand b { font-size: .94rem; letter-spacing: -.025em; }
.site-header[data-site-header] .brand small {
  margin-top: 3px;
  color: currentColor;
  opacity: .65;
  font-size: .69rem;
  font-weight: 760;
}
.primary-nav { display: flex; align-items: center; justify-content: center; gap: 2px; }
.primary-nav a {
  position: relative;
  padding: .95rem .74rem;
  color: currentColor;
  opacity: .76;
  font-size: .82rem;
  font-weight: 780;
  letter-spacing: .01em;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: .74rem;
  right: .74rem;
  bottom: .62rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.primary-nav a:hover,
.primary-nav a.is-current { opacity: 1; }
.primary-nav a:hover::after,
.primary-nav a.is-current::after { transform: scaleX(1); }
.header-tools { display: inline-flex; align-items: center; justify-content: flex-end; gap: 12px; }
.site-header[data-site-header] .language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-left: 0;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: currentColor;
}
.site-header[data-site-header] .language-link {
  min-width: 34px;
  padding: .42rem .48rem;
  border-radius: 0;
  color: currentColor;
  font-size: .7rem;
  font-weight: 860;
  text-align: center;
  opacity: .62;
}
.site-header[data-site-header] .language-link + .language-link { border-left: 1px solid currentColor; }
.site-header[data-site-header] .language-link.is-active { opacity: 1; background: currentColor; color: var(--paper); }
.site-header[data-site-header].is-scrolled .language-link.is-active,
.site-header[data-site-header].is-open .language-link.is-active { color: #fff; }
.site-header[data-site-header] .header-phone {
  color: inherit;
  font-size: .84rem;
  font-weight: 840;
  letter-spacing: .02em;
  white-space: nowrap;
  padding: 0;
}
.site-header[data-site-header] .btn,
.hero .btn {
  border-radius: 0;
  font-size: .86rem;
  font-weight: 860;
  letter-spacing: .015em;
  text-transform: uppercase;
  box-shadow: none;
}
.btn--sm { min-height: 42px; padding: .75rem .95rem; font-size: .74rem; }
.btn--dark { color: #fff; background: var(--executive-dark); border-color: var(--executive-dark); }
.btn--dark:hover { background: var(--wine); border-color: var(--wine); box-shadow: 0 18px 40px rgba(143, 29, 44, .22); }
.btn--light { color: var(--executive-dark); background: #fff; border-color: #fff; }
.btn--light:hover { color: #fff; background: var(--wine); border-color: var(--wine); }
.btn--outline-light { color: #fff; border-color: rgba(255,255,255,.36); background: rgba(255,255,255,.03); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.12); }
.menu-button {
  display: none;
  width: 44px;
  height: 42px;
  position: relative;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.menu-button span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1px;
  background: currentColor;
  transition: transform .2s ease, top .2s ease;
}
.menu-button span:first-child { top: 16px; }
.menu-button span:last-child { top: 25px; }
body.menu-open .menu-button span:first-child { top: 20px; transform: rotate(45deg); }
body.menu-open .menu-button span:last-child { top: 20px; transform: rotate(-45deg); }
.mobile-panel { display: none; }

/* Executive homepage */
.hero {
  min-height: 122svh;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 138px 0 0;
  color: #fff;
  background: var(--executive-dark);
}
.hero::before { content: none; }
.hero-bg {
  --parallax-y: 0px;
  --parallax-y-front: 0px;
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-image: url('../images/hero-blueprint-negative.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center calc(50% + var(--parallax-y));
  background-attachment: fixed;
  will-change: background-position;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: -2%;
  pointer-events: none;
  background: url('../images/hero-blueprint-negative.webp') center center / cover no-repeat;
  opacity: .32;
  filter: brightness(1.08) contrast(1.28);
  transform: translate3d(0, var(--parallax-y-front), 0) scale(1.08);
  will-change: transform;
  mix-blend-mode: screen;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(82,16,26,.18) 0%, rgba(82,16,26,.05) 34%, rgba(82,16,26,.18) 100%),
    linear-gradient(90deg, rgba(82,16,26,.10) 0%, rgba(82,16,26,.03) 42%, rgba(82,16,26,.11) 100%),
    radial-gradient(ellipse at 50% 52%, rgba(255,255,255,.03), rgba(255,255,255,0) 54%);
}
.hero-copy,
.hero-panel,
.metrics {
  position: relative;
  z-index: 1;
}
.hero-copy {
  position: relative;
  z-index: 2;
  isolation: isolate;
  text-shadow: 0 8px 26px rgba(0,0,0,.28);
}
.hero-copy::before {
  content: "";
  position: absolute;
  inset: -32px -42px -34px -34px;
  z-index: -1;
  border-left: 1px solid rgba(255,255,255,.22);
  background: linear-gradient(90deg, rgba(16,18,23,.72) 0%, rgba(16,18,23,.48) 54%, rgba(16,18,23,0) 100%);
  box-shadow: 0 34px 90px rgba(0,0,0,.18);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, .58fr);
  gap: clamp(40px, 7vw, 92px);
  align-items: center;
  padding-bottom: 64px;
}
.hero-copy { padding: 16px 0 0; }
.hero h1 { color: #fff; }
.hero .kicker {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin: 0 0 18px;
  color: var(--sand);
  font-size: .735rem;
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero .kicker::before { content: ""; width: 42px; height: 1px; background: currentColor; }
.hero-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.74);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.72;
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px 18px; margin: 36px 0 0; }
.mail-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.82);
  font-size: .92rem;
  font-weight: 780;
}
.mail-link::after { content: "→"; transition: transform .18s ease; }
.mail-link:hover::after { transform: translateX(5px); }
.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 42px 0 0;
  color: rgba(255,255,255,.72);
  font-size: .82rem;
  font-weight: 740;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.proof-list li { padding: 0 18px; border-left: 1px solid rgba(255,255,255,.22); }
.proof-list li:first-child { padding-left: 0; border-left: 0; }
.hero-panel { border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.04); box-shadow: var(--shadow); }
.hero-panel__image { aspect-ratio: 1 / .92; overflow: hidden; }
.hero-panel__image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.08); }
.hero-panel__content {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  align-items: start;
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 24px;
}
.hero-panel__content img { width: 78px; height: auto; opacity: .9; }
.hero-panel__content strong { display: block; color: #fff; font-size: 1rem; font-weight: 760; letter-spacing: -.02em; line-height: 1.2; }
.hero-panel__content p { margin-top: 9px; color: rgba(255,255,255,.64); font-size: .91rem; line-height: 1.58; }
.metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  border-top: 1px solid rgba(255,255,255,.14);
  border-left: 1px solid rgba(255,255,255,.14);
  background: rgba(16,18,23,.72);
  backdrop-filter: blur(22px);
}
.metrics li { min-height: 128px; padding: 28px; border-right: 1px solid rgba(255,255,255,.14); display: grid; align-content: center; }
.metrics strong { display: block; color: #fff; font-size: clamp(2rem, 4vw, 3.5rem); line-height: .9; letter-spacing: -.05em; }
.metrics span { margin-top: 14px; color: rgba(255,255,255,.63); font-size: .78rem; font-weight: 780; letter-spacing: .1em; text-transform: uppercase; }

/* Compensate for the V3 metric band above V2 content */
.hero + .expertise,
.hero + .section { padding-top: clamp(96px, 12vw, 170px); }

@media (max-width: 1120px) {
  .primary-nav { display: none; }
  .header-grid { grid-template-columns: auto 1fr auto; }
  .header-tools { grid-column: 3; }
  .site-header[data-site-header] .header-phone,
  .header-tools > .btn { display: none; }
  .menu-button { display: block; }
  .mobile-panel {
    display: block;
    position: fixed;
    inset: 79px 0 auto;
    max-height: calc(100svh - 79px);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-8px);
    background: rgba(255,255,255,.98);
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 28px 70px rgba(16,18,23,.12);
    transition: opacity .2s ease, transform .2s ease;
  }
  body.menu-open .mobile-panel { pointer-events: auto; opacity: 1; transform: none; }
  .mobile-panel__inner { width: min(100% - 40px, var(--container)); margin-inline: auto; padding: 26px 0 32px; display: grid; gap: 6px; }
  .mobile-panel a:not(.btn) { padding: 15px 0; border-bottom: 1px solid var(--line); font-weight: 820; }
  .mobile-panel .btn { margin-top: 16px; width: 100%; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-panel { max-width: 620px; }
  .metrics { grid-template-columns: repeat(2,1fr); }
  .hero { min-height: 112svh; }
  .hero-bg {
    background-position: 58% calc(50% + var(--parallax-y));
  }
  .hero-bg::before {
    opacity: .28;
  }
  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(82,16,26,.18) 0%, rgba(82,16,26,.06) 34%, rgba(82,16,26,.18) 100%),
      linear-gradient(90deg, rgba(82,16,26,.11) 0%, rgba(82,16,26,.04) 42%, rgba(82,16,26,.11) 100%);
  }
  .hero-copy::before {
    background: linear-gradient(90deg, rgba(16,18,23,.74) 0%, rgba(16,18,23,.46) 60%, rgba(16,18,23,0) 100%);
  }
}

@media (max-width: 760px) {
  .site-header[data-site-header] { background: rgba(255,255,255,.96); color: var(--ink); border-bottom-color: var(--line); }
  .header-grid { min-height: 72px; gap: 14px; }
  .site-header[data-site-header] .brand { min-width: 0; }
  .site-header[data-site-header] .brand img { width: 44px; height: 40px; }
  .site-header[data-site-header] .brand small { display: none; }
  .site-header[data-site-header] .language-switcher { display: none; }
  .hero { min-height: auto; padding-top: 118px; }
  .hero-bg {
    background-attachment: scroll;
    background-position: 66% calc(50% + var(--parallax-y));
  }
  .hero-bg::before {
    inset: 0;
    opacity: .22;
    mix-blend-mode: screen;
  }
  .hero-bg::after {
    background: linear-gradient(180deg, rgba(82,16,26,.20) 0%, rgba(82,16,26,.08) 42%, rgba(82,16,26,.22) 100%);
  }
  .hero-copy::before {
    inset: -22px -20px -24px -20px;
    background: linear-gradient(90deg, rgba(16,18,23,.76), rgba(16,18,23,.42));
  }
  .hero-grid { padding-bottom: 44px; }
  .hero-lead { margin-top: 22px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn,
  .hero-actions .mail-link { width: 100%; justify-content: center; }
  .proof-list { display: grid; gap: 10px; margin-top: 34px; }
  .proof-list li { padding: 0; border: 0; }
  .hero-panel__content { grid-template-columns: 62px 1fr; padding: 20px; }
  .hero-panel__content img { width: 58px; }
  .metrics { grid-template-columns: 1fr; border-left: 0; background: transparent; backdrop-filter: none; }
  .metrics li { min-height: 106px; padding: 24px 0; border-right: 0; }
}


/* ==========================================================
   Retape premium - v11
   Plein écran, menu épuré, accueil plus sobre, secteurs élargis
   ========================================================== */
:root {
  --container: 1480px;
  --wine-deep: #52101a;
}
.container {
  width: min(100% - clamp(28px, 3.8vw, 80px), var(--container));
}
.section {
  padding: clamp(86px, 8vw, 118px) 0;
}
h1, h2, h3 {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 720;
  line-height: 1.04;
  letter-spacing: -.028em;
}
h1 {
  font-size: clamp(2.65rem, 5.4vw, 5.35rem);
  max-width: 780px;
}
h2 {
  font-size: clamp(2rem, 3.75vw, 3.75rem);
}
.site-header[data-site-header],
.site-header[data-site-header].is-scrolled,
.site-header[data-site-header].is-open {
  inset: 0 0 auto;
  background: transparent;
  border: 0;
  color: #fff;
  box-shadow: none;
  backdrop-filter: none;
  transition: none;
}
.header-grid {
  width: min(calc(100% - clamp(20px, 3vw, 44px)), 1700px);
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(70px, auto) 1fr minmax(70px, auto);
  align-items: center;
  gap: clamp(18px, 2vw, 36px);
  margin: 14px auto 0;
  padding: 0 clamp(16px, 2vw, 26px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
  background: rgba(16,18,23,.16);
  box-shadow: 0 18px 40px rgba(5,8,12,.14);
  backdrop-filter: blur(18px);
}
.site-header[data-site-header] .brand {
  min-width: 68px;
  justify-content: flex-start;
  gap: 0;
}
.site-header[data-site-header] .brand img {
  width: clamp(56px, 3.2vw, 68px);
  height: auto;
  object-fit: contain;
}
.site-header[data-site-header] .brand span,
.site-header[data-site-header] .header-phone,
.site-header[data-site-header] .language-switcher,
.header-tools > .btn {
  display: none !important;
}
.primary-nav {
  justify-content: center;
  gap: clamp(6px, 1vw, 14px);
}
.primary-nav a {
  padding: .9rem clamp(.5rem, .8vw, .85rem);
  color: rgba(255,255,255,.94);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(.72rem, .58rem + .25vw, .8rem);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .84;
}
.header-tools {
  min-width: 68px;
}
.header-lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.menu-button {
  border-radius: 999px;
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: #fff;
}
.hero {
  min-height: 112svh;
  padding-top: 136px;
}
.hero-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .50fr);
  gap: clamp(38px, 5.8vw, 92px);
  align-items: center;
  padding-bottom: 54px;
}
.hero-copy {
  padding-top: 0;
}
.hero-copy::before {
  inset: -30px -34px -32px -32px;
  border-left-color: rgba(255,255,255,.20);
  background: linear-gradient(90deg, rgba(16,18,23,.70) 0%, rgba(16,18,23,.44) 55%, rgba(16,18,23,0) 100%);
  box-shadow: 0 32px 90px rgba(0,0,0,.20);
}
.hero .kicker {
  margin-bottom: 16px;
  max-width: 760px;
  font-size: clamp(.67rem, .58rem + .22vw, .78rem);
  letter-spacing: .15em;
}
.hero-lead {
  max-width: 660px;
  margin-top: 22px;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.65;
  color: rgba(255,255,255,.79);
}
.sector-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}
.sector-list li {
  padding: .48rem .68rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.88);
  font-size: .76rem;
  font-weight: 780;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-actions {
  margin-top: 28px;
}
.proof-list {
  margin-top: 30px;
  font-size: .76rem;
}
.hero-panel {
  border-color: rgba(255,255,255,.20);
  background: rgba(16,18,23,.20);
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
}
.hero-panel__content {
  padding: 26px;
  background: linear-gradient(135deg, rgba(16,18,23,.68), rgba(82,16,26,.25));
}
.hero-panel__content p {
  color: rgba(255,255,255,.82);
}
.metrics {
  width: min(calc(100% - clamp(28px, 3.8vw, 80px)), 1480px);
  margin-inline: auto;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(16,18,23,.66);
  backdrop-filter: blur(20px);
}
.metrics li {
  border-right: 1px solid rgba(255,255,255,.14);
}
.service-card__icon {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(143,29,44,.18);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(143,29,44,.10), rgba(199,164,90,.08));
  color: var(--wine);
}
.service-card__icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card:hover .service-card__icon {
  background: var(--wine);
  color: #fff;
  border-color: var(--wine);
}
@media (max-width: 1120px) {
  .primary-nav { display: none; }
  .header-grid {
    width: min(calc(100% - 18px), 1700px);
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }
  .menu-button { display: block; }
  .mobile-panel {
    display: block;
    position: fixed;
    inset: 88px 0 auto;
    max-height: calc(100svh - 88px);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-8px);
    background: transparent;
    color: var(--ink);
    transition: opacity .2s ease, transform .2s ease;
  }
  body.menu-open .mobile-panel { pointer-events: auto; opacity: 1; transform: none; }
  .mobile-panel__inner {
    width: min(calc(100% - 22px), var(--container));
    margin-inline: auto;
    padding: 18px 18px 22px;
    display: grid;
    gap: 6px;
    border: 1px solid rgba(17,19,23,.08);
    border-radius: 18px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 24px 65px rgba(16,18,23,.14);
  }
  .mobile-panel a { padding: 14px 0; border-bottom: 1px solid var(--line); font-weight: 760; }
  .mobile-panel a:last-child { border-bottom: 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-panel { max-width: 620px; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--container)); }
  .site-header[data-site-header],
  .site-header[data-site-header].is-scrolled,
  .site-header[data-site-header].is-open {
    background: transparent;
    color: #fff;
    border: 0;
  }
  .header-grid {
    width: calc(100% - 12px);
    min-height: 64px;
    gap: 10px;
    margin-top: 8px;
    padding: 0 12px;
    border-radius: 16px;
  }
  .site-header[data-site-header] .brand { min-width: 0; }
  .site-header[data-site-header] .brand img { width: 42px; height: auto; }
  .header-lang { min-width: 38px; height: 38px; padding: 0 10px; font-size: .72rem; }
  .hero { min-height: auto; padding-top: 112px; }
  .hero-copy::before { inset: -20px -18px -22px; background: rgba(16,18,23,.58); }
  .hero h1 { font-size: clamp(2.25rem, 12vw, 3.8rem); }
  .hero-lead { font-size: 1rem; }
  .sector-list { gap: 7px; }
  .sector-list li { font-size: .68rem; padding: .42rem .55rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn, .hero-actions .mail-link { width: 100%; justify-content: center; }
  .proof-list { display: grid; gap: 10px; }
  .proof-list li { padding: 0; border: 0; }
  .hero-panel__content { grid-template-columns: 58px 1fr; padding: 20px; }
  .metrics { width: min(100% - 28px, var(--container)); grid-template-columns: 1fr; }
  .metrics li { min-height: 104px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .metrics li:last-child { border-bottom: 0; }
}


/* 2026-08 refinement: lighter hero, cleaner metrics, smaller cookie icon */
.hero h1 {
  max-width: 11.5ch;
  font-size: clamp(2.95rem, 5.2vw, 5.1rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.hero-lead {
  max-width: 610px;
  font-size: clamp(1rem, 1.05vw, 1.07rem);
}
.hero-actions { margin-top: 24px; }
.hero-actions .btn { min-width: 220px; }
.proof-list li {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
}
.metrics.metrics--3 {
  grid-template-columns: repeat(3, 1fr);
}
.metrics.metrics--3 li:last-child {
  border-right: 0;
}
@media (max-width: 1044px) {
  .metrics.metrics--3 { grid-template-columns: repeat(2,1fr); }
  .metrics.metrics--3 li:nth-child(2) { border-right: 0; }
  .metrics.metrics--3 li:last-child { grid-column: 1 / -1; }
}
@media (max-width: 767px) {
  .metrics.metrics--3 { grid-template-columns: 1fr; }
  .metrics.metrics--3 li { grid-column: auto; }
}
.hero-panel__content {
  background: linear-gradient(135deg, rgba(16,18,23,.74), rgba(82,16,26,.22));
}
#silktide-wrapper #silktide-cookie-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  min-height: 54px;
  left: 14px;
  bottom: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
#silktide-wrapper #silktide-cookie-icon svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 767px) {
  #silktide-wrapper #silktide-cookie-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
    left: 10px;
    bottom: 10px;
  }
  #silktide-wrapper #silktide-cookie-icon svg {
    width: 20px;
    height: 20px;
  }
}


/* 2026-08 executive polish */
:root {
  --container: 1320px;
  --radius: 26px;
  --radius-lg: 36px;
  --shadow: 0 30px 80px rgba(13, 17, 24, .12);
  --shadow-soft: 0 18px 40px rgba(13, 17, 24, .08);
}
body {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfbfc 34%, #f8f7f5 100%);
}
body::before {
  background:
    radial-gradient(circle at 10% 10%, rgba(143,29,44,.05), transparent 26rem),
    radial-gradient(circle at 90% 0%, rgba(199,164,90,.08), transparent 30rem),
    radial-gradient(circle at 50% 100%, rgba(17,19,23,.035), transparent 40rem);
}
.section {
  padding: clamp(88px, 8vw, 124px) 0;
}
.section-head { margin-bottom: 54px; }
.section-head--split { gap: clamp(28px, 3vw, 48px); }
.section-head p,
.method-intro p,
.compliance-layout > div:first-child p,
.contact-head p,
.service-card p,
.compact-card p,
.project-card p,
.compliance-card p,
.office span {
  color: #5f6876;
}
.eyebrow, .overline {
  letter-spacing: .16em;
}
.site-header[data-site-header] .header-grid {
  width: min(calc(100% - clamp(18px, 2.2vw, 34px)), 1760px);
  min-height: 80px;
  padding: 0 clamp(18px, 2vw, 28px);
  border-color: rgba(255,255,255,.15);
  background: rgba(12,14,18,.22);
  box-shadow: 0 22px 55px rgba(6, 10, 16, .14);
}
.site-header[data-site-header].is-scrolled .header-grid,
.site-header[data-site-header].is-open .header-grid {
  background: rgba(12,14,18,.28);
}
.primary-nav a {
  font-size: clamp(.74rem, .64rem + .18vw, .82rem);
  font-weight: 760;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.primary-nav a:hover { opacity: 1; }
.header-lang {
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  font-weight: 800;
  letter-spacing: .08em;
}
.hero {
  min-height: min(900px, 100svh);
  padding-top: 164px;
}
.hero-grid { align-items: center; }
.hero-copy { max-width: 690px; }
.hero .kicker {
  margin-bottom: 18px;
  color: rgba(255,255,255,.86);
}
.hero h1 {
  max-width: 10.2ch;
  font-size: clamp(3.2rem, 5.5vw, 5.9rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.hero-lead {
  max-width: 620px;
  margin-top: 20px;
  font-size: clamp(1.02rem, 1vw, 1.08rem);
  line-height: 1.78;
  color: rgba(255,255,255,.76);
}
.hero-actions { margin-top: 28px; }
.hero-actions .btn {
  min-width: 228px;
  background: #fff;
  color: var(--ink);
  border: 0;
  box-shadow: 0 18px 34px rgba(0,0,0,.16);
}
.proof-list {
  margin-top: 28px;
  gap: 12px;
}
.proof-list li {
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  backdrop-filter: blur(12px);
}
.hero-panel {
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 28px 70px rgba(0,0,0,.26);
}
.hero-panel__image img {
  transform: scale(1.015);
  filter: saturate(.92) contrast(1.03);
}
.hero-panel__content {
  padding: 22px 24px;
  border-top: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, rgba(14,18,24,.78), rgba(82,16,26,.24));
}
.hero-panel__content img {
  width: 74px;
  opacity: .95;
}
.hero-panel__content strong {
  font-size: 1.02rem;
  letter-spacing: -.02em;
}
.hero-panel__content p {
  margin-top: 8px;
  color: rgba(255,255,255,.68);
  font-size: .92rem;
}
.metrics {
  border-radius: 0 0 28px 28px;
  overflow: hidden;
  border-left: 1px solid rgba(255,255,255,.1);
  border-right: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(11,14,19,.76);
  backdrop-filter: blur(20px);
}
.metrics li {
  min-height: 122px;
  padding: 24px 28px;
}
.metrics strong { font-size: clamp(2.2rem, 3.8vw, 3.5rem); }
.metrics span {
  margin-top: 10px;
  color: rgba(255,255,255,.66);
  font-size: .75rem;
  letter-spacing: .13em;
}
.expertise { padding-top: clamp(128px, 10vw, 180px); }
.service-grid, .project-grid { gap: 22px; }
.service-card {
  min-height: 328px;
  padding: 30px;
  border-color: rgba(17,19,23,.08);
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(17,19,23,.04);
}
.service-card::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(143,29,44,.95), rgba(199,164,90,.82));
  opacity: .14;
  transition: opacity .2s ease;
}
.service-card:hover::after { opacity: .9; }
.service-card h3 { font-size: 1.34rem; margin-bottom: 14px; }
.service-card p { line-height: 1.72; }
.why-panel,
.compact-card,
.timeline-step,
.project-card,
.compliance-card,
.compliance-logos,
.map-panel,
.contact-card {
  border-radius: 24px;
}
.why-panel {
  min-height: 590px;
  padding: 38px;
}
.compact-card {
  min-height: 286px;
  padding: 30px;
  box-shadow: 0 10px 28px rgba(17,19,23,.05);
}
.compact-card h3 { font-size: 1.28rem; margin-bottom: 12px; }
.method-intro { margin-bottom: 44px; }
.timeline-step {
  min-height: 280px;
  padding: 26px;
  background: rgba(255,255,255,.05);
}
.timeline-step h3 { font-size: 1.24rem; }
.project-card {
  min-height: 144px;
  padding: 20px;
  border-color: rgba(17,19,23,.08);
  box-shadow: 0 8px 24px rgba(17,19,23,.04);
}
.project-card__logo {
  height: 98px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #fbfbfd);
}
.project-card p { line-height: 1.55; }
.client-marquee {
  margin-top: 34px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f6f7f8, #f2f4f6);
}
.compliance-card { min-height: 208px; }
.contact-card { padding: 36px; }
.contact-actions a {
  padding: 15px 16px;
  border-radius: 16px;
}
.footer {
  padding: 38px 0 44px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer nav a {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}
.back-top {
  box-shadow: 0 16px 34px rgba(0,0,0,.16);
}
#silktide-wrapper #silktide-cookie-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
}
#silktide-wrapper #silktide-cookie-icon svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 1120px) {
  .hero { min-height: auto; }
  .hero h1 { max-width: 12ch; font-size: clamp(2.8rem, 8vw, 4.4rem); }
  .hero-copy { max-width: none; }
  .service-grid, .project-grid { gap: 18px; }
}
@media (max-width: 767px) {
  .section { padding: 78px 0; }
  .site-header[data-site-header] .header-grid {
    width: min(calc(100% - 14px), 100%);
    margin-top: 8px;
    padding: 0 14px;
    border-radius: 16px;
  }
  .hero {
    padding-top: 120px;
  }
  .hero h1 {
    font-size: clamp(2.5rem, 10vw, 3.45rem);
    max-width: 11ch;
  }
  .hero-panel__content { padding: 18px; }
  .metrics { width: min(100% - 18px, var(--container)); }
  .service-card,
  .compact-card,
  .timeline-step,
  .project-card,
  .compliance-card,
  .contact-card { border-radius: 20px; }
  .contact-card { padding: 24px; }
  #silktide-wrapper #silktide-cookie-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
  }
}


/* 2026-08 ultra-premium finishing pass */
body,
button,
input,
textarea,
select {
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
h1, h2, h3, .btn, .primary-nav a, .header-lang, .eyebrow, .overline {
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
html { scrollbar-gutter: stable; }
::selection {
  background: rgba(143,29,44,.18);
  color: var(--ink);
}
.container { width: min(100% - clamp(28px, 3vw, 44px), var(--container)); }
.site-header[data-site-header] .header-grid {
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(6, 10, 16, .13);
}
.site-header[data-site-header] .brand img {
  filter: drop-shadow(0 8px 22px rgba(0,0,0,.12));
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: .7rem;
  right: .7rem;
  bottom: .55rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  transform: scaleX(0);
  transform-origin: center;
  opacity: .65;
  transition: transform .22s ease;
}
.primary-nav a:hover::after,
.primary-nav a.is-current::after {
  transform: scaleX(1);
}
.header-lang {
  min-width: 48px;
  min-height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.08) 42%, rgba(255,255,255,.24));
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero .kicker {
  display: inline-flex;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
}
.hero h1 {
  text-wrap: balance;
}
.hero-panel {
  position: relative;
}
.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  pointer-events: none;
}
.metrics.metrics--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.metrics li {
  list-style: none;
  position: relative;
}
.metrics li::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  opacity: 0;
}
.signature-band {
  position: relative;
  padding: 30px 0 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 34%);
}
.signature-band .container {
  padding-top: 18px;
}
.signature-band__intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.signature-band__intro h2 {
  max-width: 560px;
  font-size: clamp(1.65rem, 2.2vw, 2.35rem);
  letter-spacing: -.045em;
}
.signature-band__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.signature-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: 26px 24px;
  border: 1px solid rgba(17,19,23,.08);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f8f8fa);
  box-shadow: 0 10px 28px rgba(17,19,23,.04);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.signature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(143,29,44,.18);
  box-shadow: 0 18px 34px rgba(17,19,23,.07);
}
.signature-card__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(143,29,44,.08), rgba(199,164,90,.16));
  color: var(--wine);
}
.signature-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.signature-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.signature-card p {
  line-height: 1.7;
}
.section-head h2,
.method-intro h2,
.contact-head h2,
.compliance-layout h2,
.why-panel h2 {
  text-wrap: balance;
}
.service-card,
.compact-card,
.project-card,
.compliance-card,
.contact-card,
.signature-card {
  backdrop-filter: blur(0px);
}
.service-card:hover,
.compact-card:hover,
.project-card:hover,
.compliance-card:hover {
  box-shadow: 0 18px 36px rgba(17,19,23,.07);
}
.service-card__icon {
  background: linear-gradient(135deg, rgba(143,29,44,.09), rgba(199,164,90,.14));
  border: 1px solid rgba(143,29,44,.08);
}
.compact-card,
.compliance-card {
  position: relative;
  overflow: hidden;
}
.compact-card::after,
.compliance-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--wine), rgba(199,164,90,.72));
  opacity: .12;
}
.timeline-step {
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.timeline-step:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.075);
  border-color: rgba(255,255,255,.18);
}
.timeline-step span {
  font-size: .74rem;
  letter-spacing: .14em;
}
.project-card h3,
.contact-card h3,
.compliance-card h3 {
  letter-spacing: -.03em;
}
.contact-card {
  position: relative;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.06);
  pointer-events: none;
}
.footer p {
  max-width: 620px;
}
.footer nav a:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.reveal {
  transition-duration: .82s;
  transition-timing-function: cubic-bezier(.2,.65,.18,1);
}
.service-grid .reveal:nth-child(2),
.project-grid .reveal:nth-child(2),
.compact-grid .reveal:nth-child(2),
.timeline .reveal:nth-child(2),
.signature-band__grid .reveal:nth-child(2) { transition-delay: .08s; }
.service-grid .reveal:nth-child(3),
.project-grid .reveal:nth-child(3),
.compact-grid .reveal:nth-child(3),
.timeline .reveal:nth-child(3),
.signature-band__grid .reveal:nth-child(3) { transition-delay: .14s; }
.service-grid .reveal:nth-child(4),
.project-grid .reveal:nth-child(4),
.compact-grid .reveal:nth-child(4),
.timeline .reveal:nth-child(4) { transition-delay: .2s; }
@media (max-width: 1120px) {
  .signature-band__intro {
    display: grid;
    justify-content: stretch;
  }
  .signature-band__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .hero .kicker {
    padding: 8px 12px;
    font-size: .68rem;
  }
  .signature-band {
    padding-top: 14px;
  }
  .signature-card {
    grid-template-columns: 50px 1fr;
    padding: 22px 20px;
    border-radius: 20px;
  }
  .signature-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
  }
}


/* Final launch adjustments - 2026-08-06 */
.hero {
  min-height: min(800px, 96svh);
  padding-top: clamp(138px, 12vw, 158px);
}
.hero-grid {
  padding-bottom: clamp(24px, 3.8vw, 42px);
}
.hero .kicker {
  color: var(--gold) !important;
  border-color: rgba(199,164,90,.24);
  background: rgba(199,164,90,.08);
  letter-spacing: .13em;
}
.hero h1 {
  max-width: 11.5ch;
  font-size: clamp(2.75rem, 4.65vw, 4.95rem) !important;
  line-height: 1.01;
  letter-spacing: -.052em;
}
.hero-lead {
  max-width: 650px;
  margin-top: 18px;
}
.hero-actions {
  margin-top: 24px;
}
.proof-list {
  display: none !important;
}
.metrics.metrics--3 {
  margin-top: clamp(-22px, -2vw, -14px);
  transform: translateY(-10px);
  border-radius: 28px;
  box-shadow: 0 26px 58px rgba(0,0,0,.22);
}
.metrics.metrics--3 strong {
  font-size: clamp(2rem, 3.2vw, 3.05rem);
  letter-spacing: -.045em;
}
.metrics.metrics--3 li:first-child strong {
  font-size: clamp(1.7rem, 2.6vw, 2.45rem);
  letter-spacing: .04em;
}
.metrics.metrics--3 span {
  min-height: 1.9em;
}
.why-panel h2 {
  max-width: 92%;
  font-size: clamp(2rem, 3.35vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  overflow-wrap: normal;
  hyphens: none;
}
.why-panel {
  overflow: hidden;
}
.why-panel .eyebrow {
  max-width: 92%;
}
@media (max-width: 1120px) {
  .hero {
    min-height: auto;
    padding-top: 126px;
  }
  .hero h1 {
    max-width: 12.4ch;
    font-size: clamp(2.45rem, 7.5vw, 4.1rem) !important;
  }
  .metrics.metrics--3 {
    margin-top: 0;
    transform: none;
  }
  .why-panel h2 {
    max-width: 100%;
    font-size: clamp(2rem, 6vw, 3.1rem);
  }
}
@media (max-width: 767px) {
  .hero {
    padding-top: 110px;
  }
  .hero .kicker {
    font-size: .64rem;
    letter-spacing: .1em;
  }
  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.15rem, 9vw, 3rem) !important;
  }
  .hero-lead {
    font-size: .98rem;
    line-height: 1.68;
  }
  .metrics.metrics--3 {
    border-radius: 22px;
  }
  .metrics.metrics--3 li:first-child strong,
  .metrics.metrics--3 strong {
    font-size: clamp(1.85rem, 12vw, 2.7rem);
  }
  .why-panel h2 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
    line-height: 1.1;
  }
}


/* Final online polish: full-screen hero and wider footer */
.hero {
  min-height: 100svh !important;
  display: grid !important;
  grid-template-rows: minmax(0, 1fr) auto !important;
  align-items: stretch !important;
  padding-top: clamp(118px, 13vh, 156px) !important;
  padding-bottom: 0 !important;
}
.hero-bg {
  min-height: 100svh;
}
.hero-grid {
  align-self: center !important;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, .48fr) !important;
  gap: clamp(34px, 5vw, 76px) !important;
  padding-bottom: clamp(12px, 2vh, 26px) !important;
}
.hero-copy {
  max-width: 660px !important;
}
.hero .kicker {
  color: var(--gold) !important;
  border-color: rgba(199,164,90,.28) !important;
  background: rgba(199,164,90,.075) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.hero h1 {
  max-width: 11.2ch !important;
  font-size: clamp(2.85rem, 4.55vw, 4.95rem) !important;
  line-height: 1.01 !important;
  letter-spacing: -.052em !important;
}
.hero-lead {
  max-width: 590px !important;
  margin-top: 18px !important;
  font-size: clamp(.98rem, .95vw, 1.05rem) !important;
  line-height: 1.72 !important;
}
.hero-signal {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  color: rgba(255,255,255,.76);
  font-size: .76rem;
  font-weight: 760;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-signal::before {
  content: "";
  display: inline-block;
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(199,164,90,0));
}
.hero-panel {
  transform: translateY(4px);
}
.hero-panel__image {
  max-height: min(42svh, 390px);
  overflow: hidden;
}
.hero-panel__image img {
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}
.hero-panel__content {
  grid-template-columns: 68px 1fr !important;
}
.metrics {
  align-self: end !important;
  margin-top: 0 !important;
}
.metrics.metrics--3 {
  width: min(calc(100% - clamp(22px, 2.6vw, 44px)), 1560px) !important;
}
.metrics.metrics--3 li {
  min-height: 108px !important;
  padding: 21px clamp(22px, 2.3vw, 34px) !important;
}
.metrics.metrics--3 strong {
  font-size: clamp(1.75rem, 2.9vw, 3rem) !important;
  letter-spacing: -.04em !important;
}
.metrics.metrics--3 span {
  font-size: .72rem !important;
  letter-spacing: .13em !important;
}
.signature-band {
  padding-top: clamp(50px, 6vw, 78px) !important;
}
.why-panel {
  overflow: hidden !important;
  padding: clamp(30px, 3.2vw, 42px) !important;
}
.why-panel h2 {
  max-width: 100% !important;
  font-size: clamp(2rem, 2.85vw, 3.05rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -.04em !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}
.footer {
  padding: 42px 0 48px !important;
}
.footer .container {
  width: min(calc(100% - clamp(24px, 2.8vw, 52px)), 1760px) !important;
}
.footer-inner {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: clamp(24px, 5vw, 96px) !important;
}
.footer-inner > div {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}
.footer img {
  width: 96px !important;
  margin-bottom: 0 !important;
  flex: 0 0 auto;
}
.footer p {
  max-width: none !important;
  line-height: 1.55 !important;
}
.footer nav {
  justify-content: flex-end !important;
}
@media (max-width: 1120px) {
  .hero {
    min-height: 100svh !important;
    padding-top: 118px !important;
  }
  .hero-grid {
    grid-template-columns: 1fr !important;
    align-self: start !important;
    padding-bottom: 22px !important;
  }
  .hero-panel {
    display: none;
  }
  .hero h1 {
    max-width: 12.2ch !important;
    font-size: clamp(2.65rem, 7.3vw, 4.25rem) !important;
  }
  .metrics.metrics--3 {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .metrics.metrics--3 li {
    min-height: 96px !important;
    padding: 18px !important;
  }
  .why-panel h2 {
    font-size: clamp(2rem, 4.6vw, 2.85rem) !important;
  }
}
@media (max-width: 767px) {
  .hero {
    min-height: 100svh !important;
    padding-top: 104px !important;
  }
  .hero-grid {
    padding-bottom: 12px !important;
  }
  .hero .kicker {
    max-width: 100%;
    line-height: 1.35;
  }
  .hero h1 {
    max-width: 11.5ch !important;
    font-size: clamp(2.25rem, 9.2vw, 3.15rem) !important;
    line-height: 1.04 !important;
  }
  .hero-lead {
    font-size: .96rem !important;
    line-height: 1.62 !important;
  }
  .hero-signal {
    display: none;
  }
  .metrics.metrics--3 {
    width: min(calc(100% - 16px), 100%) !important;
    grid-template-columns: 1fr !important;
    border-radius: 18px !important;
  }
  .metrics.metrics--3 li {
    min-height: 74px !important;
    padding: 16px 18px !important;
    border-right: 0 !important;
  }
  .metrics.metrics--3 strong {
    font-size: 1.7rem !important;
  }
  .metrics.metrics--3 span {
    margin-top: 4px !important;
  }
  .signature-band {
    padding-top: 46px !important;
  }
  .why-panel {
    min-height: 390px !important;
  }
  .why-panel h2 {
    font-size: clamp(1.78rem, 7.5vw, 2.35rem) !important;
    line-height: 1.1 !important;
  }
  .footer-inner {
    grid-template-columns: 1fr !important;
  }
  .footer-inner > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .footer nav {
    justify-content: flex-start !important;
  }
}
