/* =========================================================
   CAMPBELLS — Brand system
   ========================================================= */
:root {
  --navy:        #0B1A2E;
  --navy-2:      #0E2238;
  --navy-3:      #16304D;
  --ivory:       #F5F1EA;
  --ivory-2:     #EFE8DC;
  --paper:       #FAF7F1;
  --gold:        #C8A96A;
  --gold-soft:   #D7BD86;
  --slate:       #5A6A7E;
  --line:        rgba(11,26,46,.14);
  --line-light:  rgba(245,241,234,.18);

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, monospace;

  --max: 1320px;
  --pad: clamp(20px, 4vw, 64px);
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
*::selection { background: var(--gold); color: var(--navy); }

html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--navy);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; letter-spacing: -.01em; line-height: 1.05; margin: 0; }
p { margin: 0; }

.italic { font-style: italic; }
.gold { color: var(--gold); }
.muted { color: var(--slate); font-size: 14px; }

/* =========================================================
   Cursor
   ========================================================= */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease), height .25s var(--ease),
              background .25s var(--ease), border-color .25s var(--ease);
  mix-blend-mode: difference;
  display: none;
}
.cursor span {
  position: absolute; inset: 0; margin: auto;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold);
}
.cursor.is-hover { width: 56px; height: 56px; background: rgba(200,169,106,.15); }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } body { cursor: none; } a, button { cursor: none; } }

/* =========================================================
   Loader
   ========================================================= */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--navy);
  display: grid; place-items: center;
  transition: opacity .6s var(--ease), visibility .6s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__inner { display: flex; flex-direction: column; align-items: center; gap: 18px; color: var(--ivory); }
.loader__mark { width: 48px; height: 48px; animation: spin 4s linear infinite; }
.loader__text { font-family: var(--serif); letter-spacing: .55em; font-size: 14px; padding-left: .55em; }
.loader__bar { display: block; width: 200px; height: 1px; background: rgba(245,241,234,.2); position: relative; overflow: hidden; }
.loader__bar i { position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: var(--gold); animation: load 1.4s var(--ease) forwards; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes load { to { width: 100%; } }

/* =========================================================
   Ribbon (top notice)
   ========================================================= */
.ribbon {
  background: var(--navy);
  color: var(--ivory);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(245,241,234,.06);
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.ribbon__track {
  display: flex; gap: 36px; align-items: center;
  white-space: nowrap;
  padding: 10px 0;
  animation: marquee 38s linear infinite;
}
.ribbon__track > span { opacity: .85; }
.ribbon__track i, .ribbon__track [aria-hidden] { color: var(--gold); opacity: .8; font-size: 8px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================================
   Navigation
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 18px var(--pad);
  background: rgba(250,247,241,.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.nav.is-dark {
  background: rgba(11,26,46,.85);
  color: var(--ivory);
  border-bottom-color: rgba(245,241,234,.08);
}
.nav__brand { display: inline-flex; }
.nav__logo { width: 220px; height: auto; color: currentColor; }
.nav__logo-text { font-family: var(--serif); font-size: 24px; letter-spacing: .14em; fill: currentColor; }
.nav__logo-sub  { font-family: var(--mono); font-size: 8px; letter-spacing: .35em; fill: currentColor; }

.nav__menu {
  display: flex; gap: 30px; justify-content: center;
  font-size: 13px; letter-spacing: .04em;
}
.nav__menu a {
  position: relative; padding: 6px 0;
  font-weight: 400;
  transition: color .2s var(--ease);
}
.nav__menu a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__menu a:hover::after { transform: scaleX(1); }

.nav__right { display: flex; align-items: center; gap: 12px; }
.nav__search {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background .3s, border-color .3s;
}
.nav.is-dark .nav__search { border-color: var(--line-light); }
.nav__search:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
}
.nav__burger span { display: block; width: 22px; height: 1px; background: currentColor; transition: transform .3s, opacity .3s; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav__menu, .nav__right .btn { display: none; }
  .nav__burger { display: flex; }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: all .35s var(--ease);
  position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn--gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn--gold:hover { background: var(--navy); color: var(--gold); }
.btn--line { border-color: currentColor; color: inherit; }
.btn--line:hover { background: var(--navy); color: var(--ivory); border-color: var(--navy); }
.btn--ghost {
  border-color: var(--line);
  font-size: 12px; padding: 10px 18px;
}
.nav.is-dark .btn--ghost { border-color: var(--line-light); }
.btn--ghost:hover { background: var(--navy); color: var(--ivory); border-color: var(--navy); }
.btn--block { width: 100%; justify-content: center; }
.btn svg { transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: calc(100vh - 96px);
  background: var(--navy);
  color: var(--ivory);
  overflow: hidden;
  isolation: isolate;
}
.hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.hero__grain {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(200,169,106,.18), transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(27,53,86,.55), transparent 60%);
  pointer-events: none;
}
.hero__grain::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 .8  0 0 0 0 .65  0 0 0 0 .4  0 0 0 .35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.5'/></svg>");
  opacity: .06; mix-blend-mode: overlay;
}

.hero__inner {
  position: relative; z-index: 3;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 12vh, 140px) var(--pad) 100px;
  display: grid; gap: 40px;
}

.hero__meta {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .25em; text-transform: uppercase;
  color: rgba(245,241,234,.7);
}
.hero__meta .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(200,169,106,.18); animation: pulse 2.4s ease-in-out infinite; }
.hero__meta .sep { color: var(--gold); }
@keyframes pulse { 0%,100%{ box-shadow: 0 0 0 4px rgba(200,169,106,.18);} 50%{ box-shadow: 0 0 0 8px rgba(200,169,106,0);} }

