:root {
    --bg: #070708;
    --surface: #0d0d0f;
    --surface-2: #121214;
    --ivory: #f2ede4;
    --muted: #aaa499;
    --muted-2: #7f7a71;
    --red: #e0383a;
    --red-glow: rgba(224, 56, 58, 0.55);
    --gold: #c8b08a;
    --gold-bright: #e4d3b2;
    --line: rgba(200, 176, 138, 0.16);
    --line-soft: rgba(255, 255, 255, 0.06);
    --radius: 4px;
    --serif: "Cormorant Garamond", "Times New Roman", serif;
    --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg);
    color: var(--ivory);
    font-family: var(--sans);
    font-weight: 400;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* Shared typography */
.eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    font-size: 13px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold);
}
.eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--red); }

.container-max { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 48px; }

/* ================= NAV ================= */
nav {
    position: fixed; top: 0; width: 100%; padding: 0 48px; height: 76px;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(7, 7, 8, 0.72); backdrop-filter: saturate(160%) blur(18px); -webkit-backdrop-filter: saturate(160%) blur(18px);
    z-index: 1000; border-bottom: 1px solid var(--line-soft);
    transition: height 0.4s var(--ease), background 0.4s;
}
nav.scrolled { height: 62px; background: rgba(7, 7, 8, 0.9); }
.logo { display: flex; align-items: center; text-decoration: none; height: 100%; flex-shrink: 0; }
.logo img { height: 32px; width: auto; object-fit: contain; }

.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a {
    position: relative; color: var(--ivory); text-decoration: none;
    font-size: 13px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
    opacity: 0.72; transition: opacity 0.3s; white-space: nowrap; padding: 6px 0;
}
.nav-links a::after {
    content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
    background: var(--red); transform: scaleX(0); transform-origin: right; transition: transform 0.5s var(--ease);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after, .nav-links a.current::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.current { opacity: 1; }

/* ================= HERO ================= */
.hero {
    min-height: 100vh; width: 100%; position: relative; display: flex; align-items: center;
    padding: 120px 0 80px;
    background-color: var(--bg);
    background-image:
        var(--noise),
        radial-gradient(ellipse at 18% 45%, rgba(200, 176, 138, 0.08) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 60%, rgba(224, 56, 58, 0.06) 0%, transparent 45%);
    background-size: 200px 200px, 100% 100%, 100% 100%;
    perspective: 2000px; overflow: hidden;
}
.hero-container {
    width: 100%; max-width: 1480px; margin: 0 auto; padding: 0 48px;
    display: grid; grid-template-columns: 0.85fr 1.15fr; align-items: center; gap: 72px; z-index: 2;
}

@keyframes riseIn { 0% { opacity: 0; transform: translateY(28px); filter: blur(8px); } 100% { opacity: 1; transform: none; filter: blur(0); } }
.rise { opacity: 0; animation: riseIn 1.4s var(--ease) forwards; }

.hero .eyebrow { margin-bottom: 36px; }
.hero h1 {
    font-family: var(--serif); font-weight: 400;
    font-size: clamp(56px, 6.2vw, 116px); line-height: 0.98; letter-spacing: -0.015em;
    color: var(--ivory); margin-bottom: 40px;
}
.hero h1 span { display: block; }
.hero h1 em { font-style: italic; color: var(--gold-bright); }
.hero p {
    font-size: clamp(16px, 1.05vw, 19px); color: var(--muted); line-height: 1.8;
    max-width: 520px; margin-bottom: 52px;
}

.btn {
    display: inline-flex; align-items: center; gap: 18px;
    padding: 18px 34px; border: 1px solid rgba(200, 176, 138, 0.5);
    color: var(--ivory); background: transparent; text-decoration: none;
    font-size: 13px; font-weight: 500; letter-spacing: 0.17em; text-transform: uppercase;
    position: relative; overflow: hidden; isolation: isolate; transition: color 0.5s var(--ease), border-color 0.5s;
}
.btn::before {
    content: ''; position: absolute; inset: 0; background: var(--gold);
    transform: scaleX(0); transform-origin: left; transition: transform 0.6s var(--ease); z-index: -1;
}
.btn:hover { color: #000; border-color: var(--gold); }
.btn:hover::before { transform: scaleX(1); }
.btn .arrow { transition: transform 0.5s var(--ease); }
.btn:hover .arrow { transform: translateX(6px); }

/* Map */
.hero-map-side {
    position: relative; height: 64vh; min-height: 440px; width: 100%;
    display: flex; align-items: center; justify-content: center;
    perspective: 1500px; opacity: 0; animation: riseIn 1.8s var(--ease) 0.5s forwards;
}
.hero-map-side::before {
    content: ''; position: absolute; top: 50%; left: 50%; width: 75%; height: 75%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(224, 56, 58, 0.12) 0%, transparent 60%);
    filter: blur(60px); z-index: -1;
}
.map-wrapper { width: 100%; height: 100%; position: relative; transform-style: preserve-3d; transition: transform 0.2s ease-out; }
.map-plane {
    position: absolute; inset: 0;
    background-image: linear-gradient(180deg, rgba(7,7,8,0.1), rgba(7,7,8,0.35)), url('/img/map.png');
    background-size: cover; background-position: center; border-radius: var(--radius);
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.9), 0 0 0 1px var(--line) inset;
}
.map-frame { position: absolute; inset: 14px; border: 1px solid var(--line); pointer-events: none; transform: translateZ(10px); }

.map-marker { position: absolute; display: flex; align-items: center; gap: 12px; transform: translateZ(60px); cursor: default; }
.marker-dot { width: 10px; height: 10px; background: var(--red); border-radius: 50%; box-shadow: 0 0 18px var(--red-glow); position: relative; }
.marker-dot::after {
    content: ''; position: absolute; top: 50%; left: 50%; width: 10px; height: 10px;
    transform: translate(-50%, -50%); border: 1px solid var(--red); border-radius: 50%;
    animation: ripple 2.6s var(--ease) infinite;
}
.marker-label {
    font-size: 12px; font-weight: 500; color: var(--ivory);
    background: rgba(7,7,8,0.82); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    padding: 9px 16px; border: 1px solid var(--line); border-left: 2px solid var(--red);
    text-transform: uppercase; letter-spacing: 0.14em; white-space: nowrap; transition: 0.4s var(--ease);
}
.map-marker:hover .marker-label { background: var(--red); border-color: var(--red); }

