/* @section: design-system */
:root {
  color-scheme: light;
  --ink: #1a1b1e;
  --muted: #5c5f66;
  --navy: #15171b;
  --cyan: #ff6a63;
  --cyan-soft: #fff1ef;
  --lavender: #f6eeee;
  --ice: #f8f7f6;
  --white: #ffffff;
  --accent: #d6162a;
  --accent-2: #ff5b3e;
  --label: #e2142c;
  --link: #d6162a;
  --line: rgba(20, 20, 22, .13);
  --glass: rgba(255, 255, 255, .8);
  --shadow: 0 28px 70px rgba(20, 20, 20, .16);
  --shadow-soft: 0 14px 42px rgba(20, 20, 20, .1);
  --radius-s: 12px;
  --radius-m: 24px;
  --radius-l: 42px;
  --container: min(1200px, calc(100% - 40px));
  --font-sans: "Avenir Next", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, system-ui, sans-serif;
  --font-serif: "Iowan Old Style", "Yu Mincho", "Hiragino Mincho ProN", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ice);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.85;
  letter-spacing: .02em;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 8% 16%, rgba(214, 22, 42, .08), transparent 28%),
    radial-gradient(circle at 88% 30%, rgba(20, 20, 22, .05), transparent 32%),
    linear-gradient(rgba(20, 20, 22, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 20, 22, .025) 1px, transparent 1px);
  background-size: auto, auto, 56px 56px, 56px 56px;
}
img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, h4, p, ul, ol, dl, dd, figure { margin-top: 0; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
::selection { background: rgba(214, 22, 42, .22); color: var(--ink); }

/* @section: accessibility */
.skip-link {
  position: fixed; left: 12px; top: -80px; z-index: 1000;
  padding: 12px 18px; border-radius: 10px; background: var(--navy); color: white;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* @section: header */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  height: 78px; display: flex; align-items: center;
  background: rgba(248, 247, 246, .85); border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px); transition: box-shadow .3s ease, background .3s ease;
}
.site-header.is-scrolled { background: rgba(255,255,255,.96); box-shadow: 0 10px 35px rgba(20,20,20,.1); }
.nav-shell { width: var(--container); margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; min-width: 220px; }
.brand img { width: 118px; max-height: 48px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1.05; font-family: "Times New Roman", Times, serif; }
.brand-copy strong { font-size: .9rem; letter-spacing: .08em; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: .64rem; letter-spacing: .16em; }
.brand-bird { display: inline-flex; align-items: center; }
.primary-nav { display: flex; align-items: center; gap: clamp(12px, 2vw, 30px); }
.primary-nav a { position: relative; text-decoration: none; font-size: .78rem; font-weight: 700; letter-spacing: .08em; }
.primary-nav a:not(.entry-link)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--accent); transition: right .3s ease; }
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { right: 0; }
.entry-link { padding: 11px 18px; border-radius: 999px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: white; box-shadow: 0 10px 25px rgba(214,22,42,.3); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: white; cursor: pointer; }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--navy); transition: transform .25s ease, opacity .25s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* @section: layout */
main { padding-top: 78px; }
.container { width: var(--container); margin-inline: auto; }
.section { position: relative; padding: clamp(86px, 10vw, 150px) 0; }
.section--compact { padding: clamp(64px, 8vw, 100px) 0; }
.section--white { background: rgba(255,255,255,.72); }
.section--navy { overflow: hidden; background: var(--navy); color: white; }
.section--wash { background: linear-gradient(135deg, rgba(255,241,239,.9), rgba(246,238,238,.72)); }
.section--brand { overflow: hidden; background: linear-gradient(150deg, #b3121f 0%, #e2142c 55%, #ff5b3e 130%); color: white; }
.section--brand .section-head p, .section--brand .section-head__label, .section--brand .eyebrow { color: rgba(255,255,255,.88); }
.section--brand .section-title { color: white; }
.section-head { display: grid; grid-template-columns: .75fr 1.25fr; gap: 40px; align-items: end; margin-bottom: clamp(46px, 7vw, 84px); }
.section-head__label, .eyebrow { color: var(--label); font-size: .72rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.section-title { margin: 8px 0 0; font-family: var(--font-serif); font-size: clamp(1.6rem, 3.4vw, 2.9rem); line-height: 1.22; letter-spacing: -.02em; font-weight: 500; }
.section-head p { max-width: 620px; margin: 0; color: var(--muted); }
.section--navy .section-head p, .section--navy .section-head__label { color: #ffd3ce; }
.lead { color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.2rem); }
.ornament-line { width: 110px; height: 3px; margin: 28px 0; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }

/* @section: buttons */
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 54px; padding: 13px 22px; border: 1px solid var(--navy); border-radius: 999px; background: var(--navy); color: white; font-weight: 800; font-size: .86rem; text-decoration: none; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.button::after { content: "→"; transition: transform .25s ease; }
.button:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.button:hover::after { transform: translateX(5px); }
.button--accent { border-color: var(--accent); background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.button--ghost { background: rgba(255,255,255,.7); color: var(--navy); }
.button--light { border-color: white; background: white; color: var(--navy); }
.text-link { display: inline-flex; gap: 10px; align-items: center; color: var(--link); font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: 5px; }

/* @section: hero-slideshow */
.hero { position: relative; min-height: min(830px, calc(100svh - 78px)); overflow: hidden; display: grid; align-items: end; color: white; }
.hero-slideshow { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: #0c0d10; }
.hero-slideshow__slide {
  position: absolute; inset: 0; opacity: 0; background-position: center; background-size: cover;
  transform: scale(1.06); transition: opacity 1.6s ease, transform 8s linear;
}
.hero-slideshow__slide.is-active { opacity: 1; transform: scale(1); }
.hero-slideshow::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,.04) 0%, rgba(10,10,12,.16) 55%, rgba(10,10,12,.6) 100%);
}
.hero-slideshow__dots { position: absolute; right: 24px; bottom: 30px; z-index: 2; display: flex; gap: 9px; }
.hero-slideshow__dots span { width: 22px; height: 3px; background: rgba(255,255,255,.35); transition: background .3s ease; }
.hero-slideshow__dots span.is-active { background: var(--accent-2); }
.hero__inner { position: relative; z-index: 2; width: var(--container); margin: auto; padding: 12vh 0 9vh; display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 5vw; }
.hero__copy { text-shadow: 0 2px 22px rgba(0,0,0,.4); }
.hero__copy .eyebrow { color: #ffb3ac; }
.hero__copy h1 { max-width: 780px; margin: 14px 0 22px; font-size: clamp(2.2rem, 5vw, 4.6rem); line-height: 1.08; letter-spacing: -.03em; font-weight: 650; }
.hero__copy h1 span { display: block; margin-top: 10px; font-family: var(--font-serif); font-size: .42em; line-height: 1.4; letter-spacing: .04em; font-weight: 500; color: rgba(255,255,255,.85); }
.hero__copy .lead { max-width: 560px; color: rgba(255,255,255,.82); }
.hero__stats { display: flex; gap: 14px; justify-self: end; }
.hero__stat { padding: 16px 20px; border-radius: 18px; background: rgba(255,255,255,.94); box-shadow: var(--shadow-soft); }
.hero__stat strong { display: block; font-size: 1.7rem; line-height: 1; color: var(--ink); }
.hero__stat small { color: var(--muted); }
.scroll-cue { position: absolute; left: 24px; bottom: 34px; z-index: 2; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.75); font-size: .65rem; letter-spacing: .18em; writing-mode: vertical-rl; }
.scroll-cue::after { content: ""; width: 1px; height: 70px; background: linear-gradient(white, transparent); animation: scrollPulse 2s ease-in-out infinite; }

/* @section: marquee */
.marquee { overflow: hidden; border-block: 1px solid var(--line); background: rgba(255,255,255,.6); }
.marquee__track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee__group { display: flex; flex-shrink: 0; align-items: center; gap: 40px; padding: 18px 20px; color: var(--navy); font-size: .8rem; font-weight: 800; letter-spacing: .16em; }
.marquee__group span::after { content: "✦"; margin-left: 40px; color: var(--accent); }

/* @section: cards */
.recruit-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.recruit-card { position: relative; overflow: hidden; min-height: 260px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-m); background: rgba(255,255,255,.78); box-shadow: var(--shadow-soft); }
.recruit-card:nth-child(1), .recruit-card:nth-child(4) { grid-column: span 7; }
.recruit-card:nth-child(2), .recruit-card:nth-child(3) { grid-column: span 5; }
.recruit-card::before { content: attr(data-number); position: absolute; right: 18px; top: 4px; color: rgba(20,20,22,.06); font-size: 7rem; font-weight: 900; line-height: 1; }
.recruit-card h3 { position: relative; margin: 8px 0 16px; font-family: var(--font-serif); font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 500; }
.recruit-card p { position: relative; max-width: 650px; color: var(--muted); }
.job-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; }
.job-card { position: relative; overflow: hidden; min-height: 420px; padding: clamp(30px,5vw,58px); border-radius: var(--radius-l); color: white; background: linear-gradient(150deg, #8a0f1c 8%, #d6162a 55%, #ff6a4d 130%); text-decoration: none; box-shadow: var(--shadow); transition: transform .4s ease; background-size: cover; background-position: center; }
.job-card:nth-child(2) { background: linear-gradient(150deg, #6d0f1f 8%, #b3121f 55%, #e2432f 130%); }
.job-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,10,12,.55), rgba(10,10,12,.05)); }
.job-card:hover { transform: translateY(-8px); }
.job-card__number { position: relative; font-size: 5rem; color: rgba(255,255,255,.28); font-weight: 900; line-height: 1; }
.job-card h3 { position: relative; margin: 80px 0 18px; font-family: var(--font-serif); font-size: clamp(1.6rem, 3vw, 2.6rem); line-height: 1.25; font-weight: 500; }
.job-card p { position: relative; max-width: 470px; color: rgba(255,255,255,.9); }
.job-card::after { content: "VIEW ROLE →"; position: absolute; right: 28px; bottom: 24px; font-size: .7rem; font-weight: 800; letter-spacing: .16em; color: white; }

/* @section: photo gallery */
.snap-gallery { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 120px; gap: 14px; }
.snap-gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; filter: saturate(.94); transition: transform .5s ease, filter .5s ease; }
.snap-gallery a:hover img, .snap-gallery figure:hover img { transform: scale(1.04); filter: saturate(1.05); }
.snap-gallery > * { position: relative; overflow: hidden; border-radius: 16px; margin: 0; }
.snap-gallery > *:nth-child(1) { grid-column: span 3; grid-row: span 2; }
.snap-gallery > *:nth-child(2) { grid-column: span 3; grid-row: span 3; }
.snap-gallery > *:nth-child(3) { grid-column: span 2; grid-row: span 2; }
.snap-gallery > *:nth-child(4) { grid-column: span 2; grid-row: span 2; }
.snap-gallery > *:nth-child(5) { grid-column: span 2; grid-row: span 3; }
.snap-gallery > *:nth-child(6) { grid-column: span 3; grid-row: span 2; }
.snap-gallery > *:nth-child(7) { grid-column: span 3; grid-row: span 2; }
.snap-gallery figcaption { position: absolute; left: 12px; right: 12px; bottom: 10px; padding: 6px 10px; border-radius: 999px; background: rgba(10,10,12,.62); color: white; font-size: .68rem; font-weight: 700; letter-spacing: .06em; width: fit-content; }

