/* ============================================================
   Fonts
============================================================ */
@font-face {
  font-family: "Neue Montreal";
  src: url("../fonts/NeueMontreal-Light.otf") format("opentype");
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Neue Montreal";
  src: url("../fonts/NeueMontreal-LightItalic.otf") format("opentype");
  font-weight: 300; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Neue Montreal";
  src: url("../fonts/NeueMontreal-Regular.otf") format("opentype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Neue Montreal";
  src: url("../fonts/NeueMontreal-Italic.otf") format("opentype");
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Neue Montreal";
  src: url("../fonts/NeueMontreal-Medium.otf") format("opentype");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Neue Montreal";
  src: url("../fonts/NeueMontreal-MediumItalic.otf") format("opentype");
  font-weight: 500; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Neue Montreal";
  src: url("../fonts/NeueMontreal-Bold.otf") format("opentype");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Neue Montreal";
  src: url("../fonts/NeueMontreal-BoldItalic.otf") format("opentype");
  font-weight: 700; font-style: italic; font-display: swap;
}

/* ============================================================
   Sartori & Franciscon — Design Tokens
============================================================ */
:root {
  --navy-950: #0d1b26;
  --navy-900: #14293d;
  --navy-800: #1c384f;
  --navy-700: #294a63;
  --steel-400: #9fb3c4;
  --steel-200: #d3dee6;
  --cream-50: #f7f5f1;
  --white: #ffffff;
  --ink: #16232c;
  --ink-muted: #55677a;
  --gold-500: #b8935a;
  --gold-600: #a17c46;

  --font-sans: "Neue Montreal", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 140px;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 200ms;
  --dur-base: 500ms;
  --dur-slow: 800ms;

  --header-h: 84px;
  --max-w: 1180px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --cream-50: #101c26;
    --white: #16232f;
    --ink: #eef1f4;
    --ink-muted: #a9b8c4;
    --steel-200: #2a3d4d;
  }
}

