/* Azuro Retail — Editorial High-Tech (distinct from Consulting & Fintech) */
:root {
  --ink: #12100e;
  --ink-soft: #2a2622;
  --ink-muted: #5c5650;
  --paper: #faf8f5;
  --paper-warm: #f3efe8;
  --paper-line: #ebe6dd;
  --sand: #c9b896;
  --sand-pale: rgba(201, 184, 150, 0.18);
  --sand-deep: #a8926e;
  --azure: #6b8e9f;
  --azure-pale: rgba(107, 142, 159, 0.14);
  --azure-deep: #4d6f7f;
  --white: #ffffff;
  --border: rgba(18, 16, 14, 0.08);
  --border-fine: rgba(18, 16, 14, 0.05);
  --on-dark: #faf8f5;
  --on-dark-muted: #b8b0a6;
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --container: min(1180px, calc(100% - 2.5rem));
  --container-wide: min(1320px, calc(100% - 2.5rem));
  --header-h: 5.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

[id] { scroll-margin-top: calc(var(--header-h) + 1.25rem); }

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

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.72;
  color: var(--ink-soft);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--sand-pale); color: var(--ink); }

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

.container { width: var(--container); margin-inline: auto; }
.container--wide { width: var(--container-wide); margin-inline: auto; }

.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 9999;
  padding: 0.75rem 1.25rem; background: var(--ink); color: var(--paper);
}
.skip-link:focus { top: 1rem; outline: 2px solid var(--sand); outline-offset: 2px; }

/* Typography */
.kicker {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--azure);
}