.pin-hp { top: 28%; left: 30%; }
.pin-yoyogi { top: 38%; left: 20%; flex-direction: row-reverse; }
.pin-yoyogi .marker-label { border-left: 1px solid var(--line); border-right: 2px solid var(--red); }
.pin-city { top: 39%; left: 40%; }
.pin-chad { top: 52%; left: 62%; }

.hud-card {
    position: absolute; padding: 14px 18px; background: rgba(7, 7, 8, 0.78);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--line); color: var(--muted);
    font-size: 12px; letter-spacing: 0.13em; text-transform: uppercase;
    pointer-events: none; transform: translateZ(30px);
}
.hud-card.top-left { top: 32px; left: 32px; }
.hud-card.bottom-right { bottom: 32px; right: 32px; min-width: 200px; }
.hud-row { margin-bottom: 4px; }
.hud-title { color: var(--gold); font-weight: 500; margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.hud-stat { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 5px; color: var(--muted); }
.hud-stat strong { color: var(--ivory); font-weight: 500; }
.dot { width: 5px; height: 5px; border-radius: 50%; display: inline-block; margin-right: 8px; background: var(--red); box-shadow: 0 0 8px var(--red-glow); animation: blink 2.4s infinite; }
@keyframes ripple { 0% { width: 10px; height: 10px; opacity: 0.9; } 100% { width: 54px; height: 54px; opacity: 0; } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.scroll-cue {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    width: 1px; height: 56px; background: linear-gradient(var(--red), transparent); opacity: 0.8;
    animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue { 0% { transform: translateX(-50%) scaleY(0); transform-origin: top; } 50% { transform: translateX(-50%) scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: translateX(-50%) scaleY(0); transform-origin: bottom; } }

/* ================= ABOUT ================= */
.about-section {
    padding: 200px 0 180px; background-color: var(--bg);
    background-image: var(--noise), radial-gradient(ellipse at 50% 100%, rgba(200, 176, 138, 0.05) 0%, transparent 55%);
    background-size: 200px 200px, 100% 100%;
    border-top: 1px solid var(--line-soft);
}
.text-container { max-width: 1080px; margin: 0 auto; text-align: center; padding: 0 48px; }
.text-container .eyebrow { margin-bottom: 48px; }
.reveal-h2 {
    font-family: var(--serif); font-weight: 400;
    font-size: clamp(34px, 4.2vw, 62px); line-height: 1.18; letter-spacing: -0.01em;
    color: transparent;
    background-image: linear-gradient(to right, var(--ivory) 50%, #2a2926 50%);
    background-size: 200% 100%; background-position: 100%;
    -webkit-background-clip: text; background-clip: text;
    transition: background-position 2.2s var(--ease);
}
.reveal-h2 em { font-style: italic; }
.reveal-h2.active { background-position: 0%; }

.stats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    margin-top: 120px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stat { padding: 48px 16px; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat h3 { font-family: var(--serif); font-size: 68px; font-weight: 400; line-height: 1; margin-bottom: 14px; color: var(--gold-bright); }
.stat p { font-size: 13px; letter-spacing: 0.17em; text-transform: uppercase; color: var(--muted); }

/* ================= SECTION HEAD ================= */
.section-head { margin-bottom: 120px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; }
.section-head .eyebrow { margin-bottom: 24px; }
.section-head h2 {
    font-family: var(--serif); font-weight: 400;
    font-size: clamp(44px, 5vw, 80px); line-height: 1; letter-spacing: -0.015em; color: var(--ivory);
}
.section-head h2 em { font-style: italic; color: var(--gold-bright); }
.section-head p { font-size: 18px; color: var(--muted); line-height: 1.8; max-width: 480px; justify-self: end; }

/* ================= SECTORS ================= */
.sectors-section {
    padding: 180px 0 60px; background-color: #09090a;
    background-image: var(--noise), radial-gradient(ellipse at 90% 5%, rgba(200, 176, 138, 0.05) 0%, transparent 40%);
    background-size: 200px 200px, 100% 100%;
}

.sector-row {
    display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: 96px;
    margin-bottom: 160px; opacity: 0; transform: translateY(48px);
    transition: opacity 1.4s var(--ease), transform 1.4s var(--ease);
}
.sector-row.visible { opacity: 1; transform: none; }
.sector-row:nth-child(even) .sector-visual { order: 2; }

.sector-visual { height: 620px; border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: 0 40px 80px -30px rgba(0,0,0,0.9); }
.sector-visual::after { content: ''; position: absolute; inset: 16px; border: 1px solid rgba(228, 211, 178, 0.22); pointer-events: none; }
.sector-img { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 2.4s var(--ease); filter: saturate(0.9); }
.sector-row:hover .sector-img { transform: scale(1.04); }

.sector-num {
    display: flex; align-items: baseline; gap: 16px; margin-bottom: 28px;
    font-family: var(--serif); font-size: 22px; font-style: italic; color: var(--gold);
}
.sector-num::before { content: ''; width: 7px; height: 7px; background: var(--red); align-self: center; }
.sector-num::after { content: ''; flex: 1; height: 1px; background: var(--line); transform: translateY(-6px); }
.sector-info h3, .sector-info h2 {
    font-family: var(--serif); font-weight: 400;
    font-size: clamp(36px, 3.3vw, 54px); line-height: 1.05; letter-spacing: -0.01em;
    margin-bottom: 28px; color: var(--ivory);
}
.sector-info p { font-size: 18px; line-height: 1.85; color: var(--muted); margin-bottom: 36px; }
.sector-info p strong { color: var(--ivory); font-weight: 400; }
.tag-list { display: flex; flex-wrap: wrap; gap: 0; border-top: 1px solid var(--line); }
.tag {
    font-size: 12px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ivory);
    padding: 16px 20px 0 0; margin-right: 20px; position: relative;
}
.tag:not(:last-child)::after { content: '·'; position: absolute; right: -2px; color: var(--gold); }

.markets { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); margin-bottom: 32px; }
.market { padding: 16px 14px; text-align: center; }
.market + .market { border-left: 1px solid var(--line); }
.market b { display: block; font-family: var(--serif); font-size: 26px; font-weight: 500; color: var(--gold-bright); line-height: 1.1; }
.market span { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

.bg-hosp { background-image: url('/img/hospitality.png'); }
.bg-well { background-image: url('/img/pharmacy.png'); }
.bg-prop { background-image: url('/img/350queen.png'); }
.bg-ind { background-image: url('/img/industrials.jpg'); }
.bg-res { background-image: url('/img/resources.jpg'); }

/* Private asset visual */
.bg-invest {
    background:
        radial-gradient(ellipse at 45% 45%, rgba(200, 176, 138, 0.12) 0%, transparent 60%),
        linear-gradient(rgba(200, 176, 138, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 176, 138, 0.07) 1px, transparent 1px),
        linear-gradient(160deg, #111012 0%, #070708 100%);
    background-size: 100% 100%, 20% 20%, 20% 20%, 100% 100%;
    background-position: center;
    display: flex; align-items: center; justify-content: center;
}
.network { width: 100%; height: 100%; padding: 28px; overflow: visible; }
.network .route { fill: none; stroke: var(--gold); stroke-width: 1.2; stroke-dasharray: 3 7; opacity: 0.75; animation: flow 3s linear infinite; }
.network .route.faint { opacity: 0.35; }
.network .node-core { fill: var(--gold-bright); }
.network .node-halo { fill: none; stroke: var(--gold); stroke-width: 1; transform-box: fill-box; transform-origin: center; animation: halo 3.2s var(--ease) infinite; }
.network .node-name { fill: var(--ivory); font-family: var(--serif); font-size: 26px; }
.network .node-sub { fill: var(--muted); font-family: var(--sans); font-size: 12px; letter-spacing: 2.6px; }
@keyframes flow { to { stroke-dashoffset: -100; } }
@keyframes halo { 0% { transform: scale(0.4); opacity: 0.9; } 100% { transform: scale(2.4); opacity: 0; } }

/* ================= BRANDS ================= */
.brands-section {
    padding: 180px 0; background-color: var(--bg);
    background-image: var(--noise), radial-gradient(ellipse at 50% 0%, rgba(200, 176, 138, 0.05) 0%, transparent 45%);
    background-size: 200px 200px, 100% 100%;
    border-top: 1px solid var(--line-soft);
}
.brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

a.brand-card {
    display: block; text-decoration: none; color: inherit;
    height: 420px; border-radius: var(--radius); overflow: hidden; position: relative; background: var(--surface);
    outline: 1px solid var(--line-soft); outline-offset: -1px; transition: outline-color 0.5s;
}
a.brand-card:hover { outline-color: rgba(200, 176, 138, 0.45); }

.brand-img { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 1.6s var(--ease), filter 1s var(--ease); filter: brightness(0.78) saturate(0.9); }
.brand-card:hover .brand-img { transform: scale(1.05); filter: brightness(0.38) saturate(0.8); }
.brand-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.2) 55%, transparent 100%); pointer-events: none; }
.brand-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 32px 34px; transform: translateY(40px); transition: transform 0.8s var(--ease); }
.brand-card:hover .brand-content { transform: none; }
.brand-card.light .brand-overlay { background: linear-gradient(to top, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.85) 38%, rgba(0,0,0,0.15) 75%, transparent 100%); }
.brand-cat { font-size: 12px; font-weight: 500; color: var(--red); text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 12px; }
.brand-name { font-family: var(--serif); font-size: 32px; font-weight: 400; line-height: 1.1; color: var(--ivory); margin-bottom: 14px; display: flex; align-items: center; gap: 14px; }
.brand-name::after { content: '↗'; font-family: var(--sans); font-size: 17px; color: var(--gold); opacity: 0; transform: translate(-6px, 6px); transition: 0.6s var(--ease); }
.brand-card:hover .brand-name::after { opacity: 1; transform: none; }
.brand-desc { font-size: 16px; line-height: 1.7; color: rgba(242, 237, 228, 0.82); max-width: 460px; opacity: 0; transition: opacity 0.8s var(--ease) 0.1s; }
.brand-card:hover .brand-desc { opacity: 1; }

