/* ============================================================
   GEOTECH CARAÏBES — Design System Premium
   Palette: Navy #0d1b2a · Orange #E8651A · Cream #f5f0e8
   Fonts: DM Serif Display (editorial) + Inter (body)
   ============================================================ */

/* ─── Custom Properties ─────────────────────────────────── */
:root {
  --navy:        #0d1b2a;
  --navy-mid:    #162534;
  --navy-light:  #1e3450;
  --navy-border: #243d5c;
  --orange:      #E8651A;
  --orange-h:    #d45a15;
  --orange-soft: rgba(232,101,26,.12);
  --cream:       #f5f0e8;
  --cream-dark:  #ede7dc;
  --white:       #ffffff;
  --gray:        #8a9aac;
  --gray-light:  #c5cdd6;
  --blue-acc:    #1a4f8a;

  --font-serif:  'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;

  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --tr:          0.35s var(--ease);

  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   22px;

  --container:   1200px;
}

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  color: var(--navy);
  background: var(--navy);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
address { font-style: normal; }

/* ─── Container ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ─── Section Backgrounds ───────────────────────────────── */
.section--dark  { background: var(--navy); color: var(--white); }
.section--cream { background: var(--cream); color: var(--navy); }
section { padding-block: clamp(4rem, 8vw, 7rem); }

/* ─── Typography ────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}
.section-tag--white { color: var(--gray-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--orange); }
.section-title--white { color: var(--white); }
.section-title--xl { font-size: clamp(2.6rem, 6vw, 4.2rem); }

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 640px;
  line-height: 1.7;
}

.section-header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  padding: .75rem 1.6rem;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: var(--tr);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

.btn--orange { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn--orange:hover { background: var(--orange-h); border-color: var(--orange-h); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,101,26,.35); }

.btn--dark { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--dark:hover { background: var(--navy-light); transform: translateY(-2px); }

.btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.btn--outline-white:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.7); }

.btn--outline-dark { background: transparent; color: var(--navy); border-color: var(--navy-border); }
.btn--outline-dark:hover { background: var(--navy); color: var(--white); }

.btn--whatsapp { background: #25d366; color: var(--white); border-color: #25d366; }
.btn--whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.3); }

.btn--md  { padding: .65rem 1.4rem; font-size: .875rem; }
.btn--lg  { padding: .9rem 2rem;   font-size: .95rem; }
.btn--xl  { padding: 1.05rem 2.4rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ─── Reveal Animations ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-hero { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-hero.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .32s; }
.delay-4 { transition-delay: .42s; }
.delay-5 { transition-delay: .52s; }

/* ════════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}
.navbar.scrolled {
  background: rgba(13,27,42,.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 8px 32px rgba(0,0,0,.4);
}

.navbar__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 72px;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  max-width: 1440px;
  margin: 0 auto;
}

.navbar__logo img { height: 130px; width: auto; object-fit: contain; transition: opacity .2s; }
.navbar__logo:hover img { opacity: .8; }

.navbar__nav { flex: 1; }
.navbar__links { display: flex; align-items: center; gap: .25rem; justify-content: center; }

.nav-link {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .03em;
  color: rgba(255,255,255,.75);
  padding: .45rem .75rem;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link--arrow::after { content: ' ↓'; font-size: .65rem; opacity: .6; }

/* Dropdown */
.nav-item--dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--navy-mid);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: .6rem;
  min-width: 240px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  box-shadow: 0 24px 48px rgba(0,0,0,.5);
}
.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  color: var(--gray-light);
  padding: .55rem .9rem;
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.nav-dropdown a:hover { background: var(--navy-light); color: var(--white); }

.navbar__actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.navbar__tel { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.6); transition: color .2s; }
.navbar__tel:hover { color: var(--white); }

