/* ============================================================
   CWINOVA GmbH — Corporate Website
   Design system derived from the CWINOVA CI/CD Manual.
   Navy + Ivory as the stage · Gold as a sparing accent ·
   Cormorant Garamond (serif authority) + Montserrat (clarity).
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette (CI/CD Manual) */
  --navy:      #0B1A2E;   /* Midnight Navy — trust, depth, executive presence */
  --navy-700:  #102742;   /* navy tint for layering */
  --navy-600:  #16314f;
  --graphite:  #31353A;   /* text contrast, seriousness */
  --steel:     #355074;   /* technology, structure */
  --gold:      #C7A15A;   /* excellence, value — used sparingly */
  --gold-soft: #d8bd86;
  --ivory:     #F6F4EF;   /* whitespace, calm, elegance */
  --ivory-dim: #efece4;
  --teal:      #0FAAA6;   /* secondary innovation accent only */
  --white:     #ffffff;

  --ink:        #1b2433;  /* default body text on light */
  --ink-soft:   #4a5364;
  --on-navy:    #eef1f6;
  --on-navy-dim:#9fb0c6;

  --line:       rgba(11,26,46,0.12);
  --line-gold:  rgba(199,161,90,0.55);
  --line-on-navy: rgba(255,255,255,0.14);

  /* Type */
  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans:  "Montserrat", "Helvetica Neue", Arial, sans-serif;

  /* Spacing / rhythm */
  --container: 1240px;
  --container-narrow: 920px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(72px, 11vw, 156px);

  --radius: 3px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow-soft: 0 24px 60px -28px rgba(11,26,46,0.32);
  --shadow-card: 0 18px 50px -30px rgba(11,26,46,0.45);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

::selection { background: var(--gold); color: var(--navy); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-weight: 500; line-height: 1.08; color: var(--navy); }
.serif { font-family: var(--serif); }

h1, .h1 {
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5.8vw, 4.6rem);
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1.06;
}
h2, .h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.7vw, 3.1rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.005em;
}
h3, .h3 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 500;
}
p { text-wrap: pretty; }
.lead {
  font-size: clamp(1.12rem, 1.7vw, 1.4rem);
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 300;
}

/* H3 spec from manual: Sans Bold, gold, uppercase, tracked */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.85em;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.no-rule::before { display: none; }
.eyebrow.center { justify-content: center; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(56px, 8vw, 110px); }
.bg-navy { background: var(--navy); color: var(--on-navy); }
.bg-ivory { background: var(--ivory); }
.bg-white { background: var(--white); }
.bg-graphite { background: var(--graphite); color: var(--on-navy); }
.center { text-align: center; }
.gold-rule { width: 56px; height: 2px; background: var(--gold); border: 0; margin: 0; }
.gold-rule.center { margin-inline: auto; }

.measure { max-width: 60ch; }
.measure-sm { max-width: 46ch; }