/* ================= LEADERSHIP ================= */
.team-section {
    padding: 180px 0; background-color: #09090a;
    background-image: var(--noise), radial-gradient(ellipse at 0% 40%, rgba(200, 176, 138, 0.04) 0%, transparent 45%);
    background-size: 200px 200px, 100% 100%;
    border-top: 1px solid var(--line-soft);
}

.leaders { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.leader-card.feature { grid-column: span 3; }
.leader-mini { align-self: start; }
.exec-block { padding-top: 140px; }

.leader-card {
    background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius);
    overflow: hidden; position: relative; transition: border-color 0.6s;
}
.leader-card:hover { border-color: var(--line); }
.leader-photo { position: relative; overflow: hidden; background: #000; }
.leader-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 2.4s var(--ease); }
.leader-card:hover .leader-photo img { transform: scale(1.03); }

.leader-role { font-size: 12px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.leader-card h3, .leader-card h2 { font-family: var(--serif); font-weight: 400; color: var(--ivory); line-height: 1.02; letter-spacing: -0.01em; }

/* Susan — feature card */
.leader-card.feature { display: grid; grid-template-columns: 4fr 7fr; }
.leader-card.feature .leader-photo img { object-position: center top; }
.leader-card.feature .leader-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 70%, var(--surface) 100%); }
.leader-body { padding: 48px 64px; display: flex; flex-direction: column; justify-content: center; }
.leader-card.feature h3, .leader-card.feature h2 { font-size: clamp(48px, 4.4vw, 72px); }
.leader-card.feature .cn-name { display: inline-block; margin-left: 0.45em; font-size: 0.5em; letter-spacing: 0.12em; color: var(--gold-bright); vertical-align: 0.18em; }
.leader-role .cn { margin-left: 14px; padding-left: 14px; border-left: 1px solid var(--line); letter-spacing: 0.14em; color: var(--muted); }
.leader-card.feature .rule { width: 56px; height: 1px; background: var(--red); margin: 36px 0; }
.leader-card.feature p { font-size: 18px; line-height: 1.85; color: var(--muted); max-width: 560px; }
.leader-card.feature p + p { margin-top: 18px; }

