/* =============================================================
   Laboratorios Indermo New Design System v2
   ============================================================= */

/* -- 1. DESIGN TOKENS ---------------------------------------- */
:root {
  --ink:        #0F2136;
  --ink-soft:   #1E3A52;
  --gold:       #B8882A;
  --gold-light: #F5EDD8;
  --bg:         #F8F7F4;
  --surface:    #FFFFFF;
  --text:       #1A2B3C;
  --muted:      #64748B;
  --border:     rgba(15,33,54,.10);
  --border-med: rgba(15,33,54,.18);
  --shadow-sm:  0 1px 4px rgba(15,33,54,.06);
  --shadow-md:  0 6px 20px rgba(15,33,54,.10);
  --shadow-lg:  0 20px 48px rgba(15,33,54,.14);
  --font-sans:  'DM Sans', 'Segoe UI', Arial, sans-serif;
  --r:          8px;
  --r-lg:       16px;
  --r-xl:       24px;
  --container:  1160px;
  --header-h:   68px;
  --section-v:  6rem;
}

/* -- 2. RESET + BASE ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }

/* -- 3. TYPOGRAPHY ------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); font-weight: 700; letter-spacing: -0.015em; }
h3 { font-size: 1.1rem; font-weight: 600; letter-spacing: -0.01em; }

.label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .75rem;
}

.lead {
  font-size: 1.075rem;
  line-height: 1.75;
  color: var(--muted);
}

.muted { color: var(--muted); }

/* -- 4. LAYOUT ----------------------------------------------- */
.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section          { padding-block: var(--section-v); }
.section--sm      { padding-block: calc(var(--section-v) * .55); }
.section--lg      { padding-block: calc(var(--section-v) * 1.35); }

.section--dark {
  background: var(--ink);
  color: var(--surface);
}
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--surface); }
.section--dark .muted { color: rgba(255,255,255,.60); }
.section--dark .label { color: var(--gold); }

.section--warm { background: var(--gold-light); }

/* Section header */
.section-header {
  margin-bottom: 3.5rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p  { color: var(--muted); max-width: 560px; line-height: 1.7; }
.section-header--center {
  text-align: center;
  max-width: 660px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}
.section-header--center p { margin-inline: auto; }

/* -- 5. SKIP LINK -------------------------------------------- */
.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 1000;
  padding: .75rem 1.25rem;
  background: var(--ink); color: var(--surface);
  border-radius: var(--r);
  font-size: .875rem; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* -- 6. HEADER ----------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 200;
  height: var(--header-h);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex; align-items: center; height: 100%; gap: 2rem;
}

.brand {
  display: flex; align-items: center; flex-shrink: 0;
}
.brand__mark { height: 36px; flex-shrink: 0; }
.brand__mark img { height: 36px; width: auto; display: block; }

.site-nav {
  display: flex; align-items: center; gap: 2rem; margin-left: auto;
}
.site-nav__list {
  display: flex; align-items: center; gap: .2rem;
  list-style: none;
}
.site-nav__link {
  display: block; padding: .5rem .85rem;
  font-size: .875rem; font-weight: 500; color: var(--text);
  border-radius: var(--r);
  transition: color .15s, background .15s;
}
.site-nav__link:hover     { color: var(--gold); background: var(--gold-light); }
.site-nav__link.is-active { color: var(--gold); font-weight: 600; }

.lang-switcher {
  display: flex; align-items: center; gap: .25rem;
  padding-left: 1.5rem; border-left: 1px solid var(--border);
}
.lang-switcher__divider { color: var(--border-med); font-size: .85rem; }
.lang-switcher__link {
  font-size: .8rem; font-weight: 500; padding: .3rem .5rem;
  color: var(--muted); border-radius: 4px; transition: color .15s;
}
.lang-switcher__link:hover,
.lang-switcher__link.is-active { color: var(--ink); font-weight: 700; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; padding: .5rem;
  background: none; border: none; cursor: pointer; margin-left: auto;
}
.nav-toggle__bar {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* -- 7. BUTTONS ---------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: var(--r);
  font-size: .9rem; font-weight: 600; cursor: pointer;
  border: none; text-decoration: none;
  transition: background .15s, color .15s, box-shadow .15s, transform .1s;
  white-space: nowrap;
}
.btn:active { transform: scale(.98); }

.btn--primary {
  background: var(--ink); color: var(--surface);
}
.btn--primary:hover { background: var(--ink-soft); box-shadow: var(--shadow-md); }

