/* ============================================================
   SETCORE — DESIGN SYSTEM
   Dark editorial. Goldman Sachs meets SLB.
   ============================================================ */

/* ── Fonts ─────────────────────────────────────────────────── */
@font-face {
    font-family: "HelveticaNeueLTProBdEx";
    src: url("assets/fonts/HelveticaNeueLTPro-BdEx.woff2") format("woff2"),
         url("assets/fonts/HelveticaNeueLTPro-BdEx.woff")  format("woff");
    font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
    font-family: "HelveticaNeueLTProBd";
    src: url("assets/fonts/HelveticaNeueLTPro-Bd.woff2") format("woff2"),
         url("assets/fonts/HelveticaNeueLTPro-Bd.woff")  format("woff");
    font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
    font-family: "HelveticaNeueLTProRoman";
    src: url("assets/fonts/HelveticaNeueLTPro-Roman.woff2") format("woff2"),
         url("assets/fonts/HelveticaNeueLTPro-Roman.woff")  format("woff");
    font-weight: 400; font-style: normal; font-display: swap;
}

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
    /* Brand Book exact palette */
    --black:        #000000;   /* Brand Black */
    --black-mid:    #1A1A1A;   /* Dark surface */
    --white:        #FFFFFF;   /* Brand White */
    --off-white:    #F5F5F5;   /* Neutral light surface */
    --light:        #EBEBEB;   /* Subtle separation */
    --gray-dark:    #414042;   /* Brand Black 7C */
    --muted:        #939598;   /* Brand Cool Gray 08C */
    --gray-light:   #BCBEC0;   /* Brand Cool Gray 04C */
    --orange:       #FF4715;   /* Brand Primary — Pantone 172 C */
    --orange-dark:  #D93A10;
    --border:       rgba(255,255,255,0.08);
    --border-light: #D1D3D4;   /* Brand Cool Gray 02C */

    --font-boldex: "HelveticaNeueLTProBdEx", "Arial Black", Arial, sans-serif;
    --font-bold:   "HelveticaNeueLTProBd",   "Arial Bold",  Arial, sans-serif;
    --font-roman:  "HelveticaNeueLTProRoman", Arial, sans-serif;

    --max-w: 1320px;
    --pad-x: clamp(24px, 5vw, 80px);
    --section: 140px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { background: var(--white); color: var(--black); font-family: var(--font-roman); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ── Container ──────────────────────────────────────────────── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    background: var(--orange);
    color: #fff;
    font-family: var(--font-boldex);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.2s;
}
.btn-primary:hover { background: var(--orange-dark); }

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    font-family: var(--font-boldex);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: border-color 0.2s, background 0.2s;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.07); }

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    background: var(--black);
    color: #fff;
    font-family: var(--font-boldex);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.2s;
}
.btn-dark:hover { background: #1f1f1f; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    border: 1px solid var(--black);
    color: var(--black);
    font-family: var(--font-boldex);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s;
}
.btn-ghost:hover { background: var(--black); color: #fff; }

/* ── Section Label ──────────────────────────────────────────── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-boldex);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.5rem;
}
.section-label::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--orange);
    flex-shrink: 0;
}
.section-label.light { color: rgba(255,255,255,0.5); }
.section-label.light::before { background: rgba(255,255,255,0.3); }

/* ── Preloader ──────────────────────────────────────────────── */
.preloader {
    position: fixed; inset: 0;
    background: var(--black);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader img { width: 220px; opacity: 0.95; }
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
body:not(.loaded) { overflow: hidden; }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    padding: 28px 0;
    transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}
.navbar.scrolled {
    background: rgba(0,0,0,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}
.nav-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
    display: flex;
    align-items: center;
    gap: 60px;
}
.nav-logo { flex-shrink: 0; }
.logo-white { display: block; height: 52px; width: auto; }
.logo-dark  { display: none;  height: 52px; width: auto; }
.navbar.scrolled .logo-white { display: block; }
.navbar.scrolled .logo-dark  { display: none; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 44px;
    margin-left: auto;
}
.nav-links a {
    font-family: var(--font-boldex);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 1px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.2s;
    transform-origin: left;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
    flex-shrink: 0;
    padding: 11px 28px;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.9);
    font-family: var(--font-boldex);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.nav-cta:hover { border-color: var(--orange); color: var(--orange); }

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-burger span {
    display: block; width: 24px; height: 1.5px;
    background: #fff;
    transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .nav-burger { display: flex; margin-left: auto; }
}

/* ── Mobile Menu ────────────────────────────────────────────── */
.mobile-menu {
    position: fixed; inset: 0;
    background: var(--black);
    z-index: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-inner { text-align: center; }
.mobile-menu-inner ul { display: flex; flex-direction: column; gap: 32px; margin-bottom: 48px; }
.mobile-menu-inner a {
    font-family: var(--font-boldex);
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.05em;
    transition: color 0.2s;
}
.mobile-menu-inner a:hover { color: #fff; }
.mobile-cta {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.7);
    font-family: var(--font-boldex);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: border-color 0.2s, color 0.2s;
}
.mobile-cta:hover { border-color: var(--orange); color: var(--orange); }

/* ============================================================
   HOMEPAGE
   ============================================================ */

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 100px;
    overflow: hidden;
    background: var(--black);
}
.hero-bg {
    position: absolute; inset: 0;
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        105deg,
        rgba(0,0,0,0.90) 0%,
        rgba(0,0,0,0.65) 50%,
        rgba(0,0,0,0.30) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-eyebrow {
    font-family: var(--font-boldex);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 14px;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--orange);
}
.hero h1 {
    font-family: var(--font-boldex);
    font-size: clamp(3.8rem, 8.5vw, 9rem);
    line-height: 0.95;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 2.5rem;
}
.hero-rule { display: none; }
.hero-desc {
    font-family: var(--font-roman);
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    color: rgba(255,255,255,0.65);
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: 3rem;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.hero-scroll {
    position: absolute;
    bottom: 40px;
    right: var(--pad-x);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.hero-scroll span {
    font-family: var(--font-boldex);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    writing-mode: vertical-rl;
}
.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--orange), transparent);
}