.subhead { display: flex; align-items: center; gap: 28px; margin-bottom: 48px; }
.subhead h3, .subhead h2 { font-family: var(--serif); font-weight: 400; font-size: 40px; color: var(--ivory); white-space: nowrap; }
.subhead::after { content: ''; flex: 1; height: 1px; background: var(--line); }

/* Executive team — equal portrait cards */
/* Same card width as Nick's (one of four columns); centred when the row isn't full */
.team-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.team-grid .t-card { width: calc((100% - 60px) / 4); }
.t-card {
    background: var(--surface); border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--line-soft); transition: border-color 0.6s, transform 0.8s var(--ease);
}
.t-card:hover { border-color: var(--line); transform: translateY(-4px); }

/* Square portrait frame; --zoom evens out head size between photos shot at different distances */
.t-frame { position: relative; width: 100%; aspect-ratio: 1 / 1; overflow: hidden; background: #0b0b0c; }
.t-frame img {
    width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
    transform: scale(var(--zoom, 1)); transform-origin: var(--origin, 50% 0%);
    transition: transform 2.4s var(--ease);
}
.t-card:hover .t-frame img { transform: scale(calc(var(--zoom, 1) * 1.03)); }
.t-frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--surface) 0%, transparent 24%); pointer-events: none; }


.t-info { padding: 24px 28px 30px; }
.t-role { display: block; font-size: 12px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; min-height: 2.9em; }
.t-card h4 { font-family: var(--serif); font-size: 30px; font-weight: 400; color: var(--ivory); margin-bottom: 16px; line-height: 1.1; }
.t-cn { padding-top: 14px; border-top: 1px solid var(--line-soft); font-size: 14px; color: var(--muted); letter-spacing: 0.08em; }
.t-cn b { font-weight: 500; color: var(--ivory); margin-right: 8px; }

