/* ============================================================
   FIDUCIA — Premium Financial Institution
   Robust, defensive, single-file CSS
   ============================================================ */

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, svg { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* Tokens */
:root {
  --bg: #0A0F1A;
  --bg-2: #0E1421;
  --bg-3: #141B2C;
  --surface: #1A2236;
  --surface-2: #232C42;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  --ink: #F5F1E8;
  --ink-2: #C9CCD4;
  --ink-3: #8E94A3;
  --ink-4: #5A6173;

  --paper: #FAF8F3;
  --paper-2: #F1EDE2;
  --paper-ink: #0E1421;
  --paper-line: #DDD7C7;

  --blue: #4D8FCB;
  --blue-deep: #1E5A8E;
  --gold: #C9A961;
  --gold-2: #D4B97A;

  --f-display: "Fraunces", "Times New Roman", Georgia, serif;
  --f-body: "Inter", "Helvetica Neue", -apple-system, BlinkMacSystemFont, Arial, sans-serif;

  --container: 1320px;
  --gutter: 32px;
  --nav-h: 76px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base */
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
  overflow-x: hidden;
}

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

/* ============================================================
   LAYOUT PRIMITIVES — defensive, fallback-first
   ============================================================ */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* Defensive flex/grid with fallbacks */
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.kicker {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}
.kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}
.kicker--blue { color: var(--blue); }
.kicker--muted { color: var(--ink-3); }

.h-display {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: var(--ink);
}
.h-display em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.h1 em { font-style: italic; color: var(--gold); font-weight: 400; }

.h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.h2 em { font-style: italic; color: var(--gold); font-weight: 400; }

.h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.h3 em { font-style: italic; color: var(--gold); }

.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-2);
  font-weight: 400;
  font-family: var(--f-body);
}

p {
  color: var(--ink-2);
  line-height: 1.7;
  font-size: 16px;
  font-family: var(--f-body);
}

.section--paper p { color: rgba(14, 20, 33, 0.78); }
.section--paper .h1, .section--paper .h2, .section--paper .h3 { color: var(--paper-ink); }
.section--paper .kicker { color: var(--blue-deep); }

/* ============================================================
   NAVIGATION — glass morphism with language switcher
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: transparent;
  -webkit-transition: all 320ms var(--ease);
  transition: all 320ms var(--ease);
}
.nav.is-scrolled {
  background: rgba(10, 15, 26, 0.85);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
  height: 64px;
}
@supports not (backdrop-filter: blur(20px)) {
  .nav.is-scrolled { background: rgba(10, 15, 26, 0.96); }
}

.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand { -ms-flex-negative: 0; flex-shrink: 0; }
.nav__logo { height: 36px; width: auto; display: block; }

.nav__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 36px;
  margin: 0 auto;
}
.nav__link {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: rgba(245, 241, 232, 0.85);
  position: relative;
  padding: 8px 0;
  -webkit-transition: color 200ms var(--ease);
  transition: color 200ms var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--gold); }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* Language switcher */
.lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  -webkit-transition: border-color 200ms var(--ease);
  transition: border-color 200ms var(--ease);
}
.lang:hover { border-color: var(--gold); }
.lang__btn {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  padding: 4px 8px;
  border-radius: 999px;
  -webkit-transition: all 200ms var(--ease);
  transition: all 200ms var(--ease);
}
.lang__btn.is-active { color: var(--bg); background: var(--gold); }
.lang__btn:hover:not(.is-active) { color: var(--ink); }

.nav__toggle {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  -webkit-transition: all 240ms var(--ease);
  transition: all 240ms var(--ease);
}
.nav__toggle span:nth-child(2) { width: 18px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--bg);
  color: var(--ink);
  padding-top: var(--nav-h);
  overflow: hidden;
  isolation: isolate;
}
.hero--home {
  min-height: 100vh;
  min-height: 100svh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.hero__media {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: -1;
}
.hero__photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center 30%;
  object-position: center 30%;
}
.hero__media::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background:
    -webkit-gradient(linear, left top, left bottom, from(rgba(10, 15, 26, 0.6)), color-stop(40%, rgba(10, 15, 26, 0.7)), to(rgba(10, 15, 26, 0.95))),
    -webkit-gradient(linear, left top, right top, from(rgba(10, 15, 26, 0.7)), color-stop(50%, rgba(10, 15, 26, 0.4)), to(transparent));
  background:
    linear-gradient(180deg, rgba(10, 15, 26, 0.6) 0%, rgba(10, 15, 26, 0.7) 40%, rgba(10, 15, 26, 0.95) 100%),
    linear-gradient(90deg, rgba(10, 15, 26, 0.7) 0%, rgba(10, 15, 26, 0.4) 50%, transparent 100%);
}

