/* ============================================================
   FIDUCIA PENSION ADVISORY — INSTITUTIONAL EDITION
   Pure White (#FFFFFF) · Fiducia Blue (#1E5A8E)
   Premium · Corporate · Sophisticated
   ============================================================ */

*, *::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; }

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Surfaces */
  --paper:        #FFFFFF;
  --paper-2:      #F5F8FB;
  --paper-3:      #EAF1F8;
  --surface:      #FFFFFF;
  --surface-hover:#F8FAFC;

  /* Brand Blue */
  --blue:         #1E5A8E;
  --blue-deep:    #154369;
  --blue-darker:  #0F2F4D;
  --blue-light:   #4A85B5;
  --blue-pale:    #DCE8F2;
  --blue-mist:    #F0F5FA;

  /* Ink */
  --ink:          #0E1F33;
  --ink-2:        #2B3D55;
  --ink-3:        #5A6B82;
  --ink-4:        #93A0B3;

  /* Lines */
  --line:         rgba(14, 31, 51, 0.08);
  --line-strong:  rgba(14, 31, 51, 0.16);
  --line-blue:    rgba(30, 90, 142, 0.18);

  --primary:      var(--blue);
  --primary-deep: var(--blue-deep);

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

  /* Layout */
  --container:      1320px;
  --container-wide: 1480px;
  --gutter:         40px;
  --nav-h:          80px;

  /* Motion */
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(14, 31, 51, 0.04);
  --shadow-md:   0 8px 24px rgba(14, 31, 51, 0.08);
  --shadow-lg:   0 24px 60px rgba(14, 31, 51, 0.12);
  --shadow-blue: 0 16px 40px rgba(30, 90, 142, 0.18);
}

body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -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(--blue); color: var(--paper); }

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.wrap--wide { max-width: var(--container-wide); }
.wrap--narrow { max-width: 980px; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  line-height: 1;
}
.kicker::before {
  content: "";
  width: 32px;
  height: 1.5px;
  background: var(--blue);
}
.kicker--light { color: var(--blue-pale); }
.kicker--light::before { background: var(--blue-pale); }
.kicker--white { color: rgba(255,255,255,0.92); }
.kicker--white::before { background: rgba(255,255,255,0.55); }

.h1 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(44px, 6.5vw, 88px);
  letter-spacing: -0.022em;
  line-height: 1.05;
  color: var(--ink);
}
.h1 em { font-style: italic; color: var(--blue); font-weight: 400; }

.h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 56px);
  letter-spacing: -0.018em;
  line-height: 1.1;
  color: var(--ink);
}
.h2 em { font-style: italic; color: var(--blue); font-weight: 400; }

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

.lead {
  font-size: 18.5px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 64ch;
  font-weight: 400;
}

p { color: var(--ink-2); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--f-body);
  border: 1.5px solid var(--blue);
  background: var(--blue);
  color: var(--paper);
  transition: all 240ms var(--ease);
  cursor: pointer;
}
.btn::after {
  content: "→";
  font-size: 16px;
  transition: transform 240ms var(--ease);
}
.btn:hover { background: var(--blue-deep); border-color: var(--blue-deep); }
.btn:hover::after { transform: translateX(4px); }

.btn--ghost { background: transparent; color: var(--blue); }
.btn--ghost:hover { background: var(--blue); color: var(--paper); }
.btn--white { background: var(--paper); color: var(--blue); border-color: var(--paper); }
.btn--white:hover { background: transparent; color: var(--paper); border-color: var(--paper); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  padding-bottom: 4px;
  border-bottom: 1.5px solid var(--blue);
  transition: all 220ms var(--ease);
}
.text-link::after {
  content: "→";
  font-size: 15px;
  transition: transform 220ms var(--ease);
}
.text-link:hover { color: var(--blue-deep); border-color: var(--blue-deep); }
.text-link:hover::after { transform: translateX(4px); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: all 280ms var(--ease);
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--line);
  height: 68px;
  box-shadow: 0 1px 0 rgba(14,31,51,0.04);
}
@supports not (backdrop-filter: blur(20px)) {
  .nav { background: rgba(255, 255, 255, 0.96); }
}