/* @section: interviews */
.people-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.person-card { grid-column: span 3; overflow: hidden; border-radius: var(--radius-m); background: white; box-shadow: var(--shadow-soft); transform-style: preserve-3d; transition: box-shadow .3s ease; }
.person-card:nth-child(even) { margin-top: 52px; }
.person-card:hover { box-shadow: var(--shadow); }
.person-card__image { position: relative; overflow: hidden; aspect-ratio: 4/5; background: var(--cyan-soft); }
.person-card__image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.86) contrast(.98); transition: transform .6s ease; }
.person-card:hover img { transform: scale(1.04); }
.person-card__body { padding: 23px; }
.person-card h3 { margin: 0; font-size: 1.12rem; }
.person-card .roman { color: var(--label); font-size: .68rem; font-weight: 800; letter-spacing: .12em; }
.person-card p { margin: 12px 0 0; color: var(--muted); font-size: .8rem; line-height: 1.65; }
.profile { display: grid; grid-template-columns: minmax(280px,.8fr) 1.2fr; gap: clamp(34px,6vw,90px); align-items: start; padding: clamp(70px,9vw,125px) 0; border-bottom: 1px solid var(--line); }
.profile:nth-child(even) { grid-template-columns: 1.2fr minmax(280px,.8fr); }
.profile:nth-child(even) .profile__media { order: 2; }
.profile__photo { overflow: hidden; border-radius: var(--radius-l); box-shadow: var(--shadow); }
.profile__photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.profile__identity { display: flex; align-items: end; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--line); padding-bottom: 22px; }
.profile__identity h2 { margin: 6px 0 0; font-family: var(--font-serif); font-size: clamp(1.5rem,2.6vw,2.3rem); line-height: 1.2; font-weight: 500; }
.profile__meta { color: var(--muted); font-size: .84rem; text-align: right; }
.profile__text { margin-top: 34px; }
.profile__text p { color: var(--muted); }

