/* ========================================
   LV&C · Shared styles
   ======================================== */
:root {
  --bg: #FAF9F6;
  --bg-warm: #F2EFE8;
  --white: #FFFFFF;
  --black: #141414;
  --text: #2A2A2A;
  --text-light: #78776F;
  --text-lighter: #A8A79F;
  --gold: #C19A3E;
  --gold-hover: #CDA74D;
  --gold-subtle: rgba(193,154,62,0.06);
  --gold-border: rgba(193,154,62,0.2);
  --navy: #26282C;
  --navy-deep: #1B1C1F;
  --navy-subtle: rgba(38,40,44,0.06);
  --border: #E5E2DA;
  --border-light: #EDEAE3;
  --r: 10px;
  --r-lg: 14px;
  --gap: 16px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --container: 1320px;
  --nav-h: 84px;
  --nav-top-h: 36px;
  /* Responsive page padding + section rhythm (progressive) */
  --pad-x: 48px;
  --sec-y: 100px;
}

/* ───── Progressive breakpoints for global tokens ───── */
@media (max-width: 1024px) { :root { --pad-x: 32px; --sec-y: 80px; --nav-h: 76px; } }
@media (max-width: 768px)  { :root { --pad-x: 28px; --sec-y: 64px; --nav-h: 64px; --nav-top-h: 0px; } }
@media (max-width: 600px)  { :root { --pad-x: 22px; --sec-y: 56px; } }
@media (max-width: 480px)  { :root { --pad-x: 18px; --sec-y: 48px; } }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ───── NAV (clean institutional · Pictet-style) ───── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.site-nav.scrolled { box-shadow: 0 1px 14px rgba(20,20,20,0.06); }

/* Top utility row */
.nav-top {
  border-bottom: 1px solid var(--border-light);
  height: var(--nav-top-h);
  background: var(--white);
  font-size: 0.7rem;
  color: var(--text-lighter);
}
.nav-top-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 var(--pad-x); height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-top-left { display: flex; gap: 24px; align-items: center; letter-spacing: 0.06em; }
.nav-top-left span.dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.nav-top-right { display: flex; gap: 18px; align-items: center; }
.nav-top-right a { color: inherit; transition: color 0.2s; letter-spacing: 0.04em; }
.nav-top-right a:hover { color: var(--gold); }

/* Main row */
.nav-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 var(--pad-x); height: calc(var(--nav-h) - var(--nav-top-h));
  display: flex; align-items: center; justify-content: space-between;
  background: #fff;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.55rem; font-weight: 600;
  color: var(--navy); letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); font-weight: 400; }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links > .nav-item { position: relative; }
.nav-links > .nav-item > a, .nav-links > .nav-item > button {
  font-size: 0.84rem; font-weight: 400;
  color: var(--text); letter-spacing: 0.005em;
  background: transparent; border: none; padding: 6px 0;
  transition: color 0.2s; cursor: pointer; display: inline-flex;
  align-items: baseline; gap: 4px;
  font-family: var(--font-body);
}
.nav-links > .nav-item > a:hover, .nav-links > .nav-item > button:hover { color: var(--gold); }
.nav-links > .nav-item > a.active, .nav-links > .nav-item > button.active { color: var(--gold); }
.nav-links > .nav-item .dot-after { color: var(--gold); }

/* Mega-menu panel */
.megamenu {
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--border);
  box-shadow: 0 18px 36px rgba(20,20,20,0.08);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: 0.25s; z-index: 99;
  padding: 48px 0 56px;
}
.megamenu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.megamenu-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x);
  display: grid; grid-template-columns: 1fr 2.4fr; gap: 80px;
}
.megamenu-intro .label {
  font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--gold); font-weight: 600; margin-bottom: 16px;
}
.megamenu-intro h3 {
  font-family: var(--font-display); font-size: 1.6rem;
  color: var(--black); font-weight: 400; line-height: 1.18; margin-bottom: 16px;
}
.megamenu-intro h3 em { font-style: italic; color: var(--gold); }
.megamenu-intro p {
  font-size: 0.86rem; color: var(--text-light);
  line-height: 1.75; font-weight: 300;
}
.megamenu-cols {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px 48px;
}
.megamenu-col h5 {
  font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--text-lighter); font-weight: 600; margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border-light);
}
.megamenu-col ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.megamenu-col a {
  display: flex; align-items: baseline; gap: 10px;
  padding: 7px 0; font-size: 0.9rem; color: var(--text);
  transition: color 0.2s; line-height: 1.4;
}
.megamenu-col a:hover { color: var(--gold); }
.megamenu-col a .arrow { color: var(--text-lighter); transition: 0.2s; font-size: 0.8em; }
.megamenu-col a:hover .arrow { color: var(--gold); transform: translateX(2px); }
.megamenu-col a .note { display: block; font-size: 0.72rem; color: var(--text-lighter); font-weight: 300; margin-top: 2px; }