/* ================= PARTNERS ================= */
.partners { padding: 72px 0; border-top: 1px solid var(--line-soft); background: #000; overflow: hidden; }
.partners-label { text-align: center; margin-bottom: 44px; }
.partners-track { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee { display: flex; gap: 96px; width: max-content; padding-right: 96px; animation: scroll 48s linear infinite; will-change: transform; align-items: center; }
.marquee:hover { animation-play-state: paused; }
.p-logo { height: 34px; width: auto; object-fit: contain; filter: grayscale(100%) brightness(1.4); opacity: 0.45; transition: opacity 0.5s, filter 0.5s; }
.p-logo:hover { filter: none; opacity: 1; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ================= FOOTER ================= */
footer { padding: 100px 0 48px; border-top: 1px solid var(--line-soft); background-color: #000; font-size: 14px; color: var(--muted); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 48px; padding-bottom: 72px; margin-bottom: 64px; border-bottom: 1px solid var(--line); }
.footer-top h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(36px, 4vw, 60px); line-height: 1.05; color: var(--ivory); max-width: 720px; }
.footer-top h2 em { font-style: italic; color: var(--gold-bright); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; gap: 64px; }
.footer-col { display: flex; flex-direction: column; gap: 20px; }
footer .logo { height: auto; display: block; }
footer .logo img { height: 28px; }
.footer-col h4 { font-size: 12px; font-weight: 500; color: var(--gold); text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 8px; }
.address { line-height: 1.9; color: var(--muted); }
.footer-menu, .contact-list { list-style: none; }
.footer-menu li, .contact-list li { margin-bottom: 14px; }
.footer-menu a { color: var(--ivory); opacity: 0.75; text-decoration: none; transition: opacity 0.3s; }
.footer-menu a:hover { opacity: 1; }
.contact-list li { display: flex; flex-direction: column; gap: 4px; }
.contact-list li > span { font-size: 12px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.14em; }
.highlight-link { color: var(--ivory); font-size: 15px; text-decoration: none; transition: color 0.3s; }
.highlight-link:hover { color: var(--gold-bright); }
.hours-text { display: flex; align-items: center; color: var(--ivory); font-size: 15px; }
.dot-open { width: 5px; height: 5px; background-color: var(--gold-bright); border-radius: 50%; margin-right: 10px; box-shadow: 0 0 8px var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 80px; padding-top: 28px; border-top: 1px solid var(--line-soft); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); }

/* ================= RESPONSIVE ================= */
@media (min-width: 769px) and (max-width: 1280px) {
    .container-max, .hero-container { padding: 0 32px; }
    nav { padding: 0 32px; }
    .nav-links { gap: 28px; }
    .hero-container { gap: 48px; }
    .hero-map-side { height: 52vh; }
    .sector-row { gap: 56px; }
    .sector-visual { height: 520px; }
    .leader-body { padding: 56px 44px; }
    .marker-label { font-size: 11px; padding: 7px 12px; }
}

/* Laptops & standard monitors: keep each section within one viewport height */
@media (min-width: 769px) and (max-height: 1200px) {
    nav { height: 64px; }
    nav.scrolled { height: 56px; }
    .logo img { height: 28px; }

    .hero { padding: 84px 0 28px; }
    .hero .eyebrow { margin-bottom: 22px; }
    .hero h1 { font-size: clamp(52px, 10vh, 96px); margin-bottom: 22px; }
    .hero p { line-height: 1.7; margin-bottom: 30px; }
    .hero-map-side { height: 64vh; min-height: 380px; }
    .scroll-cue { bottom: 16px; height: 36px; }

    .about-section { min-height: 100vh; display: flex; align-items: center; padding: 88px 0 56px; }
    .about-section .text-container { width: 100%; }
    .text-container .eyebrow { margin-bottom: 28px; }
    .reveal-h2 { font-size: clamp(30px, 5.6vh, 50px); }
    .stats { margin-top: clamp(40px, 7vh, 72px); }
    .stat { padding: clamp(20px, 3.6vh, 36px) 16px; }
    .stat h3 { font-size: clamp(40px, 7vh, 58px); margin-bottom: 10px; }

    .sectors-section, .brands-section, .team-section { padding-top: 120px; }
    .brands-section, .team-section { padding-bottom: 120px; }
    .section-head { margin-bottom: 72px; }
    .section-head h2 { font-size: clamp(40px, 8vh, 64px); }
    .sector-row { margin-bottom: 110px; }
    .sector-visual { height: min(600px, 72vh); }
    .sector-info h3, .sector-info h2 { font-size: clamp(34px, 6vh, 50px); margin-bottom: 20px; }
    .sector-info p { line-height: 1.75; margin-bottom: 28px; }
    .sector-num { margin-bottom: 18px; }
    .brands-section { padding: 100px 0 56px; }
    .brands-section .section-head, .team-section .section-head { margin-bottom: 36px; }
    .section-head .eyebrow { margin-bottom: 16px; }
    a.brand-card { height: clamp(190px, calc((100vh - 330px) / 2), 400px); }
    .brand-content { padding: 24px 28px; }
    .brand-name { font-size: 28px; margin-bottom: 8px; }
    .brand-desc { font-size: 15px; line-height: 1.6; }

    .team-section { padding-top: 100px; }
    .exec-block { padding-top: 110px; }
    .leader-body { padding: 28px 48px; }
    .leader-card.feature .rule { margin: 20px 0; }
    .leader-card.feature p { font-size: 17px; line-height: 1.7; }
    .leader-card.feature p + p { margin-top: 12px; }

    footer { padding-top: 72px; }
    .footer-top { padding-bottom: 48px; margin-bottom: 48px; }
    .footer-bottom { margin-top: 48px; }
}

@media (min-width: 1025px) and (max-height: 1200px) {
    .leader-card.feature { min-height: 0; }
    .t-frame { aspect-ratio: auto; height: clamp(200px, calc(100vh - 490px), 380px); }
    .exec-block .subhead { margin-bottom: 32px; }
    .t-info { padding: 18px 24px 22px; }
    .t-role { margin-bottom: 8px; }
    .t-card h4 { font-size: 26px; margin-bottom: 12px; }
    .leader-card.feature h3, .leader-card.feature h2 { font-size: clamp(44px, 7vh, 64px); }
}

@media (min-width: 1025px) and (max-height: 700px) {
    .leader-card.feature p { font-size: 15px; line-height: 1.6; }
    .leader-card.feature .rule { margin: 14px 0; }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .nav-links { gap: 18px; }
    .nav-links a { font-size: 12px; letter-spacing: 0.08em; }
    .brand-grid { grid-template-columns: 1fr 1fr; }
    .leaders { grid-template-columns: 1fr 1fr; }
    .leader-card.feature { grid-column: span 2; }
    .team-grid .t-card { width: calc((100% - 20px) / 2); }
}

@media (max-width: 768px) {
    .container-max, .hero-container, .text-container { padding: 0 20px; }
    nav { padding: 14px 20px 0; height: auto; flex-direction: column; align-items: stretch; background: rgba(7,7,8,0.94); }
    nav.scrolled { height: auto; }
    .logo { justify-content: center; margin-bottom: 12px; }
    .logo img { height: 26px; }
    .nav-links { gap: 26px; overflow-x: auto; padding-bottom: 14px; justify-content: flex-start; scrollbar-width: none; }
    .nav-links::-webkit-scrollbar { display: none; }

    .hero { padding: 140px 0 60px; }
    .hero-container { display: flex; flex-direction: column; gap: 48px; text-align: center; }
    .hero .eyebrow::before { display: none; }
    .hero h1 { font-size: 54px; margin-bottom: 24px; }
    .hero p { font-size: 17px; margin: 0 auto 36px; }
    .scroll-cue { display: none; }

    .hero-map-side { height: 320px; min-height: 0; perspective: none; }
    .map-wrapper { transform: none !important; }
    .marker-dot { width: 7px; height: 7px; }
    .marker-label { font-size: 10px; padding: 4px 8px; letter-spacing: 0.12em; }
    .hud-card { transform: none; font-size: 10px; padding: 8px 10px; }
    .hud-card.top-left { top: 12px; left: 12px; }
    .hud-card.bottom-right { bottom: 12px; right: 12px; min-width: 0; }

    .about-section { padding: 120px 0 100px; }
    .text-container .eyebrow { margin-bottom: 32px; }
    .stats { grid-template-columns: 1fr 1fr; margin-top: 72px; }
    .stat { padding: 32px 8px; }
    .stat:nth-child(3) { border-left: none; }
    .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
    .stat h3 { font-size: 52px; }

    .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 64px; }
    .section-head p { justify-self: start; font-size: 17px; }
    .head-side { justify-self: start; }

    .sectors-section, .brands-section, .team-section { padding: 110px 0; }
    .sectors-section { padding-bottom: 20px; }
    .sector-row { grid-template-columns: 1fr; gap: 32px; margin-bottom: 96px; }
    .sector-row:nth-child(even) .sector-visual { order: 0; }
    .sector-visual { height: 280px; }
    .sector-visual.invest { height: 360px; }
    .sector-visual::after { inset: 10px; }
    .sector-info p { font-size: 17px; }
    .markets { grid-template-columns: 1fr 1fr; }
    .market:nth-child(3) { border-left: none; }
    .market:nth-child(n+3) { border-top: 1px solid var(--line); }

    .brand-grid { grid-template-columns: 1fr; }
    .brand-img { filter: brightness(0.5) saturate(0.85); }
    a.brand-card { height: 340px; }
    .brand-content { transform: none; padding: 28px; }
    .brand-desc { opacity: 1; }
    .brand-name { font-size: 32px; }

    .exec-block { padding-top: 96px; }
    .leader-card.feature { grid-template-columns: 1fr; min-height: 0; }
    .leader-card.feature .cn-name { display: block; margin: 10px 0 0; }
    .leader-role .cn { display: block; margin: 8px 0 0; padding: 0; border: none; }
    .leader-card.feature .leader-photo { height: 480px; }
    .leader-card.feature .leader-photo::after { background: linear-gradient(180deg, transparent 70%, var(--surface) 100%); }
    .leader-body { padding: 36px 28px 44px; }
    .subhead h3, .subhead h2 { font-size: 32px; }
    .leaders { grid-template-columns: 1fr 1fr; gap: 12px; }
    .leader-card.feature { grid-column: span 2; }
    .team-grid { gap: 12px; }
    .team-grid .t-card { width: calc((100% - 12px) / 2); }
    .t-info { padding: 16px 14px 20px; }
    .t-card h4 { font-size: 22px; }
    .t-role { font-size: 11px; letter-spacing: 0.16em; min-height: 3.2em; }
    .t-cn { font-size: 13px; }

    .footer-top { flex-direction: column; align-items: flex-start; padding-bottom: 56px; margin-bottom: 48px; }
    .footer-grid { grid-template-columns: 1fr; gap: 44px; }
    .footer-bottom { flex-direction: column; margin-top: 56px; }
}

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

/* ================= HOME: LINKS TO DETAIL PAGES ================= */
.more-link {
    display: inline-flex; align-items: center; gap: 12px; margin-top: 8px;
    font-size: 13px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--ivory); text-decoration: none; padding-bottom: 8px; border-bottom: 1px solid rgba(200, 176, 138, 0.45);
    transition: color 0.4s, border-color 0.4s;
}
.more-link span { color: var(--gold); transition: transform 0.5s var(--ease); }
.more-link:hover { color: var(--gold-bright); border-color: var(--gold); }
.more-link:hover span { transform: translateX(6px); }
.section-more { display: flex; justify-content: center; margin-top: 64px; }
.sectors-section .section-more { margin-top: 0; padding-bottom: 100px; }