/* ---------- Buttons ---------- */
.btn {
  --bg: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1.05em 1.9em;
  border: 1px solid var(--gold);
  color: var(--navy);
  background: var(--bg);
  border-radius: var(--radius);
  transition: background .45s var(--ease), color .45s var(--ease), border-color .45s var(--ease), transform .45s var(--ease);
  position: relative;
  cursor: pointer;
}
.btn .arr { transition: transform .45s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn:hover { background: var(--gold); color: var(--navy); }
.btn--solid { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--solid:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.btn--ghost-light { color: var(--white); border-color: var(--line-gold); }
.btn--ghost-light:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line-gold);
  transition: gap .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.textlink:hover { gap: 0.9em; color: var(--gold); border-color: var(--gold); }
.textlink.on-navy { color: var(--on-navy); }
.textlink.on-navy:hover { color: var(--gold); }

/* Inline content links (within paragraphs) */
.ilink {
  color: var(--navy);
  font-weight: 500;
  border-bottom: 1px solid var(--line-gold);
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.ilink:hover { color: var(--gold); border-color: var(--gold); }
.bg-navy .ilink { color: #fff; border-bottom-color: var(--gold); }
.bg-navy .ilink:hover { color: var(--gold); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 var(--gutter);
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
/* transparent over dark hero */
.site-header.is-top.over-dark { background: transparent; }
.site-header.is-scrolled {
  background: rgba(246,244,239,0.9);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -24px rgba(11,26,46,0.4);
}
.site-header.is-scrolled .site-header__inner { height: 72px; }

/* Brand lockup */
.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.brand__mark {
  width: 46px; height: 46px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 6px 18px -10px rgba(11,26,46,0.6);
}
.over-dark .brand__mark { box-shadow: 0 0 0 1px var(--line-gold), 0 6px 18px -10px rgba(0,0,0,0.6); }
.hide-sm { display: inline-flex; }
@media (max-width: 1240px) { .hide-sm { display: none !important; } }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--navy);
  padding-left: 0.22em;
}
.brand__sub {
  font-family: var(--sans);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 5px;
}
/* dark header variants (over navy hero) */
.over-dark .brand__name { color: var(--white); }
.over-dark .nav__link { color: var(--on-navy); }
.over-dark .nav__link:hover { color: var(--gold); }
.over-dark .lang-toggle { color: var(--on-navy); border-color: var(--line-on-navy); }
.over-dark .lang-toggle .lang.active { color: var(--navy); background: var(--gold); }
.over-dark .burger span { background: var(--white); }

/* Nav */
.nav { display: flex; align-items: center; gap: clamp(18px, 2vw, 34px); }
.nav__link {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--graphite);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  transition: color .35s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav__link:hover { color: var(--navy); }
.over-dark .nav__link:hover { color: var(--white); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--navy); }
.over-dark .nav__link.is-active { color: var(--white); }

.header-right { display: flex; align-items: center; gap: 22px; }

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  font-family: var(--sans);
}
.lang-toggle .lang {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--ink-soft);
  transition: background .35s var(--ease), color .35s var(--ease);
  line-height: 1;
}
.lang-toggle .lang.active { background: var(--navy); color: var(--white); }
.over-dark .lang-toggle .lang { color: var(--on-navy-dim); }

/* Burger */
.burger { display: none; width: 34px; height: 26px; position: relative; }
.burger span {
  position: absolute; left: 0; height: 1.5px; width: 100%;
  background: var(--navy);
  transition: transform .4s var(--ease), opacity .3s var(--ease), top .4s var(--ease);
}
.burger span:nth-child(1) { top: 4px; }
.burger span:nth-child(2) { top: 12px; }
.burger span:nth-child(3) { top: 20px; }
.burger.open span:nth-child(1) { top: 12px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 12px; transform: rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--navy);
  color: var(--on-navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  transform: translateX(100%);
  transition: transform .55s var(--ease);
  visibility: hidden;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; }