/* ── Stats Bar ──────────────────────────────────────────────── */
.stats-bar {
    background: var(--black);
    border-top: 1px solid var(--border);
}
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stat-cell {
    padding: 70px 48px;
    border-right: 1px solid var(--border);
    transition: background 0.3s;
}
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: var(--black-mid); }
.stat-value {
    font-family: var(--font-boldex);
    font-size: clamp(3rem, 4.5vw, 5rem);
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}
.stat-value sup {
    font-size: 0.45em;
    color: var(--orange);
    vertical-align: super;
    letter-spacing: 0;
}
.stat-label-bar {
    font-family: var(--font-roman);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
@media (max-width: 900px) {
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .stat-cell:nth-child(2) { border-right: none; }
}
@media (max-width: 560px) {
    .stats-row { grid-template-columns: 1fr; }
    .stat-cell { border-right: none; border-bottom: 1px solid var(--border); padding: 48px var(--pad-x); }
    .stat-cell:last-child { border-bottom: none; }
}

/* ── Services Section ───────────────────────────────────────── */
.services-section {
    padding: var(--section) 0;
    background: var(--white);
}
.services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}
.services-list {
    padding-right: 80px;
    display: flex;
    flex-direction: column;
}
.services-list > .section-label { margin-bottom: 3rem; }
.service-item {
    display: flex;
    gap: 28px;
    padding: 36px 0;
    border-top: 1px solid var(--border-light);
    transition: background 0.2s;
}
.service-item:last-of-type { border-bottom: 1px solid var(--border-light); }
.svc-num {
    font-family: var(--font-boldex);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--orange);
    padding-top: 4px;
    flex-shrink: 0;
    width: 28px;
}
.svc-text h3 {
    font-family: var(--font-boldex);
    font-size: clamp(1.6rem, 2.2vw, 2.2rem);
    color: var(--black);
    line-height: 1.1;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
}
.svc-text p {
    font-family: var(--font-roman);
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}
.svc-link {
    font-family: var(--font-boldex);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--black);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s, gap 0.2s;
}
.svc-link:hover { color: var(--orange); gap: 14px; }
.services-list > .btn-dark { align-self: flex-start; margin-top: 3rem; }
.services-media {
    position: relative;
    overflow: hidden;
    min-height: 600px;
}
.services-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}
.services-media:hover img { transform: scale(1.03); }
@media (max-width: 900px) {
    .services-layout { grid-template-columns: 1fr; }
    .services-list { padding-right: 0; margin-bottom: 60px; }
    .services-media { min-height: 400px; }
}

/* ── Feature Image ──────────────────────────────────────────── */
.feature-image {
    height: 55vh;
    min-height: 360px;
    overflow: hidden;
}
.feature-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