.nav--on-dark {
  background: rgba(14, 31, 51, 0.0);
  border-bottom-color: rgba(255,255,255,0.10);
}
.nav--on-dark:not(.is-scrolled) .nav__link { color: rgba(255,255,255,0.92); }
.nav--on-dark:not(.is-scrolled) .nav__link:hover { color: var(--paper); }
.nav--on-dark:not(.is-scrolled) .nav__link.is-active { color: var(--paper); }
.nav--on-dark:not(.is-scrolled) .nav__link.is-active::after { background: var(--paper); }
/* Mobile menu always uses dark text on white panel, regardless of nav state */
@media (max-width: 900px) {
  .nav--on-dark:not(.is-scrolled) .nav__menu .nav__link { color: var(--ink-2); }
  .nav--on-dark:not(.is-scrolled) .nav__menu .nav__link.is-active { color: var(--blue); }
}
.nav--on-dark:not(.is-scrolled) .lang { border-color: rgba(255,255,255,0.30); background: rgba(255,255,255,0.05); }
.nav--on-dark:not(.is-scrolled) .lang__btn { color: rgba(255,255,255,0.85); }
.nav--on-dark:not(.is-scrolled) .lang__btn.is-active { background: var(--paper); color: var(--blue); }
.nav--on-dark:not(.is-scrolled) .nav__toggle span { background: var(--paper); }

.nav__inner {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__brand { flex-shrink: 0; }
.nav__logo { height: 40px; width: auto; display: block; transition: opacity 220ms var(--ease); }
.nav__logo--white { display: none; }
.nav.is-scrolled .nav__logo { height: 34px; }
.nav--on-dark:not(.is-scrolled) .nav__logo--blue { display: none; }
.nav--on-dark:not(.is-scrolled) .nav__logo--white { display: block; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-left: auto;
  margin-right: 32px;
}
.nav__link {
  position: relative;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  padding: 10px 0;
  transition: color 200ms var(--ease);
}
.nav__link:hover { color: var(--blue); }
.nav__link.is-active { color: var(--blue); font-weight: 600; }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--blue);
}

.lang {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  padding: 4px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  transition: all 200ms var(--ease);
}
.lang:hover { border-color: var(--blue-light); }
.lang__btn {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  padding: 5px 12px;
  border-radius: 999px;
  transition: all 200ms var(--ease);
}
.lang__btn.is-active { color: var(--paper); background: var(--blue); }
.lang__btn:hover:not(.is-active) { color: var(--blue); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: flex-end;
  justify-content: center;
  flex-shrink: 0;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: all 240ms var(--ease);
}
.nav__toggle span:nth-child(2) { width: 18px; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 24px; }

/* ============================================================
   HERO — HOME (FULL WIDTH IMMERSIVE BANNER)
   ============================================================ */
.hero {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
  isolation: isolate;
}

.hero--home {
  min-height: 92vh;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
  padding-bottom: 0;
  background: var(--blue-darker);
}
.hero--home .hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero--home .hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.hero--home .hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(14, 31, 51, 0.35) 0%,
      rgba(14, 31, 51, 0.10) 30%,
      rgba(14, 31, 51, 0.55) 70%,
      rgba(14, 31, 51, 0.88) 100%);
}