.mobile-menu__nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu__link {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 7vw, 2.5rem);
  color: var(--white);
  padding: 8px 0;
  border-bottom: 1px solid var(--line-on-navy);
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.mobile-menu__link .num {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.mobile-menu__foot { margin-top: 40px; display: flex; flex-direction: column; gap: 14px; }
.mobile-menu__foot a { color: var(--on-navy-dim); font-size: 0.9rem; }

body.menu-open { overflow: hidden; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--navy);
  color: var(--on-navy);
  overflow: hidden;
  isolation: isolate;
}
/* architectural "light axes" — refined CSS treatment per CI/CD imagery cues */
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 90% at 78% 8%, rgba(53,80,116,0.55) 0%, rgba(11,26,46,0) 55%),
    radial-gradient(90% 70% at 12% 100%, rgba(16,49,79,0.7) 0%, rgba(11,26,46,0) 60%),
    linear-gradient(160deg, #0d2138 0%, #0B1A2E 48%, #081424 100%);
}
.hero__beams {
  position: absolute; inset: 0; z-index: -1;
  background-image: repeating-linear-gradient(
    103deg,
    rgba(255,255,255,0.05) 0px,
    rgba(255,255,255,0.05) 1px,
    transparent 1px,
    transparent 92px
  );
  mask-image: linear-gradient(105deg, transparent 0%, #000 30%, #000 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(105deg, transparent 0%, #000 30%, #000 78%, transparent 100%);
  opacity: .7;
}
.hero__glow {
  position: absolute; z-index: -1;
  top: -10%; right: -6%;
  width: 46vw; height: 46vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(circle, rgba(199,161,90,0.16) 0%, rgba(199,161,90,0) 68%);
  pointer-events: none;
}
.hero__inner { padding-top: 120px; padding-bottom: 80px; width: 100%; }
.hero__inner--logo { text-align: center; display: flex; flex-direction: column; align-items: center; padding-top: clamp(110px, 16vh, 150px); padding-bottom: clamp(56px, 9vh, 90px); }
.hero__logo { width: min(720px, 84%); height: auto; margin-bottom: clamp(30px, 5vw, 56px); filter: drop-shadow(0 18px 40px rgba(0,0,0,0.35)); }
.hero__inner--logo h1 { margin-inline: auto; font-size: clamp(1.9rem, 3.6vw, 3.1rem); max-width: 20ch; }
.hero__inner--logo .hero__lead { margin-inline: auto; margin-top: 22px; }
.hero__inner--logo .hero__cta { justify-content: center; }
.hero h1 { color: var(--white); max-width: 16ch; }
.hero h1 .gold { color: var(--gold); font-style: italic; }
.hero__lead { color: var(--on-navy); max-width: 56ch; margin-top: 28px; }
.hero__cta { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 16px 22px; align-items: center; }
.hero__meta {
  margin-top: 64px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
  align-items: center;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-navy-dim);
}
.hero__meta span { display: inline-flex; align-items: center; gap: 12px; }
.hero__meta span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.hero__scroll {
  position: absolute; left: var(--gutter); bottom: 30px;
  font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--on-navy-dim);
  display: flex; align-items: center; gap: 12px;
}
.hero__scroll .line { width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); display: inline-block; }

/* ============================================================
   GENERIC SECTION PARTS
   ============================================================ */
.section-head { max-width: 760px; }
.section-head.center { margin-inline: auto; }
.section-head .eyebrow { margin-bottom: 22px; }
.section-head h2 { margin-bottom: 0; }
.section-head .lead { margin-top: 24px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.split.align-start { align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 36px); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 3vw, 48px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2vw, 30px); }

/* Statement / pull quote */
.statement {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.3vw, 2.7rem);
  line-height: 1.28;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.004em;
}
.bg-navy .statement, .bg-graphite .statement { color: var(--white); }
.statement .gold { color: var(--gold); font-style: italic; }

/* Icon (line) */
.line-icon { width: 40px; height: 40px; stroke: var(--gold); fill: none; stroke-width: 1.4; }
.line-icon.navy { stroke: var(--navy); }
.bg-navy .line-icon { stroke: var(--gold); }

/* Focus / capability card */
.fcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 2px solid transparent;
  padding: clamp(26px, 3vw, 40px);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.fcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-top-color: var(--gold); }
.fcard__icon { margin-bottom: 24px; }
.fcard h3 { margin-bottom: 12px; font-size: 1.4rem; }
.fcard p { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.6; }
.fcard__index { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 18px; }

/* Numbered approach steps */
.step { border-top: 1px solid var(--line); padding-top: 28px; }
.bg-navy .step { border-top-color: var(--line-on-navy); }
.step__num {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 18px;
  display: block;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: 0.96rem; }
.bg-navy .step p { color: var(--on-navy-dim); }
.bg-navy .step h3 { color: var(--white); }

/* Mandate list rows */
.mandate-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: clamp(18px, 3vw, 48px);
  align-items: start;
  padding: clamp(30px, 4vw, 48px) 0;
  border-top: 1px solid var(--line);
  transition: background .4s var(--ease);
}
.mandate-row:last-child { border-bottom: 1px solid var(--line); }
.mandate-row__num { font-family: var(--serif); font-size: 1.6rem; color: var(--gold); }
.mandate-row h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-bottom: 14px; }
.mandate-row p { color: var(--ink-soft); max-width: 62ch; }
.mandate-row__tags { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px; }