.nav-cta {
  background: var(--gold); color: #fff !important;
  padding: 11px 22px; border-radius: 4px;
  font-weight: 500; font-size: 0.82rem;
  transition: 0.3s; border: none;
  letter-spacing: 0.005em;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-cta:hover { background: var(--gold-hover); }
.nav-cta svg { width: 12px; height: 12px; }

.nav-account {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 4px;
  border: 1px solid var(--border);
  font-size: 0.78rem; font-weight: 400;
  color: var(--text); background: transparent;
  transition: 0.2s;
}
.nav-account:hover { border-color: var(--gold); color: var(--gold); }
.nav-account svg { width: 12px; height: 12px; fill: currentColor; }

.nav-right { display: flex; gap: 12px; align-items: center; }

.burger {
  display: none; cursor: pointer; flex-direction: column; gap: 5px;
  padding: 10px; background: transparent; border: none;
  width: 44px; height: 44px; align-items: center; justify-content: center;
}
.burger b { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.3s, opacity 0.2s; transform-origin: center; }
.burger.open b:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open b:nth-child(2) { opacity: 0; }
.burger.open b:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.burger.open b { background: #fff; }

/* Mobile-only menu pieces — hidden on desktop */
.nav-links > .nav-item > .nav-acc { display: none; }
.nav-sub { display: none; }
.nav-menu-cta { display: none; }
.nav-backdrop {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(20,20,20,0.45); backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden; transition: opacity 0.3s;
}
.nav-backdrop.open { opacity: 1; visibility: visible; }
body.nav-locked { overflow: hidden; }

/* User dropdown */
.user-menu { position: relative; }
.user-trigger {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  color: rgba(255,255,255,0.85); font-size: 0.74rem;
  transition: 0.3s;
}
.user-trigger:hover { border-color: var(--gold); }
.user-avatar {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem; font-weight: 600; color: #fff;
  font-family: var(--font-body);
}
.user-dropdown {
  position: absolute; top: calc(100% + 12px); right: 0;
  min-width: 240px; background: #fff;
  border: 1px solid var(--border); border-radius: 10px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.18);
  padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(-4px); transition: 0.2s;
}
.user-menu.open .user-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.user-dropdown a, .user-dropdown button {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 7px;
  font-size: 0.82rem; color: var(--text);
  width: 100%; background: transparent; border: none; text-align: left;
}
.user-dropdown a:hover, .user-dropdown button:hover { background: var(--bg-warm); color: var(--text); }
.user-dropdown hr { border: none; border-top: 1px solid var(--border-light); margin: 6px 0; }
.user-dropdown .menu-head {
  padding: 12px 12px 8px;
  font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-lighter); font-weight: 600;
}
.user-dropdown .menu-name { font-family: var(--font-display); font-size: 0.98rem; color: var(--black); padding: 4px 12px 10px; }

/* ───── PAGE HERO (interior pages) ───── */
.page-hero {
  background: var(--navy); color: #fff;
  padding: calc(var(--nav-h) + 80px) 0 88px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute;
  top: -120px; right: -80px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(193,154,62,0.06), transparent 65%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 var(--pad-x); position: relative; z-index: 2;
}
.page-hero .eyebrow {
  font-size: 0.62rem; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.2em; font-weight: 500;
  margin-bottom: 28px; display: flex; align-items: center; gap: 12px;
}
.page-hero .eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--gold);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-weight: 400; line-height: 1.16;
  max-width: 820px; margin-bottom: 22px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-hover); }