.hero__title {
  font-family: var(--serif);
  font-size: clamp(64px, 11.5vw, 192px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.02em;
  color: var(--ivory);
  max-width: 1100px;
}
.hero__title .line { display: block; }
.hero__title .thin { font-weight: 300; opacity: .9; }
.hero__title .gold { color: var(--gold); font-style: italic; }

/* Rotating word */
.hero__title .rotator {
  position: relative;
  display: block;
  height: 1em;
  overflow: hidden;
  font-style: italic;
  color: var(--gold);
}
.hero__title .rotator em {
  display: block; height: 1em;
  font-style: italic;
  animation: rotate 10s steps(1, end) infinite;
}
.hero__title .rotator em:not(:first-child) { animation: none; }
.hero__title .rotator em[data-active="true"] { display: block; }
@keyframes rotate { /* JS controls active classes */ }

.hero__lede {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  max-width: 560px;
  color: rgba(245,241,234,.82);
}

.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__cta .btn--line { color: var(--ivory); }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(245,241,234,.12);
  padding-top: 28px;
  margin-top: 20px;
  max-width: 720px;
}
.hero__stats > div { display: grid; gap: 4px; }
.hero__stats strong {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 400;
  line-height: 1;
  color: var(--ivory);
}
.hero__stats sup { color: var(--gold); font-size: .55em; vertical-align: top; margin-left: 2px; }
.hero__stats span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245,241,234,.55);
}
@media (max-width: 720px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
}

.hero__scroll {
  position: absolute;
  left: var(--pad); bottom: 32px;
  display: inline-flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(245,241,234,.7);
  font-family: var(--mono); font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
}
.hero__scroll span {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  position: relative; overflow: hidden;
}
.hero__scroll span::after {
  content: ''; position: absolute; left: 0; right: 0; top: 0;
  height: 30%;
  background: var(--ivory);
  animation: scrollDown 1.6s var(--ease) infinite;
}
@keyframes scrollDown { 0%{ top: -30%; } 100%{ top: 110%; } }

.rail {
  position: absolute; right: var(--pad); bottom: 32px;
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 16px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(245,241,234,.55);
  text-align: right;
}
.rail a:hover { color: var(--gold); }
@media (max-width: 720px) { .rail, .hero__scroll { display: none; } }

/* =========================================================
   MARQUEE awards
   ========================================================= */
