:root,
html[data-theme="light"] {
    color-scheme: light;
    --bg: #ffffff;
    --bg-2: #fcfcfa;
    --bg-3: #f8f7f5;
    --surface: rgba(255, 255, 255, 0.94);
    --surface-2: #ffffff;
    --line: rgba(15, 18, 28, 0.06);
    --text: #0f121c;
    --muted: rgba(15, 18, 28, 0.52);
    --gold: #c4a574;
    --gold-2: #9a7848;
    --gold-glow: rgba(196, 165, 116, 0.14);
    --radius: 20px;
    --radius-sm: 14px;
    --shadow: 0 2px 16px rgba(15, 18, 28, 0.04);
    --shadow-lg: 0 24px 64px rgba(15, 18, 28, 0.07);
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "Outfit", system-ui, sans-serif;
    --header-h: 84px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-left: env(safe-area-inset-left, 0px);
    --safe-right: env(safe-area-inset-right, 0px);
    --header-bg: rgba(255, 255, 255, 0.88);
    --hero-overlay: linear-gradient(108deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.9) 36%, rgba(255,255,255,0.45) 58%, rgba(15,18,28,0.28) 100%);
    --hero-badge-bg: rgba(255,255,255,0.94);
    --cta-overlay: linear-gradient(90deg, rgba(255,255,255,0.96), rgba(255,255,255,0.82));
    --page-hero-overlay: linear-gradient(180deg, rgba(255,255,255,0.82), var(--bg));
    --grain-opacity: 0.015;
    --btn-gold-text: #1a1408;
    --img-shine: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 50%);
}

html[data-theme="dark"] {
    color-scheme: dark;
    --bg: #07090f;
    --bg-2: #0d111c;
    --bg-3: #121826;
    --surface: rgba(255, 255, 255, 0.04);
    --surface-2: rgba(255, 255, 255, 0.07);
    --line: rgba(255, 255, 255, 0.08);
    --text: #f4f1ea;
    --muted: rgba(244, 241, 234, 0.62);
    --gold: #c9a962;
    --gold-2: #e8d5a3;
    --gold-glow: rgba(201, 169, 98, 0.25);
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    --header-bg: rgba(7, 9, 15, 0.88);
    --hero-overlay: linear-gradient(105deg, rgba(7,9,15,0.92) 0%, rgba(7,9,15,0.72) 42%, rgba(7,9,15,0.35) 100%);
    --hero-badge-bg: rgba(7,9,15,0.75);
    --cta-overlay: linear-gradient(90deg, rgba(7,9,15,0.92), rgba(7,9,15,0.75));
    --page-hero-overlay: linear-gradient(180deg, rgba(7,9,15,0.55), var(--bg));
    --grain-opacity: 0.035;
    --btn-gold-text: #111;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    padding-left: var(--safe-left);
    padding-right: var(--safe-right);
}
body.nav-open,
body.lightbox-open {
    overflow: hidden;
    touch-action: none;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
.container { width: min(1180px, calc(100% - clamp(1.25rem, 4vw, 2.5rem))); margin-inline: auto; }
.narrow { width: min(760px, calc(100% - clamp(1.25rem, 4vw, 2.5rem))); margin-inline: auto; }
.center { text-align: center; margin-top: 2rem; }
.muted { color: var(--muted); }
.small { font-size: 0.88rem; }
.gold { color: var(--gold-2); }
.grain {
    pointer-events: none;
    position: fixed;
    inset: 0;
    opacity: var(--grain-opacity);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    z-index: 9999;
}

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--muted); max-width: 58ch; }
.kicker {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.72rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--muted);
}

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    height: calc(var(--header-h) + var(--safe-top));
    padding-top: var(--safe-top);
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s;
}
.site-header.is-scrolled {
    background: var(--header-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-color: var(--line);
}
.header-inner {
    width: min(1320px, calc(100% - clamp(1rem, 3vw, 2rem)));
    margin-inline: auto;
    height: var(--header-h);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.25rem;
}
.brand { display: flex; align-items: center; gap: 0.85rem; flex-shrink: 0; }
.brand-logo { display: block; flex-shrink: 0; transition: transform 0.4s var(--ease); }
.brand:hover .brand-logo { transform: scale(1.04); }
.brand-logo.sm { width: 36px; height: 36px; }
.footer-logo { margin-bottom: 0.75rem; }
.brand-mark {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border: 1px solid var(--gold);
    color: var(--gold-2);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(201,169,98,0.12), transparent);
}
.brand-mark.lg { width: 64px; height: 64px; font-size: 1.4rem; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-family: var(--font-display); font-size: 1.05rem; }
.brand-text small { color: var(--muted); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; }