/* Tag / chip */
.chip {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  border: 1px solid var(--line);
  padding: 6px 13px;
  border-radius: 999px;
  white-space: nowrap;
}
.bg-navy .chip { color: var(--on-navy); border-color: var(--line-on-navy); }

/* Expertise grid pills */
.exp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.exp-cell {
  background: var(--ivory);
  padding: 26px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background .4s var(--ease), color .4s var(--ease);
}
.exp-cell:hover { background: var(--navy); color: var(--white); }
.exp-cell:hover .exp-cell__no { color: var(--gold); }
.exp-cell__no { font-family: var(--serif); font-size: 1.1rem; color: var(--gold); flex-shrink: 0; }
.exp-cell__name { font-size: 0.96rem; font-weight: 500; letter-spacing: 0.01em; }

/* Case cards */
.case {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.case__top { background: var(--navy); color: var(--on-navy); padding: 30px clamp(26px,3vw,38px) 26px; position: relative; }
.case__sector { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.case__top h3 { color: var(--white); margin-top: 14px; font-size: 1.5rem; }
.case__body { padding: clamp(26px,3vw,38px); display: flex; flex-direction: column; gap: 22px; flex: 1; }
.case__block .label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--steel); margin-bottom: 7px; }
.case__block p { color: var(--ink-soft); font-size: 0.96rem; line-height: 1.6; }
.case__result { border-top: 1px solid var(--line); padding-top: 20px; margin-top: auto; }
.case__result .figure { font-family: var(--serif); font-size: 2rem; color: var(--navy); line-height: 1; }
.case__result .figure .gold { color: var(--gold); }

/* Figures / metrics row */
.figures { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px,3vw,40px); }
.figure-block { border-left: 1px solid var(--line-on-navy); padding-left: 22px; }
.figure-block .num { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.4rem); color: var(--white); line-height: 1; }
.figure-block .num .gold { color: var(--gold); }
.figure-block .cap { margin-top: 12px; font-size: 0.82rem; letter-spacing: 0.08em; color: var(--on-navy-dim); line-height: 1.5; }

/* Portrait media */
.portrait { position: relative; }
.portrait img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.portrait__badge {
  position: absolute; left: -1px; bottom: 28px;
  background: var(--navy); color: var(--white);
  padding: 16px 22px;
  border-left: 2px solid var(--gold);
}
.portrait__badge .n { font-family: var(--serif); font-size: 1.2rem; }
.portrait__badge .r { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }
.portrait__frame::before {
  content: ""; position: absolute; inset: 18px -18px -18px 18px;
  border: 1px solid var(--line-gold); z-index: -1; border-radius: var(--radius);
}

/* Quote */
blockquote.quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.35;
  color: var(--navy);
  font-weight: 500;
  position: relative;
}
.bg-navy blockquote.quote { color: var(--white); }
blockquote.quote .cite { display: block; margin-top: 26px; font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 600; }

/* CTA band */
.cta-band { background: var(--navy); color: var(--on-navy); position: relative; overflow: hidden; isolation: isolate; }
.cta-band .hero__beams { opacity: .5; }
.cta-band__glow { position: absolute; inset: 0; z-index: -1; background: radial-gradient(70% 120% at 85% 50%, rgba(199,161,90,0.14), transparent 60%); }