/* Burger */
.navbar__burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; padding: 4px; }
.navbar__burger span { display: block; width: 100%; height: 2px; background: var(--white); border-radius: 2px; transition: var(--tr); }
.navbar__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger.open span:nth-child(2) { opacity: 0; }
.navbar__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.navbar__mobile {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 90vw);
  height: 100vh;
  background: var(--navy-mid);
  border-left: 1px solid var(--navy-border);
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  z-index: 999;
  overflow-y: auto;
  padding: 5rem 1.5rem 2rem;
}
.navbar__mobile.open { transform: translateX(0); }
.navbar__mobile ul { display: flex; flex-direction: column; gap: .25rem; }
.navbar__mobile a { display: block; font-size: .9rem; font-weight: 500; color: var(--gray-light); padding: .7rem .9rem; border-radius: 8px; transition: background .15s, color .15s; }
.navbar__mobile a:hover { background: var(--navy-light); color: var(--white); }
.mobile-sep { font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); padding: 1rem .9rem .4rem; }
.mobile-close { position: absolute; top: 1.25rem; right: 1.25rem; font-size: 1.2rem; color: var(--gray); padding: .4rem; transition: color .2s; }
.mobile-close:hover { color: var(--white); }
.navbar__overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(4px); z-index: 998; opacity: 0; pointer-events: none; transition: opacity .4s; }
.navbar__overlay.show { opacity: 1; pointer-events: auto; }

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,.9) 0%, rgba(13,27,42,.72) 55%, rgba(13,27,42,.5) 100%);
}
.hero__noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__content { position: relative; z-index: 1; padding-top: 80px; }

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 1.5rem;
}
.eyebrow-line { display: block; width: 48px; height: 1.5px; background: var(--orange); flex-shrink: 0; }

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 820px;
}
.hero__title em { font-style: italic; color: var(--orange); }

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.7);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }

.hero__badges { display: flex; flex-wrap: wrap; gap: .6rem; }
.hero__badge {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px;
  padding: .35rem .9rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s; z-index: 1;
}
.hero__scroll:hover { color: rgba(255,255,255,.65); }
.hero__scroll-arrow { animation: bounce 2.2s ease-in-out infinite; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(7px)} }

/* ════════════════════════════════════════════════════════════
   TICKER
════════════════════════════════════════════════════════════ */
.ticker { background: var(--orange); overflow: hidden; white-space: nowrap; padding-block: .85rem; }
.ticker__track {
  display: inline-flex; align-items: center; gap: 1.5rem;
  animation: ticker-scroll 30s linear infinite;
}
.ticker__track span { font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--white); flex-shrink: 0; }
.ticker__sep { opacity: .5; }
@keyframes ticker-scroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }

/* ════════════════════════════════════════════════════════════
   STATS
════════════════════════════════════════════════════════════ */
.stats { padding-block: clamp(3.5rem, 6vw, 5.5rem); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat {
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  border-right: 1px solid var(--navy-border);
  position: relative;
  overflow: hidden;
}
.stat::after {
  content:''; position: absolute; inset:0;
  background: radial-gradient(circle at 50% 0%, rgba(232,101,26,.07) 0%, transparent 70%);
  opacity:0; transition: opacity .4s;
}
.stat:hover::after { opacity:1; }
.stat:last-child { border-right: none; }

.stat__number {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: .75rem;
  letter-spacing: -.03em;
}
.stat__number.orange { color: var(--orange); }
.stat__label { font-size: .78rem; font-weight: 500; color: var(--gray); line-height: 1.5; }
.stats__tagline {
  text-align: center; margin-top: 2.5rem;
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.05rem; color: var(--gray);
}

/* ════════════════════════════════════════════════════════════
   BENTO GRID — EXPERTISES
════════════════════════════════════════════════════════════ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.bento-grid > article:nth-child(1) { grid-column: span 3; grid-row: span 2; }
.bento-grid > article:nth-child(2) { grid-column: span 3; }
.bento-grid > article:nth-child(3) { grid-column: span 6; }
.bento-grid > article:nth-child(4) { grid-column: span 3; }
.bento-grid > article:nth-child(5) { grid-column: span 3; }

.bento-card {
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex; flex-direction: column; gap: .75rem;
  min-height: 220px;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,.2); }

.bento-card--dark { background: var(--navy-mid); border: 1px solid var(--navy-border); color: var(--white); }
.bento-card--light { background: var(--cream-dark); border: 1px solid rgba(0,0,0,.07); color: var(--navy); }

.bento-card--image { padding: 0; min-height: 260px; background: var(--navy-mid); }
.bento-card--image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.bento-card--image:hover img { transform: scale(1.04); }
.bento-card__img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,.9) 0%, transparent 60%);
  padding: 1.5rem;
  display: flex; flex-direction: column; justify-content: flex-end; gap: .5rem;
}
.bento-card__img-tag { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); }
.bento-card__img-desc { font-size: .85rem; color: rgba(255,255,255,.75); line-height: 1.5; }

.bento-card__num { font-size: .68rem; font-weight: 700; letter-spacing: .16em; color: var(--orange); }
.bento-card__icon { color: var(--orange); margin-bottom: .25rem; }
.bento-card__title { font-family: var(--font-serif); font-size: clamp(1.2rem, 2.5vw, 1.55rem); font-weight: 400; line-height: 1.2; }
.bento-card__desc { font-size: .85rem; line-height: 1.6; opacity: .8; }
.bento-card__link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .8rem; font-weight: 600; color: var(--orange);
  margin-top: auto; transition: gap .2s;
}
.bento-card__link--dark { color: var(--navy); }
.bento-card__link:hover { gap: .75rem; }

.expertises__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ════════════════════════════════════════════════════════════
   ANCRAGE LOCAL
════════════════════════════════════════════════════════════ */
.local__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 5rem); align-items: center; }
.local__stats-panel { display: flex; flex-direction: column; gap: 2rem; padding: 2.5rem; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-lg); background: rgba(255,255,255,.04); }
.local__stat-item { display: flex; flex-direction: column; gap: .3rem; }
.local__stat-num { font-family: var(--font-serif); font-size: 2.6rem; font-style: italic; color: var(--orange); line-height: 1; }
.local__stat-label { font-size: .83rem; color: rgba(255,255,255,.6); line-height: 1.5; }
.local__coords { font-size: .75rem; letter-spacing: .08em; color: rgba(255,255,255,.4); border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; line-height: 1.7; }
.local__map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--navy-border); position: relative; }
.local__map-wrap svg { width: 100%; height: auto; display: block; }
.local__map-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(13,27,42,.9); text-align: center;
  font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gray); padding: .6rem; border-top: 1px solid var(--navy-border);
}
.local__intro {
  font-size: 1rem; color: rgba(255,255,255,.7); line-height: 1.7;
  margin-block: 1.5rem 2rem; border-left: 2px solid var(--orange); padding-left: 1.25rem;
}
.local__pillars { display: flex; flex-direction: column; gap: 1.5rem; }
.local__pillar {
  display: flex; flex-direction: column; gap: .55rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid var(--navy-border);
}
.local__pillar:last-child { border-bottom: none; padding-bottom: 0; }
.local__pillar-header { display: flex; align-items: baseline; gap: .65rem; }
.local__pillar h3 { font-family: var(--font-serif); font-size: 1.1rem; color: var(--white); margin-bottom: 0; }
.local__pillar p { font-size: .875rem; color: var(--gray); line-height: 1.65; margin: 0; }
.local__pillar-num { font-family: var(--font-serif); font-style: italic; font-size: 1.1rem; color: var(--orange); flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════
   PROCESS TIMELINE
════════════════════════════════════════════════════════════ */
.process__timeline {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
  position: relative; padding-top: 3rem;
}
.process__connector {
  position: absolute; top: calc(3rem + 27px);
  left: calc(10% + 0px); right: calc(10% + 0px);
  height: 1px;
  background: linear-gradient(to right, var(--orange), rgba(232,101,26,.15));
  pointer-events: none;
}
.process__step { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.25rem; }
.process__num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--cream-dark); border: 2px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-style: italic; font-size: 1.1rem; color: var(--orange);
  flex-shrink: 0; position: relative; z-index: 1;
  transition: background .3s var(--ease), color .3s, transform .3s var(--ease);
}
.process__step:hover .process__num { background: var(--orange); color: var(--white); transform: scale(1.12); }
.process__body h3 { font-family: var(--font-serif); font-size: 1rem; color: var(--navy); margin-bottom: .5rem; }
.process__body p { font-size: .82rem; color: var(--gray); line-height: 1.6; }

/* ════════════════════════════════════════════════════════════
   DIRECTOR
════════════════════════════════════════════════════════════ */
.director { padding: 0 !important; }
.director__split { display: grid; grid-template-columns: 1fr 1fr; min-height: 680px; }
.director__photo-col { position: relative; background: var(--navy-light); overflow: hidden; }
.director__photo-wrap { width: 100%; height: 100%; position: relative; }
.director__photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.director__photo-badge {
  position: absolute; bottom: 2rem; left: 2rem; right: 2rem;
  background: rgba(13,27,42,.88); backdrop-filter: blur(12px);
  border: 1px solid var(--navy-border); border-radius: var(--radius); padding: 1rem 1.25rem;
}
.director__photo-badge-title { display: block; font-family: var(--font-serif); font-size: 1.1rem; color: var(--white); margin-bottom: .2rem; }
.director__photo-badge-sub { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); }
.director__content { padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem); display: flex; flex-direction: column; justify-content: center; gap: 2rem; }