/* ── Impact Section ─────────────────────────────────────────── */
.impact-section {
    padding: var(--section) 0;
    background: var(--off-white);
}
.impact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}
.impact-statement h2 {
    font-family: var(--font-boldex);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    color: var(--black);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-top: 0.5rem;
}
.impact-numbers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 32px;
}
.impact-item {}
.impact-value {
    font-family: var(--font-boldex);
    font-size: clamp(2.4rem, 3.5vw, 3.6rem);
    color: var(--black);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 0.6rem;
}
.impact-label {
    font-family: var(--font-roman);
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
@media (max-width: 900px) {
    .impact-layout { grid-template-columns: 1fr; gap: 60px; }
}
@media (max-width: 560px) {
    .impact-numbers { grid-template-columns: 1fr; }
}

/* ── Heritage Section ───────────────────────────────────────── */
.heritage-section {
    padding: var(--section) 0;
    background: var(--black);
}
.heritage-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 100px;
    align-items: start;
}
.heritage-inner--solo {
    grid-template-columns: 1fr;
    max-width: 720px;
}
.heritage-text h2 {
    font-family: var(--font-boldex);
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0.5rem 0 1.5rem;
}
.heritage-text p {
    font-family: var(--font-roman);
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}
.heritage-text .btn-outline-white { display: inline-flex; }
.timeline-items { display: flex; flex-direction: column; }
.tl-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 32px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    opacity: 0.4;
    transition: opacity 0.3s;
}
.tl-item:first-child { border-top: 1px solid var(--border); }
.tl-item:hover, .tl-item.active { opacity: 1; }
.tl-item.active .tl-year { color: var(--orange); }
.tl-year {
    font-family: var(--font-boldex);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.08em;
    padding-top: 3px;
}
.tl-content strong {
    display: block;
    font-family: var(--font-bold);
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 0.4rem;
}
.tl-content span {
    font-family: var(--font-roman);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
}
@media (max-width: 900px) {
    .heritage-inner { grid-template-columns: 1fr; gap: 60px; }
}

/* ── Clients Section ────────────────────────────────────────── */
.clients-section {
    padding: var(--section) 0;
    background: var(--white);
}
.clients-section .section-header {
    margin-bottom: 60px;
}
.clients-section .section-header h2 {
    font-family: var(--font-boldex);
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--black);
    letter-spacing: -0.02em;
    margin-top: 0.5rem;
}
.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid var(--border-light);
    border-left: 1px solid var(--border-light);
}
.client-cell {
    padding: 52px 40px;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    transition: background 0.2s;
}
.client-cell:hover { background: #F5F5F5; }
.client-cell img {
    max-height: 120px;
    max-width: 220px;
    width: auto;
    object-fit: contain;
}
@media (max-width: 900px) {
    .clients-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
    .clients-grid { grid-template-columns: repeat(2, 1fr); }
    .client-cell { padding: 32px 24px; }
}

/* ── Partner Logos (Services Page) ──────────────────────────── */
/* ── Partnership Solutions — Integrated Partner Strip ────────── */
.pp-strip {
    border-top: 1px solid var(--border-light);
    background: var(--white);
}
.pp-strip-header {
    display: flex;
    align-items: baseline;
    gap: 48px;
    padding: 56px 0 48px;
}
.pp-strip-header p {
    font-family: var(--font-roman);
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.6;
    max-width: 480px;
}
.pp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid var(--border-light);
}
.pp-card {
    padding: 80px 60px;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--white);
    transition: background 0.25s;
    min-height: 380px;
    justify-content: space-between;
}
.pp-card:nth-child(2n) { border-right: none; }
.pp-card:hover { background: #fafafa; }
.pp-card img {
    max-height: 150px;
    max-width: 280px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 48px;
}
.pp-card-foot {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.pp-card span {
    font-family: var(--font-boldex);
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
}
@media (max-width: 900px) {
    .pp-strip-header { flex-direction: column; gap: 16px; padding: 40px 0 32px; }
    .pp-grid { grid-template-columns: 1fr; }
    .pp-card { border-right: none; min-height: auto; padding: 56px 40px; }
    .pp-card:last-child { border-bottom: none; }
}

/* ── CTA Section ────────────────────────────────────────────── */
.cta-section {
    position: relative;
    padding: 160px 0;
    background: var(--black);
    text-align: center;
    overflow: hidden;
}
.cta-bg {
    position: absolute; inset: 0;
}
.cta-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.15; }
.cta-inner {
    position: relative;
    z-index: 2;
}
.cta-inner h2 {
    font-family: var(--font-boldex);
    font-size: clamp(2.5rem, 5vw, 5rem);
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}
.cta-inner p {
    font-family: var(--font-roman);
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 3rem;
}
.cta-inner .btn-primary { margin: 0 auto; }

/* ── Footer ─────────────────────────────────────────────────── */
footer {
    background: var(--black-mid);
    border-top: 1px solid var(--border);
    padding: 80px 0 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
}
.footer-brand img {
    height: 26px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    margin-bottom: 1.5rem;
}
.footer-brand p {
    font-family: var(--font-roman);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.75;
    max-width: 280px;
    margin-bottom: 2rem;
}
.footer-social { display: flex; gap: 20px; }
.footer-social li a img { height: 16px; width: auto; filter: brightness(0) invert(1); opacity: 0.35; transition: opacity 0.2s; }
.footer-social li a:hover img { opacity: 1; }

.footer-col h4 {
    font-family: var(--font-boldex);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 1.5rem;
}
.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col ul li a {
    font-family: var(--font-roman);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }
.contact-text {
    font-family: var(--font-roman);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}
.contact-text a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.contact-text a:hover { color: var(--orange); }
.footer-certs { display: flex; gap: 16px; margin-top: 1.5rem; }
.footer-certs img { height: 36px; width: auto; filter: brightness(0) invert(1); opacity: 0.25; }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-bottom p {
    font-family: var(--font-roman);
    font-size: 0.7rem;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.04em;
}
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
}