/* video block: real <video> + a comment beside the photo */
.profile__video-row { display: flex; align-items: flex-start; gap: 16px; margin-top: 22px; }
.profile__video-row video { flex: 1 1 auto; width: 100%; aspect-ratio: 16/9; border-radius: var(--radius-m); background: #0c0d10; box-shadow: var(--shadow-soft); }
.profile__comment { flex: 0 0 auto; width: 168px; padding: 16px; border-radius: 16px 16px 16px 4px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: white; font-size: .78rem; font-weight: 700; line-height: 1.6; box-shadow: var(--shadow-soft); }
.video-placeholder { position: relative; margin-top: 22px; aspect-ratio: 16/9; display: grid; place-items: center; overflow: hidden; border: 1px dashed rgba(20,20,22,.28); border-radius: var(--radius-m); background: linear-gradient(135deg, var(--cyan-soft), var(--lavender)); text-align: center; }
.video-placeholder::before { content: ""; width: 70px; height: 70px; border-radius: 50%; border: 1px solid rgba(20,20,22,.25); background: rgba(255,255,255,.72); }
.video-placeholder::after { content: "▶"; position: absolute; top: 50%; left: 50%; transform: translate(-42%,-54%); color: var(--navy); font-size: 1.15rem; }
.video-placeholder__copy { position: absolute; bottom: 18px; left: 18px; right: 18px; padding: 10px; border-radius: 12px; background: rgba(255,255,255,.85); font-size: .78rem; font-weight: 800; }

/* @section: subpage-hero */
.page-hero { position: relative; overflow: hidden; min-height: 420px; display: grid; align-items: center; background: linear-gradient(135deg, var(--cyan-soft), var(--lavender)); }
.page-hero::before { content: ""; position: absolute; width: 520px; aspect-ratio: 1; right: -150px; top: -180px; border: 1px solid rgba(20,20,22,.12); border-radius: 50%; box-shadow: 0 0 0 90px rgba(255,255,255,.2), 0 0 0 180px rgba(255,255,255,.14); }
.page-hero--image { min-height: 520px; color: white; background-position: center; background-size: cover; }
.page-hero--image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,10,12,.9), rgba(10,10,12,.35)); }
.page-hero__inner { position: relative; z-index: 2; width: var(--container); margin: auto; padding: 70px 0; }
.page-hero h1 { max-width: 760px; margin: 10px 0 18px; font-family: var(--font-serif); font-size: clamp(1.8rem,3.6vw,3.1rem); line-height: 1.2; letter-spacing: -.02em; font-weight: 500; }
.page-hero p { max-width: 620px; color: var(--muted); }
.page-hero--image p { color: rgba(255,255,255,.82); }
.breadcrumb { margin-bottom: 32px; font-size: .72rem; }
.breadcrumb a { color: inherit; text-underline-offset: 4px; }