.director__quote {
  position: relative; padding: 1.5rem 1.5rem 1.5rem 2rem;
  border-left: 3px solid var(--orange); background: rgba(232,101,26,.06); border-radius: 0 var(--radius) var(--radius) 0;
}
.director__quote-icon { margin-bottom: 1rem; }
.director__quote p { font-family: var(--font-serif); font-size: clamp(1.05rem, 1.8vw, 1.2rem); line-height: 1.7; color: rgba(255,255,255,.9); }
.director__quote p em { color: var(--orange); }
.director__quote-footer { margin-top: 1.25rem; display: flex; flex-direction: column; gap: .2rem; }
.director__quote-footer strong { font-family: var(--font-serif); font-size: 1rem; color: var(--white); }
.director__quote-footer span { font-size: .75rem; font-weight: 500; color: var(--gray); }

.director__facts { display: flex; flex-direction: column; gap: 1rem; padding: 1.5rem; background: rgba(255,255,255,.04); border: 1px solid var(--navy-border); border-radius: var(--radius); }
.director__fact { display: flex; flex-direction: column; gap: .15rem; }
.director__fact-label { font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); }
.director__fact-value { font-size: .875rem; color: rgba(255,255,255,.8); }

/* ════════════════════════════════════════════════════════════
   TYPOLOGIES
════════════════════════════════════════════════════════════ */
.typo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(0,0,0,.1);
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(0,0,0,.1);
}
.typo-card { padding: clamp(1.5rem, 3vw, 2rem); position: relative; transition: filter .3s; }
.typo-card--navy { background: var(--navy); color: var(--white); }
.typo-card--orange { background: var(--orange); color: var(--white); }
.typo-card--blue { background: var(--blue-acc); color: var(--white); }
.typo-card__header { font-size: .65rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 1rem; }
.typo-card h3 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 400; margin-bottom: .75rem; }
.typo-card p { font-size: .85rem; line-height: 1.6; opacity: .8; }
.typo-card__icon { position: absolute; bottom: 1.5rem; right: 1.5rem; opacity: .2; }

/* ════════════════════════════════════════════════════════════
   ENGAGEMENTS
════════════════════════════════════════════════════════════ */
.engage-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.engage-card {
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  border-right: 1px solid var(--navy-border); border-bottom: 1px solid var(--navy-border);
  transition: background .25s; position: relative;
}
.engage-card:nth-child(3), .engage-card:nth-child(6) { border-right: none; }
.engage-card:nth-child(4), .engage-card:nth-child(5), .engage-card:nth-child(6) { border-bottom: none; }
.engage-card:hover { background: rgba(255,255,255,.03); }
.engage-card__sep { width: 36px; height: 2px; background: var(--orange); margin-bottom: 1.25rem; }
.engage-num { font-family: var(--font-serif); font-style: italic; font-size: 2rem; color: var(--orange); opacity: .25; position: absolute; top: 1.25rem; right: 1.5rem; line-height: 1; }
.engage-card h3 { font-family: var(--font-serif); font-size: 1.1rem; color: var(--white); margin-bottom: .6rem; }
.engage-card p { font-size: .875rem; color: var(--gray); line-height: 1.65; }