/* ============================================================
   Reset
============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-sans); font-weight: 700; margin: 0; line-height: 1.15; }
p { margin: 0; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--space-3); }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--navy-900); color: var(--white);
  padding: var(--space-2) var(--space-3); z-index: 1000; border-radius: var(--radius-sm);
}
.skip-link:focus { left: var(--space-2); top: var(--space-2); }

:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 3px; }

/* ============================================================
   Header
============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), height var(--dur-base) var(--ease-out);
}
.site-header.is-scrolled {
  background: rgba(20, 41, 61, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(13, 27, 38, 0.18);
  height: 72px;
}
.header-inner { display: flex; align-items: center; width: 100%; gap: var(--space-3); }

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo { height: 46px; width: auto; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; white-space: nowrap; }
.brand-name { font-family: var(--font-sans); font-weight: 500; font-size: 1.05rem; color: var(--white); white-space: nowrap; }
.brand-sub { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--steel-400); white-space: nowrap; }

.main-nav { display: flex; align-items: center; justify-content: center; flex: 1; min-width: 0; }
.main-nav ul { display: flex; gap: var(--space-3); flex-wrap: nowrap; }
.main-nav ul li a { white-space: nowrap; }
.main-nav .btn-nav-mobile { display: none; }
.main-nav a:not(.btn) {
  font-size: 0.92rem; font-weight: 500; color: var(--white);
  position: relative; padding: 4px 0;
}
.main-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--gold-500); transition: width var(--dur-fast) var(--ease-out);
}
.main-nav a:not(.btn):hover::after { width: 100%; }

.btn-nav { padding: 10px 22px; font-size: 0.88rem; }
.btn-nav-desktop { flex-shrink: 0; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; background: none; border: none; z-index: 110;
  margin-left: auto;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--white); border-radius: 2px;
  transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Buttons
============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.95rem;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--gold-500); color: var(--navy-950); }
.btn-primary:hover { background: var(--gold-600); box-shadow: 0 10px 24px rgba(184, 147, 90, 0.32); }
.btn-ghost { background: transparent; color: var(--navy-900); border-color: var(--navy-800); }
.btn-ghost:hover { background: var(--navy-900); color: var(--white); }
.hero .btn-ghost { color: var(--white); border-color: rgba(255,255,255,0.4); }
.hero .btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-block { width: 100%; }

/* ============================================================
   Hero
============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex; align-items: center;
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 52%, var(--navy-800) 100%);
  overflow: hidden;
  padding-top: var(--header-h);
  padding-bottom: var(--space-6);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-shape {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(184,147,90,0.35), transparent 70%);
  filter: blur(10px);
  animation: floatShape 16s ease-in-out infinite;
}
.hero-shape-1 { width: 520px; height: 520px; top: -160px; right: -120px; }
.hero-shape-2 {
  width: 380px; height: 380px; bottom: -140px; left: -100px;
  background: radial-gradient(circle at 30% 30%, rgba(159,179,196,0.28), transparent 70%);
  animation-duration: 20s; animation-delay: -6s;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}

@media (min-width: 980px) {
  .hero {
    background-image:
      linear-gradient(to bottom, rgba(13,27,38,0.65) 0%, rgba(13,27,38,0.65) var(--header-h), rgba(13,27,38,0) calc(var(--header-h) + 70px)),
      linear-gradient(90deg, rgba(13,27,38,0.6) 0%, rgba(13,27,38,0.4) 32%, rgba(13,27,38,0) 60%),
      url("../img/hero/hero-bg.jpg");
    background-size: 100% 100%, cover, cover;
    background-position: top left, center center, center center;
    background-repeat: no-repeat, no-repeat, no-repeat;
  }
  .hero-shape, .hero-grid, .mosaic-hero { display: none; }
}
@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.06); }
}

/* Decorative mosaic pattern — reusable on dark sections */
.mosaic {
  position: absolute;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Crect x='10' y='14' width='26' height='26' fill='%23B8935A' fill-opacity='0.28'/%3E%3Crect x='46' y='8' width='14' height='14' fill='%239FB3C4' fill-opacity='0.18'/%3E%3Crect x='80' y='30' width='34' height='34' fill='%23294A63' fill-opacity='0.4'/%3E%3Crect x='120' y='12' width='18' height='18' fill='%23F7F5F1' fill-opacity='0.1'/%3E%3Crect x='20' y='70' width='20' height='20' fill='%23294A63' fill-opacity='0.3'/%3E%3Crect x='60' y='90' width='40' height='40' fill='%23B8935A' fill-opacity='0.16'/%3E%3Crect x='110' y='75' width='16' height='16' fill='%239FB3C4' fill-opacity='0.22'/%3E%3Crect x='6' y='120' width='30' height='30' fill='%23F7F5F1' fill-opacity='0.08'/%3E%3Crect x='95' y='128' width='22' height='22' fill='%23294A63' fill-opacity='0.35'/%3E%3Crect x='140' y='100' width='14' height='14' fill='%23B8935A' fill-opacity='0.2'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 160px 160px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 72%);
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 72%);
}
.mosaic-hero { top: -10%; right: -10%; width: 65%; height: 120%; }
.mosaic-digital { bottom: -20%; left: -8%; width: 50%; height: 140%; opacity: 0.7; }
.mosaic-footer {
  top: 0; right: 0; width: 340px; height: 100%;
  -webkit-mask-image: linear-gradient(to left, black 0%, transparent 80%);
  mask-image: linear-gradient(to left, black 0%, transparent 80%);
}

/* Floating hero message card */
.hero-message {
  position: absolute; z-index: 2; right: 6%; bottom: 14%;
  display: flex; align-items: center; gap: var(--space-2);
  background: rgba(16, 28, 38, 0.55);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  padding: var(--space-2) var(--space-3);
  max-width: 260px;
  box-shadow: 0 20px 48px rgba(0,0,0,0.28);
  animation: floatCard 7s ease-in-out infinite;
}
.hero-message-avatar {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-500); color: var(--navy-950);
  font-family: var(--font-sans); font-weight: 700; font-size: 0.95rem;
}
.hero-message-text { font-size: 0.86rem; line-height: 1.4; }
.hero-message-text strong { color: var(--white); display: block; font-size: 0.9rem; }
.hero-message-text span { color: var(--steel-200); }
.hero-message-link { display: block; margin-top: 2px; color: var(--gold-500); font-weight: 600; font-size: 0.8rem; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0; }
.eyebrow {
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-500); font-weight: 600; margin-bottom: var(--space-2);
}
.eyebrow-light { color: var(--steel-400); }
.eyebrow.center { text-align: center; }

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--white); margin-bottom: var(--space-3);
  letter-spacing: normal;
}
.hero-lead {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--steel-200); max-width: 560px;
  margin-bottom: var(--space-5); line-height: 1.6;
}
.hero-actions { display: flex; gap: var(--space-2); flex-wrap: wrap; }