.marquee {
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.marquee__track {
  display: flex; gap: 56px; align-items: center;
  white-space: nowrap;
  padding: 22px 0;
  animation: marquee 30s linear infinite;
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 40px);
  font-style: italic;
  color: var(--navy);
}
.marquee__track i { color: var(--gold); font-style: normal; font-size: .6em; opacity: .7; }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* =========================================================
   Sections — common
   ========================================================= */
.section-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) var(--pad) 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: end;
  gap: 40px;
}
.section-num {
  grid-column: 1 / -1;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 14px;
}
.section-num::before { content: ''; width: 36px; height: 1px; background: var(--gold); }
.section-title {
  font-size: clamp(40px, 6.4vw, 96px);
  letter-spacing: -.02em;
}
.section-title .gold { font-style: italic; }
.section-sub {
  font-family: var(--serif);
  font-size: clamp(17px, 1.3vw, 21px);
  color: var(--slate);
  line-height: 1.55;
  max-width: 540px;
}
.section-link {
  grid-column: 2;
  justify-self: end;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--navy);
  padding-bottom: 6px; border-bottom: 1px solid var(--gold);
}
.section-link svg { transition: transform .3s var(--ease); }
.section-link:hover svg { transform: translateX(4px); }

@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; }
  .section-link { grid-column: 1; justify-self: start; }
}

.underline-gold {
  background-image: linear-gradient(transparent 78%, var(--gold) 78%, var(--gold) 90%, transparent 90%);
  padding: 0 .04em;
}

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--navy);
  padding-bottom: 4px; border-bottom: 1px solid var(--gold);
  transition: gap .3s var(--ease);
}
.link-arrow:hover { gap: 14px; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; }

/* =========================================================
   FIRM
   ========================================================= */
.firm {
  background: var(--paper);
  padding: clamp(80px, 10vw, 140px) var(--pad);
}
.firm__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.firm__label {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 14px;
}
.firm__label span { color: var(--navy); }
.firm__lede {
  grid-column: 1 / -1;
}
.firm__lede h2 {
  font-size: clamp(36px, 5.6vw, 80px);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.04;
}
.firm__body {
  grid-column: 1 / 2;
}
.firm__body p {
  font-family: var(--serif);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--navy);
}

.firm__pillars {
  grid-column: 2 / 3;
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.firm__pillars li {
  background: var(--paper);
  padding: 28px 4px 28px 0;
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-rows: auto auto;
  align-items: start;
  column-gap: 20px;
  row-gap: 6px;
  transition: background .4s var(--ease), padding .4s var(--ease);
}
.firm__pillars li:hover { background: var(--ivory); padding-left: 24px; padding-right: 28px; }
.firm__pillars svg { width: 36px; height: 36px; color: var(--gold); grid-row: 1 / span 2; }
.firm__pillars h3 { font-size: clamp(22px, 2vw, 28px); margin: 0; grid-column: 2; }
.firm__pillars p { color: var(--slate); font-size: 15px; grid-column: 2; line-height: 1.55; }

@media (max-width: 900px) {
  .firm__grid { grid-template-columns: 1fr; }
  .firm__body, .firm__pillars { grid-column: 1; }
}

/* =========================================================
   EXPERTISE list (interactive)
   ========================================================= */
.expertise {
  background: var(--ivory);
  border-top: 1px solid var(--line);
  position: relative;
}
.expertise__list {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px var(--pad) clamp(60px, 8vw, 100px);
  position: relative;
}

.practice {
  display: grid;
  grid-template-columns: 80px 1fr 2fr 60px;
  align-items: center;
  gap: 24px;
  padding: 28px 4px;
  border-bottom: 1px solid var(--line);
  position: relative;
  cursor: pointer;
  transition: padding .4s var(--ease), background .4s var(--ease);
}
.practice:first-child { border-top: 1px solid var(--line); }
.practice::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; bottom: 0;
  background: var(--navy); transform: scaleY(0); transform-origin: bottom;
  transition: transform .55s var(--ease);
  z-index: 0;
}
.practice:hover { padding-left: 28px; padding-right: 28px; }
.practice:hover::before { transform: scaleY(1); transform-origin: top; }
.practice:hover * { color: var(--ivory); }
.practice:hover .practice__num { color: var(--gold); }