/* ════════════════════════════════════════════════════════════
   POURQUOI GEOTECH
════════════════════════════════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
.why-card { padding: clamp(1.5rem, 3vw, 2rem); border: 1px solid var(--cream-dark); border-radius: var(--radius-lg); background: var(--white); transition: box-shadow .3s, transform .3s; }
.why-card:hover { box-shadow: 0 12px 32px rgba(13,27,42,.1); transform: translateY(-4px); }
.why-card--featured { background: var(--navy); border-color: var(--navy); }
.why-card__num { font-family: var(--font-serif); font-style: italic; font-size: 1.6rem; color: var(--orange); margin-bottom: .75rem; }
.why-card h3 { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: .75rem; }
.why-card--featured h3 { color: var(--white); }
.why-card p { font-size: .875rem; color: var(--gray); line-height: 1.65; }
.why-tagline {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.5rem 2rem; border: 1px solid var(--cream-dark);
  border-radius: var(--radius); background: var(--white); flex-wrap: wrap;
}
.why-tagline em { font-family: var(--font-serif); font-size: 1rem; color: var(--navy); }
.why-tagline span { font-size: .65rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); }

/* ════════════════════════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════════════════════════ */
.cta-section { position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 0%, rgba(232,101,26,.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section__inner { text-align: center; max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.cta-section__sub { font-size: 1.05rem; color: rgba(255,255,255,.65); line-height: 1.7; max-width: 560px; margin: 1.5rem auto 2.5rem; }

.cta-contacts {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--navy-border); border: 1px solid var(--navy-border);
  border-radius: var(--radius); overflow: hidden; margin-bottom: 2.5rem;
}
.cta-contact-item {
  display: flex; align-items: center; gap: 1rem; padding: 1.5rem;
  background: var(--navy-mid); text-align: left; transition: background .2s;
  text-decoration: none; color: inherit;
}
.cta-contact-item:hover { background: var(--navy-light); }
.cta-contact-item__icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(232,101,26,.15); display: flex; align-items: center; justify-content: center;
  color: var(--orange); flex-shrink: 0;
}
.cta-contact-item__label { font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); margin-bottom: .25rem; }
.cta-contact-item__value { font-size: .875rem; font-weight: 600; color: var(--white); }
.cta-contact-item__note { font-size: .72rem; color: var(--gray); margin-top: .15rem; }
.cta-section__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ════════════════════════════════════════════════════════════
   RECRUTEMENT TEASER
════════════════════════════════════════════════════════════ */
.recruit-teaser__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }
.recruit-teaser__seo { font-size: .72rem; color: var(--gray-light); opacity: .55; margin-bottom: 1.5rem; line-height: 1.6; }
.recruit-teaser__badges { display: flex; flex-wrap: wrap; gap: .6rem; }
.badge-pill {
  font-size: .78rem; font-weight: 600; color: var(--navy);
  background: var(--cream-dark); border: 1px solid rgba(13,27,42,.1);
  border-radius: 50px; padding: .45rem 1rem;
  transition: background .2s, color .2s, border-color .2s;
}
.badge-pill:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.footer { padding-top: clamp(3rem, 6vw, 5rem) !important; padding-bottom: 0 !important; border-top: 1px solid var(--navy-border); }
.footer__grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: clamp(2rem, 4vw, 3rem); padding-bottom: 3rem; border-bottom: 1px solid var(--navy-border); }
.footer__brand img { margin-bottom: 1.25rem; }
.footer__brand p { font-size: .875rem; color: var(--gray); line-height: 1.65; margin-bottom: .5rem; }
.footer__tagline { font-family: var(--font-serif); font-style: italic; font-size: .95rem; color: var(--orange) !important; }
.footer__coords { font-size: .68rem; font-weight: 600; letter-spacing: .1em; color: var(--gray); margin-top: 1rem; }
.footer__col h4 { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); margin-bottom: 1rem; }
.footer__col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer__col a { font-size: .85rem; color: var(--gray); transition: color .2s; }
.footer__col a:hover { color: var(--white); }
.footer__col p { font-size: .85rem; color: var(--gray); line-height: 1.65; margin-bottom: .5rem; }
.footer__wa { display: inline-flex; align-items: center; gap: .4rem; color: #25d366 !important; font-weight: 600; font-size: .85rem; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-block: 1.5rem; }
.footer__bottom p { font-size: .78rem; color: var(--gray); }
.footer__bottom nav { display: flex; gap: 1.5rem; }
.footer__bottom a { font-size: .78rem; color: var(--gray); transition: color .2s; }
.footer__bottom a:hover { color: var(--white); }

/* ════════════════════════════════════════════════════════════
   WHATSAPP FLOAT
════════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 900;
  display: flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: transform .3s var(--ease), box-shadow .3s;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 12px 36px rgba(37,211,102,.5); }
.whatsapp-float__tooltip {
  position: absolute; right: calc(100% + .75rem);
  background: var(--navy-mid); color: var(--white);
  font-size: .75rem; font-weight: 600; white-space: nowrap;
  padding: .45rem .9rem; border-radius: 8px; border: 1px solid var(--navy-border);
  opacity: 0; pointer-events: none; transform: translateX(8px); transition: opacity .2s, transform .2s;
}
.whatsapp-float:hover .whatsapp-float__tooltip { opacity: 1; transform: translateX(0); }

/* ════════════════════════════════════════════════════════════
   BACK TO TOP
════════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed; bottom: 1.75rem; right: 5.5rem; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy-mid); border: 1px solid var(--navy-border);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity .3s, transform .3s, background .2s;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--orange); border-color: var(--orange); }

/* ════════════════════════════════════════════════════════════
   PAGE INTÉRIEURE — Shared
════════════════════════════════════════════════════════════ */
.page-hero {
  padding-top: calc(72px + 4rem); padding-bottom: 4rem;
  background: var(--navy); color: var(--white);
}
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 400; line-height: 1.1; letter-spacing: -.025em; margin-bottom: 1.25rem; }
.page-hero h1 em { font-style: italic; color: var(--orange); }
.page-hero__sub { font-size: 1.05rem; color: rgba(255,255,255,.65); max-width: 640px; line-height: 1.7; margin-bottom: 2rem; }
.page-hero__breadcrumb { font-size: .75rem; color: var(--gray); margin-bottom: 2rem; display: flex; align-items: center; gap: .5rem; }
.page-hero__breadcrumb a { color: var(--gray); transition: color .2s; }
.page-hero__breadcrumb a:hover { color: var(--orange); }