.scroll-cue {
  position: absolute; bottom: var(--space-4); left: 50%; transform: translateX(-50%);
  width: 28px; height: 46px; border: 2px solid rgba(255,255,255,0.35); border-radius: 20px;
  z-index: 1;
}
.scroll-cue span {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; border-radius: 3px; background: var(--gold-500);
  animation: scrollCue 1.8s ease-in-out infinite;
}
@keyframes scrollCue {
  0% { opacity: 1; top: 8px; }
  70% { opacity: 0; top: 22px; }
  100% { opacity: 0; top: 22px; }
}

/* ============================================================
   Sections
============================================================ */
.section { padding: var(--space-8) 0; }
.section-alt { background: var(--white); }
.section-dark {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-950) 100%);
  color: var(--white);
}
.section-dark .container { position: relative; z-index: 1; }

.section-title { font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--navy-900); margin-bottom: var(--space-3); }
.section-title-light { color: var(--white); }
.section-title.center, .eyebrow.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-title.center { max-width: 640px; margin-bottom: var(--space-6); }

.body-text { font-size: 1.02rem; line-height: 1.75; color: var(--ink-muted); margin-bottom: var(--space-2); max-width: 52ch; }
.body-text-light { color: var(--steel-200); }

.section-grid { display: grid; gap: var(--space-6); }
.section-grid--about { grid-template-columns: 0.85fr 1.15fr; align-items: center; }
.about-photo {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 24px 56px rgba(13,27,38,0.16);
  aspect-ratio: 4 / 5;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.section-grid--digital { grid-template-columns: 1fr 1fr; align-items: center; }
.section-grid--contact { grid-template-columns: 1fr 1fr; align-items: start; }

/* Highlight strip — overlaps hero/Sobre boundary */
.highlight-strip {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4);
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--space-3);
  margin-top: calc(-1 * var(--space-2));
}
.highlight-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: var(--space-4); box-shadow: 0 24px 48px rgba(13,27,38,0.16);
  border: 1px solid var(--steel-200);
  display: flex; flex-direction: column; gap: var(--space-3);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.highlight-card:hover { transform: translateY(-4px); box-shadow: 0 28px 56px rgba(13,27,38,0.2); }
.highlight-card .card-icon { margin-bottom: 0; }
.highlight-card h3 { font-size: 1.05rem; color: var(--navy-900); }
.highlight-card p { font-size: 0.9rem; color: var(--ink-muted); line-height: 1.55; }

.card-icon {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: var(--cream-50); color: var(--navy-800); flex-shrink: 0;
}
.card-icon svg { width: 26px; height: 26px; }

/* Áreas de Atuação — editorial list */
.areas-list { max-width: 900px; margin: 0 auto; }
.areas-row {
  display: grid; grid-template-columns: minmax(160px, 240px) 1fr auto;
  align-items: center; gap: var(--space-4);
  padding: var(--space-4) 0; border-bottom: 1px solid var(--steel-200);
  transition: background var(--dur-base) var(--ease-out);
}
.areas-row:first-child { border-top: 1px solid var(--steel-200); }
.areas-row h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); color: var(--navy-900); padding-left: 14px; }
.areas-row p { color: var(--ink-muted); font-size: 0.95rem; line-height: 1.6; }
.areas-row p strong { color: var(--navy-900); }
.areas-arrow {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--steel-200);
  display: flex; align-items: center; justify-content: center; color: var(--navy-800);
  flex-shrink: 0;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.areas-arrow svg { width: 18px; height: 18px; }
.areas-row:hover { background: var(--cream-50); }
.areas-row:hover .areas-arrow { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); transform: rotate(45deg); }
.areas-row--highlight h3 { color: var(--gold-600); }
.areas-row--highlight .areas-arrow { background: var(--gold-500); color: var(--navy-950); border-color: var(--gold-500); }
.areas-row--highlight:hover .areas-arrow { background: var(--gold-600); border-color: var(--gold-600); transform: rotate(45deg); }