/* @section: role-pages */
.notice { display: flex; gap: 14px; align-items: flex-start; margin: 0 0 34px; padding: 17px 20px; border: 1px solid rgba(214,22,42,.26); border-radius: 14px; background: rgba(255,241,239,.82); color: #7c1f1a; font-size: .82rem; }
.notice strong { white-space: nowrap; }
.role-intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(35px,8vw,120px); align-items: start; }
.role-intro__number { font-size: clamp(7rem,18vw,16rem); line-height: .75; color: rgba(214,22,42,.14); font-weight: 900; }
.role-intro h2 { font-family: var(--font-serif); font-size: clamp(1.5rem,3vw,2.5rem); line-height: 1.4; font-weight: 500; }
.role-intro p { color: var(--muted); }
.info-list { border-top: 1px solid var(--line); }
.info-row { display: grid; grid-template-columns: 240px 1fr; gap: 30px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.info-row dt { font-weight: 800; }
.info-row dd { margin: 0; color: var(--muted); }
.info-row ul { margin: 0; padding-left: 1.2em; }

/* @section: global */
.global-intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px,7vw,100px); align-items: start; }
.global-intro__map { position: relative; margin: 0; min-height: 390px; overflow: hidden; border-radius: var(--radius-l); box-shadow: var(--shadow-soft); }
.global-intro__map img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; }
.global-intro__map::before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,10,12,.78) 0%, transparent 45%); }
.global-intro__map::after { content: "TOKYO  •  SINGAPORE  •  KUALA LUMPUR  •  JAKARTA  •  BANGKOK  •  PHNOM PENH  •  NEW DELHI  •  LOS ANGELES  •  NEW YORK"; position: absolute; left: 7%; right: 7%; bottom: 8%; color: rgba(255,255,255,.92); font-size: .68rem; font-weight: 800; letter-spacing: .14em; line-height: 1.8; }
.office-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.office-card { overflow: hidden; min-height: 100%; border-radius: var(--radius-m); background: white; box-shadow: var(--shadow-soft); transition: transform .3s ease; }
.office-card:hover { transform: translateY(-6px); }
.office-card img { width: 100%; aspect-ratio: 2.15/1; object-fit: cover; }
.office-card__body { padding: 23px; }
.office-card__index { color: var(--label); font-size: .7rem; font-weight: 800; letter-spacing: .15em; }
.office-card h3 { margin: 7px 0 10px; font-family: var(--font-serif); font-size: 1.4rem; font-weight: 500; }
.office-card p { color: var(--muted); font-size: .78rem; line-height: 1.7; }
.office-card a { color: var(--link); font-size: .78rem; font-weight: 800; text-underline-offset: 4px; }