.page-hero .lede {
  font-size: 1rem; color: rgba(255,255,255,0.55);
  line-height: 1.85; font-weight: 300; max-width: 640px;
}
.crumbs {
  font-size: 0.66rem; color: rgba(255,255,255,0.35);
  text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: 24px; display: flex; gap: 10px; align-items: center;
}
.crumbs a { color: rgba(255,255,255,0.35); }
.crumbs a:hover { color: var(--gold); }
.crumbs span.sep { opacity: 0.4; }

/* ───── SECTIONS ───── */
section { padding: var(--sec-y) 0; }
.section-inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }
.section-label {
  font-size: 0.62rem; text-transform: uppercase;
  letter-spacing: 0.18em; font-weight: 600;
  margin-bottom: 14px; color: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 400; line-height: 1.18;
  margin-bottom: 18px; color: var(--black);
}
.section-title em { font-style: italic; color: var(--gold); }
.section-prose {
  font-size: 0.95rem; color: var(--text-light);
  line-height: 1.85; font-weight: 300;
}
.section-prose p + p { margin-top: 16px; }
.section-prose strong { font-weight: 500; color: var(--text); }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .section-prose { max-width: 760px; margin: 0 auto; }

.bg-warm { background: var(--bg-warm); }
.bg-navy { background: var(--navy); color: #fff; }
.bg-navy .section-title { color: #fff; }
.bg-navy .section-prose { color: rgba(255,255,255,0.55); }
.bg-navy .section-label { color: var(--gold); }
.bg-white { background: var(--white); }

/* Textures */
.tx-dots { background-image: radial-gradient(circle, rgba(193,154,62,0.04) 1px, transparent 1px); background-size: 28px 28px; }
.tx-diag { background-image: repeating-linear-gradient(45deg, transparent, transparent 32px, rgba(193,154,62,0.02) 32px, rgba(193,154,62,0.02) 33px); }
.tx-cross { background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 32px 32px; }

/* ───── BUTTONS ───── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 7px;
  font-family: var(--font-body); font-size: 0.84rem; font-weight: 500;
  letter-spacing: 0.01em; border: 1px solid transparent;
  transition: 0.3s; text-decoration: none; cursor: pointer;
}
.btn svg { width: 14px; height: 14px; }
.btn-gold { background: var(--gold); color: #fff; box-shadow: 0 2px 10px rgba(193,154,62,0.22); }
.btn-gold:hover { background: var(--gold-hover); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(193,154,62,0.3); }
.btn-ghost-light { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.9); }
.btn-ghost-light:hover { border-color: var(--gold); color: #fff; }
.btn-ghost { border-color: var(--border); color: var(--text); background: var(--white); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-1px); }
.btn-link {
  font-size: 0.78rem; color: var(--gold); font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.3s;
}
.btn-link:hover { gap: 10px; }

/* ───── CARDS ───── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: 0.3s;
}
.card.hover:hover { border-color: var(--gold-border); box-shadow: 0 6px 28px rgba(20,20,20,0.06); transform: translateY(-2px); }
.card-eyebrow {
  font-size: 0.6rem; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--gold);
  font-weight: 600; margin-bottom: 14px;
}
.card-title {
  font-family: var(--font-display); font-size: 1.16rem;
  color: var(--black); margin-bottom: 8px; font-weight: 400; line-height: 1.32;
}
.card-text {
  font-size: 0.85rem; color: var(--text-light);
  line-height: 1.7; font-weight: 300;
}

/* ───── ICONS ───── */
.ic {
  width: 40px; height: 40px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ic svg {
  width: 18px; height: 18px; fill: none;
  stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round;
}
.ic.nv { background: var(--navy-subtle); } .ic.nv svg { stroke: var(--navy); }
.ic.gd { background: var(--gold-subtle); } .ic.gd svg { stroke: var(--gold); }
.ic.lt { background: rgba(255,255,255,0.08); } .ic.lt svg { stroke: var(--gold); }

/* ───── FORMS ───── */
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-label {
  display: block; font-size: 0.66rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-lighter); margin-bottom: 7px; font-weight: 600;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--border); border-radius: 8px;
  font-family: var(--font-body); font-size: 0.88rem;
  color: var(--text); background: var(--white);
  transition: 0.2s; outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-lighter); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-subtle);
}
.form-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none' stroke='%2378776F' stroke-width='1.4'%3E%3Cpath d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-check {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.8rem; color: var(--text-light);
  line-height: 1.6; cursor: pointer;
}
.form-check input { margin-top: 3px; accent-color: var(--gold); }
.form-help { font-size: 0.7rem; color: var(--text-lighter); margin-top: 6px; }