/* Feature list (digital section) */
.feature-list { display: flex; flex-direction: column; gap: var(--space-4); }
.feature-list li { display: flex; gap: var(--space-3); align-items: flex-start; }
.feature-num { font-family: var(--font-sans); font-weight: 700; font-size: 1.1rem; color: var(--gold-500); flex-shrink: 0; width: 34px; }
.feature-list h3 { font-size: 1.05rem; color: var(--white); margin-bottom: 4px; }
.feature-list p { color: var(--steel-200); font-size: 0.92rem; line-height: 1.6; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-4); max-width: 760px; margin: 0 auto; }
.team-card { text-align: center; overflow: hidden; background: var(--white); border: 1px solid var(--steel-200); border-radius: var(--radius-lg); transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(13,27,38,0.1); }
.team-photo { aspect-ratio: 4 / 5; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.team-card-body { padding: var(--space-4) var(--space-3) var(--space-5); }
.team-card h3 { font-size: 1.2rem; }
.team-name-primary, .team-name-accent { color: var(--navy-900); font-style: normal; }
.team-role { color: var(--gold-600); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin: 4px 0 var(--space-2); }
.team-bio { color: var(--ink-muted); font-size: 0.94rem; line-height: 1.6; }

/* Contact */
.contact-list { margin: var(--space-4) 0; display: flex; flex-direction: column; gap: var(--space-3); }
.contact-list li { display: flex; gap: var(--space-2); align-items: flex-start; font-size: 0.96rem; color: var(--ink); }
.contact-list a:hover { color: var(--gold-600); }
.contact-icon { width: 22px; height: 22px; color: var(--gold-600); flex-shrink: 0; margin-top: 2px; }
.contact-icon svg { width: 100%; height: 100%; }

.contact-form { background: var(--white); border: 1px solid var(--steel-200); border-radius: var(--radius-lg); padding: var(--space-4); }
.form-row { margin-bottom: var(--space-3); display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 0.85rem; font-weight: 600; color: var(--navy-900); }
.form-row input, .form-row select, .form-row textarea {
  padding: 12px 14px; border: 1px solid var(--steel-200); border-radius: var(--radius-sm);
  background: var(--cream-50); color: var(--ink);
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(184,147,90,0.18); outline: none;
}
.form-note { margin-top: var(--space-2); font-size: 0.88rem; color: var(--gold-600); min-height: 1.2em; }

/* ============================================================
   Footer
============================================================ */
.site-footer { position: relative; overflow: hidden; background: var(--navy-950); color: var(--steel-200); padding: var(--space-6) 0 var(--space-4); }
.footer-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: var(--space-4); text-align: center; }
.brand-footer .brand-name { color: var(--white); }
.footer-nav { display: flex; gap: var(--space-3); flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-size: 0.9rem; opacity: 0.85; transition: opacity var(--dur-fast) var(--ease-out); }
.footer-nav a:hover { opacity: 1; color: var(--gold-500); }
.footer-copy { font-size: 0.82rem; opacity: 0.6; }

/* ============================================================
   Scroll reveal
============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue span { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ============================================================
   Responsive
============================================================ */
@media (max-width: 980px) {
  .section-grid--about, .section-grid--digital, .section-grid--contact { grid-template-columns: 1fr; }
  .hero-message { max-width: 220px; right: 4%; }
}

@media (max-width: 760px) {
  :root { --space-8: 88px; --header-h: 72px; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: 72px 0 0 0; height: calc(100dvh - 72px);
    background: var(--navy-950); flex-direction: column; align-items: flex-start;
    padding: var(--space-5) var(--space-3); gap: var(--space-4);
    transform: translateX(100%); transition: transform var(--dur-base) var(--ease-out);
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: var(--space-3); width: 100%; }
  .main-nav a:not(.btn) { color: var(--white); font-size: 1.1rem; }
  .btn-nav { width: 100%; }
  .btn-nav-desktop { display: none; }
  .main-nav .btn-nav-mobile { display: inline-flex; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-title { hyphens: auto; }

  .hero-message { display: none; }
  .mosaic-hero, .mosaic-digital { opacity: 0.5; }

  .highlight-strip {
    grid-template-columns: 1fr; gap: var(--space-3);
    margin-top: var(--space-3); padding: 0 var(--space-2);
  }

  .areas-row {
    grid-template-columns: 1fr auto;
    grid-template-areas: "name arrow" "desc desc";
    row-gap: var(--space-1);
  }
  .areas-row h3 { grid-area: name; }
  .areas-row p { grid-area: desc; }
  .areas-arrow { grid-area: arrow; }
}

@media (max-width: 420px) {
  .container { padding: 0 var(--space-2); }
}