/* ================= SUBPAGES ================= */
.page-hero {
    padding: 210px 0 120px; position: relative;
    background-color: var(--bg);
    background-image: var(--noise),
        radial-gradient(ellipse at 15% 30%, rgba(200, 176, 138, 0.08) 0%, transparent 45%),
        radial-gradient(ellipse at 90% 80%, rgba(224, 56, 58, 0.05) 0%, transparent 45%);
    background-size: 200px 200px, 100% 100%, 100% 100%;
    border-bottom: 1px solid var(--line-soft);
}
.crumbs { display: flex; gap: 12px; margin-bottom: 48px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); }
.crumbs a { color: var(--muted); text-decoration: none; transition: color 0.3s; }
.crumbs a:hover { color: var(--gold-bright); }
.page-hero .eyebrow { margin-bottom: 28px; }
.page-hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(52px, 6.4vw, 108px); line-height: 1; letter-spacing: -0.015em; color: var(--ivory); }
.page-hero h1 em { font-style: italic; color: var(--gold-bright); }
.page-hero .lead { max-width: 680px; margin-top: 40px; font-size: 19px; line-height: 1.85; color: var(--muted); }
.page-hero.notfound { min-height: 100vh; display: flex; align-items: center; }
.page-hero.notfound .btn { margin-top: 48px; }

.page-body.sectors-section { padding-top: 140px; }
.page-body.team-section { border-top: none; }
.page-section { padding: 140px 0; border-top: 1px solid var(--line-soft); }
.page-section.first { border-top: none; }
.section-head.compact { margin-bottom: 72px; }

.sector-info p + p { margin-top: -12px; }
.focus-list { list-style: none; border-top: 1px solid var(--line); margin-bottom: 28px; }
.focus-list li { padding: 13px 0; border-bottom: 1px solid var(--line-soft); font-size: 15px; color: var(--ivory); display: flex; align-items: center; gap: 14px; }
.focus-list li::before { content: ''; width: 5px; height: 5px; background: var(--red); flex: none; }
.focus-list a { color: var(--ivory); text-decoration: none; transition: color 0.3s; }
.focus-list a:hover { color: var(--gold-bright); }
.related { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px 22px; font-size: 14px; }
.related span { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); }
.related a { color: var(--gold-bright); text-decoration: none; border-bottom: 1px solid rgba(200, 176, 138, 0.35); padding-bottom: 2px; transition: border-color 0.3s; }
.related a:hover { border-color: var(--gold); }

.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pillar { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 56px 52px; }
.pillar-num { display: block; font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--gold); margin-bottom: 20px; }
.pillar h3 { font-family: var(--serif); font-weight: 400; font-size: 44px; line-height: 1.05; color: var(--ivory); margin-bottom: 20px; }
.pillar p { font-size: 17px; line-height: 1.8; color: var(--muted); margin-bottom: 28px; }
.pillar .focus-list { margin-bottom: 0; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-title { font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 4vw, 64px); line-height: 1.05; color: var(--ivory); margin: 20px 0 40px; }
.split-title em { font-style: italic; color: var(--gold-bright); }
.split .sector-visual { height: 560px; }
.market-cards { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.market-card { padding: 28px 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.market-card b { display: block; font-family: var(--serif); font-size: 30px; font-weight: 500; color: var(--gold-bright); line-height: 1; margin-bottom: 12px; }
.market-card h3 { font-size: 12px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ivory); margin-bottom: 10px; }
.market-card p { font-size: 15px; line-height: 1.7; color: var(--muted); }

.principles { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.principles.three { grid-template-columns: repeat(3, 1fr); }
.principle { padding: 40px 32px 8px 0; }
.principle + .principle { padding-left: 32px; border-left: 1px solid var(--line-soft); }
.principle span { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--gold); }
.principle h3 { font-family: var(--serif); font-weight: 400; font-size: 32px; color: var(--ivory); margin: 14px 0 14px; line-height: 1.1; }
.principle p { font-size: 16px; line-height: 1.8; color: var(--muted); }
.values { padding-top: 140px; }

.cta-band { padding: 160px 0; text-align: center; border-top: 1px solid var(--line-soft); background: radial-gradient(ellipse at 50% 100%, rgba(200, 176, 138, 0.07) 0%, transparent 60%); }
.cta-band h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(44px, 5vw, 80px); line-height: 1.05; color: var(--ivory); margin: 28px 0 20px; }
.cta-band h2 em { font-style: italic; color: var(--gold-bright); }
.cta-band p { color: var(--muted); font-size: 18px; margin-bottom: 44px; }