.hero--home .hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 100px var(--gutter) 100px;
}
.hero--home .hero__kicker { margin-bottom: 32px; color: rgba(255,255,255,0.92); }
.hero--home .hero__kicker::before { background: rgba(255,255,255,0.55); }
.hero--home .hero__title { color: var(--paper); max-width: 16ch; margin-bottom: 0; }
.hero--home .hero__title em { color: #B5D2EA; font-style: italic; }

.hero__bottom {
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.20);
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
  align-items: flex-start;
}
.hero--home .hero__lead {
  flex: 1 1 460px;
  max-width: 580px;
  color: rgba(255,255,255,0.88);
  font-size: 17px;
  line-height: 1.7;
}
.hero__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.01em;
  flex-shrink: 0;
}
.hero__meta-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  margin-bottom: 12px;
}
.hero__meta-value { color: var(--paper); font-weight: 500; }

/* ============================================================
   HERO — INNER PAGES (FULL WIDTH BANNER)
   ============================================================ */
.hero--inner {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 90px;
  background: var(--blue-darker);
  overflow: hidden;
  isolation: isolate;
}
.hero--inner .hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero--inner .hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero--inner .hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(14, 31, 51, 0.55) 0%,
      rgba(14, 31, 51, 0.35) 40%,
      rgba(14, 31, 51, 0.78) 100%);
}
.hero--inner .hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.hero--inner .hero__kicker { margin-bottom: 24px; color: rgba(255,255,255,0.92); }
.hero--inner .hero__kicker::before { background: rgba(255,255,255,0.55); }
.hero--inner .hero__title {
  color: var(--paper);
  font-size: clamp(40px, 5vw, 72px);
  max-width: 22ch;
  margin-bottom: 24px;
}
.hero--inner .hero__title em { color: #B5D2EA; }
.hero--inner .hero__lead {
  color: rgba(255,255,255,0.92);
  max-width: 64ch;
  font-size: 17.5px;
  line-height: 1.65;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 130px 0;
  background: var(--paper);
  position: relative;
}
.section--bg2 { background: var(--paper-2); }
.section--blue {
  background: var(--blue-darker);
  color: var(--paper);
}
.section--blue p,
.section--blue .lead { color: rgba(255,255,255,0.85); }
.section--blue .h2 { color: var(--paper); }
.section--blue .h2 em { color: #B5D2EA; }
.section--blue .kicker { color: rgba(255,255,255,0.92); }
.section--blue .kicker::before { background: rgba(255,255,255,0.55); }

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

.section-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}
.section-head__kicker { margin-bottom: 28px; }
.section-head__title { max-width: 22ch; }
.section-head__lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-3);
  padding-bottom: 6px;
}
.section-head--centered {
  display: block;
  text-align: center;
  max-width: 880px;
  margin: 0 auto 80px;
}
.section-head--centered .kicker { justify-content: center; }
.section-head--centered .section-head__title { margin: 0 auto; }

@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   ABOUT TWO-UP (image + text editorial layout)
   ============================================================ */
.about-twoup {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 88px;
  align-items: center;
}
.about-twoup__media { position: relative; }
.about-twoup__media::before {
  content: "";
  position: absolute;
  inset: -16px -16px 16px 16px;
  background: var(--blue-pale);
  z-index: 0;
}
.about-twoup__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}
.about-twoup__body { padding: 16px 0; }
.about-twoup__body .kicker { margin-bottom: 24px; }
.about-twoup__body p {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-2);
}
.about-twoup__body p:last-of-type { margin-bottom: 0; }

@media (max-width: 900px) {
  .about-twoup { grid-template-columns: 1fr; gap: 48px; }
  .about-twoup__media img { height: 420px; }
}

/* ============================================================
   SERVICE LIST (home preview)
   ============================================================ */
.svc-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line-strong);
}
.svc-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 32px;
  padding: 44px 36px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: var(--surface);
  transition: all 280ms var(--ease);
  cursor: pointer;
  position: relative;
}
.svc-row:nth-child(2n) { border-right: 0; }
.svc-row:hover {
  background: var(--blue-mist);
  border-right-color: var(--blue);
}
.svc-row:hover .svc-row__num { color: var(--blue); }
.svc-row:hover .svc-row__title { color: var(--blue-deep); }
.svc-row::after {
  content: "→";
  position: absolute;
  top: 44px;
  right: 36px;
  font-size: 22px;
  color: var(--blue);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 280ms var(--ease);
}
.svc-row:hover::after { opacity: 1; transform: translateX(0); }