/* ============================================================
   INNER PAGES — SHARED
   ============================================================ */

/* ── Page Hero ──────────────────────────────────────────────── */
.page-hero {
    position: relative;
    height: 65vh;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    overflow: hidden;
    background: var(--black);
}
.page-hero--short {
    height: 48vh;
    min-height: 360px;
}
.page-hero .hero-bg img { object-position: center 30%; }
.page-hero .hero-overlay {
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.92) 0%,
        rgba(0,0,0,0.55) 50%,
        rgba(0,0,0,0.25) 100%
    );
}
.page-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}
.page-hero-content .hero-eyebrow { color: var(--orange); }
.page-hero-content h1 {
    font-family: var(--font-boldex);
    font-size: clamp(2.8rem, 6vw, 6rem);
    color: #fff;
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin: 0.75rem 0 1.25rem;
}
.page-hero-content .hero-desc {
    font-family: var(--font-roman);
    font-size: 0.95rem;
    color: rgba(255,255,255,0.55);
    max-width: 500px;
    line-height: 1.8;
    margin: 0;
}

/* ── Intro Section ──────────────────────────────────────────── */
.intro-section {
    padding: var(--section) 0;
    background: var(--white);
}
.intro-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 100px;
    align-items: start;
}
.intro-text .section-label { margin-bottom: 1.25rem; }
.intro-text h2 {
    font-family: var(--font-boldex);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--black);
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.intro-body p {
    font-family: var(--font-roman);
    font-size: 1rem;
    color: #555;
    line-height: 1.85;
    margin-bottom: 1.25rem;
}
.intro-presence {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 2rem;
}
.intro-presence span {
    padding: 7px 18px;
    border: 1px solid var(--border-light);
    font-family: var(--font-boldex);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--black);
}
@media (max-width: 768px) { .intro-inner { grid-template-columns: 1fr; gap: 40px; } }

/* ── Pillars Section ────────────────────────────────────────── */
.pillars-section {
    padding: var(--section) 0;
    background: var(--black);
}
.section-header.dark h2 { color: #fff; }
.pillars-section .section-header { margin-bottom: 80px; }
.pillars-section .section-header h2 {
    font-family: var(--font-boldex);
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: #fff;
    letter-spacing: -0.02em;
    margin-top: 0.5rem;
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border);
}
.pillar-card {
    padding: 56px 48px;
    border-right: 1px solid var(--border);
    transition: background 0.3s;
}
.pillar-card:last-child { border-right: none; }
.pillar-card:hover { background: var(--black-mid); }
.pillar-icon {
    font-family: var(--font-boldex);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--orange);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.pillar-icon::after { content: ''; display: block; flex: 1; height: 1px; background: var(--border); }
.pillar-card h3 {
    font-family: var(--font-boldex);
    font-size: clamp(1.5rem, 2.2vw, 2.1rem);
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.pillar-card p {
    font-family: var(--font-roman);
    font-size: 1rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.8;
}
@media (max-width: 768px) {
    .pillars-grid { grid-template-columns: 1fr; }
    .pillar-card { border-right: none; border-bottom: 1px solid var(--border); }
    .pillar-card:last-child { border-bottom: none; }
}

/* ── Values Section (Brand Book: 4 Core Values) ─────────────── */
.values-section {
    padding: var(--section) 0;
    background: var(--black);
}
.values-section .section-header { margin-bottom: 80px; }
.values-section .section-header h2 {
    font-family: var(--font-boldex);
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: #fff;
    letter-spacing: -0.02em;
    margin-top: 0.5rem;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border);
}
.value-card {
    padding: 52px 40px;
    border-right: 1px solid var(--border);
    transition: background 0.3s;
}
.value-card:last-child { border-right: none; }
.value-card:hover { background: var(--black-mid); }
.value-num {
    font-family: var(--font-boldex);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--orange);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.value-num::after { content: ''; display: block; flex: 1; height: 1px; background: var(--border); }