.practice > * { position: relative; z-index: 1; }

.practice__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .25em;
  color: var(--gold);
}
.practice h3 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;
  letter-spacing: -.01em;
}
.practice__tags {
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--slate);
  text-transform: none;
}
.practice__more {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: inherit;
  transition: background .3s var(--ease), border-color .3s, transform .3s;
}
.practice:hover .practice__more { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: rotate(-45deg); }

/* Floating preview */
.practice__preview {
  position: fixed;
  pointer-events: none;
  width: 320px; height: 220px;
  border-radius: 6px;
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%,-50%) scale(.92);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  z-index: 30;
  background: var(--navy-2);
  box-shadow: 0 30px 60px rgba(11,26,46,.4);
}
.practice__preview.is-on { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.practice__preview::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(200,169,106,.4), transparent 60%),
    linear-gradient(135deg, var(--navy), var(--navy-3));
}
.practice__preview::after {
  content: attr(data-label);
  position: absolute;
  bottom: 18px; left: 18px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 900px) {
  .practice { grid-template-columns: 50px 1fr 44px; gap: 16px; padding: 22px 0; }
  .practice__tags { display: none; }
}

/* =========================================================
   QUOTE
   ========================================================= */
.quote {
  background: var(--navy);
  color: var(--ivory);
  padding: clamp(100px, 14vw, 180px) var(--pad);
  position: relative;
  overflow: hidden;
}
.quote::before {
  content: '“';
  position: absolute;
  top: -.3em; left: -.05em;
  font-family: var(--serif);
  font-size: 44vw;
  line-height: 1;
  color: var(--gold);
  opacity: .07;
  font-style: italic;
}
.quote__rule {
  width: 80px; height: 1px;
  background: var(--gold);
  margin: 0 auto 40px;
}
.quote blockquote {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative; z-index: 2;
}
.quote blockquote p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.25;
  letter-spacing: -.01em;
  color: var(--ivory);
  margin: 0 0 30px;
}
.quote footer {
  display: flex; justify-content: center; gap: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
}
.quote__role { color: rgba(245,241,234,.5); }

/* =========================================================
   LOCATIONS
   ========================================================= */
.locations {
  background: var(--paper);
  padding-bottom: clamp(60px, 8vw, 100px);
}
.loc__layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.globe-wrap {
  aspect-ratio: 1;
  display: grid; place-items: center;
  position: relative;
}
.globe { width: 100%; height: auto; max-width: 520px; animation: float 8s ease-in-out infinite; }
.globe__lines {
  animation: spinSlow 60s linear infinite;
  transform-origin: 0 0;
  transform-box: view-box;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
@keyframes float { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-12px); } }
.globe__continents {
  animation: spinSlow 90s linear infinite reverse;
  transform-origin: 0 0;
  transform-box: view-box;
}
.globe__pins g { transform-origin: center; }
.globe__pins .ping {
  transform-origin: 0 0;
  animation: ping 2.6s ease-out infinite;
}
.globe__pins g:nth-child(2) .ping { animation-delay: .6s; }
.globe__pins g:nth-child(3) .ping { animation-delay: 1.2s; }
.globe__pins g:nth-child(4) .ping { animation-delay: 1.8s; }
@keyframes ping { 0%{ r: 4; opacity: .9;} 100%{ r: 22; opacity: 0; } }

.offices {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.office {
  background: var(--paper);
  padding: 24px 0;
  display: grid; gap: 8px;
  cursor: pointer;
  transition: padding .4s var(--ease), background .4s var(--ease);
  position: relative;
}
.office:hover { padding-left: 24px; padding-right: 24px; background: var(--ivory); }
.office__top {
  display: flex; align-items: baseline; justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold);
}
.office__time { color: var(--slate); }
.office h3 { font-size: clamp(24px, 2.4vw, 32px); }
.office p { color: var(--slate); font-size: 14px; }
.office a { display: inline-block; margin-top: 4px; color: var(--navy); border-bottom: 1px solid var(--gold); padding-bottom: 2px; font-family: var(--mono); font-size: 12px; letter-spacing: .15em; }