.content-section { padding-block: clamp(3rem, 5vw, 5rem); }
.content-section h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 400; color: var(--navy); margin-bottom: 1rem; line-height: 1.2; }
.content-section h2 em { font-style: italic; color: var(--orange); }
.content-section h3 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--navy); margin-top: 2rem; margin-bottom: .75rem; }
.section--dark .section-title,
.section--dark h2,
.section--dark h3,
.content-section.section--dark h2,
.content-section.section--dark h3 { color: var(--white); }
.section--dark .section-sub { color: rgba(255,255,255,.65); }
.section--dark p:not([class]) { color: rgba(255,255,255,.7); }
.section--dark .job-card h3 { color: var(--navy); }
.section--dark .job-card p,
.section--dark .job-card li { color: var(--gray); }
.content-section p { font-size: .975rem; color: #4a5568; line-height: 1.75; margin-bottom: 1rem; }
.content-section ul { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; }
.content-section li { font-size: .975rem; color: #4a5568; line-height: 1.7; padding-left: 1.25rem; position: relative; }
.content-section li::before { content: '→'; position: absolute; left: 0; color: var(--orange); font-size: .85rem; }

.faq-section { padding-block: clamp(3rem, 5vw, 4.5rem); background: var(--cream); }
.faq-section h2 { font-family: var(--font-serif); font-size: 2rem; margin-bottom: 2rem; color: var(--navy); }
.faq-item { border-bottom: 1px solid var(--cream-dark); }
.faq-item summary { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 0; cursor: pointer; font-weight: 600; font-size: .975rem; color: var(--navy); list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--orange); transition: transform .3s; flex-shrink: 0; margin-left: 1rem; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-size: .9rem; color: var(--gray); line-height: 1.7; padding-bottom: 1.25rem; }
.section--dark .faq-item { border-bottom-color: var(--navy-border); }
.section--dark .faq-item summary { color: var(--white); }
.section--dark .faq-item p { color: rgba(255,255,255,.65); }

/* ─── Jobs Grid ────────────────────────────────────────── */
.jobs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.job-card { padding: 1.75rem; border: 1px solid var(--cream-dark); border-radius: var(--radius-lg); background: var(--white); transition: box-shadow .3s, transform .3s, border-color .3s; }
.job-card:hover { box-shadow: 0 12px 32px rgba(13,27,42,.1); transform: translateY(-4px); border-color: var(--orange); }
.job-card__tag { font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); margin-bottom: 1rem; }
.job-card h3 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--navy); margin-bottom: .75rem; }
.job-card p { font-size: .85rem; color: var(--gray); line-height: 1.6; }