.value-card h3 {
    font-family: var(--font-boldex);
    font-size: clamp(1.3rem, 1.8vw, 1.75rem);
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.value-card p {
    font-family: var(--font-roman);
    font-size: 1rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.8;
}
@media (max-width: 1024px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .value-card:nth-child(2) { border-right: none; }
    .value-card:nth-child(3) { border-top: 1px solid var(--border); }
    .value-card:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
}
@media (max-width: 560px) {
    .values-grid { grid-template-columns: 1fr; }
    .value-card { border-right: none; border-bottom: 1px solid var(--border); }
    .value-card:last-child { border-bottom: none; }
}

/* ── Team Section ───────────────────────────────────────────── */
.team-section {
    padding: var(--section) 0;
    background: var(--white);
}
.team-section .section-header { margin-bottom: 80px; }
.team-section .section-header h2 {
    font-family: var(--font-boldex);
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--black);
    letter-spacing: -0.02em;
    margin-top: 0.5rem;
}
.section-sub {
    font-family: var(--font-roman);
    font-size: 1rem;
    color: var(--muted);
    max-width: 520px;
    line-height: 1.75;
    margin-top: 1rem;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
}
.team-card {}
.team-photo {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 1.25rem;
    background: var(--off-white);
}
.team-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.7s ease;
}
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-info h4 {
    font-family: var(--font-boldex);
    font-size: 0.95rem;
    color: var(--black);
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}
.team-info span {
    font-family: var(--font-roman);
    font-size: 0.78rem;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }

/* ── CEO Featured Row ───────────────────────────────────────── */
.ceo-row {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    align-items: flex-end;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--border-light);
}
.ceo-photo {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--off-white);
}
.ceo-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.7s ease;
}
.ceo-row:hover .ceo-photo img { transform: scale(1.03); }
.ceo-info {
    padding-bottom: 8px;
}
.ceo-info h3 {
    font-family: var(--font-boldex);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    color: var(--black);
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 0.5rem;
}
.ceo-info .ceo-title {
    font-family: var(--font-roman);
    font-size: 0.82rem;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2.5rem;
    display: block;
}
.ceo-rule {
    width: 40px;
    height: 2px;
    background: var(--border-light);
    margin-bottom: 2.5rem;
}
.ceo-info p {
    font-family: var(--font-roman);
    font-size: 0.9rem;
    color: #666;
    line-height: 1.85;
    max-width: 480px;
}
@media (max-width: 900px) {
    .ceo-row { grid-template-columns: 1fr; gap: 32px; }
    .ceo-photo { aspect-ratio: 4/3; }
}
@media (max-width: 560px) {
    .ceo-photo { aspect-ratio: 1/1; }
}

/* ── Certifications Section ─────────────────────────────────── */
.certs-section {
    position: relative;
    padding: var(--section) 0;
    overflow: hidden;
    background: var(--black);
}
.certs-bg { position: absolute; inset: 0; z-index: 0; }
.certs-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.12; }
.certs-inner {
    position: relative; z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 860px;
}
.certs-text h2 {
    font-family: var(--font-boldex);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0.75rem 0 1.25rem;
}
.certs-text p {
    font-family: var(--font-roman);
    font-size: 1rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}
.cert-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 32px 48px;
}
.cert-logos img {
    height: 60px;
    width: auto;
    object-fit: contain;
    opacity: 0.82;
    transition: opacity 0.2s;
}
.cert-logos img:hover { opacity: 1; }
.certs-standards h4 {
    font-family: var(--font-boldex);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 1.5rem;
}
.standards-list { padding: 0; margin: 0; }
.standards-list li {
    font-family: var(--font-roman);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 16px;
}
.standards-list li::before { content: '—'; color: var(--orange); font-size: 0.7rem; }
@media (max-width: 768px) { .certs-inner { grid-template-columns: 1fr; gap: 60px; } }

/* ── Local Content ──────────────────────────────────────────── */
.local-section {
    padding: var(--section) 0;
    background: var(--off-white);
}
.local-section .section-header { margin-bottom: 80px; }
.local-section .section-header h2 {
    font-family: var(--font-boldex);
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: var(--black);
    letter-spacing: -0.02em;
    margin-top: 0.5rem;
}
.local-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border-light);
}
.local-card {
    padding: 60px 56px;
    border-right: 1px solid var(--border-light);
    background: var(--white);
    transition: background 0.3s;
}
.local-card:last-child { border-right: none; }
.local-card:hover { background: #fafafa; }
.local-card img { height: 48px; width: auto; margin-bottom: 2.5rem; }
.local-card h3 {
    font-family: var(--font-boldex);
    font-size: clamp(1.4rem, 2vw, 2rem);
    color: var(--black);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.local-card p {
    font-family: var(--font-roman);
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}
@media (max-width: 768px) {
    .local-grid { grid-template-columns: 1fr; }
    .local-card { border-right: none; border-bottom: 1px solid var(--border-light); }
    .local-card:last-child { border-bottom: none; }
}

/* ── Founder Heritage Section ────────────────────────────────── */
.founder-section {
    background: var(--black);
    border-top: 1px solid var(--border);
    overflow: hidden;
}
.founder-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    min-height: 78vh;
    max-width: var(--max-w);
    margin: 0 auto;
}
.founder-visual {
    border-right: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    min-height: 520px;
}
.founder-portrait {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 8%;
    filter: grayscale(15%) contrast(1.05) brightness(0.9);
    display: block;
}
.founder-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.18) 32%,
        rgba(0,0,0,0.08) 52%,
        rgba(0,0,0,0.55) 78%,
        rgba(0,0,0,0.92) 100%
    );
    z-index: 1;
}
.founder-visual-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 44px clamp(32px, 5vw, 60px);
    z-index: 2;
}
.founder-since {
    font-family: var(--font-roman);
    font-size: 0.68rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}