.brand-list { display: flex; flex-direction: column; gap: 20px; }
.brand-row { display: grid; grid-template-columns: 5fr 6fr; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; scroll-margin-top: 100px; transition: border-color 0.5s; }
.brand-row:hover { border-color: var(--line); }
.brand-thumb { display: block; height: 340px; overflow: hidden; }
.brand-thumb .brand-img { filter: brightness(0.85) saturate(0.9); }
.brand-row:hover .brand-thumb .brand-img { transform: scale(1.04); }
.brand-row-info { padding: 56px 64px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.brand-row-info h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(36px, 3.4vw, 52px); line-height: 1.05; color: var(--ivory); margin-bottom: 18px; }
.brand-row-info p { font-size: 17px; line-height: 1.8; color: var(--muted); margin-bottom: 28px; max-width: 520px; }

.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: stretch; }
.contact-details { display: flex; flex-direction: column; gap: 32px; }
.contact-item > span { display: block; font-size: 12px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.contact-item p, .contact-item > a { font-family: var(--serif); font-size: 26px; line-height: 1.35; color: var(--ivory); text-decoration: none; }
.contact-item > a:hover { color: var(--gold-bright); }
.contact-item .focus-list { margin: 6px 0 0; }
.map-embed { min-height: 520px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.map-embed iframe { width: 100%; height: 100%; min-height: 520px; border: 0; display: block; filter: grayscale(1) invert(0.92) contrast(0.9) brightness(0.9); }

.next-band { padding: 120px 0; border-top: 1px solid var(--line-soft); background: #09090a; }
.next-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.next-card {
    position: relative; display: block; padding: 36px 36px 40px; text-decoration: none;
    background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius);
    transition: border-color 0.5s, transform 0.8s var(--ease);
}
.next-card:hover { border-color: rgba(200, 176, 138, 0.45); transform: translateY(-4px); }
.next-card span { display: block; font-size: 12px; font-weight: 500; letter-spacing: 0.17em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.next-card b { font-family: var(--serif); font-weight: 400; font-size: 30px; color: var(--ivory); }
.next-card i { position: absolute; right: 32px; bottom: 40px; font-style: normal; color: var(--gold); transition: transform 0.5s var(--ease); }
.next-card:hover i { transform: translateX(6px); }

@media (min-width: 769px) and (max-height: 1200px) {
    .page-hero { padding: 150px 0 88px; }
    .brands-section .section-more, .team-section .section-more { margin-top: 32px; }
    .crumbs { margin-bottom: 32px; }
    .page-hero .lead { margin-top: 28px; }
    .page-section, .page-body.sectors-section { padding-top: 110px; padding-bottom: 110px; }
    .page-body.team-section { padding-top: 100px; }
    .values { padding-top: 110px; }
    .cta-band { padding: 120px 0; }
    .split .sector-visual { height: min(560px, 70vh); }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .principles { grid-template-columns: 1fr 1fr; }
    .principle:nth-child(3) { padding-left: 0; border-left: none; }
    .split { grid-template-columns: 1fr; }
    .brand-row { grid-template-columns: 1fr 1fr; }
    .brand-row-info { padding: 40px; }
}

@media (max-width: 768px) {
    .section-more { margin-top: 44px; }
    .sectors-section .section-more { padding-bottom: 72px; }
    .page-hero { padding: 150px 0 72px; }
    .crumbs { margin-bottom: 28px; }
    .page-hero h1 { font-size: 48px; }
    .page-hero .lead { font-size: 17px; margin-top: 24px; }
    .page-section, .page-body.sectors-section { padding: 88px 0; }
    .section-head.compact { margin-bottom: 44px; }
    .pillars, .split, .principles, .principles.three, .next-grid, .contact-grid, .brand-row { grid-template-columns: 1fr; }
    .split { gap: 48px; }
    .split .sector-visual { height: 360px; }
    .pillar { padding: 36px 26px; }
    .pillar h3 { font-size: 36px; }
    .principle, .principle + .principle { padding: 28px 0; border-left: none; border-bottom: 1px solid var(--line-soft); }
    .values { padding-top: 96px; }
    .cta-band { padding: 100px 0; }
    .brand-thumb { height: 240px; }
    .brand-row-info { padding: 28px 24px 32px; }
    .contact-item p, .contact-item > a { font-size: 22px; word-break: break-word; }
    .map-embed, .map-embed iframe { min-height: 360px; }
    .next-band { padding: 88px 0; }
}

/* ================= CAREERS ================= */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 40px 40px 44px; transition: border-color 0.5s, transform 0.8s var(--ease); }
.benefit:hover { border-color: var(--line); transform: translateY(-4px); }
.benefit span { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--gold); }
.benefit h3 { font-family: var(--serif); font-weight: 400; font-size: 30px; line-height: 1.1; color: var(--ivory); margin: 14px 0 14px; }
.benefit p { font-size: 16px; line-height: 1.75; color: var(--muted); }

.office-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 280px 280px; gap: 16px; }
.office-shot { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--surface); border: 1px solid var(--line-soft); }
.office-shot.large { grid-row: span 2; }
.office-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.office-shot.large img { object-position: 0% 50%; }
.photo-slot {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    background: repeating-linear-gradient(135deg, rgba(200, 176, 138, 0.04) 0 12px, transparent 12px 24px), linear-gradient(160deg, #121113, #09090a);
    font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2);
}
.office-shot figcaption {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 24px 18px;
    background: linear-gradient(to top, rgba(7, 7, 8, 0.9), transparent);
    font-size: 12px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ivory);
}