@media (max-width: 900px) {
  .loc__layout { grid-template-columns: 1fr; }
  .globe-wrap { max-width: 380px; margin: 0 auto; }
}

/* =========================================================
   INSIGHTS
   ========================================================= */
.insights {
  background: var(--ivory);
  border-top: 1px solid var(--line);
  padding-bottom: clamp(80px, 10vw, 140px);
}
.insights__grid {
  max-width: var(--max);
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.card {
  background: var(--ivory);
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: background .4s var(--ease);
}
.card:hover { background: var(--paper); }
.card--feat { grid-row: span 1; }

.card__art {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
}
.card__art[data-art="bermuda"] { background: linear-gradient(135deg, #0B1A2E 0%, #1B3556 60%, #2a4a6e 100%); }
.card__art[data-art="china"]   { background: linear-gradient(160deg, #0B1A2E 0%, #14294a 100%); }
.card__art[data-art="ipo"]     { background: linear-gradient(200deg, #0B1A2E 0%, #16304D 100%); }
.card__art svg { width: 100%; height: 100%; display: block; transition: transform .8s var(--ease); position: absolute; inset: 0; }
.card:hover .card__art svg { transform: scale(1.06); }
.card--feat .card__art { aspect-ratio: 16 / 11; }

.card__body { padding: 24px 24px 28px; display: grid; gap: 12px; align-content: start; }
.card__meta {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold);
}
.card h3 {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.005em;
}
.card--feat h3 { font-size: clamp(28px, 2.6vw, 40px); font-weight: 400; }
.card p { font-size: 14px; color: var(--slate); line-height: 1.5; }
.card__cta {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--navy);
  margin-top: 8px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  align-self: start;
  transition: padding-right .3s var(--ease);
}
.card:hover .card__cta { padding-right: 12px; }

@media (max-width: 1000px) {
  .insights__grid { grid-template-columns: 1fr 1fr; }
  .card--feat { grid-column: span 2; }
}
@media (max-width: 640px) {
  .insights__grid { grid-template-columns: 1fr; }
  .card--feat { grid-column: span 1; }
}

/* =========================================================
   CTA / Careers
   ========================================================= */
.cta {
  background: var(--navy);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(200,169,106,.15), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(22,48,77,.6), transparent 60%);
}
.cta__inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(100px, 12vw, 160px) var(--pad);
  text-align: center;
  display: grid; gap: 24px; justify-items: center;
}
.cta__inner .section-num { justify-content: center; }
.cta__inner h2 {
  font-size: clamp(40px, 6.4vw, 96px);
  letter-spacing: -.02em;
  max-width: 16ch;
}
.cta__inner p {
  max-width: 560px;
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 21px);
  color: rgba(245,241,234,.78);
}
.cta__btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.cta__btns .btn--line { color: var(--ivory); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  background: var(--paper);
  padding: clamp(80px, 10vw, 140px) var(--pad);
}
.contact__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
}
.contact__copy h2 {
  font-size: clamp(40px, 6vw, 84px);
  margin: 14px 0 16px;
  letter-spacing: -.02em;
}
.contact__copy p {
  font-family: var(--serif);
  font-size: clamp(17px, 1.3vw, 21px);
  color: var(--slate);
  margin-bottom: 32px;
  max-width: 440px;
}
.contact__list {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--line);
}
.contact__list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact__list span {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold);
}
.contact__list a {
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 24px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.contact__list a:hover { border-color: var(--gold); }

/* Form */
.contact__form {
  display: grid; gap: 22px;
  background: var(--ivory);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
  align-self: start;
}
.field {
  position: relative;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 22px 0 12px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 16px;
  color: var(--navy);
  outline: none;
  font-weight: 400;
  resize: none;
}
.field textarea { padding-top: 24px; }
.field label {
  position: absolute; left: 0; top: 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--slate);
  pointer-events: none;
  transition: transform .35s var(--ease), color .35s, font-size .35s;
  transform-origin: left top;
}
.field input:focus + label,
.field select:focus + label,
.field textarea:focus + label,
.field input:not(:placeholder-shown) + label,
.field select:valid + label,
.field textarea:not(:placeholder-shown) + label {
  transform: translateY(-22px) scale(.85);
  color: var(--gold);
}
.field i {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.field input:focus ~ i,
.field select:focus ~ i,
.field textarea:focus ~ i { transform: scaleX(1); }
.field--ta { grid-column: 1 / -1; }

.contact__form .btn { margin-top: 6px; }
.btn__sent { display: none; }
.contact__form.is-sent .btn { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.contact__form.is-sent .btn__lbl { display: none; }
.contact__form.is-sent .btn__sent { display: inline; }

.contact__priv { font-size: 12px; color: var(--slate); line-height: 1.5; }
.contact__priv a { border-bottom: 1px solid var(--gold); }

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; }
  .contact__list li { grid-template-columns: 80px 1fr; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.foot {
  background: var(--navy);
  color: var(--ivory);
  padding: clamp(60px, 8vw, 100px) var(--pad) 30px;
}
.foot__top {
  max-width: var(--max);
  margin: 0 auto 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-light);
}
.foot__brand .nav__logo { width: 220px; color: var(--ivory); }
.foot__tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--gold);
}