.founder-legacy-year {
    font-family: var(--font-boldex);
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    color: var(--orange);
    line-height: 0.88;
    letter-spacing: -0.04em;
}
.founder-photo-credit {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px clamp(32px, 5vw, 60px);
    z-index: 2;
    font-family: var(--font-boldex);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
    letter-spacing: -0.01em;
}
.founder-photo-credit span {
    display: block;
    font-family: var(--font-roman);
    color: rgba(255,255,255,0.4);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    margin-top: 4px;
}
.founder-story {
    padding: 100px clamp(40px, 6vw, 100px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.founder-story h2 {
    font-family: var(--font-boldex);
    font-size: clamp(2rem, 3.2vw, 3rem);
    color: #fff;
    line-height: 1.07;
    letter-spacing: -0.025em;
    margin: 0.5rem 0 2.5rem;
}
.founder-body {
    margin-bottom: 3rem;
}
.founder-body p {
    font-family: var(--font-roman);
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}
.founder-body p:last-child { margin-bottom: 0; }
.founder-pillars {
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}
.fp-item {
    display: flex;
    align-items: baseline;
    gap: 28px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}
.fp-year {
    font-family: var(--font-boldex);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.2);
    flex-shrink: 0;
    width: 38px;
}
.fp-item--now .fp-year { color: var(--orange); }
.fp-label {
    font-family: var(--font-roman);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.38);
    line-height: 1.55;
}
.fp-item--now .fp-label { color: rgba(255,255,255,0.65); }
@media (max-width: 900px) {
    .founder-inner { grid-template-columns: 1fr; min-height: auto; }
    .founder-visual {
        min-height: 420px;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    .founder-story { padding: 80px clamp(24px, 5vw, 80px); }
}

/* ── History Timeline (About Page) ──────────────────────────── */
.history-section {
    padding: var(--section) 0;
    background: var(--off-white);
}
.history-timeline {
    display: flex;
    flex-direction: column;
}
.ht-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 32px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border-light);
}
.ht-item:first-child { border-top: 1px solid var(--border-light); }
.ht-year {
    font-family: var(--font-boldex);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    color: var(--gray-light);
    padding-top: 3px;
    flex-shrink: 0;
}
.ht-item--highlight .ht-year { color: var(--orange); }
.ht-content strong {
    display: block;
    font-family: var(--font-boldex);
    font-size: 0.95rem;
    color: var(--black);
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}
.ht-content span {
    font-family: var(--font-roman);
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ── Services Page ──────────────────────────────────────────── */
.svc-section {
    padding: 0;
    background: var(--white);
}
.svc-alt { background: var(--off-white); }
.svc-inner {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 0;
    align-items: stretch;
    min-height: 700px;
}
.svc-inner--reverse { direction: rtl; }
.svc-inner--reverse > * { direction: ltr; }
.svc-number {
    font-family: var(--font-boldex);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--orange);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.svc-number::after { content: ''; display: block; flex: 0 0 32px; height: 1px; background: var(--orange); }
.svc-media {
    overflow: hidden;
    position: relative;
}
.svc-media img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}
.svc-media:hover img { transform: scale(1.04); }
.svc-content {
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.svc-content h2 {
    font-family: var(--font-boldex);
    font-size: clamp(2rem, 3.2vw, 3rem);
    color: var(--black);
    line-height: 1.07;
    letter-spacing: -0.02em;
    margin: 0.75rem 0 1.25rem;
}
.svc-content > p {
    font-family: var(--font-roman);
    color: #555;
    line-height: 1.85;
    font-size: 1rem;
    margin-bottom: 2.5rem;
}
.svc-list { list-style: none; padding: 0; margin: 0; }
.svc-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.svc-list li:first-child { border-top: 1px solid var(--border-light); }
.svc-list li strong {
    font-family: var(--font-boldex);
    font-size: 0.92rem;
    color: var(--black);
    letter-spacing: 0.02em;
}
.svc-list li span {
    font-family: var(--font-roman);
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.65;
}
@media (max-width: 900px) {
    .svc-inner, .svc-inner--reverse { grid-template-columns: 1fr; direction: ltr; min-height: auto; }
    .svc-media { min-height: 420px; position: relative; }
    .svc-content { padding: 48px 24px; }
}

/* ── Careers Jobs ───────────────────────────────────────────── */
.jobs-section {
    padding: var(--section) 0;
    background: var(--off-white);
}
.jobs-section .section-header { margin-bottom: 80px; }
.jobs-section .section-header h2 {
    font-family: var(--font-boldex);
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--black);
    letter-spacing: -0.02em;
    margin-top: 0.5rem;
}
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border-light);
}
.job-card {
    padding: 48px 40px;
    border-right: 1px solid var(--border-light);
    background: var(--white);
    transition: background 0.3s;
    display: flex;
    flex-direction: column;
}
.job-card:nth-child(3n) { border-right: none; }
.job-card:nth-child(n+4) { border-top: 1px solid var(--border-light); }
.job-card:hover { background: var(--off-white); }
.job-card--open {
    background: var(--black);
    border-right: none;
}
.job-card--open:hover { background: var(--black-mid); }
.job-card--open .job-dept,
.job-card--open h3,
.job-card--open .job-meta span,
.job-card--open p { color: rgba(255,255,255,0.5); }
.job-card--open .job-dept { color: var(--orange); }
.job-card--open .job-apply { color: rgba(255,255,255,0.8); }
.job-dept {
    font-family: var(--font-boldex);
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1rem;
}
.job-card h3 {
    font-family: var(--font-boldex);
    font-size: clamp(1.15rem, 1.6vw, 1.5rem);
    color: var(--black);
    margin-bottom: 0.75rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-bottom: 1.25rem;
}
.job-meta span {
    font-family: var(--font-roman);
    font-size: 0.75rem;
    color: var(--muted);
}
.job-card p {
    font-family: var(--font-roman);
    font-size: 1rem;
    color: #555;
    line-height: 1.75;
    margin-bottom: 2rem;
    flex: 1;
}
.job-apply {
    font-family: var(--font-boldex);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s, gap 0.2s;
    margin-top: auto;
}
.job-apply:hover { color: var(--orange); gap: 14px; }
@media (max-width: 900px) { .jobs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .jobs-grid { grid-template-columns: 1fr; } }