.btn--gold {
  background: var(--gold); color: var(--surface);
}
.btn--gold:hover { background: #9e7322; box-shadow: var(--shadow-md); }

.btn--outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--border-med);
}
.btn--outline:hover { background: var(--ink); color: var(--surface); }

.btn--ghost {
  background: rgba(255,255,255,.12); color: var(--surface);
  border: 1.5px solid rgba(255,255,255,.3);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255,255,255,.22); }

.btn-group {
  display: flex; flex-wrap: wrap; gap: .75rem; align-items: center;
}

/* -- 8. HOME HERO -------------------------------------------- */
.hero {
  position: relative;
  height: calc(100vh - var(--header-h));
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,33,54,.95) 0%, rgba(15,33,54,.85) 40%, rgba(30,58,82,.80) 100%
  );
}
.hero__content { position: relative; z-index: 1; max-width: 740px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .75rem;
}
.hero__eyebrow::before {
  content: '';
  display: inline-block; width: 28px; height: 1.5px; background: var(--gold);
}
.hero h1 {
  color: var(--surface);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  margin-bottom: 1rem;
}
.hero__lead {
  color: rgba(255,255,255,.80); font-size: 1.05rem; line-height: 1.75;
  max-width: 560px; margin-bottom: 1.5rem;
}
.hero__badges {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem;
}
.hero__badge {
  padding: .35rem 1rem;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px; font-size: .78rem; color: rgba(255,255,255,.85);
  backdrop-filter: blur(4px);
}

/* -- 9. PAGE HERO (inner pages) ------------------------------ */
.page-hero {
  background: var(--ink);
  padding-block: 4.5rem 4rem;
  border-bottom: 3px solid var(--gold);
}
.page-hero__inner { max-width: 680px; }
.page-hero h1 { color: var(--surface); margin-bottom: 1rem; }
.page-hero .lead { color: rgba(255,255,255,.72); max-width: 560px; }

/* -- 10. STATS STRIP ----------------------------------------- */
.stats-strip {
  background: var(--ink); padding-block: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem;
}
.stat {
  text-align: center; padding: 1.25rem 1rem;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat:last-child { border-right: none; }
.stat__value {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; letter-spacing: -0.02em;
  color: var(--surface); line-height: 1; margin-bottom: .4rem;
}
.stat__label {
  display: block; font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--gold);
}
.stat__text {
  display: block; font-size: .8rem; color: rgba(255,255,255,.50);
  margin-top: .3rem; line-height: 1.5;
}

/* -- 11. STORY GRID ------------------------------------------ */
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4.5rem; align-items: center;
}
.story-grid--flip .story-grid__media { order: 2; }
.story-grid__media { position: relative; }
.story-grid__img {
  width: 100%; height: 500px; object-fit: cover;
  border-radius: var(--r-xl); display: block;
}
.story-grid__deco {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 110px; height: 110px;
  background: var(--gold); border-radius: var(--r-xl);
  z-index: -1; opacity: .3;
}
.story-grid__text { display: flex; flex-direction: column; gap: 1.25rem; }
.story-grid__text h2 { margin-bottom: 0; }
.story-grid__text .btn-group { margin-top: .75rem; }

/* Check list */
.check-list {
  list-style: none;
  display: flex; flex-direction: column; gap: .65rem;
}
.check-list li {
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: .9rem;
}
.check-list li::before {
  content: '';
  flex-shrink: 0; width: 18px; height: 18px; margin-top: .1em;
  background: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M2 6l3 3 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 10px;
  border-radius: 50%;
}

/* -- 12. FEATURE / AREA CARDS -------------------------------- */
.area-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.area-card {
  padding: 2.5rem 2rem;
  border-radius: var(--r-lg);
  transition: box-shadow .2s, transform .2s;
}
/* Light variant */
.area-card--light {
  background: var(--surface); border: 1px solid var(--border);
}
.area-card--light:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
/* Dark variant */
.area-card--dark {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10);
}
.area-card--dark:hover { background: rgba(255,255,255,.10); }
.area-card--dark h3 { color: var(--surface); }
.area-card--dark p  { color: rgba(255,255,255,.60); }

.area-card__tag {
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: .75rem; display: block;
}
.area-card h3 { margin-bottom: .75rem; }
.area-card p  { font-size: .9rem; line-height: 1.65; color: var(--muted); }