.hero--home .hero__inner {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 140px var(--gutter) 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.hero__kicker { margin-bottom: 28px; color: var(--gold); }
.hero__title { max-width: 18ch; margin-bottom: 0; }

.hero__bottom {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--line-strong);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 48px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.hero__lead {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 460px;
  flex: 1 1 460px;
  max-width: 56ch;
}
.hero__meta {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.hero__meta-label { color: var(--gold); }
.hero__meta-value { color: var(--ink); font-weight: 500; }

/* Inner page hero */
.hero--inner {
  min-height: 56vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 80px) 0 80px;
}
.hero--inner .hero__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.hero--inner .hero__title {
  font-size: clamp(44px, 5.4vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  max-width: 22ch;
}
.hero--inner .hero__lead { margin-top: 0; max-width: 60ch; }

/* ============================================================
   SECTIONS
   ============================================================ */
section { position: relative; }
.section { padding: 120px 0; position: relative; }
.section--tight { padding: 80px 0; }
.section--paper {
  background: var(--paper);
  color: var(--paper-ink);
}
.section--paper2 {
  background: var(--paper-2);
  color: var(--paper-ink);
}
.section--bg2 { background: var(--bg-2); }
.section--bg3 { background: var(--bg-3); }

/* Section header */
.section-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 32px 64px;
  margin-bottom: 80px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.section--paper .section-head { border-bottom-color: var(--paper-line); }
.section-head__left {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 60ch;
  flex: 1 1 60ch;
}
.section-head__kicker { margin-bottom: 24px; }
.section-head__title { margin-bottom: 0; }
.section-head__lead {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 36ch;
  flex: 1 1 36ch;
  max-width: 44ch;
  font-size: 16px;
  line-height: 1.65;
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}
.section--paper .stats { border-color: var(--paper-line); }
.stats__intro {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 24%;
  flex: 1 1 24%;
  min-width: 220px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.45;
  color: var(--ink-3);
  padding-right: 32px;
  padding-bottom: 16px;
}
.section--paper .stats__intro { color: rgba(14, 20, 33, 0.6); }
.stat {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  min-width: 180px;
  padding-left: 28px;
  padding-right: 16px;
  border-left: 1px solid var(--line);
}
.section--paper .stat { border-left-color: var(--paper-line); }
.stat__num {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 14px;
}
.section--paper .stat__num { color: var(--paper-ink); }
.stat__num em {
  font-style: italic;
  color: var(--gold);
  font-size: 0.55em;
  vertical-align: 0.55em;
  margin-left: 4px;
  font-weight: 400;
}
.stat__label {
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.5;
  max-width: 26ch;
}
.section--paper .stat__label { color: rgba(14, 20, 33, 0.6); }

/* ============================================================
   PILLARS — luxe bordered cards
   ============================================================ */
.pillars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
}
.pillar {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 280px;
  flex: 1 1 280px;
  padding: 40px 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  -webkit-transition: all 380ms var(--ease);
  transition: all 380ms var(--ease);
  position: relative;
}
.section--paper .pillar {
  background: rgba(255, 255, 255, 0.6);
  border-color: var(--paper-line);
}
.pillar:hover {
  border-color: var(--gold);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}
.pillar__num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 28px;
  display: block;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.section--paper .pillar__num { border-bottom-color: var(--paper-line); }
.pillar__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin-bottom: 16px;
}
.section--paper .pillar__title { color: var(--paper-ink); }
.pillar__copy {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
}
.section--paper .pillar__copy { color: rgba(14, 20, 33, 0.7); }

/* ============================================================
   EDITORIAL TWO-UP
   ============================================================ */
.editorial {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 64px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.editorial__media {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 420px;
  flex: 1 1 420px;
  max-width: 600px;
}
.editorial__photo {
  width: 100%;
  aspect-ratio: 5 / 6;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 2px;
  background: var(--surface-2);
}
@supports not (aspect-ratio: 5 / 6) {
  .editorial__photo { height: 600px; }
}
.editorial__caption {
  margin-top: 18px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.55;
}
.section--paper .editorial__caption { color: rgba(14, 20, 33, 0.55); }
.editorial__body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 420px;
  flex: 1 1 420px;
  padding-top: 24px;
}
.editorial--reversed { -webkit-box-orient: horizontal; -webkit-box-direction: reverse; -ms-flex-direction: row-reverse; flex-direction: row-reverse; }
.editorial__kicker { margin-bottom: 24px; }
.editorial__title { margin-bottom: 28px; }
.editorial__body p { margin-bottom: 20px; }
.editorial__body p:last-child { margin-bottom: 0; }