/* ───── FOOTER ───── */
footer.site-footer {
  background: var(--black); color: rgba(255,255,255,0.55);
  padding: clamp(48px, 6vw, 72px) var(--pad-x) 36px;
}
.footer-inner { max-width: var(--container); margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px; margin-bottom: 56px;
}
.footer-brand .footer-logo {
  font-family: var(--font-display); font-size: 1.6rem;
  font-weight: 600; color: #fff;
}
.footer-brand .footer-logo span { color: var(--gold); font-weight: 400; }
.footer-brand p {
  margin-top: 14px; font-size: 0.82rem;
  line-height: 1.7; color: rgba(255,255,255,0.4); max-width: 320px; font-weight: 300;
}
.footer-col h5 {
  font-size: 0.62rem; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--gold);
  font-weight: 600; margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a {
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 26px;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer-legal {
  font-size: 0.7rem; color: rgba(255,255,255,0.32);
  line-height: 1.7; max-width: 760px;
}
.footer-bottom .legal-link { font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.footer-bottom .legal-link:hover { color: var(--gold); }
.footer-mark {
  font-size: 0.62rem; color: rgba(255,255,255,0.25);
  letter-spacing: 0.12em; text-transform: uppercase;
}

/* ───── FADE-IN ───── */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity .7s, transform .7s; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

/* ───── UTILITIES ───── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }
.divider { border-top: 1px solid var(--border); margin: 32px 0; }
.eyebrow {
  font-size: 0.62rem; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--gold);
  font-weight: 600;
}
.text-center { text-align: center; }
.muted { color: var(--text-light); }

/* Tag/badge */
.tag {
  display: inline-block;
  font-size: 0.6rem; text-transform: uppercase;
  letter-spacing: 0.12em; font-weight: 600;
  padding: 4px 10px; border-radius: 20px;
  background: var(--gold-subtle); color: var(--gold);
}
.tag.navy { background: var(--navy-subtle); color: var(--navy); }
.tag.neutral { background: var(--border-light); color: var(--text-light); }

/* Disclaimer banner */
.disclaimer {
  background: var(--bg-warm); border-left: 3px solid var(--gold);
  padding: 14px 18px; border-radius: 4px;
  font-size: 0.78rem; color: var(--text-light);
  line-height: 1.7; font-weight: 300;
}

/* ───── EDITORIAL SECTIONS (rework: Pictet/AlTi/Lombard-inspired patterns) ───── */

/* Editorial hero with image */
.ed-hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex; align-items: flex-end;
  background: var(--navy);
  color: #fff;
  margin-top: var(--nav-h);
  overflow: hidden;
}
.ed-hero-photo {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,34,53,0.65) 0%, rgba(20,34,53,0.78) 100%),
    radial-gradient(circle at 22% 30%, rgba(193,154,62,0.25), transparent 55%),
    repeating-linear-gradient(135deg, #1B2D45 0px, #1B2D45 8px, #16263a 8px, #16263a 9px);
}
.ed-hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 78% 70%, rgba(193,154,62,0.15), transparent 50%),
    radial-gradient(circle at 30% 80%, rgba(0,0,0,0.4), transparent 60%);
}
.ed-hero-mark {
  position: absolute; top: 32px; right: 48px;
  font-family: 'Courier New', monospace; font-size: 0.66rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: flex; align-items: center; gap: 12px;
  z-index: 3;
}
.ed-hero-mark::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.ed-hero-inner {
  position: relative; z-index: 2;
  max-width: var(--container); width: 100%;
  margin: 0 auto; padding: 0 var(--pad-x) 96px;
}
.ed-hero-eyebrow {
  font-size: 0.66rem; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.22em; font-weight: 500;
  margin-bottom: 32px; display: inline-flex; align-items: center; gap: 14px;
}
.ed-hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--gold); }
.ed-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 400; line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 1100px; margin-bottom: 32px;
}
.ed-hero h1 em { font-style: italic; color: var(--gold-hover); }
.ed-hero-meta {
  display: grid; grid-template-columns: 1.5fr 1fr 220px;
  gap: 48px; align-items: end;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.ed-hero-meta p {
  font-size: 1rem; color: rgba(255,255,255,0.7);
  line-height: 1.75; font-weight: 300;
}
.ed-hero-meta .stack { display: flex; flex-direction: column; gap: 8px; font-size: 0.74rem; color: rgba(255,255,255,0.5); }
.ed-hero-meta .stack span:first-child { color: var(--gold); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.62rem; font-weight: 600; }
.ed-hero-meta .stack span:last-child { font-family: var(--font-display); font-size: 1.1rem; color: #fff; font-weight: 400; }
.ed-hero-cta {
  display: flex; gap: 8px; flex-direction: column;
}
.ed-hero-cta .btn { width: 100%; justify-content: center; }

/* Manifesto / Positioning band */
.ed-manifesto {
  padding: 140px 0; background: var(--bg);
  border-bottom: 1px solid var(--border-light);
}
.ed-manifesto .container {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 100px; align-items: start;
}
.ed-manifesto .label {
  font-size: 0.66rem; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--gold);
  font-weight: 600; display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.ed-manifesto .label::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.ed-manifesto .pin {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.1rem; color: var(--text-light);
  line-height: 1.6;
}
.ed-manifesto h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  font-weight: 400; line-height: 1.18;
  color: var(--black); margin-bottom: 36px;
  letter-spacing: -0.005em;
}
.ed-manifesto h2 em { font-style: italic; color: var(--gold); }
.ed-manifesto .body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.ed-manifesto .body p {
  font-size: 0.96rem; color: var(--text-light);
  line-height: 1.92; font-weight: 300;
}
.ed-manifesto .body p strong { color: var(--text); font-weight: 500; }

/* Marquee · awards / credentials strip */
.marquee {
  background: var(--bg-warm);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 36px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 0;
  white-space: nowrap;
  animation: marquee-scroll 60s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 18px;
  padding: 0 56px;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}
.marquee-item .badge {
  font-family: var(--font-display); font-style: italic;
  font-size: 0.78rem; color: var(--gold);
  letter-spacing: 0.05em;
}
.marquee-item .label {
  font-size: 0.92rem; color: var(--text);
  font-weight: 400; letter-spacing: 0.02em;
}
.marquee-item .sub {
  font-size: 0.7rem; color: var(--text-lighter);
  text-transform: uppercase; letter-spacing: 0.14em;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Audience segmentation cards */
.ed-audiences { padding: 140px 0; background: var(--white); }
.ed-audiences .head { margin-bottom: 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.ed-audiences-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--border); }
.audience {
  padding: 36px 28px 36px 0;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: 0.3s;
}
.audience:nth-child(4n) { border-right: none; }
.audience:not(:nth-child(4n+1)) { padding-left: 28px; }
.audience:hover { background: rgba(193,154,62,0.025); }
.audience .num {
  font-family: var(--font-display); font-style: italic;
  font-size: 0.74rem; color: var(--gold);
  letter-spacing: 0.16em; margin-bottom: 24px;
}
.audience h3 {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 400;
  color: var(--black); margin-bottom: 14px;
  line-height: 1.18;
}
.audience p {
  font-size: 0.84rem; color: var(--text-light);
  line-height: 1.72; font-weight: 300;
  margin-bottom: 22px;
}
.audience .also {
  padding-top: 16px; border-top: 1px solid var(--border-light);
  font-size: 0.72rem; color: var(--text-lighter); text-transform: uppercase; letter-spacing: 0.1em;
}
.audience .arrow {
  position: absolute; top: 36px; right: 0;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-lighter); transition: 0.25s;
}
.audience:not(:nth-child(4n)) .arrow { right: 28px; }
.audience:hover .arrow { background: var(--gold); border-color: var(--gold); color: #fff; }

/* Insights / Perspectives rail */
.ed-perspectives { padding: 140px 0; background: var(--bg-warm); }
.ed-perspectives .head { margin-bottom: 56px; display: flex; justify-content: space-between; align-items: end; gap: 48px; }
.ed-perspectives .head h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 400; color: var(--black); line-height: 1.2; max-width: 600px; }
.ed-perspectives .head h2 em { font-style: italic; color: var(--gold); }
.persp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.persp {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 4px; padding: 0; overflow: hidden;
  display: flex; flex-direction: column;
  transition: 0.3s;
}
.persp:hover { border-color: var(--gold-border); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(20,20,20,0.05); }
.persp .img {
  aspect-ratio: 16/10;
  background:
    radial-gradient(circle at 40% 50%, rgba(193,154,62,0.18), transparent 55%),
    repeating-linear-gradient(135deg, #1B2D45, #1B2D45 12px, #16263a 12px, #16263a 13px);
  position: relative;
}
.persp .img-2 {
  background:
    radial-gradient(circle at 70% 30%, rgba(193,154,62,0.2), transparent 50%),
    repeating-linear-gradient(135deg, #6B5A30, #6B5A30 12px, #5e4f29 12px, #5e4f29 13px);
}
.persp .img-3 {
  background:
    radial-gradient(circle at 50% 70%, rgba(193,154,62,0.25), transparent 55%),
    repeating-linear-gradient(135deg, #2A2A2A, #2A2A2A 12px, #232323 12px, #232323 13px);
}
.persp .img .tag-on-img {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,0.95); color: var(--text);
  font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.14em;
  padding: 6px 12px; border-radius: 2px; font-weight: 600;
}
.persp .body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.persp .meta {
  font-size: 0.66rem; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--text-lighter);
  font-weight: 600; margin-bottom: 14px;
  display: flex; gap: 12px;
}
.persp .meta .dot { color: var(--gold); }
.persp h3 {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 400;
  color: var(--black); margin-bottom: 12px;
  line-height: 1.28;
}
.persp p {
  font-size: 0.86rem; color: var(--text-light);
  line-height: 1.7; font-weight: 300;
  flex: 1; margin-bottom: 18px;
}
.persp .read {
  font-size: 0.78rem; color: var(--gold); font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
}

/* Editorial quote band (closing) */
.ed-quote {
  background: var(--navy); color: #fff;
  padding: 140px 0;
  position: relative; overflow: hidden;
}
.ed-quote::before {
  content: '"'; position: absolute;
  font-family: var(--font-display); font-style: italic;
  font-size: 28rem; color: rgba(193,154,62,0.06);
  top: -90px; left: 0;
  line-height: 1; font-weight: 400;
}
.ed-quote .container { position: relative; z-index: 2; max-width: 1100px; }
.ed-quote .label {
  font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--gold); font-weight: 600;
  display: flex; align-items: center; gap: 14px; margin-bottom: 36px;
}
.ed-quote .label::before { content: ''; width: 36px; height: 1px; background: var(--gold); }
.ed-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 400; line-height: 1.32;
  letter-spacing: -0.005em;
  margin-bottom: 56px;
}
.ed-quote blockquote em { font-style: italic; color: var(--gold-hover); }
.ed-quote .attribution {
  display: flex; align-items: center; gap: 24px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.16);
}
.ed-quote .attribution .av {
  width: 56px; height: 56px; border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(193,154,62,0.4), transparent 60%),
    var(--navy-deep);
  border: 1px solid rgba(255,255,255,0.16);
}
.ed-quote .attribution .name { font-family: var(--font-display); font-size: 1.05rem; color: #fff; }
.ed-quote .attribution .role { font-size: 0.74rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 4px; }

@media (max-width: 1100px) {
  .megamenu-inner { grid-template-columns: 1fr; gap: 32px; }
  .ed-hero-meta { grid-template-columns: 1fr; gap: 24px; }
  .ed-manifesto .container { grid-template-columns: 1fr; gap: 32px; }
  .ed-manifesto .body { grid-template-columns: 1fr; gap: 18px; }
  .ed-audiences-grid { grid-template-columns: 1fr 1fr; }
  .audience:nth-child(4n) { border-right: 1px solid var(--border); }
  .audience:nth-child(2n) { border-right: none; }
  .persp-grid { grid-template-columns: 1fr 1fr; }
  .ed-audiences .head, .ed-perspectives .head { grid-template-columns: 1fr; flex-direction: column; align-items: start; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — progressive breakpoints
   desktop >1024 · ≤1024 · ≤900 (nav drawer) · ≤768 · ≤600 · ≤480
   ═══════════════════════════════════════════════ */

/* Page-hero rhythm scales smoothly */
.page-hero { padding: calc(var(--nav-h) + clamp(48px, 7vw, 80px)) 0 clamp(52px, 7vw, 88px); }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 40px 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ── Mobile navigation: right-side drawer + backdrop ── */
@media (max-width: 1024px) {
  .nav-top { display: none; }
  .nav-right { display: none; }
  .burger { display: flex; position: relative; z-index: 120; }
  .megamenu { display: none !important; }
  .nav-inner { padding: 0 var(--pad-x); height: var(--nav-h); }

  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0; left: auto;
    width: min(440px, 86vw); height: 100%;
    background: var(--navy); color: #fff;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: calc(var(--nav-h) + 14px) clamp(22px, 6vw, 36px) calc(28px + env(safe-area-inset-bottom, 0px));
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform 0.36s cubic-bezier(.4,0,.2,1);
    z-index: 95; box-shadow: -18px 0 50px rgba(20,20,20,0.22);
  }
  .nav-links.open { transform: translateX(0); }

  .nav-links > .nav-item { position: relative; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-links > .nav-item > a {
    display: flex; align-items: center; min-height: 56px;
    color: rgba(255,255,255,0.92); font-size: 1.06rem; font-weight: 400;
    padding: 0; letter-spacing: 0.01em;
  }
  .nav-links > .nav-item > a:hover { color: var(--gold); }
  .nav-links > .nav-item > a .dot-after { display: none; }
  .nav-links > .nav-item > a.active { color: var(--gold); }

  .nav-links > .nav-item > .nav-acc {
    display: flex; align-items: center; justify-content: center;
    position: absolute; top: 6px; right: -8px;
    width: 44px; height: 44px; background: transparent; border: none;
    color: rgba(255,255,255,0.55); cursor: pointer; padding: 0;
  }
  .nav-acc svg { width: 14px; height: 14px; transition: transform 0.3s; }
  .nav-item.acc-open .nav-acc svg { transform: rotate(180deg); }

  .nav-sub { display: block; overflow: hidden; max-height: 0; transition: max-height 0.36s ease; }
  .nav-item.acc-open .nav-sub { max-height: 680px; }
  .nav-sub-col { padding: 0 0 12px; }
  .nav-sub-col h6 {
    font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.16em;
    color: var(--gold); font-weight: 600; margin: 12px 0 4px;
  }
  .nav-sub-col a {
    display: flex; align-items: center; min-height: 42px;
    color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.4;
  }
  .nav-sub-col a:active { color: #fff; }

  .nav-menu-cta {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: 26px; padding: 0 22px; min-height: 54px; border-radius: 6px;
    background: var(--gold); color: #fff; font-weight: 500; font-size: 0.95rem;
    box-shadow: 0 4px 16px rgba(193,154,62,0.25);
  }
  .nav-menu-cta svg { width: 13px; height: 13px; }

  .ed-hero-mark { display: none; }
  .ed-hero-inner { padding: 0 var(--pad-x) 56px; }
}

@media (max-width: 768px) {
  .nav-logo { font-size: 1.4rem; }
  .section-inner, .container { padding: 0 var(--pad-x); }
  .page-hero-inner { padding: 0 var(--pad-x); }
  .form-row { grid-template-columns: 1fr; }
  .ed-audiences-grid { grid-template-columns: 1fr; }
  .audience { border-right: none !important; padding: 28px 0 !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 14px; align-items: flex-start; }
  .persp-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
  .ed-quote::before { font-size: 16rem; }
}