/* ─── Gallery (legacy items) ────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 4/3; background: var(--navy-mid); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,27,42,.85) 0%, transparent 55%); opacity: 0; transition: opacity .3s; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.25rem; }
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__tag { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-bottom: .4rem; }
.gallery-item__title { font-family: var(--font-serif); font-size: 1rem; color: var(--white); }

/* ─── Gallery Cards (réalisations) ─────────────────────── */
.realisations-section { padding-block: clamp(3rem, 5vw, 5rem); }
.filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.5rem; }
.filter-btn {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .55rem 1.25rem; border-radius: 50px;
  border: 1px solid var(--cream-dark); background: var(--white); color: var(--navy);
  cursor: pointer; transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
}
.filter-btn:hover, .filter-btn--active {
  background: var(--navy); color: var(--white); border-color: var(--navy);
  box-shadow: 0 4px 12px rgba(13,27,42,.15);
}
.gallery-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--white); border: 1px solid var(--cream-dark);
  box-shadow: 0 2px 10px rgba(13,27,42,.06);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex; flex-direction: column;
}
.gallery-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(13,27,42,.13); }
.gallery-card.hidden { display: none; }
.gallery-card__img { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--navy-mid); }
.gallery-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.gallery-card:hover .gallery-card__img img { transform: scale(1.07); }
.gallery-card__img--navy { background: var(--navy-mid); }
.gallery-card__img--orange { background: var(--orange); }
.gallery-card__img-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--white); }
.gallery-card__overlay {
  position: absolute; bottom: 0; left: 0; right: 0; padding: .75rem 1rem;
  background: linear-gradient(to top, rgba(13,27,42,.75) 0%, transparent 100%);
}
.gallery-card__tag { font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--cream); }
.gallery-card__body { padding: 1.4rem 1.5rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.gallery-card__body h3 { font-family: var(--font-serif); font-size: 1.1rem; color: var(--navy); margin-bottom: .6rem; line-height: 1.3; }
.gallery-card__body p { font-size: .85rem; color: var(--gray); line-height: 1.65; flex: 1; }
.gallery-card__meta { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .3rem; margin-top: 1rem; padding-top: .9rem; border-top: 1px solid var(--cream-dark); }
.gallery-card__meta span { font-size: .7rem; font-weight: 600; color: var(--gray); letter-spacing: .04em; }

/* ─── Blog Cards ────────────────────────────────────────── */
.blog-section { padding-block: clamp(3rem, 5vw, 5rem); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.75rem; }
.blog-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--white); border: 1px solid var(--cream-dark);
  box-shadow: 0 2px 10px rgba(13,27,42,.06);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(13,27,42,.13); }
.blog-card__img { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--navy-mid); }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.blog-card:hover .blog-card__img img { transform: scale(1.07); }
.blog-card__img--navy { background: var(--navy-mid); }
.blog-card__img--orange { background: var(--orange); }
.blog-card__img-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--white); }
.blog-card__img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; padding: .65rem 1rem;
  background: linear-gradient(to top, rgba(13,27,42,.72) 0%, transparent 100%);
}
.blog-card__tag { font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--cream); }
.blog-card__body { padding: 1.4rem 1.5rem 1.7rem; flex: 1; display: flex; flex-direction: column; }
.blog-card__meta { display: flex; align-items: center; gap: .75rem; margin-bottom: .85rem; }
.blog-card__meta time { font-size: .72rem; color: var(--gray); }
.blog-card__cat { font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); background: var(--orange-soft); padding: .25rem .6rem; border-radius: 50px; }
.blog-card__title { font-family: var(--font-serif); font-size: 1.1rem; color: var(--navy); margin-bottom: .75rem; line-height: 1.3; flex: 1; }
.blog-card__excerpt { font-size: .85rem; color: var(--gray); line-height: 1.65; margin-bottom: 1.1rem; }
.blog-card__link { display: inline-flex; align-items: center; gap: .4rem; font-size: .82rem; font-weight: 700; color: var(--orange); transition: gap .2s; text-decoration: none; }
.blog-card__link:hover { gap: .75rem; }

/* ─── Newsletter ────────────────────────────────────────── */
.newsletter-section { padding-block: clamp(3rem, 5vw, 5rem); }
.newsletter__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.newsletter__content p { font-size: .95rem; color: rgba(255,255,255,.65); line-height: 1.7; margin-top: 1rem; }
.newsletter__form-row { display: flex; gap: .6rem; flex-wrap: wrap; }
.newsletter__form-row input[type="email"] {
  flex: 1; min-width: 220px; padding: .9rem 1.2rem;
  border: 1px solid var(--navy-border); border-radius: var(--radius);
  background: var(--navy-mid); color: var(--white); font-size: .95rem;
  transition: border-color .2s; outline: none;
}
.newsletter__form-row input[type="email"]::placeholder { color: var(--gray); }
.newsletter__form-row input[type="email"]:focus { border-color: var(--orange); }
.newsletter__notice { font-size: .72rem; color: var(--gray); margin-top: .75rem; }