/* List with gold ticks */
.ticklist { display: flex; flex-direction: column; gap: 16px; }
.ticklist li { position: relative; padding-left: 32px; color: var(--ink-soft); }
.bg-navy .ticklist li { color: var(--on-navy); }
.ticklist li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 14px; height: 8px;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 52px);
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--graphite);
  font-weight: 600;
  margin-bottom: 9px;
}
.field input, .field textarea, .field select {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--gold); background: var(--white);
}
.field.error input, .field.error textarea { border-color: #b4452f; }
.field__err { color: #b4452f; font-size: 0.78rem; margin-top: 6px; display: none; }
.field.error .field__err { display: block; }
.form-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 8px; }
.form-success {
  display: none;
  border: 1px solid var(--line-gold);
  background: rgba(199,161,90,0.08);
  padding: 18px 20px;
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.form-success.show { display: block; }

.contact-detail { display: flex; flex-direction: column; gap: 30px; }
.contact-detail .item .label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.contact-detail .item .val { font-size: 1.05rem; color: var(--ink); }
.bg-navy .contact-detail .item .val { color: var(--on-navy); }
.bg-navy .contact-detail .item .val a:hover { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy); color: var(--on-navy-dim); padding-top: clamp(64px, 8vw, 100px); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(32px, 4vw, 64px); padding-bottom: 56px; }
.footer-brand .brand__name { color: var(--white); }
.footer-brand p { margin-top: 22px; max-width: 34ch; font-size: 0.92rem; line-height: 1.7; color: var(--on-navy-dim); }
.footer-col h4 { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 22px; }
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col a { font-size: 0.92rem; color: var(--on-navy-dim); transition: color .3s var(--ease); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--line-on-navy);
  padding-block: 26px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.footer-bottom .legal-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--white); }

/* ---------- Brand essence pillars ---------- */
.essence-statement { font-size: clamp(2rem, 4.2vw, 3.4rem); line-height: 1.18; }
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px);
  margin-top: clamp(48px, 6vw, 72px);
  text-align: left;
}
.pillar { padding-top: 26px; border-top: 1px solid var(--gold-line, rgba(199,161,90,0.55)); }
.pillar__no { font-family: var(--serif); font-size: 1.1rem; color: var(--gold); display: block; margin-bottom: 14px; }
.pillar h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); margin-bottom: 10px; }
.pillar p { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.6; }

/* ---------- Brand attributes grid ---------- */
.attr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.attr {
  background: var(--white);
  padding: clamp(30px, 4vw, 48px) 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  transition: background .45s var(--ease), color .45s var(--ease);
}
.attr:hover { background: var(--navy); }
.attr__icon {
  width: 46px; height: 46px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .45s var(--ease), transform .45s var(--ease);
}
.attr:hover .attr__icon { stroke: var(--gold); transform: translateY(-3px); }
.attr__name {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--graphite);
  margin: 0;
  line-height: 1.4;
  transition: color .45s var(--ease);
}
.attr:hover .attr__name { color: var(--white); }

/* ---------- Footer baseline ---------- */
.footer-baseline {
  border-top: 1px solid var(--line-on-navy);
  text-align: center;
  padding-block: 30px;
  font-family: var(--sans);
  font-size: clamp(0.66rem, 1.1vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--on-navy-dim);
}
.footer-baseline .gold { color: var(--gold); }
.page-hero {
  background: var(--navy);
  color: var(--on-navy);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-top: clamp(150px, 18vh, 210px);
  padding-bottom: clamp(60px, 8vw, 96px);
}
.page-hero .eyebrow { color: var(--gold); margin-bottom: 26px; }
.page-hero h1 { color: var(--white); max-width: 18ch; }
.page-hero .lead { color: var(--on-navy); margin-top: 26px; max-width: 60ch; }
.breadcrumb { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-navy-dim); margin-bottom: 30px; display: flex; gap: 10px; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 1024px) {
  .nav, .header-right .lang-toggle { display: none; }
  .header-right { gap: 16px; }
  .burger { display: block; }
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split.reverse > *:first-child { order: 2; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .figures { grid-template-columns: 1fr 1fr; gap: 30px; }
  .mandate-row { grid-template-columns: 1fr; gap: 14px; }
  .mandate-row__cta { justify-self: start; }
}
@media (max-width: 760px) {
  .attr-grid { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: 1fr; gap: 8px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .brand__mark { width: 40px; height: 40px; }
  .brand__name { font-size: 1.2rem; }
  .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .figures { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero__meta { gap: 10px 22px; }
  .btn { width: 100%; justify-content: center; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
}

/* Mobile language toggle inside menu */
.mobile-lang { display: none; }
@media (max-width: 1024px) {
  .mobile-lang { display: inline-flex; }
}