.brand-mark.sm { width: 36px; height: 36px; font-size: 0.95rem; }

/* Desktop navigation */
.site-nav--desktop {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    flex-wrap: nowrap;
    width: 100%;
    min-width: 0;
}
.site-nav--desktop a {
    padding: 0.5rem 0.7rem;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    color: var(--muted);
    border-radius: 999px;
    transition: color 0.25s, background 0.25s;
    white-space: nowrap;
}
.site-nav--desktop a:hover,
.site-nav--desktop a.is-active { color: var(--text); background: var(--surface); }
.site-nav--desktop .nav-cta {
    border: 1px solid rgba(154, 119, 48, 0.35);
    color: var(--gold-2);
    margin-left: 0.25rem;
}
html[data-theme="dark"] .site-nav--desktop .nav-cta {
    border-color: rgba(201, 169, 98, 0.35);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    justify-self: end;
}

.theme-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.25s, border-color 0.25s;
    flex-shrink: 0;
}
.theme-toggle:hover { border-color: rgba(154, 119, 48, 0.45); }
.theme-toggle .icon-moon { display: none; }
html[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
html[data-theme="dark"] .theme-toggle .icon-moon { display: block; }
.theme-toggle--drawer {
    width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    justify-content: center;
}
.theme-toggle--drawer .icon-sun,
.theme-toggle--drawer .icon-moon { flex-shrink: 0; }

.site-drawer,
.nav-overlay,
.nav-toggle { display: none; }

.lang-switch {
    display: flex;
    gap: 0.15rem;
    padding: 0.2rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    flex-shrink: 0;
}
.lang-switch a {
    padding: 0.4rem 0.55rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    border-radius: 999px;
    color: var(--muted);
    min-width: 36px;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.lang-switch a.is-active { background: var(--gold); color: var(--btn-gold-text); }

.nav-toggle {
    width: 44px; height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface);
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    z-index: 1002;
    justify-self: end;
}
.nav-toggle span {
    position: absolute;
    left: 12px; right: 12px;
    height: 1px;
    background: var(--text);
    transition: transform 0.3s;
}
.nav-toggle span:first-child { top: 18px; }
.nav-toggle span:last-child { top: 26px; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* Hero */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--header-h) + var(--safe-top) + 1.5rem) 0 calc(2rem + var(--safe-bottom));
    overflow: hidden;
}
.hero-bg-wrap {
    position: absolute;
    inset: 0;
    display: block;
    margin: 0;
}
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transform: scale(1.03);
}
.hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 72% 18%, rgba(201,169,98,0.14), transparent 40%),
        var(--hero-overlay);
}
.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}
.hero-copy h1 { margin-bottom: 1.25rem; }
.hero-tagline {
    font-size: 0.78rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-2);
    margin: -0.5rem 0 1.5rem;
    opacity: 0.85;
}
.page-lead { font-size: 1.05rem; max-width: 52ch; margin-top: 0.75rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }

.portrait-frame,
.img-premium {
    position: relative;
    max-width: 420px;
    margin-inline: auto;
    border-radius: calc(var(--radius) + 8px);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.portrait-frame:hover,
.img-premium:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 80px rgba(15, 18, 28, 0.12);
}
html[data-theme="dark"] .portrait-frame:hover,
html[data-theme="dark"] .img-premium:hover {
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
}
.portrait-frame::after,
.img-premium::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--img-shine, transparent);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s;
}
.portrait-frame:hover::after,
.img-premium:hover::after { opacity: 1; }
.portrait-frame::before,
.img-premium::before {
    content: "";
    position: absolute; inset: 0;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: inherit;
    z-index: 2;
    pointer-events: none;
}
.portrait-frame img,
.img-premium img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform 0.8s var(--ease); }
.portrait-frame:hover img,
.img-premium:hover img { transform: scale(1.03); }
.showcase-card img,
.corridor-img img,
.network-img img,
.glass-card img,
.rounded-img { transition: transform 0.7s var(--ease), filter 0.5s; }
.img-frame { overflow: hidden; border-radius: inherit; }
.showcase-card,
.corridor-card,
.network-card,
.glass-card { border-radius: var(--radius); overflow: hidden; }
.showcase-card:hover img,
.corridor-card:hover img,
.network-card:hover img { transform: scale(1.04); }
html[data-theme="light"] .showcase-card img,
html[data-theme="light"] .corridor-img img { filter: saturate(1.02) contrast(1.02); }
.portrait-badge {
    position: absolute;
    left: 1rem; bottom: 1rem;
    padding: 0.75rem 1rem;
    background: var(--hero-badge-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}
.portrait-badge span { display: block; font-weight: 700; color: var(--gold-2); letter-spacing: 0.15em; }
.portrait-badge small { color: var(--muted); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; }

.hero-stats {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}
.hero-stats div {
    padding: 1rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}
.hero-stats strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--gold-2);
}
.hero-stats span { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* Marquee */
.marquee {
    border-block: 1px solid var(--line);
    background: var(--bg-2);
    overflow: hidden;
    padding: 0.85rem 0;
}
.marquee-track {
    white-space: nowrap;
    animation: marquee 28s linear infinite;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.72rem;
    color: var(--gold);
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Sections */
.section { padding: 6rem 0; }
.section-dark,
.section-muted { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.section-head { max-width: 680px; margin-bottom: 3rem; }
.split-head {
    max-width: none;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
}
.page-hero {
    padding: calc(var(--header-h) + var(--safe-top) + 3rem) 0 2.5rem;
    background:
        radial-gradient(circle at 20% 0%, rgba(201,169,98,0.08), transparent 35%),
        var(--bg);
    border-bottom: 1px solid var(--line);
}
.page-hero--image {
    position: relative;
    overflow: hidden;
    background: var(--bg);
}
.page-hero--image::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-img);
    background-size: cover;
    background-position: center;
    opacity: 0.22;
    filter: saturate(0.85);
}
.page-hero--image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--page-hero-overlay);
}
.page-hero--image .container { position: relative; z-index: 1; }

.section-pitch {
    position: relative;
    overflow: hidden;
}
.section-pitch::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--pitch-bg);
    background-size: cover;
    background-position: center;
    opacity: 0.12;
}
.section-pitch .container { position: relative; z-index: 1; }

/* Showcase — desktop grid, mobile scroll */
.section-showcase { padding-top: 4rem; padding-bottom: 4rem; }
.showcase-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.showcase-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.showcase-card img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}
.showcase-card figcaption {
    padding: 0.85rem 1rem;
    font-size: 0.82rem;
    color: var(--muted);
}
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.showcase-card--grid img { aspect-ratio: 3/4; }

/* Corridors */
.corridor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.corridor-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transition: transform 0.35s var(--ease), border-color 0.35s;
}
.corridor-card:hover {
    transform: translateY(-4px);
    border-color: rgba(154, 119, 48, 0.28);
}
.corridor-img { position: relative; }
.corridor-img img {
    width: 100%;
    aspect-ratio: 16/11;
    object-fit: cover;
}
.corridor-code {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    background: var(--hero-badge-bg);
    border: 1px solid var(--line);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--gold-2);
}
.corridor-body { padding: 1.15rem 1.25rem 1.35rem; }
.corridor-body h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.corridor-body p { margin: 0; font-size: 0.92rem; color: var(--muted); }

/* Expertise */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.expertise-card {
    padding: 1.5rem;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--line);
}
.expertise-n {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: rgba(154, 119, 48, 0.45);
    margin-bottom: 0.5rem;
}
html[data-theme="dark"] .expertise-n { color: rgba(201, 169, 98, 0.35); }

/* Press spotlight */
.press-spot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.press-spot-card {
    padding: 1.5rem;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 100%;
}
.press-spot-card h3 {
    font-size: 1.15rem;
    line-height: 1.25;
}
.press-spot-card p {
    flex: 1;
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.cta-band--image {
    position: relative;
    overflow: hidden;
}
.cta-band--image::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--cta-bg);
    background-size: cover;
    background-position: center;
    opacity: 0.18;
}
.cta-band--image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--cta-overlay);
}
.cta-band--image .cta-band-inner { position: relative; z-index: 1; }