.svc-row__num {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink-4);
  font-style: italic;
  line-height: 1;
  padding-top: 4px;
  transition: color 280ms var(--ease);
}
.svc-row__title {
  font-family: var(--f-display);
  font-size: 23px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.012em;
  line-height: 1.2;
  max-width: 24ch;
  transition: color 280ms var(--ease);
}
.svc-row__copy {
  grid-column: 2;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-3);
  max-width: 50ch;
}

@media (max-width: 900px) {
  .svc-list { grid-template-columns: 1fr; }
  .svc-row { border-right: 0 !important; }
}

/* ============================================================
   STATEMENT (immersive blue full-width section)
   ============================================================ */
.statement {
  position: relative;
  background: var(--blue-darker);
  color: var(--paper);
  padding: 160px 0;
  overflow: hidden;
  isolation: isolate;
}
.statement__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.statement__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}
.statement::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(15, 47, 77, 0.92) 0%,
    rgba(30, 90, 142, 0.85) 100%);
  z-index: -1;
}
.statement__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.statement__kicker {
  justify-content: center;
  margin-bottom: 36px;
  color: rgba(255,255,255,0.95);
}
.statement__kicker::before { background: rgba(255,255,255,0.6); }
.statement__quote {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.3;
  color: var(--paper);
  letter-spacing: -0.012em;
}
.statement__quote em {
  font-style: italic;
  color: #B5D2EA;
}

/* ============================================================
   VALUE CARDS (6-up grid with photos)
   ============================================================ */
.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all 320ms var(--ease);
  display: flex;
  flex-direction: column;
}
.value-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.value-card__photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 540ms var(--ease);
}
.value-card:hover .value-card__photo { transform: scale(1.04); }
.value-card__body {
  padding: 36px 32px 38px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.value-card__label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.value-card__title {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.012em;
  line-height: 1.2;
}
.value-card__copy {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-3);
}

@media (max-width: 1100px) {
  .value-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .value-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   BLOCK ROW (services detail — alternating photo/text)
   ============================================================ */
.block-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 88px;
  align-items: center;
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}
.block-row:last-child { border-bottom: 0; }
.block-row--reversed .block-row__media { order: 2; }
.block-row--reversed .block-row__body { order: 1; }

.block-row__media { position: relative; }
.block-row__media::before {
  content: "";
  position: absolute;
  inset: -20px -20px 20px 20px;
  background: var(--blue-pale);
  z-index: 0;
}
.block-row--reversed .block-row__media::before { inset: -20px 20px 20px -20px; }
.block-row__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
}
.block-row__num {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  padding-bottom: 16px;
  border-bottom: 1.5px solid var(--blue);
  display: inline-block;
  margin-bottom: 28px;
}
.block-row__title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 18ch;
}
.block-row__title em { color: var(--blue); font-style: italic; font-weight: 400; }
.block-row__copy {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 18px;
  max-width: 56ch;
}
.block-row__copy:last-of-type { margin-bottom: 0; }
.block-row__components-label {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-top: 36px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.block-row__list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.block-row__list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
}
.block-row__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 1px;
  background: var(--blue);
}

@media (max-width: 1000px) {
  .block-row { grid-template-columns: 1fr; gap: 48px; padding: 70px 0; }
  .block-row--reversed .block-row__media { order: 1; }
  .block-row--reversed .block-row__body { order: 2; }
  .block-row__photo { height: 380px; }
  .block-row__list { grid-template-columns: 1fr; }
}