/* ── Contact Page ───────────────────────────────────────────── */
.contact-section {
    padding: var(--section) 0;
    background: var(--white);
}
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}
.contact-form-wrap h2 {
    font-family: var(--font-boldex);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--black);
    letter-spacing: -0.02em;
    margin: 0.75rem 0 1rem;
}
.contact-form-wrap > p {
    font-family: var(--font-roman);
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
    font-family: var(--font-boldex);
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--black);
}
.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-roman);
    font-size: 0.9rem;
    color: var(--black);
    background: var(--off-white);
    border: 1px solid var(--border-light);
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
    border-radius: 0;
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; }
.btn-full { width: 100%; justify-content: center; }
.contact-offices h2 {
    font-family: var(--font-boldex);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--black);
    letter-spacing: -0.02em;
    margin: 0.75rem 0 2.5rem;
}
.office-card {
    display: flex;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border-light);
}
.office-card:first-of-type { border-top: 1px solid var(--border-light); }
.office-flag { font-size: 1.6rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.office-details h4 {
    font-family: var(--font-boldex);
    font-size: 0.85rem;
    color: var(--black);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.01em;
}
.office-hq {
    font-size: 0.58rem;
    background: var(--orange);
    color: #fff;
    padding: 2px 8px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.office-details p {
    font-family: var(--font-roman);
    font-size: 0.825rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 0.75rem;
}
.office-contacts { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 12px; }
.office-contacts li a {
    font-family: var(--font-roman);
    font-size: 0.82rem;
    color: var(--orange);
    text-decoration: none;
}
.office-contacts li a:hover { text-decoration: underline; }
@media (max-width: 900px) {
    .contact-inner { grid-template-columns: 1fr; gap: 70px; }
    .form-row { grid-template-columns: 1fr; }
}

/* ── Hero Tag (inner page hero eyebrow) ─────────────────────── */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-boldex);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.25rem;
}
.hero-tag::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--orange);
    flex-shrink: 0;
}

/* ── Hero Tagline (deprecated ghost text — kept for compat) ──── */
.hero-tagline { display: none; }

/* ── Services Tagline (deprecated ghost text) ───────────────── */
.svc-tagline { display: none; }

/* ── Heritage Tagline (deprecated ghost text) ───────────────── */
.heritage-tagline { display: none; }

/* ── CTA Tagline (deprecated ghost text) ────────────────────── */
.cta-tagline { display: none; }

/* ── Stats Bar geo layer ────────────────────────────────────── */
.stats-bar { position: relative; }
.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 69px,
        rgba(255,255,255,0.025) 69px,
        rgba(255,255,255,0.025) 70px
    );
    pointer-events: none;
    z-index: 0;
}
.stats-row { position: relative; z-index: 1; }