.mt { margin-top: 1rem; }

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Cards */
.glass-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.glass-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; filter: saturate(0.9); }
.glass-card-body { padding: 1.5rem 1.75rem 1.75rem; }

.pillar-grid, .comp-grid, .role-grid, .tm-grid {
    display: grid;
    gap: 1.25rem;
}
.pillar-grid { grid-template-columns: repeat(4, 1fr); }
.comp-grid, .tm-grid { grid-template-columns: repeat(2, 1fr); }
.role-grid { grid-template-columns: repeat(2, 1fr); }

.pillar, .comp-card, .role-card, .tm-card {
    padding: 1.75rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform 0.35s var(--ease), border-color 0.35s;
}
.pillar:hover, .comp-card:hover, .role-card:hover, .tm-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201,169,98,0.25);
}
.pillar span {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: rgba(201,169,98,0.35);
    margin-bottom: 0.75rem;
}
.role-head { display: flex; justify-content: space-between; gap: 1rem; align-items: flex-start; margin-bottom: 0.5rem; }
.pill {
    display: inline-block;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-size: 0.72rem;
    color: var(--muted);
    white-space: nowrap;
}

/* Network */
.network-preview {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}
.net-card, .network-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
}
.net-card img, .network-img img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    filter: grayscale(0.15);
    transition: transform 0.5s var(--ease), filter 0.5s;
}
.net-card:hover img, .network-card:hover img { transform: scale(1.04); filter: grayscale(0); }
.net-card figcaption, .network-body { padding: 0.85rem; }
.net-card small, .network-body .small { display: block; color: var(--muted); margin-top: 0.25rem; }
.net-placeholder {
    aspect-ratio: 1;
    display: grid; place-items: center;
    background: linear-gradient(145deg, var(--bg-3), var(--bg-2));
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
}
.net-placeholder.lg { aspect-ratio: 16/10; font-size: 3rem; }
.network-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.network-img { overflow: hidden; }

.name-list { list-style: none; padding: 0; margin: 0; }
.name-list li {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}
.name-list strong { color: var(--gold-2); }

/* Timeline */
.timeline { display: grid; gap: 0; }
.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--line);
}
.timeline-item time {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--gold);
}

/* Press */
.press-card {
    padding: 2rem;
    margin-bottom: 1.25rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}
.press-card blockquote {
    margin: 1.25rem 0;
    padding-left: 1.25rem;
    border-left: 2px solid var(--gold);
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--muted);
}

/* Gallery */
.gallery-masonry {
    columns: 3;
    column-gap: 1rem;
}
.gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
}
.gallery-open {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: none;
    cursor: zoom-in;
}
.gallery-item img { width: 100%; transition: transform 0.5s var(--ease); }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item figcaption {
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
    color: var(--muted);
}

.lightbox {
    position: fixed; inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.92);
    display: grid;
    place-items: center;
    padding: 2rem;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-height: 78vh; max-width: 92vw; border-radius: var(--radius-sm); }
.lightbox p { margin-top: 1rem; text-align: center; color: var(--muted); }
.lightbox-close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    width: 48px; height: 48px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Contact */
.contact-card, .contact-form {
    padding: 2rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}