/* ============================================================
   PILLARS (3-up cards)
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pillar {
  background: var(--surface);
  border: 1px solid var(--line);
  position: relative;
  transition: all 280ms var(--ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pillar:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.pillar__photo {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  display: block;
  transition: transform 480ms var(--ease);
}
.pillar:hover .pillar__photo { transform: scale(1.04); }
.pillar__body {
  padding: 36px 36px 40px;
  flex: 1;
}
.pillar__num {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 16px;
  font-style: italic;
  color: var(--blue);
  margin-bottom: 24px;
  padding: 8px 14px;
  background: var(--blue-mist);
  border-radius: 4px;
}
.pillar__title {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.014em;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--ink);
}
.pillar__copy {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-3);
}

@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT INFO GRID
   ============================================================ */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}
.contact-block {
  padding: 44px 36px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: var(--surface);
  transition: background 220ms var(--ease);
}
.contact-block:hover { background: var(--blue-mist); }
.contact-block__label {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.contact-block__value {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
}
.contact-block__value a {
  color: var(--blue);
  border-bottom: 1px solid var(--blue);
  transition: all 200ms var(--ease);
}
.contact-block__value a:hover { color: var(--blue-deep); }
.contact-block__sub {
  display: block;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--ink-3);
  margin-top: 6px;
}

@media (max-width: 900px) {
  .contact-info-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PUB CARD CTA (legacy compatibility)
   ============================================================ */
.pub-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 12px 0;
  border-bottom: 1.5px solid var(--blue);
  transition: all 220ms var(--ease);
}
.pub-card__cta::after {
  content: "→";
  font-size: 15px;
  transition: transform 220ms var(--ease);
}
.pub-card__cta:hover { color: var(--blue-deep); border-color: var(--blue-deep); }
.pub-card__cta:hover::after { transform: translateX(4px); }

/* ============================================================
   FEATURE STRIP (full-width image banner with overlay)
   ============================================================ */
.feature-strip {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 460px;
  max-height: 680px;
  overflow: hidden;
  background: var(--blue-darker);
}
.feature-strip__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.feature-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(14, 31, 51, 0.78) 0%,
    rgba(14, 31, 51, 0.42) 60%,
    rgba(14, 31, 51, 0.20) 100%);
  z-index: 1;
}
.feature-strip__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-wide);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--paper);
}
.feature-strip__kicker { margin-bottom: 24px; color: rgba(255,255,255,0.95); }
.feature-strip__kicker::before { background: rgba(255,255,255,0.55); }
.feature-strip__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  color: var(--paper);
  max-width: 22ch;
  letter-spacing: -0.018em;
}
.feature-strip__title em { color: #B5D2EA; font-style: italic; }
.feature-strip__lead {
  margin-top: 28px;
  max-width: 60ch;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.92);
}

/* ============================================================
   PROOF / METRICS BAR
   ============================================================ */
.proof-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 64px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-item {
  padding: 0 32px;
  border-right: 1px solid var(--line);
}
.proof-item:last-child { border-right: 0; }
.proof-item__num {
  font-family: var(--f-display);
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--blue);
  margin-bottom: 12px;
}
.proof-item__label {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 22ch;
}

@media (max-width: 900px) {
  .proof-bar { grid-template-columns: 1fr 1fr; gap: 40px 0; padding: 48px 0; }
  .proof-item { border-bottom: 1px solid var(--line); padding: 0 16px 32px; }
  .proof-item:nth-child(2n) { border-right: 0; }
  .proof-item:nth-last-child(-n+2) { border-bottom: 0; padding-bottom: 0; padding-top: 0; }
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--blue);
  color: var(--paper);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