/* ============================================================
   STATEMENT — pull quote with ambient bg
   ============================================================ */
.statement {
  position: relative;
  padding: 160px 0;
  background: var(--bg-2);
  color: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.statement__bg {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: -1;
  opacity: 0.4;
}
.statement__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-filter: grayscale(0.4) contrast(1.1) brightness(0.6);
  filter: grayscale(0.4) contrast(1.1) brightness(0.6);
}
.statement__bg::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(14, 20, 33, 0.7)), to(rgba(14, 20, 33, 0.95)));
  background: linear-gradient(180deg, rgba(14, 20, 33, 0.7) 0%, rgba(14, 20, 33, 0.95) 100%);
}
.statement__inner { max-width: 1100px; margin: 0 auto; }
.statement__kicker { margin-bottom: 32px; }
.statement__quote {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0;
}
.statement__quote em { font-style: italic; color: var(--gold); }

/* ============================================================
   SERVICE INDEX — luxe horizontal rows
   ============================================================ */
.svc-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.section--paper .svc-list { border-top-color: var(--paper-line); }
.svc-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 24px 48px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  -webkit-transition: padding-left 380ms var(--ease);
  transition: padding-left 380ms var(--ease);
  position: relative;
}
.section--paper .svc-row { border-bottom-color: var(--paper-line); }
.svc-row:hover { padding-left: 16px; }
.svc-row::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--gold);
  -webkit-transition: width 380ms var(--ease);
  transition: width 380ms var(--ease);
}
.svc-row:hover::before { width: 3px; }
.svc-row__num {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  width: 40px;
  padding-top: 6px;
}
.svc-row__title {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 240px;
  flex: 1 1 240px;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
}
.section--paper .svc-row__title { color: var(--paper-ink); }
.svc-row__copy {
  -webkit-box-flex: 2;
  -ms-flex: 2 1 380px;
  flex: 2 1 380px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
}
.section--paper .svc-row__copy { color: rgba(14, 20, 33, 0.7); }

/* ============================================================
   MVV — Mission/Vision/Values cards
   ============================================================ */
.mvv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
}
.mvv__card {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 300px;
  flex: 1 1 300px;
  padding: 48px 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.section--paper .mvv__card {
  background: #fff;
  border-color: var(--paper-line);
  -webkit-box-shadow: 0 4px 32px rgba(14, 20, 33, 0.04);
  box-shadow: 0 4px 32px rgba(14, 20, 33, 0.04);
}
.mvv__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 56px;
  height: 2px;
  background: var(--gold);
}
.mvv__label {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: block;
}
.mvv__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: 22px;
}
.section--paper .mvv__title { color: var(--paper-ink); }
.mvv__copy {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0;
}
.section--paper .mvv__copy { color: rgba(14, 20, 33, 0.72); }

/* ============================================================
   VALUES LIST
   ============================================================ */
.values {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 32px 48px;
}
.value {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 380px;
  flex: 1 1 380px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.section--paper .value { border-top-color: var(--paper-line); }
.value__num {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 40px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  padding-top: 6px;
}
.value__body { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; }
.value__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 10px;
}
.section--paper .value__title { color: var(--paper-ink); }
.value__copy {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
}
.section--paper .value__copy { color: rgba(14, 20, 33, 0.7); }

/* ============================================================
   SERVICE DETAIL (services page)
   ============================================================ */
.svc-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 48px;
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.section--paper .svc-detail { border-bottom-color: var(--paper-line); }
.svc-detail:last-child { border-bottom: 0; }
.svc-detail__head {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 300px;
  flex: 1 1 300px;
  max-width: 360px;
}
.svc-detail__num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 16px;
}
.svc-detail__kicker { margin-bottom: 18px; }
.svc-detail__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0;
}
.section--paper .svc-detail__title { color: var(--paper-ink); }
.svc-detail__body {
  -webkit-box-flex: 2;
  -ms-flex: 2 1 480px;
  flex: 2 1 480px;
}
.svc-detail__body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 20px;
}
.section--paper .svc-detail__body p { color: rgba(14, 20, 33, 0.72); }
.svc-detail__sublabel {
  display: block;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 24px;
  margin-top: 12px;
  margin-bottom: 18px;
  border-top: 1px solid var(--line);
}
.section--paper .svc-detail__sublabel { border-top-color: var(--paper-line); }
.svc-detail__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 32px;
}
.svc-detail__list li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 200px;
  flex: 1 1 200px;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}