.careers-split { align-items: start; }
.split-text { font-size: 18px; line-height: 1.85; color: var(--muted); max-width: 520px; }
.focus-list.paths li { font-size: 17px; padding: 18px 0; }
.apply-mail { margin-top: 24px; font-size: 15px; color: var(--muted); letter-spacing: 0.04em; }

@media (max-width: 1024px) and (min-width: 769px) {
    .benefits { grid-template-columns: 1fr 1fr; }
    .office-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 240px); }
    .office-shot.large { grid-row: span 1; grid-column: span 2; }
}

@media (max-width: 768px) {
    .benefits { grid-template-columns: 1fr; gap: 12px; }
    .benefit { padding: 28px 24px 32px; }
    .office-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 260px repeat(2, 160px); gap: 10px; }
    .office-shot.large { grid-row: span 1; grid-column: span 2; }
    .office-shot figcaption { padding: 28px 14px 12px; font-size: 11px; }
}

/* ================= HOME: CAREERS TEASER ================= */
.careers-teaser { padding: 140px 0; border-top: 1px solid var(--line-soft); background: radial-gradient(ellipse at 85% 50%, rgba(200, 176, 138, 0.06) 0%, transparent 50%), #09090a; }
.careers-teaser .split { align-items: center; }
.careers-teaser .split-text { margin-bottom: 40px; }
.careers-teaser .focus-list li { font-size: 17px; padding: 18px 0; }
@media (min-width: 769px) and (max-height: 1200px) { .careers-teaser { padding: 110px 0; } }
@media (max-width: 768px) { .careers-teaser { padding: 96px 0; } }

/* ================= LANGUAGE TOGGLE ================= */
.lang-toggle {
    margin-left: 32px; padding: 6px 14px; flex: none;
    border: 1px solid rgba(200, 176, 138, 0.4); border-radius: 999px;
    color: var(--gold-bright); text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.lang-toggle:hover { background: var(--gold); border-color: var(--gold); color: #000; }

/* Chinese pages: CJK fonts, no faux italics, calmer letter-spacing */
:root:lang(zh-Hans) {
    --serif: "Cormorant Garamond", "Noto Serif SC", "Songti SC", serif;
    --sans: "Inter", "Noto Sans SC", "PingFang SC", -apple-system, "Microsoft YaHei", sans-serif;
}
em:lang(zh-Hans) { font-style: normal !important; }
:lang(zh-Hans) .page-hero h1 { line-height: 1.2; letter-spacing: 0.02em; }
:lang(zh-Hans) .section-head h2, :lang(zh-Hans) .split-title, :lang(zh-Hans) .cta-band h2 { line-height: 1.25; letter-spacing: 0.02em; }
:lang(zh-Hans) .eyebrow { letter-spacing: 0.3em; }
:lang(zh-Hans) p, :lang(zh-Hans) .focus-list li { line-height: 1.9; }
:lang(zh-Hans) .benefit h3, :lang(zh-Hans) .principle h3 { font-size: 26px; font-weight: 500; }

@media (max-width: 1024px) and (min-width: 769px) { .lang-toggle { margin-left: 16px; padding: 5px 11px; } }
@media (max-width: 768px) { .lang-toggle { position: absolute; top: 14px; right: 16px; margin: 0; padding: 4px 11px; font-size: 12px; } }

/* ================= HOME: BRAND CARDS (logo above, caption below) ================= */
a.brand-card { display: flex; flex-direction: column; }
a.brand-card .brand-img { flex: 1 1 auto; min-height: 0; height: auto; filter: none; }
a.brand-card:hover .brand-img { transform: scale(1.04); filter: none; }
a.brand-card .brand-overlay { display: none; }
a.brand-card .brand-content {
    position: relative; z-index: 1; flex: none; transform: none;
    padding: 14px 24px 16px; background: var(--surface); border-top: 1px solid var(--line-soft);
}
a.brand-card .brand-cat { margin-bottom: 4px; }
a.brand-card .brand-name { font-size: 24px; margin: 0; }
a.brand-card .brand-desc { display: none; }
.head-side { justify-self: end; max-width: 480px; }
.section-head .head-side p { margin-bottom: 18px; }
.brand-thumb .brand-img { filter: none; }

/* ================= CAREERS: OPENINGS ================= */
.page-hero .hero-cta { margin-top: 40px; }
.roles { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.role-card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 44px 44px 48px; display: flex; flex-direction: column; align-items: flex-start; }
.role-tag { font-size: 12px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.role-card h3 { font-family: var(--serif); font-weight: 400; font-size: 36px; line-height: 1.1; color: var(--ivory); margin-bottom: 18px; }
.role-card p { font-size: 17px; line-height: 1.8; color: var(--muted); margin-bottom: 24px; }
.role-card .role-status { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ivory); margin-bottom: 16px; padding: 6px 14px; border: 1px solid var(--line); border-radius: 999px; }
.role-status i { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: none; }
.role-brands { list-style: none; width: 100%; border-top: 1px solid var(--line); }
.role-brands li { border-bottom: 1px solid var(--line-soft); }
.role-brands a { display: flex; justify-content: space-between; padding: 14px 0; color: var(--ivory); text-decoration: none; font-size: 16px; transition: color 0.3s; }
.role-brands a span { color: var(--gold); }
.role-brands a:hover { color: var(--gold-bright); }
.cta-band .eeo { max-width: 620px; margin: 40px auto 0; font-size: 14px; line-height: 1.7; color: var(--muted-2); }
@media (max-width: 768px) {
    .roles { grid-template-columns: 1fr; gap: 12px; }
    .role-card { padding: 32px 24px 36px; }
    .role-card h3 { font-size: 30px; }
}