.foot__cols {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.4fr;
  gap: 40px;
}
.foot__cols h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.foot__cols ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.foot__cols a {
  font-family: var(--serif);
  font-size: 18px;
  color: rgba(245,241,234,.85);
  transition: color .25s;
}
.foot__cols a:hover { color: var(--gold); }
.foot__cols .muted { color: rgba(245,241,234,.5); margin-bottom: 14px; }

.foot__sub {
  display: flex; align-items: center;
  border-bottom: 1px solid var(--line-light);
  padding-bottom: 4px;
  transition: border-color .3s;
}
.foot__sub:focus-within { border-color: var(--gold); }
.foot__sub input {
  flex: 1; background: transparent; border: 0; outline: none;
  color: var(--ivory);
  font-family: var(--sans); font-size: 14px;
  padding: 10px 0;
}
.foot__sub button {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: grid; place-items: center;
  transition: background .3s, transform .3s;
}
.foot__sub button:hover { transform: rotate(-45deg); }
.foot__sub.is-sent button { background: var(--ivory); }

.foot__bot {
  max-width: var(--max);
  margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--mono); font-size: 11px; letter-spacing: .15em;
  color: rgba(245,241,234,.55);
}
.foot__bot ul { display: flex; gap: 18px; list-style: none; padding: 0; margin: 0; }
.foot__bot a:hover { color: var(--gold); }
.foot__social a {
  width: 28px; height: 28px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  display: inline-grid; place-items: center;
  font-family: var(--serif); font-style: italic; font-size: 14px;
  letter-spacing: 0;
  transition: border-color .3s, color .3s, background .3s;
}
.foot__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

@media (max-width: 900px) {
  .foot__cols { grid-template-columns: 1fr 1fr; }
  .foot__top { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 540px) {
  .foot__cols { grid-template-columns: 1fr; }
}

/* =========================================================
   Drawer
   ========================================================= */
.drawer {
  position: fixed; inset: 0;
  background: var(--navy);
  color: var(--ivory);
  z-index: 40;
  padding: 100px var(--pad) 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  transform: translateY(-100%);
  transition: transform .55s var(--ease);
}
.drawer.is-open { transform: none; }
.drawer nav { display: grid; gap: 20px; }
.drawer nav a {
  font-family: var(--serif);
  font-size: 36px;
  border-bottom: 1px solid var(--line-light);
  padding-bottom: 14px;
}
.drawer__foot { display: flex; justify-content: space-between; align-items: center; }

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