/* -- 13. BRAND CARDS ----------------------------------------- */
.brand-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.brand-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: .75rem;
  transition: box-shadow .2s, transform .2s;
  text-align: center;
}
.brand-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.brand-card__tag {
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
}
.brand-card__logo {
  height: 68px; display: flex; align-items: center; justify-content: center;
}
.brand-card__logo img {
  max-height: 100%; max-width: 100%; width: auto; object-fit: contain;
}
.brand-card h3 { font-size: 1.05rem; color: var(--ink); text-align: center; }
.brand-card p  { font-size: .875rem; color: var(--muted); line-height: 1.6; flex: 1; text-align: center; }
.brand-card__link {
  margin-top: .25rem; font-size: .8rem; font-weight: 600; color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center; gap: .35rem;
  transition: gap .15s;
}
.brand-card__link:hover { gap: .55rem; }

/* Logo strip (compact, home page) */
.logo-strip {
  display: grid; grid-template-columns: repeat(6,1fr); gap: 1rem; align-items: center;
}
.logo-strip__item {
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem 1rem;
  border-radius: var(--r); border: 1px solid var(--border); background: var(--surface);
  transition: box-shadow .2s, transform .2s;
}
.logo-strip__item:hover { box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.logo-strip__item img {
  max-height: 48px; max-width: 100%; width: auto; object-fit: contain;
  filter: grayscale(55%); opacity: .85; transition: filter .2s, opacity .2s;
}
.logo-strip__item:hover img { filter: none; opacity: 1; }

/* -- 14. TIMELINE -------------------------------------------- */
.timeline-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2rem; position: relative; padding-top: 1.5rem;
}
.timeline-grid::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(184,136,42,.15));
}
.timeline-item { position: relative; }
.timeline-item::before {
  content: '';
  position: absolute; top: -1.625rem; left: 0;
  width: 9px; height: 9px; background: var(--gold);
  border-radius: 50%; border: 2px solid var(--surface);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-item .label { margin-bottom: .5rem; }
.timeline-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.timeline-item p  { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* -- 15. PROCESS STEPS --------------------------------------- */
.process-rail {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 1.5rem; position: relative;
}
.process-rail::before {
  content: '';
  position: absolute; top: 2rem; left: 2rem; right: 2rem; height: 1px;
  background: var(--border-med); z-index: 0;
}
.process-rail__item { position: relative; z-index: 1; text-align: center; }
.process-rail__num {
  width: 4rem; height: 4rem;
  background: var(--ink); color: var(--surface);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans); font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em;
  margin: 0 auto 1.25rem; position: relative; z-index: 1;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--gold);
}
.process-rail__item h3 { font-size: .95rem; margin-bottom: .4rem; }
.process-rail__item p  { font-size: .82rem; color: var(--muted); line-height: 1.55; }

/* -- 16. PHOTO GALLERY --------------------------------------- */
.photo-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem;
}
.photo-tile {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3; border-radius: var(--r-lg);
}
.photo-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s ease;
}
.photo-tile:hover img { transform: scale(1.05); }
.photo-tile__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1rem .875rem;
  background: linear-gradient(to top, rgba(8,18,30,.85), transparent);
  color: var(--surface);
}
.photo-tile__caption strong { display: block; font-size: .875rem; font-weight: 600; }
.photo-tile__caption span   { font-size: .78rem; opacity: .75; }