.section-label {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.section-num {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  font-weight: 400;
  color: var(--sand-deep);
  line-height: 1;
}

.section-name {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.display-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.06;
  color: var(--ink);
}
.display-heading em { font-style: italic; color: var(--azure-deep); }
.display-heading--light { color: var(--on-dark); }
.display-heading--light em { color: var(--sand); }

.lede {
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  line-height: 1.75;
  color: var(--ink-muted);
  max-width: 38rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 var(--border-fine);
}

.site-header__rail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: var(--container-wide);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo__img { width: auto; height: 2rem; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-desktop a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-muted);
  transition: color 0.25s;
  position: relative;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 1px;
  background: var(--sand);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav-desktop a:hover,
.nav-desktop a.is-active { color: var(--ink); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.lang-switch { display: flex; align-items: center; gap: 0.35rem; }
.lang-switch--toolbar { display: flex; }
.lang-switch--nav { display: none; }
.lang-switch__link {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  padding: 0.25rem;
  transition: color 0.25s;
}
.lang-switch__link.is-active { color: var(--ink); }
.lang-switch__link:hover { color: var(--azure-deep); }
.lang-switch__sep { color: var(--border); font-size: 0.625rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.nav-mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(18, 16, 14, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.nav-mobile-panel.is-open { opacity: 1; visibility: visible; }

.nav-mobile {
  position: absolute;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.35s var(--ease), opacity 0.35s;
}
.nav-mobile-panel.is-open .nav-mobile {
  transform: translateY(0);
  opacity: 1;
}
.nav-mobile a {
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-fine);
  color: var(--ink-soft);
}

body.is-nav-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 1rem 1.75rem;
  border: 1px solid transparent;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.25s;
}
.btn:active { transform: scale(0.98); }
.btn--sand {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn--sand:hover { background: var(--ink-soft); }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn--outline:hover { border-color: var(--ink); background: var(--white); }
.btn--light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.btn--light:hover { background: var(--paper-warm); }
.btn--sm { padding: 0.75rem 1.25rem; font-size: 0.75rem; }
.btn--full { width: 100%; }
.btn__arrow { transition: transform 0.3s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.45;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.55;
  pointer-events: none;
}
.hero__canvas canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero__rule {
  position: absolute;
  z-index: 2;
  background: var(--border);
}
.hero__rule--v {
  top: 12%;
  bottom: 18%;
  left: clamp(2rem, 8vw, 6rem);
  width: 1px;
}

.hero__layout {
  position: relative;
  z-index: 3;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: var(--container-wide);
  margin-inline: auto;
  padding: clamp(3rem, 8vh, 6rem) 1.25rem clamp(4rem, 10vh, 7rem);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 6.5vw, 5rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.hero__title em { font-style: italic; color: var(--azure-deep); }
.hero__title-accent {
  display: block;
  font-weight: 300;
  color: var(--sand-deep);
}

.hero__lead {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.8;
  color: var(--ink-muted);
  max-width: 32rem;
  margin-bottom: 2.25rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero__visual {
  position: relative;
  justify-self: end;
  max-width: 34rem;
}
.hero__visual img {
  border-radius: 2px;
  box-shadow: 0 32px 80px rgba(18, 16, 14, 0.08);
}
.hero__caption {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.hero__strip {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
}
.hero__strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  padding: 1rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* Proof / Bento */
.proof {
  padding: clamp(5rem, 12vh, 8rem) 0;
  background: var(--white);
  border-top: 1px solid var(--border-fine);
  border-bottom: 1px solid var(--border-fine);
}

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

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.bento__card {
  background: var(--paper);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 11rem;
  transition: background 0.35s;
}
.bento__card:hover { background: var(--white); }

.bento__card--hero {
  grid-column: span 5;
  grid-row: span 2;
  min-height: 18rem;
  background: var(--ink);
  color: var(--on-dark);
}
.bento__card--hero:hover { background: var(--ink-soft); }
.bento__card--hero .bento__value { color: var(--sand); }
.bento__card--hero .bento__label { color: var(--on-dark-muted); }

.bento__card--wide { grid-column: span 4; }
.bento__card--tall { grid-column: span 3; grid-row: span 2; min-height: 14rem; }
.bento__card--std { grid-column: span 3; }

.bento__value {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.bento__value span {
  font-size: 0.55em;
  color: var(--azure);
}

.bento__label {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  margin-top: 0.75rem;
  max-width: 16rem;
}

.bento__spark {
  margin-top: 1.25rem;
  height: 3px;
  background: var(--paper-line);
  border-radius: 2px;
  overflow: hidden;
}
.bento__spark-fill {
  display: block;
  height: 100%;
  width: var(--pct, 50%);
  background: linear-gradient(90deg, var(--sand), var(--azure));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s var(--ease-out);
}
.bento__card.is-visible .bento__spark-fill { transform: scaleX(1); }

.bento__tag {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--azure);
  margin-top: auto;
  padding-top: 1rem;
}

/* Expertise */
.expertise {
  padding: clamp(5rem, 12vh, 8rem) 0;
}

.expertise__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.pillar {
  background: var(--paper);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  transition: background 0.35s;
}
.pillar:hover { background: var(--white); }

.pillar__index {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  color: var(--sand-deep);
  margin-bottom: 1.5rem;
}

.pillar h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.pillar p {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}

.pillar__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.pillar__list li {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.375rem 0.625rem;
  border: 1px solid var(--border);
  color: var(--ink-muted);
}

.expertise__note {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.expertise__note dt {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--azure);
  margin-bottom: 0.5rem;
}
.expertise__note dd {
  font-size: 0.875rem;
  color: var(--ink-muted);
}

/* Governance */
.governance {
  padding: clamp(5rem, 12vh, 8rem) 0;
  background: var(--ink);
  color: var(--on-dark);
}

.governance__frame {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.governance__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--sand);
  border-left: 1px solid var(--sand-deep);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

.governance__text {
  color: var(--on-dark-muted);
  margin-bottom: 1.5rem;
}
.governance__text strong { color: var(--on-dark); font-weight: 500; }

.link-refined {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--sand);
  border-bottom: 1px solid var(--sand-deep);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.link-refined:hover { color: var(--paper); border-color: var(--paper); }

.governance__tree {
  border: 1px solid rgba(250, 248, 245, 0.1);
  counter-reset: tree;
}
.governance__tree li {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid rgba(250, 248, 245, 0.08);
  display: grid;
  gap: 0.25rem;
}
.governance__tree li:last-child { border-bottom: none; }
.governance__tree-label {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--azure);
}
.governance__tree strong {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--on-dark);
}
.governance__tree span:last-child {
  font-size: 0.8125rem;
  color: var(--on-dark-muted);
}

/* Contact */
.contact {
  padding: clamp(5rem, 12vh, 8rem) 0;
  background: var(--paper-warm);
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.contact__note {
  color: var(--ink-muted);
  margin: 1.25rem 0 2rem;
  max-width: 28rem;
}

.contact__address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9375rem;
}
.contact__address a {
  color: var(--ink);
  border-bottom: 1px solid var(--sand);
  align-self: flex-start;
  transition: color 0.25s;
}
.contact__address a:hover { color: var(--azure-deep); }

.contact__shell {
  background: var(--white);
  border: 1px solid var(--border);
  padding: clamp(1.75rem, 4vw, 2.75rem);
}

.contact__form-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.contact__form-sub {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-field { margin-bottom: 1.25rem; }
.form-field label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--azure);
  box-shadow: 0 0 0 3px var(--azure-pale);
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235c5650' stroke-width='1.25'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--ink-muted); }
.form-status {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--azure-deep);
  min-height: 1.25rem;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--on-dark-muted);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.site-footer__legal {
  font-size: 0.8125rem;
  line-height: 1.75;
  margin-top: 1.25rem;
  color: var(--on-dark-muted);
}

.site-footer__col h3 {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1rem;
}
.site-footer__col li { margin-bottom: 0.5rem; }
.site-footer__col a {
  font-size: 0.875rem;
  transition: color 0.25s;
}
.site-footer__col a:hover { color: var(--on-dark); }

.site-footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 248, 245, 0.08);
  font-size: 0.75rem;
}

/* Reveals */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.parallax-wrap { overflow: hidden; }
.parallax-inner {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Inner pages */
.page-inner .site-header { background: rgba(250, 248, 245, 0.95); border-bottom: 1px solid var(--border); }
.page-legal main { padding: calc(var(--header-h) + 3rem) 0 4rem; }
.page-legal h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--ink);
  margin-bottom: 2rem;
}
.page-legal h2 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--ink);
  margin: 2rem 0 0.75rem;
}
.page-legal p, .page-legal li {
  color: var(--ink-muted);
  margin-bottom: 1rem;
  max-width: 42rem;
}
.page-legal ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 1rem; }

/* Responsive */
@media (max-width: 1024px) {
  .hero__layout { grid-template-columns: 1fr; }
  .hero__visual { justify-self: start; max-width: 28rem; }
  .expertise__header { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .governance__frame { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .bento__card--hero { grid-column: span 12; grid-row: span 1; min-height: 14rem; }
  .bento__card--wide,
  .bento__card--tall,
  .bento__card--std { grid-column: span 6; }
  .expertise__note { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 769px) {
  .lang-switch--toolbar { display: none; }
  .nav-desktop .lang-switch--nav { display: flex; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .lang-switch--toolbar { display: flex; }
  .nav-mobile .lang-switch--nav { display: flex; margin-bottom: 0.5rem; }
  .bento__card--wide,
  .bento__card--tall,
  .bento__card--std { grid-column: span 12; }
  .form-row { grid-template-columns: 1fr; }
  .expertise__note { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .hero__rule--v { display: none; }
}