.section--paper .svc-detail__list li { color: rgba(14, 20, 33, 0.7); }
.svc-detail__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 80px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.contact-info {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 380px;
  flex: 1 1 380px;
}
.contact-photo-wrap {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 420px;
  flex: 1 1 420px;
}
.contact-block {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.section--paper .contact-block { border-bottom-color: var(--paper-line); }
.contact-block:first-child { padding-top: 0; }
.contact-block:last-child { border-bottom: 0; }
.contact-block__label {
  display: block;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.contact-block__value {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
}
.section--paper .contact-block__value { color: var(--paper-ink); }
.contact-block__value a { color: inherit; -webkit-transition: color 200ms ease; transition: color 200ms ease; }
.contact-block__value a:hover { color: var(--gold); }
.contact-block__value--small { font-size: 17px; }
.contact-block__sub {
  display: block;
  margin-top: 6px;
  font-size: 13.5px;
  font-family: var(--f-display);
  font-style: italic;
  color: var(--ink-3);
}
.section--paper .contact-block__sub { color: rgba(14, 20, 33, 0.55); }

.contact-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 2px;
}
@supports not (aspect-ratio: 4 / 5) {
  .contact-photo { height: 540px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-2);
  color: var(--ink-3);
  padding: 96px 0 36px;
  border-top: 1px solid var(--line);
}
.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.footer__brand { -webkit-box-flex: 1; -ms-flex: 1 1 280px; flex: 1 1 280px; max-width: 360px; }
.footer__col { -webkit-box-flex: 1; -ms-flex: 1 1 180px; flex: 1 1 180px; }
.footer__logo { height: 40px; width: auto; margin-bottom: 24px; }
.footer__about { color: var(--ink-3); font-size: 14px; line-height: 1.65; max-width: 36ch; }
.footer__col h4 {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
}
.footer__col ul { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; gap: 11px; }
.footer__col li { color: var(--ink-3); font-size: 14px; }
.footer__col a { color: var(--ink-3); -webkit-transition: color 200ms ease; transition: color 200ms ease; }
.footer__col a:hover { color: var(--gold); }
.footer__address { font-style: normal; line-height: 1.65; font-size: 14px; }
.footer__address strong { color: var(--ink-2); font-weight: 500; display: block; margin-bottom: 6px; }
.footer__bottom {
  margin-top: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12.5px;
  color: var(--ink-4);
}
.footer__values {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 13.5px;
  color: var(--ink-4);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
body.js-on .reveal {
  opacity: 0;
  -webkit-transform: translateY(24px);
  transform: translateY(24px);
  -webkit-transition: opacity 700ms var(--ease), -webkit-transform 700ms var(--ease);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
body.js-on .reveal.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  :root { --container: 100%; --gutter: 28px; }
}

@media (max-width: 980px) {
  :root { --gutter: 22px; }

  .section { padding: 80px 0; }
  .section--tight { padding: 56px 0; }
  .statement { padding: 96px 0; }

  .hero--home { min-height: 88vh; }
  .hero--home .hero__inner { padding: 120px var(--gutter) 56px; }
  .hero__bottom { gap: 32px; }
  .hero--inner { min-height: 48vh; padding: calc(var(--nav-h) + 64px) 0 56px; }

  .nav__menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 120px 32px 32px;
    gap: 0;
    margin: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 380ms var(--ease-out);
    transition: transform 380ms var(--ease-out);
    z-index: 90;
    overflow-y: auto;
  }
  .nav__menu.is-open { -webkit-transform: translateX(0); transform: translateX(0); }
  .nav__link {
    width: 100%;
    font-size: 22px;
    font-family: var(--f-display);
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
  }
  .nav__link.is-active::after { display: none; }
  .nav__toggle { display: -webkit-box; display: -ms-flexbox; display: flex; z-index: 91; }
  .nav__toggle.is-active span:nth-child(1) {
    -webkit-transform: translateY(6.5px) rotate(45deg);
    transform: translateY(6.5px) rotate(45deg);
    width: 24px;
  }
  .nav__toggle.is-active span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-active span:nth-child(3) {
    -webkit-transform: translateY(-6.5px) rotate(-45deg);
    transform: translateY(-6.5px) rotate(-45deg);
    width: 24px;
  }

  .section-head { gap: 24px 48px; margin-bottom: 56px; padding-bottom: 24px; }

  .editorial { gap: 40px; }
  .editorial--reversed { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; }

  .footer__top { gap: 40px; padding-bottom: 40px; }
}

@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .nav__logo { height: 30px; }
  .h1, .hero__title { font-size: clamp(40px, 11vw, 64px) !important; }
  .h2 { font-size: clamp(28px, 7vw, 40px); }
  .pillar, .mvv__card { padding: 32px 24px; }
  .footer { padding: 64px 0 28px; }
  .footer__top { gap: 32px; }
  .lang { padding: 4px 8px; }
  .lang__btn { font-size: 11px; padding: 3px 6px; }
}

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