.cta-strip__title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--paper);
  letter-spacing: -0.014em;
  max-width: 24ch;
}
.cta-strip__title em { color: #B5D2EA; font-style: italic; }
.cta-strip__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.cta-strip__lead {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
  max-width: 40ch;
}

@media (max-width: 900px) {
  .cta-strip__inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--blue-darker);
  color: rgba(255, 255, 255, 0.78);
  padding: 100px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.footer__brand { padding-right: 24px; }
.footer__logo {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: 24px;
}
.footer__about {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  max-width: 36ch;
}
.footer__col h4 {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  margin-bottom: 24px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a, .footer__col li {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
  transition: color 200ms var(--ease);
}
.footer__col a:hover { color: var(--paper); }

.footer__address, .footer__contact {
  font-style: normal;
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}
.footer__address strong, .footer__contact strong {
  display: block;
  color: rgba(255,255,255,0.95);
  font-weight: 600;
  margin-bottom: 8px;
}
.footer__address a, .footer__contact a {
  color: rgba(255,255,255,0.95);
  border-bottom: 1px solid rgba(255,255,255,0.30);
  transition: all 200ms var(--ease);
}
.footer__address a:hover, .footer__contact a:hover {
  color: var(--paper);
  border-bottom-color: var(--paper);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}
.footer__values {
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.footer__copy { font-size: 12.5px; color: rgba(255,255,255,0.55); }

@media (max-width: 1000px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
}
@media (max-width: 600px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   LEGACY EDITORIAL (kept for backwards compatibility)
   ============================================================ */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.editorial--reversed { grid-template-columns: 1.1fr 1fr; }
.editorial--reversed .editorial__media { order: 2; }
.editorial--reversed .editorial__body { order: 1; }
.editorial__photo {
  width: 100%;
  height: 640px;
  object-fit: cover;
  display: block;
}
.editorial__body { padding: 24px 0; }
.editorial__kicker { margin-bottom: 24px; }
.editorial__title { margin-bottom: 28px; }
.editorial__body p { margin-bottom: 20px; font-size: 16px; line-height: 1.75; color: var(--ink-2); }
.editorial__body p:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .editorial { grid-template-columns: 1fr; gap: 48px; }
  .editorial__photo { height: 420px; }
}

/* ============================================================
   RESPONSIVE — MOBILE NAV & GENERAL
   ============================================================ */
@media (max-width: 900px) {
  :root { --gutter: 20px; --nav-h: 68px; }

  .nav__inner { gap: 12px; }
  .nav__logo { height: 32px; }
  .nav.is-scrolled .nav__logo { height: 30px; }

  .lang { padding: 3px; }
  .lang__btn { padding: 4px 9px; font-size: 11px; letter-spacing: 0.08em; }

  .nav__menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - var(--nav-h));
    height: calc(100svh - var(--nav-h));
    width: 100%;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 32px var(--gutter);
    gap: 0;
    transform: translateX(100%);
    transition: transform 320ms var(--ease);
    box-shadow: var(--shadow-lg);
    margin: 0;
    overflow-y: auto;
    z-index: 999;
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__link {
    width: 100%;
    padding: 18px 0;
    font-size: 18px;
    border-bottom: 1px solid var(--line);
  }
  .nav__link.is-active::after { display: none; }
  .nav__toggle { display: flex; flex-shrink: 0; width: 40px; height: 40px; }
  .lang { margin-left: auto; }

  .section { padding: 80px 0; }
  .statement { padding: 100px 0; }
  .footer { padding: 70px 0 28px; }

  .hero--home { min-height: 88vh; }
  .hero--home .hero__inner { padding: 80px var(--gutter) 70px; }
  .hero__bottom { gap: 32px; margin-top: 48px; padding-top: 28px; }

  .hero--inner { padding-top: calc(var(--nav-h) + 60px); padding-bottom: 60px; min-height: 460px; }

  .feature-strip { height: 50vh; min-height: 360px; }
  .cta-strip { padding: 64px 0; }
}

/* ============================================================
   ACCESSIBILITY & PRINT
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .nav, .footer, .cta-strip, .feature-strip, .statement { display: none; }
  .hero--inner { background: none; min-height: auto; padding: 40px 0; color: var(--ink); }
  .hero--inner .hero__media { display: none; }
  .hero--inner .hero__title, .hero--inner .hero__lead, .hero--inner .hero__kicker { color: var(--ink); }
  body { background: white; }
}