.contact-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.contact-list li { padding: 0.65rem 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.contact-list span {
    display: inline-block;
    min-width: 5rem;
    color: var(--gold-2);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.contact-form label { display: block; margin-bottom: 1rem; }
.contact-form label span {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: var(--surface-2);
    font-size: 16px;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none;
    border-color: rgba(201,169,98,0.45);
    box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-alert { padding: 1rem 1.25rem; border-radius: var(--radius-sm); margin-bottom: 1rem; }
.form-alert.ok { background: rgba(46, 160, 100, 0.15); border: 1px solid rgba(46, 160, 100, 0.35); }
.form-alert.err { background: rgba(200, 70, 70, 0.12); border: 1px solid rgba(200, 70, 70, 0.35); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: transform 0.35s var(--ease-spring), box-shadow 0.35s, background 0.35s, border-color 0.35s;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.6s var(--ease);
}
.btn:hover::after { transform: translateX(120%); }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn-gold {
    background: linear-gradient(135deg, #e8dcc4 0%, #d4bc8a 35%, #c4a574 70%, #b8956a 100%);
    color: var(--btn-gold-text);
    box-shadow: 0 4px 20px var(--gold-glow);
    border: 1px solid rgba(196, 165, 116, 0.35);
}
html[data-theme="dark"] .btn-gold {
    background: linear-gradient(135deg, #b8944f, #e8d5a3 55%, #c9a962);
}
.btn-ghost {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--line);
    color: var(--text);
}
html[data-theme="dark"] .btn-ghost { background: transparent; }
.btn-ghost:hover {
    background: var(--surface);
    border-color: rgba(196, 165, 116, 0.35);
}
.text-link { color: var(--gold-2); font-weight: 600; letter-spacing: 0.04em; }

.cta-band {
    padding: 4rem 0;
    background:
        radial-gradient(circle at 80% 50%, rgba(201,169,98,0.12), transparent 40%),
        var(--bg-2);
    border-top: 1px solid var(--line);
}
.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.bio-block { padding: 2rem 0; border-bottom: 1px solid var(--line); }
.intro-lead { font-size: 1.2rem; margin-bottom: 2rem; color: var(--muted); }
.bio-gallery { display: grid; gap: 1rem; }
.bio-gallery img { border-radius: var(--radius); border: 1px solid var(--line); }
.rounded-img { border-radius: var(--radius); border: 1px solid var(--line); width: 100%; }

/* Footer */
.site-footer {
    padding: 4rem 0 calc(2.5rem + var(--safe-bottom));
    border-top: 1px solid var(--line);
    background: var(--bg-2);
}
.footer-grid {
    width: min(1180px, calc(100% - clamp(1.25rem, 4vw, 2.5rem)));
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 2rem;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem; align-content: start; }
.footer-links a { color: var(--muted); font-size: 0.88rem; }
.footer-links a:hover { color: var(--gold-2); }

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
body.is-loaded .hero-copy.reveal { animation: heroFade 1s var(--ease) forwards; }
body.is-loaded .hero-visual.reveal { animation: heroFade 1s var(--ease) 0.15s forwards; opacity: 0; }
@keyframes heroFade {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: none; }
}
@keyframes floatSoft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.hero-visual .portrait-frame { animation: floatSoft 6s ease-in-out infinite; }
.hero-visual .portrait-frame:hover { animation: none; }
.pillar, .corridor-card, .expertise-card, .press-spot-card, .network-card {
    transition: transform 0.45s var(--ease), box-shadow 0.45s, border-color 0.45s;
}
.pillar:hover, .expertise-card:hover, .press-spot-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.32s; }

/* RTL */
[dir="rtl"] .timeline-item,
[dir="rtl"] .name-list li { direction: rtl; }
[dir="rtl"] .press-card blockquote { border-left: 0; border-right: 2px solid var(--gold); padding-left: 0; padding-right: 1.25rem; }
[dir="rtl"] .hero-grid, [dir="rtl"] .split, [dir="rtl"] .cta-band-inner, [dir="rtl"] .split-head { direction: rtl; }
[dir="rtl"] .showcase-panel { direction: rtl; }
[dir="rtl"] .site-drawer-links a { justify-content: flex-end; }

/* Responsive */
@media (max-width: 1200px) {
    .site-nav--desktop a { padding: 0.45rem 0.55rem; font-size: 0.74rem; }
    .corridor-grid, .expertise-grid { grid-template-columns: repeat(2, 1fr); }
    .showcase-panel { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1080px) {
    .pillar-grid { grid-template-columns: repeat(2, 1fr); }
    .network-preview { grid-template-columns: repeat(3, 1fr); }
    .network-grid { grid-template-columns: repeat(2, 1fr); }
    .showcase-panel { grid-template-columns: repeat(2, 1fr); }
    .showcase-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    :root { --header-h: 72px; }

    .header-inner {
        grid-template-columns: 1fr auto auto;
        gap: 0.65rem;
    }

    .site-nav--desktop,
    .header-actions { display: none; }

    .nav-toggle { display: block; }

    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 1001;
        opacity: 0;
        transition: opacity 0.35s var(--ease);
        pointer-events: none;
    }
    .nav-overlay:not([hidden]) {
        opacity: 1;
        pointer-events: auto;
    }

    .site-drawer {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(88vw, 360px);
        padding: calc(var(--safe-top) + 1rem) 1.25rem calc(1.5rem + var(--safe-bottom));
        background: var(--bg-2);
        border-left: 1px solid var(--line);
        transform: translateX(105%);
        transition: transform 0.38s var(--ease);
        z-index: 1002;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .site-drawer.is-open { transform: none; }

    .site-drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1.25rem;
    }
    .nav-close {
        display: grid;
        place-items: center;
        width: 44px;
        height: 44px;
        border: 1px solid var(--line);
        border-radius: 50%;
        background: var(--surface);
        font-size: 1.6rem;
        line-height: 1;
        cursor: pointer;
    }
    .site-drawer-links {
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
    }
    .site-drawer-links a {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
        border-radius: var(--radius-sm);
        color: var(--muted);
    }
    .site-drawer-links a:hover,
    .site-drawer-links a.is-active { color: var(--text); background: var(--surface); }
    .site-drawer-links .nav-cta {
        border: 1px solid rgba(154, 119, 48, 0.35);
        color: var(--gold-2);
        justify-content: center;
    }
    .site-drawer-foot {
        margin-top: auto;
        padding-top: 1.25rem;
        display: grid;
        gap: 0.85rem;
    }
    .lang-switch--drawer { width: 100%; }
    .lang-switch--drawer a { flex: 1; min-height: 44px; }

    .showcase-panel {
        display: flex;
        gap: 0.85rem;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin-inline: calc(-1 * clamp(1.25rem, 4vw, 2.5rem) / 2);
        padding-inline: clamp(1.25rem, 4vw, 2.5rem);
        scrollbar-width: none;
    }
    .showcase-panel::-webkit-scrollbar { display: none; }
    .showcase-panel .showcase-card {
        flex: 0 0 min(78vw, 300px);
        scroll-snap-align: start;
    }

    .corridor-grid, .expertise-grid { grid-template-columns: 1fr; }
    .press-spot-grid { grid-template-columns: 1fr; }
    .split-head { flex-direction: column; align-items: flex-start; }
    .hero-grid, .split, .footer-grid, .contact-split { grid-template-columns: 1fr; }
    .hero-grid { gap: 2rem; }
    .hero-copy { order: 1; }
    .hero-visual { order: 2; }
    .hero-copy .lead { max-width: none; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-top: 2rem; }
    .portrait-frame { max-width: min(100%, 360px); }

    .role-grid, .comp-grid, .tm-grid { grid-template-columns: 1fr; }
    .gallery-masonry { columns: 2; column-gap: 0.75rem; }
    .name-list li { grid-template-columns: 1fr; gap: 0.35rem; }
    .cta-band-inner { flex-direction: column; align-items: stretch; }
    .cta-band-inner .btn { width: 100%; }
    .section { padding: 4rem 0; }
    .page-hero { padding-top: calc(var(--header-h) + var(--safe-top) + 2rem); }
    .pillar, .comp-card, .role-card { padding: 1.35rem; }
    .press-card { padding: 1.35rem; }
    .press-card blockquote { font-size: 1.15rem; }
}

@media (max-width: 600px) {
    h1 { font-size: clamp(2.2rem, 10vw, 3rem); }
    .kicker { letter-spacing: 0.16em; font-size: 0.68rem; }

    .pillar-grid, .network-preview, .network-grid { grid-template-columns: 1fr; }
    .gallery-masonry { columns: 1; }
    .timeline-item { grid-template-columns: 72px 1fr; gap: 1rem; }
    .timeline-item time { font-size: 1.25rem; }
    .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero-stats div { padding: 0.85rem; }
    .hero-stats strong { font-size: 1.45rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-links { gap: 0.5rem 1rem; }
    .bio-gallery { grid-template-columns: 1fr; }
    .lightbox { padding: 1rem; padding-top: calc(1rem + var(--safe-top)); }
    .lightbox-close {
        top: calc(1rem + var(--safe-top));
        right: calc(1rem + var(--safe-right));
    }
    .brand-text strong { font-size: 0.95rem; }
}

@media (max-width: 380px) {
    .brand-text { display: none; }
    .timeline-item { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    [dir="rtl"] .site-drawer {
        right: auto;
        left: 0;
        border-left: 0;
        border-right: 1px solid var(--line);
        transform: translateX(-105%);
    }
    [dir="rtl"] .site-drawer.is-open { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    *, .reveal, .marquee-track { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
}