/* ─── CTA Final ─────────────────────────────────────────── */
.cta-final { padding-block: clamp(4rem, 7vw, 6rem); }
.cta-final__inner { text-align: center; max-width: 760px; margin: 0 auto; }
.cta-final__inner p { font-size: .975rem; line-height: 1.7; margin-top: 1rem; margin-bottom: 2rem; }
.cta-final__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ─── Page hero extras ──────────────────────────────────── */
.section-title--xl { font-size: clamp(2.6rem, 5.5vw, 4.2rem) !important; }
.page-hero__intro { font-size: 1.05rem; color: rgba(255,255,255,.7); max-width: 680px; line-height: 1.75; margin-top: 1.25rem; }
.page-hero__stats { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 2.5rem; }
.page-hero__stat { display: flex; flex-direction: column; gap: .25rem; }
.page-hero__stat-num { font-family: var(--font-serif); font-size: 2.2rem; font-style: italic; color: var(--orange); line-height: 1; }
.page-hero__stat-label { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); }

/* ─── Form styles (recrutement) ─────────────────────────── */
.contact-form-section, .recrutement-form-section { padding-block: clamp(3rem, 5vw, 5rem); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem 1.75rem; }
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-field.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); }
.form-field input, .form-field select, .form-field textarea {
  padding: .85rem 1.1rem; border: 1.5px solid var(--cream-dark); border-radius: var(--radius);
  background: var(--white); color: var(--navy); font-size: .95rem; font-family: var(--font-sans);
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,101,26,.1);
}
.form-field textarea { resize: vertical; min-height: 120px; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid > article:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .bento-grid > article:nth-child(2) { grid-column: span 1; }
  .bento-grid > article:nth-child(3) { grid-column: span 2; }
  .bento-grid > article:nth-child(4) { grid-column: span 1; }
  .bento-grid > article:nth-child(5) { grid-column: span 1; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--navy-border); }
  .stat:nth-child(odd) { border-right: 1px solid var(--navy-border); }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
  .process__timeline { grid-template-columns: repeat(3, 1fr); }
  .process__connector { display: none; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .cta-contacts { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .navbar__nav { display: none; }
  .navbar__tel { display: none; }
  .navbar__burger { display: flex; }
  .local__grid { grid-template-columns: 1fr; }
  .director__split { grid-template-columns: 1fr; }
  .director__photo-col { min-height: 420px; }
  .typo-grid { grid-template-columns: repeat(2, 1fr); }
  .engage-grid { grid-template-columns: repeat(2, 1fr); }
  .engage-card:nth-child(3) { border-right: 1px solid var(--navy-border); }
  .engage-card:nth-child(2), .engage-card:nth-child(4) { border-right: none; }
  .why-grid { grid-template-columns: 1fr; }
  .recruit-teaser__inner { grid-template-columns: 1fr; }
  .newsletter__inner { grid-template-columns: 1fr; gap: 2rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.form-field--full { grid-column: auto; }
}

@media (max-width: 640px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-grid > article { grid-column: span 1 !important; grid-row: span 1 !important; }
  .process__timeline { grid-template-columns: 1fr; gap: 2rem; }
  .typo-grid { grid-template-columns: 1fr; }
  .engage-grid { grid-template-columns: 1fr; }
  .engage-card { border-right: none !important; }
  .engage-card:not(:last-child) { border-bottom: 1px solid var(--navy-border) !important; }
  .hero__title { font-size: 2.6rem; }
  .hero__actions, .cta-section__actions, .cta-final__actions { flex-direction: column; }
  .hero__actions .btn, .cta-section__actions .btn, .cta-final__actions .btn { width: 100%; justify-content: center; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__bottom nav { flex-wrap: wrap; justify-content: center; }
  .why-tagline { flex-direction: column; text-align: center; }
  .gallery-grid, .blog-grid { grid-template-columns: 1fr; }
  .page-hero__stats { gap: 1.25rem; }
  .filters { gap: .4rem; }
  .filter-btn { font-size: .68rem; padding: .45rem 1rem; }
  .newsletter__form-row { flex-direction: column; }
  .newsletter__form-row input[type="email"] { min-width: 0; width: 100%; }
}

@media print {
  .navbar, .whatsapp-float, .back-to-top, .ticker { display: none; }
  body { background: white; color: black; }
}