/* -- 17. CAROUSEL -------------------------------------------- */
.carousel { position: relative; }
.carousel__controls {
  display: flex; gap: .5rem; justify-content: flex-end; margin-bottom: 1rem;
}
.carousel__button {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--border-med); background: var(--surface);
  cursor: pointer; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, border-color .15s, color .15s;
}
.carousel__button:hover { background: var(--ink); border-color: var(--ink); color: var(--surface); }
.carousel__viewport {
  position: relative; overflow: hidden; border-radius: var(--r-xl); aspect-ratio: 16/7;
}
.carousel__slide { position: absolute; inset: 0; display: none; }
.carousel__slide.is-active { display: grid; grid-template-columns: 1fr 1fr; }
.carousel__image { overflow: hidden; }
.carousel__image img { width: 100%; height: 100%; object-fit: cover; }
.carousel__image--contain img { object-fit: contain; background: #f0f0eb; }
.carousel__meta {
  background: var(--ink); padding: 3rem 2.5rem;
  display: flex; flex-direction: column; justify-content: center; gap: .875rem;
}
.carousel__meta .label { color: var(--gold); }
.carousel__meta h3 { color: var(--surface); font-size: 1.25rem; }
.carousel__meta p  { color: rgba(255,255,255,.68); font-size: .9rem; }

/* -- 18. CTA BAND -------------------------------------------- */
.cta-band {
  background: var(--ink); border-radius: var(--r-xl);
  padding: 4rem 3.5rem;
  display: flex; align-items: center; gap: 3rem; flex-wrap: wrap;
}
.cta-band__text { flex: 1; min-width: 260px; }
.cta-band__text h2   { color: var(--surface); margin-bottom: .875rem; }
.cta-band__text p    { color: rgba(255,255,255,.68); max-width: 480px; line-height: 1.7; }
.cta-band .btn-group { flex-shrink: 0; }

.cta-centered { text-align: center; max-width: 640px; margin-inline: auto; }
.cta-centered h2 { margin-bottom: 1rem; }
.cta-centered p  { color: var(--muted); margin-bottom: 2rem; max-width: 520px; margin-inline: auto; }
.cta-centered .btn-group { justify-content: center; }

/* -- 19. CONTACT SPLIT LAYOUT -------------------------------- */
.contact-split {
  display: grid; grid-template-columns: 360px 1fr;
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg);
}
.contact-info-panel {
  background: var(--ink); padding: 3.5rem 2.75rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.contact-info-panel h2      { color: var(--surface); font-size: 1.8rem; margin-bottom: 0; }
.contact-info-panel > .lead { color: rgba(255,255,255,.65); font-size: .9rem; }

.contact-item {
  display: flex; align-items: flex-start; gap: 1rem; padding-top: .5rem;
}
.contact-item__icon {
  flex-shrink: 0; width: 40px; height: 40px;
  background: rgba(255,255,255,.08); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.contact-item__icon svg { width: 18px; height: 18px; }
.contact-item__body strong {
  display: block; font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: .25rem;
}
.contact-item__body span,
.contact-item__body a {
  font-size: .9rem; color: rgba(255,255,255,.82);
  line-height: 1.55; display: block;
}
.contact-item__body a:hover { color: var(--gold); }

.contact-form-panel {
  background: var(--surface); padding: 3.5rem 3rem;
}
.contact-form-panel h2 { margin-bottom: .5rem; }
.contact-form-panel > .lead { margin-bottom: 1.5rem; }

/* -- 20. FORM ------------------------------------------------ */
.form-grid { display: flex; flex-direction: column; gap: 1.25rem; }
.form-grid--split { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.field { display: flex; flex-direction: column; gap: .35rem; }
.field label {
  font-size: .8rem; font-weight: 600; color: var(--text);
}
.field input,
.field textarea,
.field select {
  padding: .75rem 1rem;
  border: 1.5px solid var(--border-med); border-radius: var(--r);
  background: var(--bg); color: var(--text); font-size: .9rem;
  transition: border-color .15s, box-shadow .15s; outline: none;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--gold); background: var(--surface);
  box-shadow: 0 0 0 3px rgba(184,136,42,.15);
}
.field textarea { resize: vertical; min-height: 130px; }

.field.is-invalid input,
.field.is-invalid textarea { border-color: #d64242; box-shadow: 0 0 0 3px rgba(214,66,66,.10); }
.field__error { font-size: .78rem; color: #d64242; min-height: 1.2em; }

.form-status { display: none; padding: .875rem 1.25rem; border-radius: var(--r); font-size: .875rem; font-weight: 500; margin-bottom: 1rem; }
.form-status.is-visible { display: block; }
.form-status.is-success { background: #edfbef; color: #166534; border: 1px solid #86efac; }
.form-status.is-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }

.form-honeypot { display: none !important; visibility: hidden; }

/* -- 21. PILLS ----------------------------------------------- */
.pill {
  display: inline-block; padding: .3rem .9rem;
  background: var(--gold-light); border-radius: 100px;
  font-size: .78rem; font-weight: 600; color: var(--ink);
  border: 1px solid rgba(184,136,42,.20);
}
.pill-list { display: flex; flex-wrap: wrap; gap: .5rem; }

/* -- 22. FOOTER ---------------------------------------------- */
.site-footer {
  background: #08101A;
  color: rgba(255,255,255,.65);
  padding-top: 4rem;
}
.site-footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.site-footer__brand img {
  height: 32px; width: auto; opacity: .80; margin-bottom: 1.1rem;
}
.site-footer__brand p {
  font-size: .875rem; line-height: 1.75; max-width: 320px; margin-bottom: 1rem;
}
.footer-facts { display: flex; flex-wrap: wrap; gap: .5rem; }
.footer-fact {
  padding: .28rem .8rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10);
  border-radius: 100px; font-size: .72rem; color: rgba(255,255,255,.55);
}

.footer-nav { display: flex; flex-direction: column; gap: .65rem; }
.footer-nav strong {
  font-size: .7rem; font-weight: 700; letter-spacing: .11em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .25rem;
  display: block;
}
.footer-nav a { font-size: .875rem; color: rgba(255,255,255,.60); transition: color .15s; }
.footer-nav a:hover { color: var(--surface); }

.footer-address { display: flex; flex-direction: column; gap: .5rem; }
.footer-address strong {
  font-size: .7rem; font-weight: 700; letter-spacing: .11em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .25rem; display: block;
}
.footer-address span { font-size: .875rem; line-height: 1.65; color: rgba(255,255,255,.60); }
.footer-address a {
  font-size: .875rem; color: rgba(255,255,255,.60); transition: color .15s;
  display: inline-block; margin-top: .5rem;
}
.footer-address a:hover { color: var(--gold); }

.site-footer__meta {
  padding-block: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.site-footer__meta span { font-size: .78rem; color: rgba(255,255,255,.30); }

.footer-legal-links {
  display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center;
}
.footer-legal-links a {
  font-size: .75rem; color: rgba(255,255,255,.30);
  transition: color .15s;
}
.footer-legal-links a:hover { color: rgba(255,255,255,.65); }

/* -- 23. UTILITIES ------------------------------------------- */
.text-center { text-align: center; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 1rem; }
.mt-lg { margin-top: 3.5rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* -- 24. PROSE (legal pages) --------------------------------- */
.prose {
  max-width: 740px;
  font-size: 1rem; line-height: 1.8; color: var(--text);
}
.prose h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  margin-top: 2.5rem; margin-bottom: .75rem;
  padding-bottom: .5rem; border-bottom: 1px solid var(--border);
  color: var(--ink);
}
.prose h3 {
  font-size: 1rem; font-weight: 700; margin-top: 1.5rem; margin-bottom: .4rem;
  color: var(--ink);
}
.prose p  { margin-bottom: 1rem; }
.prose ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose li { margin-bottom: .35rem; }
.prose a  { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: #9e7322; }
.prose strong { color: var(--ink); }
.prose address { font-style: normal; }

.prose-updated {
  font-size: .8rem; color: var(--muted);
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem; border-bottom: 1px solid var(--border);
}

/* -- 24. RESPONSIVE ------------------------------------------ */
@media (max-width: 1024px) {
  :root { --section-v: 5rem; }
  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .story-grid--flip .story-grid__media { order: 0; }
  .story-grid__img { height: 380px; }
  .timeline-grid { grid-template-columns: 1fr 1fr; }
  .process-rail { grid-template-columns: repeat(3,1fr); }
  .process-rail::before { display: none; }
  .logo-strip { grid-template-columns: repeat(3,1fr); }
  .stats-grid { grid-template-columns: repeat(4,1fr); }
  .contact-split { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  :root { --section-v: 4rem; --header-h: 60px; }

  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    flex-direction: column; align-items: flex-start;
    padding: 1.5rem; gap: 1rem;
    transform: translateY(-110%); opacity: 0;
    transition: transform .25s ease, opacity .2s ease;
    box-shadow: var(--shadow-lg); z-index: 199;
  }
  .site-nav.is-open { transform: translateY(0); opacity: 1; }
  .site-nav__list { flex-direction: column; width: 100%; gap: .25rem; }
  .site-nav__link { padding: .75rem 1rem; font-size: 1rem; width: 100%; }
  .lang-switcher { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 1rem; width: 100%; }

  .area-grid  { grid-template-columns: 1fr 1fr; }
  .brand-grid { grid-template-columns: 1fr 1fr; }
  .hero { max-height: 660px; }
  .hero h1 { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: none; }
  .timeline-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .timeline-grid::before { display: none; }
  .timeline-item::before { display: none; }
  .cta-band { flex-direction: column; padding: 2.5rem 2rem; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form-panel { padding: 2.5rem 1.75rem; }
  .contact-info-panel { padding: 2.5rem 1.75rem; }
  .form-grid--split { grid-template-columns: 1fr; }
  .carousel__slide.is-active { grid-template-columns: 1fr; }
  .carousel__viewport { aspect-ratio: unset; }
  .carousel__image { aspect-ratio: 4/3; position: relative; }
  .carousel__meta { padding: 1.75rem 1.5rem; }
}

@media (max-width: 540px) {
  :root { --section-v: 3rem; }
  .area-grid, .brand-grid, .photo-grid { grid-template-columns: 1fr; }
  .logo-strip { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .stat:last-child { border-bottom: none; }
  .process-rail { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 2rem 1.5rem; }
  .hero { min-height: 480px; }
}


/*.hero__bg img { display: none; }*/