/* ── Option 1: Manifesto / Brand Vision Statement ───────────── */
.manifesto-section {
    background: var(--black);
    padding: var(--section) 0;
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.manifesto-section::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, transparent, var(--orange) 30%, var(--orange) 70%, transparent);
}
.manifesto-inner { max-width: 960px; }
.manifesto-headline {
    font-family: var(--font-boldex);
    font-size: clamp(2.8rem, 5.5vw, 6rem);
    color: #fff;
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-top: 1.5rem;
}

/* ── Option 2: Differentiator Strip ─────────────────────────── */
.differ-section {
    background: var(--black);
    border-top: 1px solid var(--border);
    position: relative;
}
.differ-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.differ-cell {
    padding: 90px 56px;
    border-right: 1px solid var(--border);
    transition: background 0.3s;
}
.differ-cell:last-child { border-right: none; }
.differ-cell:hover { background: var(--black-mid); }
.differ-num {
    font-family: var(--font-boldex);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--orange);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.differ-num::after { content: ''; display: block; flex: 1; height: 1px; background: var(--border); }
.differ-cell h3 {
    font-family: var(--font-boldex);
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    line-height: 1.1;
}
.differ-cell p {
    font-family: var(--font-roman);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.38);
    line-height: 1.85;
}
@media (max-width: 768px) {
    .differ-grid { grid-template-columns: 1fr; }
    .differ-cell { border-right: none; border-bottom: 1px solid var(--border); padding: 60px var(--pad-x); }
    .differ-cell:last-child { border-bottom: none; }
}

/* ── Option 3: Editorial 2-Col Brand Vision ──────────────────── */
.brand-vision-section {
    background: var(--black);
    padding: var(--section) 0;
    border-top: 1px solid var(--border);
}
.brand-vision-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}
.brand-vision-left h2 {
    font-family: var(--font-boldex);
    font-size: clamp(2rem, 3.5vw, 3.4rem);
    color: #fff;
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-top: 1rem;
}
.brand-vision-list { list-style: none; padding: 0; margin: 0; }
.brand-vision-list li {
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.brand-vision-list li:first-child { border-top: 1px solid var(--border); }
.brand-vision-list li strong {
    font-family: var(--font-boldex);
    font-size: 0.88rem;
    color: #fff;
    letter-spacing: -0.01em;
}
.brand-vision-list li span {
    font-family: var(--font-roman);
    font-size: 0.84rem;
    color: rgba(255,255,255,0.38);
    line-height: 1.7;
}
@media (max-width: 900px) {
    .brand-vision-inner { grid-template-columns: 1fr; gap: 60px; }
}

/* ── Persona / The Desert Force ─────────────────────────────── */
.persona-section {
    background: var(--black);
    padding: 130px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
    text-align: center;
}
.persona-geo-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--orange);
    clip-path: polygon(0 12%, 100% 0%, 100% 88%, 0% 100%);
}
.persona-geo-right {
    position: absolute;
    right: var(--pad-x);
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 140px;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255,255,255,0.06) 0px,
        rgba(255,255,255,0.06) 1px,
        transparent 1px,
        transparent 22px
    );
    pointer-events: none;
}
.persona-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}
.persona-title {
    font-family: var(--font-boldex);
    font-size: clamp(3.5rem, 7vw, 7.5rem);
    color: #fff;
    line-height: 0.92;
    letter-spacing: -0.03em;
    margin: 1rem 0 2.5rem;
}
.persona-body {
    font-family: var(--font-roman);
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
    color: rgba(255,255,255,0.42);
    line-height: 1.9;
    max-width: 600px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .persona-geo-right { display: none; }
}

/* ── Purpose Statement ──────────────────────────────────────── */
.purpose-section {
    background: var(--off-white);
    padding: var(--section) 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-light);
}
/* purpose-section::before removed — diagonal accent looked errant */
.purpose-lines {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 180px;
    pointer-events: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.purpose-lines span {
    flex: 1;
    border-bottom: 1px solid var(--border-light);
}
.purpose-inner { max-width: 900px; position: relative; z-index: 2; }
.purpose-quote {
    font-family: var(--font-boldex);
    font-size: clamp(2rem, 3.5vw, 3.6rem);
    color: var(--black);
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 0.5rem 0 3rem;
    font-style: normal;
}
.purpose-rule {
    width: 48px;
    height: 3px;
    background: var(--orange);
}
@media (max-width: 768px) {
    .purpose-lines { display: none; }
}

/* ── Values geo accent ──────────────────────────────────────── */
.values-geo-accent {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        var(--orange) 0%,
        var(--orange) 48px,
        rgba(255,255,255,0.07) 48px,
        rgba(255,255,255,0.07) 100%
    );
    margin-top: 2rem;
}

/* impact-statement::after removed — dashed accent looked errant */
.impact-statement { position: relative; }

/* ── AOS ────────────────────────────────────────────────────── */
[data-aos] { will-change: transform, opacity; }