/* @section: entry */
.entry-notes { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; counter-reset: notes; }
.entry-note { position: relative; padding: 26px; border-top: 2px solid var(--accent); background: rgba(255,255,255,.7); }
.entry-note::before { counter-increment: notes; content: "0" counter(notes); display: block; margin-bottom: 24px; color: var(--label); font-size: .75rem; font-weight: 800; letter-spacing: .14em; }
.entry-note p { margin: 0; color: var(--muted); font-size: .86rem; }
.form-frame { margin-top: 50px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-m); background: white; box-shadow: var(--shadow); }
.form-frame__bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 22px; background: var(--navy); color: white; }
.form-frame__bar small { color: rgba(255,255,255,.7); }
.form-frame iframe { width: 100%; min-height: 1100px; border: 0; background: white; }

/* @section: message-and-cta */
.message-block { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(45px,8vw,120px); }
.message-block__quote { font-family: var(--font-serif); font-size: clamp(1.5rem,3vw,2.6rem); line-height: 1.5; font-weight: 500; }
.message-block__body p { color: var(--muted); }
.message-portrait { overflow: hidden; border-radius: var(--radius-l); box-shadow: var(--shadow); }
.message-portrait img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: saturate(.9); }
.cta { position: relative; overflow: hidden; padding: clamp(60px,8vw,110px); border-radius: var(--radius-l); background: linear-gradient(135deg, #15171b, #55151b); color: white; }
.cta--brand { background: linear-gradient(150deg, #b3121f 0%, #e2142c 55%, #ff5b3e 130%); }
.cta--brand .eyebrow { color: rgba(255,255,255,.85); }
.cta::before { content: ""; position: absolute; width: 360px; aspect-ratio: 1; right: -80px; top: -120px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.04); }
.cta h2 { position: relative; max-width: 700px; margin-bottom: 18px; font-family: var(--font-serif); font-size: clamp(1.7rem,3.6vw,3.1rem); line-height: 1.25; font-weight: 500; }
.cta p, .cta .button-row { position: relative; }
.cta p { color: rgba(255,255,255,.78); }

/* @section: footer */
.site-footer { padding: 62px 0 28px; background: linear-gradient(150deg, #b3121f 0%, #e2142c 55%, #ff5b3e 130%); color: white; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; }
.site-footer .brand { color: white; }
.site-footer .brand-copy small { color: rgba(255,255,255,.78); }
.site-footer p, .site-footer a { color: rgba(255,255,255,.82); font-size: .78rem; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { text-underline-offset: 4px; transition: color .2s ease; }
.footer-links a:hover { color: white; text-decoration-color: white; }
.footer-contact { margin-top: 14px; line-height: 1.8; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.25); }

/* @section: motion */
.js-ready [data-reveal] { opacity: 0; transform: translateY(36px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.75,.2,1); }
.js-ready [data-reveal="left"] { transform: translateX(-45px); }
.js-ready [data-reveal="right"] { transform: translateX(45px); }
.js-ready [data-reveal].is-visible { opacity: 1; transform: none; }
[data-stagger] > * { transition-delay: calc(var(--i, 0) * 90ms); }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes scrollPulse { 0%,100% { opacity:.25; transform:scaleY(.6); transform-origin:top; } 50% { opacity:1; transform:scaleY(1); } }

/* @section: responsive */
@media (max-width: 1040px) {
  .menu-toggle { display: block; }
  .primary-nav { position: fixed; inset: 78px 0 auto; display: grid; gap: 0; padding: 16px 20px 28px; background: rgba(255,255,255,.98); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-soft); transform: translateY(-130%); visibility: hidden; transition: transform .35s ease, visibility .35s; }
  .primary-nav.is-open { transform: none; visibility: visible; }
  .primary-nav a { padding: 13px 6px; border-bottom: 1px solid var(--line); }
  .primary-nav .entry-link { margin-top: 14px; border: 0; text-align: center; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__stats { justify-self: start; }
  .person-card { grid-column: span 6; }
  .person-card:nth-child(even) { margin-top: 0; }
  .office-grid { grid-template-columns: repeat(2, 1fr); }
  .snap-gallery { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 760px) {
  :root { --container: min(100% - 28px, 1200px); }
  html { scroll-padding-top: 70px; }
  main { padding-top: 70px; }
  .site-header { height: 70px; }
  .primary-nav { top: 70px; }
  .brand { min-width: auto; }
  .brand img { width: 90px; }
  .brand-copy small { display: none; }
  .section-head, .message-block, .role-intro, .global-intro { grid-template-columns: 1fr; }
  .message-block { gap: 32px; }
  .section-head { gap: 20px; }
  .hero { min-height: 620px; }
  .hero__inner { padding: 9vh 0 7vh; }
  .hero__copy h1 { font-size: clamp(2.1rem,9vw,2.8rem); }
  .hero__stats { flex-wrap: wrap; }
  .scroll-cue { display: none; }
  .recruit-card, .recruit-card:nth-child(n) { grid-column: 1 / -1; min-height: 230px; }
  .job-grid { grid-template-columns: 1fr; }
  .job-card { min-height: 360px; }
  .people-grid { grid-template-columns: 1fr; }
  .person-card { grid-column: 1; }
  .profile, .profile:nth-child(even) { grid-template-columns: 1fr; }
  .profile:nth-child(even) .profile__media { order: initial; }
  .profile__identity { display: block; }
  .profile__meta { margin-top: 15px; text-align: left; }
  .profile__video-row { flex-direction: column; }
  .profile__comment { width: auto; border-radius: 16px; }
  .office-grid, .entry-notes { grid-template-columns: 1fr; }
  .snap-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .snap-gallery > * { grid-column: span 1 !important; grid-row: span 1 !important; }
  .info-row { grid-template-columns: 1fr; gap: 8px; }
  .form-frame iframe { min-height: 1250px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
  .page-hero { min-height: 360px; }
  .page-hero h1 { font-size: clamp(1.7rem,8vw,2.3rem); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .js-ready [data-reveal] { opacity: 1; transform: none; }
  .hero-slideshow__slide { transition: opacity .4s ease; transform: none; }
}
