/* ═══════════════════════════════════════════════════
   CORPORATE SYNERGIES — PREMIUM PROFESSIONAL DESIGN
   ═══════════════════════════════════════════════════ */

/* ── Design Tokens ── */
:root {
    --navy: #0c1e36;
    --navy-mid: #152e4d;
    --navy-deep: #070f1c;
    --gold: #c8943e;
    --gold-light: #ddb96c;
    --gold-soft: #f0dbb8;
    --cream: #faf7f2;
    --stone: #f2eeea;
    --white: #ffffff;
    --text: #1e2d3d;
    --text-light: #5a6e7e;
    --border: rgba(12, 30, 54, 0.09);
    --shadow-sm: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-md: 0 16px 48px rgba(0,0,0,0.08);
    --shadow-lg: 0 24px 64px rgba(0,0,0,0.12);
    --radius: 20px;
    --radius-lg: 28px;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}

/* ══════════════════════════════════════
   HEADER — Dark Navy Premium Bar
   ══════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--navy);
    border-bottom: 1px solid rgba(200, 148, 62, 0.15);
    box-shadow: 0 4px 30px rgba(0,0,0,0.18);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 0;
    min-height: 72px;
}

.brand img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav a {
    color: rgba(255,255,255,0.78);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: color var(--transition), background var(--transition);
    letter-spacing: 0.01em;
}

.site-nav a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

.nav-item {
    position: relative;
}

.nav-item > .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-item > .nav-link::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform var(--transition);
}

.nav-item:hover > .nav-link::after,
.nav-item:focus-within > .nav-link::after {
    transform: translateY(1px) rotate(225deg);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 4px;
    width: min(560px, calc(100vw - 48px));
    max-height: 72vh;
    padding: 16px;
    overflow-y: auto;
    border: 1px solid rgba(200, 148, 62, 0.18);
    border-radius: 14px;
    background: rgba(7, 15, 28, 0.98);
    box-shadow: 0 22px 60px rgba(0,0,0,0.36);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 0);
    transition: opacity var(--transition), transform var(--transition);
}

.nav-dropdown::before {
    display: none;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.site-nav .nav-dropdown a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 12px;
    color: rgba(255,255,255,0.72);
    font-size: 0.82rem;
    line-height: 1.35;
    border-radius: 8px;
}

.site-nav .nav-dropdown a::after {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    opacity: 0.65;
    transform: rotate(45deg);
    transition: transform var(--transition), opacity var(--transition);
}

.site-nav .nav-dropdown a:hover,
.site-nav .nav-dropdown a:focus {
    color: var(--white);
    background: rgba(200, 148, 62, 0.14);
}

.site-nav .nav-dropdown a:hover::after,
.site-nav .nav-dropdown a:focus::after {
    opacity: 1;
    transform: translateX(3px) rotate(45deg);
}

.site-nav .nav-cta {
    margin-left: 12px;
    padding: 10px 24px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gold) 0%, #b5822f 100%);
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 4px 18px rgba(200, 148, 62, 0.3);
    transition: transform var(--transition), box-shadow var(--transition);
}

.site-nav .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(200, 148, 62, 0.4);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

/* Mobile toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ══════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════ */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    min-height: 92vh;
    padding: 48px 0 0;
    overflow: hidden;
}

.hero-backdrop,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    filter: saturate(0.85) contrast(1.05);
}

.hero-overlay {
    background:
        linear-gradient(180deg, rgba(7, 15, 28, 0.62) 0%, rgba(7, 15, 28, 0.78) 100%),
        radial-gradient(circle at 30% 40%, rgba(200, 148, 62, 0.08), transparent 50%);
}

.hero-shell {
    display: flex;
    gap: 36px;
    align-items: center;
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.hero-copy-centered {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.hero-copy h1 {
    margin: 16px 0 20px;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    line-height: 1.12;
    color: var(--white);
    max-width: 100%;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.02em;
    overflow: hidden;
}

.hero-title span {
    display: block;
    opacity: 0;
    transform: translateY(34px);
    animation: heroTitleReveal 0.9s ease forwards;
}

.hero-title span:nth-child(2) { animation-delay: 0.18s; }
.hero-title span:nth-child(3) { animation-delay: 0.36s; }

.hero-copy-centered .section-tag {
    background: rgba(200, 148, 62, 0.18);
    color: var(--gold-soft);
    border: 1px solid rgba(200, 148, 62, 0.2);
}

.hero-copy-centered h1,
.hero-copy-centered p {
    color: var(--white);
    margin-left: auto;
    margin-right: auto;
}

.hero-copy p {
    max-width: 640px;
    font-size: 1.08rem;
    color: rgba(255,255,255,0.8);
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
    margin-bottom:50px;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    min-width: 200px;
    padding: 0 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    cursor: pointer;
    border: none;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
    background: linear-gradient(135deg, var(--gold), #b07a2a);
    color: var(--white);
    box-shadow: 0 8px 28px rgba(200, 148, 62, 0.32);
}

.btn-primary:hover {
    box-shadow: 0 12px 36px rgba(200, 148, 62, 0.4);
}

.btn-secondary {
    border: 1.5px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.06);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.4);
}

.btn-light {
    background: var(--white);
    color: var(--navy);
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.btn-leadership {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--white);
    box-shadow: 0 8px 28px rgba(12, 30, 54, 0.22);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap var(--transition), color var(--transition);
}

.text-link::after {
    content: '→';
    transition: transform var(--transition);
}

.text-link:hover {
    color: #b07a2a;
    gap: 10px;
}

/* ── Section Tag ── */
.section-tag {
    display: inline-flex;
    padding: 6px 16px;
    border-radius: 8px;
    background: rgba(200, 148, 62, 0.1);
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(200, 148, 62, 0.15);
}

.section-tag-light {
    background: rgba(255,255,255,0.1);
    color: var(--gold-soft);
    border-color: rgba(255,255,255,0.15);
}

/* ── Stats Bar ── */
.stats-bar {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: auto;
    background: linear-gradient(135deg, #070f1c 0%, #0f2340 50%, #070f1c 100%);
    border-top: 1px solid rgba(200, 148, 62, 0.2);
}

.stats-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.stat-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 28px 24px;
    transition: background var(--transition);
}

.stat-item:hover {
    background: rgba(200, 148, 62, 0.05);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(200, 148, 62, 0.1);
    border: 1px solid rgba(200, 148, 62, 0.18);
    color: var(--gold);
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: "Playfair Display", serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 44px;
    background: linear-gradient(180deg, transparent, rgba(200, 148, 62, 0.25), transparent);
    flex-shrink: 0;
}

/* ══════════════════════════════════════
   SECTIONS — General
   ══════════════════════════════════════ */
.section {
    padding: 100px 0;
}

.section h2 {
    margin: 12px 0 18px;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    line-height: 1.15;
    color: var(--navy);
}

.section-head {
    max-width: 720px;
    margin-bottom: 48px;
}

.section-head p,
.about-copy p,
.leadership-copy p,
.cta-card p,
.why-copy p,
.clientele-grid p,
.insight-card p,
.service-card p,
.site-footer p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.75;
}

.section-action {
    display: block;
    text-align: center;
    margin-top: 36px;
}

/* ── Section Backgrounds ── */
.section-light {
    background: var(--white);
}

.section-accent {
    background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 40%, var(--navy-mid) 100%);
    color: var(--white);
}

.section-accent .section-tag {
    background: rgba(200, 148, 62, 0.15);
    color: var(--gold-soft);
    border-color: rgba(200, 148, 62, 0.2);
}

.section-accent h2,
.section-accent .why-copy p {
    color: var(--white);
}

/* ══════════════════════════════════════
   ABOUT SECTION
   ══════════════════════════════════════ */
.split-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 56px;
    padding: 48px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.about-copy {
    padding: 12px 0;
}

.about-copy h2 {
    max-width: 15ch;
}

.about-copy p {
    max-width: 560px;
}

.about-visual {
    position: relative;
    min-height: 420px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 15, 28, 0.02), rgba(7, 15, 28, 0.4));
}

.about-visual-badge {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 1;
    padding: 18px 22px;
    border-radius: 16px;
    background: rgba(12, 30, 54, 0.75);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.about-visual-badge strong {
    display: block;
    margin-bottom: 4px;
    color: var(--white);
    font-size: 1rem;
}

.about-visual-badge span {
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
}

/* ══════════════════════════════════════
   SERVICES / EXPERTISE SECTION
   ══════════════════════════════════════ */
.expertise-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--navy-deep), var(--navy), var(--navy-mid));
}

.expertise-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.expertise-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 15%, rgba(200, 148, 62, 0.08), transparent 30%),
        radial-gradient(circle at 10% 85%, rgba(200, 148, 62, 0.05), transparent 30%);
    pointer-events: none;
}

.expertise-section .container {
    position: relative;
    z-index: 1;
}

.expertise-head {
    max-width: 680px;
}

.expertise-head .section-tag {
    background: rgba(200, 148, 62, 0.12);
    color: var(--gold-soft);
    border-color: rgba(200, 148, 62, 0.2);
}

.expertise-section .section-head h2,
.expertise-section .section-head p {
    color: var(--white);
}

.service-grid,
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    overflow: hidden;
    padding: 0;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 148, 62, 0.3);
    box-shadow: 0 24px 56px rgba(0,0,0,0.28);
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.2) 100%);
    pointer-events: none;
}

.service-media {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-media img {
    transform: scale(1.05);
}

.service-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 15, 28, 0.05), rgba(7, 15, 28, 0.35));
}

.service-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 200px;
    padding: 24px;
}

.service-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(200, 148, 62, 0.12);
    border: 1px solid rgba(200, 148, 62, 0.2);
    color: var(--gold-soft);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.service-card h3 {
    margin: 0;
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 600;
}

.service-card p {
    margin: 0;
    color: rgba(255,255,255,0.65);
    font-size: 0.92rem;
    line-height: 1.65;
}

.service-card-hidden { display: none; }

.service-card-revealed {
    animation: serviceReveal 0.55s ease forwards;
}

.load-more-btn {
    border: 0;
    cursor: pointer;
}

/* ══════════════════════════════════════
   WHY US SECTION
   ══════════════════════════════════════ */
.why-grid {
    display: flex;
    gap: 56px;
    grid-template-columns: 0.88fr 1.12fr;
    align-items: start;
}

.why-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.why-copy {
    max-width: 480px;
}

.why-copy h2 {
    color: var(--white);
    max-width: 12ch;
}

.why-intro-points {
    display: grid;
    gap: 0;
    margin-top: 28px;
}

.why-intro-item {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.why-intro-item strong {
    display: block;
    margin-bottom: 6px;
    color: var(--gold-soft);
    font-size: 1rem;
}

.why-intro-item span {
    color: rgba(255,255,255,0.65);
    font-size: 0.92rem;
}

.why-visual-panel {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 20px;
    align-items: stretch;
}

.why-image-wrap {
    position: relative;
    min-height: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 48px rgba(0,0,0,0.2);
}

.why-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 15, 28, 0.05), rgba(7, 15, 28, 0.4));
}

.why-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.feature-item {
    padding: 18px 22px;
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.07);
    transition: background var(--transition), border-color var(--transition);
}

.feature-item:hover {
    background: rgba(200, 148, 62, 0.08);
    border-color: rgba(200, 148, 62, 0.2);
}

/* ══════════════════════════════════════
   LEADERSHIP SECTION
   ══════════════════════════════════════ */
.leadership-grid {
    display: flex;
    gap: 56px;
    align-items: center;
}

.leadership-copy {
    order: 1;
    max-width: 540px;
}

.leadership-copy h2 {
    max-width: 15ch;
}

.leadership-highlights {
    display: grid;
    gap: 0;
    margin: 28px 0 32px;
}

.leadership-highlight {
    padding: 18px 0;
    border-top: 1px solid var(--border);
}

.leadership-highlight strong {
    display: block;
    margin-bottom: 6px;
    color: var(--navy);
    font-size: 1rem;
}

.leadership-highlight span {
    color: var(--text-light);
    font-size: 0.92rem;
}

.leadership-media {
    order: 2;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    min-height: 500px;
    flex: 1;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.leadership-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.leadership-panel {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 20px 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(12, 30, 54, 0.06);
    box-shadow: 0 12px 36px rgba(0,0,0,0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.leadership-panel-label {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.leadership-panel strong {
    display: block;
    color: var(--navy);
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 600;
}

/* ══════════════════════════════════════
   CLIENTELE / INDUSTRIES SECTION
   ══════════════════════════════════════ */
.clientele-section {
    background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-mid) 100%);
    position: relative;
    overflow: hidden;
}

.clientele-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(200, 148, 62, 0.06), transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(200, 148, 62, 0.04), transparent 40%);
    pointer-events: none;
}

.clientele-section .container {
    position: relative;
    z-index: 1;
}

.clientele-header {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 56px;
}

.clientele-header h2 {
    color: var(--white);
    margin: 14px 0 16px;
}

.clientele-header p {
    color: rgba(255,255,255,0.6);
    font-size: 1.02rem;
    line-height: 1.75;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industry-card {
    padding: 28px 24px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    text-align: center;
    transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
    cursor: default;
}

.industry-card:hover {
    transform: translateY(-6px);
    background: rgba(200, 148, 62, 0.08);
    border-color: rgba(200, 148, 62, 0.25);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.industry-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(200, 148, 62, 0.1);
    border: 1px solid rgba(200, 148, 62, 0.18);
    color: var(--gold);
    margin-bottom: 16px;
}

.industry-card h4 {
    margin: 0 0 6px;
    color: var(--white);
    font-size: 1.02rem;
    font-weight: 600;
}

.industry-card span {
    color: rgba(255,255,255,0.45);
    font-size: 0.82rem;
    font-weight: 400;
}

.clientele-footer {
    text-align: center;
    margin-top: 48px;
}

.btn-gold-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 36px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    background: transparent;
    color: var(--gold-light);
    border: 1.5px solid rgba(200, 148, 62, 0.35);
    transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
    cursor: pointer;
}

.btn-gold-outline:hover {
    transform: translateY(-2px);
    background: rgba(200, 148, 62, 0.1);
    border-color: var(--gold);
    box-shadow: 0 8px 28px rgba(200, 148, 62, 0.2);
}

@media (max-width: 1024px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .industry-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .industry-card {
        padding: 22px 20px;
    }
}

/* ══════════════════════════════════════
   INSIGHTS SECTION — Featured Layout
   ══════════════════════════════════════ */
.insights-section {
    background: var(--stone);
}

.insights-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 52px;
}

.insights-featured {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    align-items: stretch;
}

/* ── Feature Card (Left) ── */
.insight-feature {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition), box-shadow var(--transition);
}

.insight-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 72px rgba(0,0,0,0.18);
}

.insight-feature-media {
    position: absolute;
    inset: 0;
}

.insight-feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.insight-feature:hover .insight-feature-media img {
    transform: scale(1.04);
}

.insight-feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(7, 15, 28, 0.05) 0%,
        rgba(7, 15, 28, 0.3) 40%,
        rgba(7, 15, 28, 0.85) 100%);
}

.insight-feature-content {
    position: relative;
    z-index: 1;
    padding: 36px;
}

.insight-feature-content .insight-tag {
    background: rgba(200, 148, 62, 0.2);
    color: var(--gold-soft);
    border-color: rgba(200, 148, 62, 0.25);
}

.insight-feature-content h3 {
    margin: 14px 0 12px;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.25;
}

.insight-feature-content p {
    margin: 0 0 20px;
    color: rgba(255,255,255,0.72);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 480px;
}

/* ── Compact Stack (Right) ── */
.insight-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.insight-compact {
    display: flex;
    gap: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    flex: 1;
    transition: transform var(--transition), box-shadow var(--transition);
}

.insight-compact:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.insight-compact-media {
    width: 200px;
    min-height: 100%;
    flex-shrink: 0;
    overflow: hidden;
}

.insight-compact-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insight-compact:hover .insight-compact-media img {
    transform: scale(1.06);
}

.insight-compact-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insight-compact-body h3 {
    margin: 10px 0 8px;
    color: var(--navy);
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.35;
}

.insight-compact-body p {
    margin: 0 0 14px;
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ── Shared Insight Tag ── */
.insight-tag {
    display: inline-flex;
    padding: 5px 12px;
    border-radius: 6px;
    background: rgba(200, 148, 62, 0.1);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(200, 148, 62, 0.12);
}

/* ── Read More Link ── */
.insight-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.88rem;
    font-weight: 600;
    transition: gap var(--transition), color var(--transition);
}

.insight-read-more:hover {
    gap: 12px;
    color: var(--gold-light);
}

.insight-feature-content .insight-read-more {
    color: var(--gold-soft);
}

.insight-feature-content .insight-read-more:hover {
    color: var(--white);
}

@media (max-width: 1024px) {
    .insights-featured {
        grid-template-columns: 1fr;
    }
    .insight-feature {
        min-height: 400px;
    }
}

@media (max-width: 640px) {
    .insight-compact {
        flex-direction: column;
    }
    .insight-compact-media {
        width: 100%;
        height: 180px;
    }
    .insight-feature {
        min-height: 340px;
    }
    .insight-feature-content {
        padding: 24px;
    }
    .insight-feature-content h3 {
        font-size: 1.3rem;
    }
}

/* ══════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════ */
.cta-section {
    padding-top: 40px;
    padding-bottom: 100px;
}

.cta-card {
    display: flex;
    gap: 36px;
    grid-template-columns: 1.3fr auto;
    align-items: center;
    padding: 48px 56px;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, var(--navy-deep), var(--navy-mid));
    border: 1px solid rgba(200, 148, 62, 0.15);
    box-shadow: 0 24px 64px rgba(0,0,0,0.18);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 148, 62, 0.08), transparent 70%);
    pointer-events: none;
}

.cta-section h2,
.cta-section p {
    color: var(--white);
}

.cta-section .section-tag {
    background: rgba(200, 148, 62, 0.12);
    color: var(--gold-soft);
    border-color: rgba(200, 148, 62, 0.2);
}

#clientele-preview h2,
#clientele-preview p {
    color: var(--white);
}

#clientele-preview .section-tag {
    background: rgba(200, 148, 62, 0.12);
    color: var(--gold-soft);
    border-color: rgba(200, 148, 62, 0.2);
}

.client-logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
}

.client-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 118px;
    padding: 24px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid rgba(9, 22, 39, 0.08);
    box-shadow: 0 12px 34px rgba(9, 22, 39, 0.08);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.client-logo-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 148, 62, 0.28);
    box-shadow: 0 18px 44px rgba(9, 22, 39, 0.12);
}

.client-logo-card img {
    max-width: 100%;
    max-height: 64px;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .client-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .client-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .client-logo-card {
        min-height: 96px;
        padding: 18px;
    }
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
}

.blog-detail-card,
.blog-sidebar-card {
    padding: 36px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid rgba(9, 22, 39, 0.08);
    box-shadow: 0 18px 48px rgba(9, 22, 39, 0.08);
}

.blog-detail-card h2 {
    margin: 18px 0 18px;
    font-family: "Playfair Display", serif;
    color: var(--navy);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.blog-detail-card p,
.blog-sidebar-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.blog-detail-points {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.blog-detail-point {
    padding: 18px;
    border-radius: 14px;
    background: rgba(200, 148, 62, 0.08);
    border: 1px solid rgba(200, 148, 62, 0.14);
}

.blog-detail-point strong,
.blog-detail-point span {
    display: block;
}

.blog-detail-point strong {
    color: var(--navy);
    margin-bottom: 6px;
}

.blog-detail-point span {
    color: var(--text-light);
}

.blog-detail-sidebar {
    display: grid;
    gap: 20px;
}

.blog-sidebar-card h3 {
    margin: 0 0 18px;
    color: var(--navy);
}

.blog-sidebar-card a:not(.btn) {
    display: block;
    padding: 12px 0;
    color: var(--text);
    border-bottom: 1px solid rgba(9, 22, 39, 0.08);
}

.blog-sidebar-card a:not(.btn):hover {
    color: var(--gold);
}

@media (max-width: 1024px) {
    .blog-detail-layout {
        grid-template-columns: 1fr;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-card {
    position: relative;
    display: block;
    height: 260px;
    padding: 0;
    border: none;
    border-radius: 18px;
    overflow: hidden;
    cursor: zoom-in;
    background: var(--navy);
    box-shadow: 0 18px 46px rgba(9, 22, 39, 0.14);
}

.gallery-card::after {
    content: "Click to Zoom";
    position: absolute;
    inset: auto 18px 18px 18px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(7, 15, 28, 0.72);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity var(--transition), transform var(--transition);
}

.gallery-card:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity var(--transition);
}

.gallery-card:hover img {
    transform: scale(1.06);
    opacity: 0.82;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: rgba(4, 10, 18, 0.9);
}

.gallery-lightbox.is-open {
    display: flex;
}

.gallery-lightbox-content {
    max-width: min(980px, 92vw);
    text-align: center;
}

.gallery-lightbox-content img {
    max-width: 100%;
    max-height: 78vh;
    border-radius: 18px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.gallery-lightbox-content span {
    display: inline-block;
    margin-top: 16px;
    color: var(--white);
    font-weight: 600;
}

.gallery-lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-card {
        height: 220px;
    }
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 32px;
    align-items: start;
}

.contact-details-panel,
.contact-form-panel {
    padding: 38px;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid rgba(9, 22, 39, 0.08);
    box-shadow: 0 18px 48px rgba(9, 22, 39, 0.08);
}

.contact-details-panel h2,
.contact-form-panel h2 {
    margin: 18px 0 14px;
    color: var(--navy);
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.contact-details-panel p {
    color: var(--text-light);
}

.contact-detail-list {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.contact-detail-item {
    padding: 18px;
    border-radius: 14px;
    background: rgba(200, 148, 62, 0.08);
    border: 1px solid rgba(200, 148, 62, 0.14);
}

.contact-detail-item strong,
.contact-detail-item a,
.contact-detail-item span {
    display: block;
}

.contact-detail-item strong {
    margin-bottom: 6px;
    color: var(--navy);
}

.contact-detail-item a,
.contact-detail-item span {
    color: var(--text-light);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 24px;
}

.form-field,
.form-field-full {
    display: grid;
    gap: 8px;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field label {
    color: var(--navy);
    font-weight: 600;
    font-size: 0.92rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(9, 22, 39, 0.12);
    border-radius: 12px;
    padding: 14px 16px;
    color: var(--text);
    background: #fbfcfd;
    font: inherit;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: rgba(200, 148, 62, 0.55);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(200, 148, 62, 0.12);
}

.contact-form .btn {
    grid-column: 1 / -1;
}

@media (max-width: 1024px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contact-details-panel,
    .contact-form-panel {
        padding: 28px 22px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════
   SERVICE DETAIL PAGE
   ══════════════════════════════════════ */
.sd-hero-backdrop img { object-position: center 30%; }

.sd-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.sd-overview-copy .section-tag { margin-bottom: 12px; display: inline-block; }
.sd-overview-copy h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--navy);
    margin: 0 0 20px;
    line-height: 1.25;
}
.sd-overview-copy p { color: var(--text-light); font-size: 1.05rem; margin-bottom: 28px; }
.sd-overview-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.sd-overview-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(200,148,62,0.18);
    pointer-events: none;
}
.sd-overview-image img { width: 100%; height: 420px; object-fit: cover; }

.sd-badge-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.sd-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(200,148,62,0.09);
    border: 1px solid rgba(200,148,62,0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}
.sd-badge svg { color: var(--gold); flex-shrink: 0; }

.sd-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sd-service-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.sd-service-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(200,148,62,0.25); }
.sd-service-item-icon {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(200,148,62,0.15), rgba(200,148,62,0.05));
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sd-service-item-icon svg { color: var(--gold); }
.sd-service-item p { margin: 0; font-size: 0.92rem; color: var(--text); font-weight: 500; line-height: 1.5; }

.sd-benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.sd-benefit-card {
    padding: 32px;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    display: flex; gap: 20px; align-items: flex-start;
    transition: transform var(--transition), box-shadow var(--transition);
}
.sd-benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sd-benefit-icon {
    width: 52px; height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sd-benefit-icon svg { color: var(--white); }
.sd-benefit-copy h4 { margin: 0 0 8px; color: var(--navy); font-size: 1.05rem; }
.sd-benefit-copy p { margin: 0; color: var(--text-light); font-size: 0.92rem; }

.sd-who-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.sd-who-item {
    display: flex; align-items: center; gap: 14px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}
.sd-who-item svg { color: var(--gold); flex-shrink: 0; }

.sd-why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.sd-why-item {
    padding: 28px;
    border-radius: 18px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    display: flex; gap: 16px; align-items: flex-start;
    transition: transform var(--transition), box-shadow var(--transition);
}
.sd-why-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sd-why-num {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white); font-weight: 700; font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sd-why-copy h4 { margin: 0 0 6px; color: var(--navy); font-size: 1rem; }
.sd-why-copy p { margin: 0; color: var(--text-light); font-size: 0.9rem; }

.sd-faq-list { display: grid; gap: 16px; }
.sd-faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.sd-faq-q {
    width: 100%; text-align: left;
    background: none; border: none;
    padding: 24px 28px;
    font: 600 1rem "Poppins", sans-serif;
    color: var(--navy); cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    transition: background var(--transition);
}
.sd-faq-q:hover { background: rgba(200,148,62,0.04); }
.sd-faq-q[aria-expanded="true"] { color: var(--gold); }
.sd-faq-icon { flex-shrink: 0; transition: transform var(--transition); }
.sd-faq-q[aria-expanded="true"] .sd-faq-icon { transform: rotate(45deg); }
.sd-faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25,0.46,0.45,0.94), padding 0.3s;
    padding: 0 28px;
    color: var(--text-light); font-size: 0.95rem;
}
.sd-faq-a.open { max-height: 200px; padding: 0 28px 24px; }

.section-accent-navy {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
}

@media (max-width: 1024px) {
    .sd-overview { grid-template-columns: 1fr; gap: 40px; }
    .sd-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sd-benefits-grid, .sd-why-grid, .sd-who-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .sd-services-grid { grid-template-columns: 1fr; }
    .sd-overview-image img { height: 260px; }
}

/* ── Corporate Law Page ── */
.cl-hero-stats {
    background: var(--navy-deep);
    border-top: 1px solid rgba(200,148,62,0.2);
    padding: 0;
}
.cl-hero-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.cl-stat {
    padding: 28px 24px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.06);
    transition: background var(--transition);
}
.cl-stat:last-child { border-right: none; }
.cl-stat:hover { background: rgba(200,148,62,0.06); }
.cl-stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}
.cl-stat-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.cl-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.cl-overview-copy h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--navy);
    margin: 12px 0 20px;
    line-height: 1.25;
}
.cl-overview-copy p { color: var(--text-light); margin-bottom: 20px; line-height: 1.8; }
.cl-overview-copy .btn { margin-top: 12px; }
.cl-overview-img {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(9,22,39,0.18);
}
.cl-overview-img img { width: 100%; height: 460px; object-fit: cover; display: block; }
.cl-overview-img-badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: var(--navy-deep);
    border: 1px solid rgba(200,148,62,0.3);
    border-radius: 16px;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.cl-overview-img-badge-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cl-overview-img-badge-icon svg { color: var(--white); }
.cl-overview-img-badge strong { display: block; color: var(--white); font-size: 1.1rem; }
.cl-overview-img-badge span { color: rgba(255,255,255,0.55); font-size: 0.8rem; }
.cl-checklist { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; }
.cl-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-light);
    font-size: 0.95rem;
}
.cl-checklist li::before {
    content: '';
    width: 20px; height: 20px; flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23c8943e' stroke-width='2.5'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpolyline points='9 12 11 14 15 10'/%3E%3C/svg%3E") center/contain no-repeat;
    margin-top: 2px;
}
.cl-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.cl-service-card {
    background: var(--white);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: background var(--transition);
    position: relative;
}
.cl-service-card:hover { background: #fdfaf6; }
.cl-service-card:hover .cl-service-num { color: var(--gold); }
.cl-service-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: rgba(9,22,39,0.08);
    line-height: 1;
    transition: color var(--transition);
}
.cl-service-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(200,148,62,0.14), rgba(200,148,62,0.04));
    border: 1px solid rgba(200,148,62,0.18);
    display: flex; align-items: center; justify-content: center;
}
.cl-service-icon svg { color: var(--gold); }
.cl-service-card h4 { margin: 0; color: var(--navy); font-size: 0.95rem; font-weight: 600; line-height: 1.4; }
.cl-benefits-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.cl-benefit {
    padding: 36px 28px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}
.cl-benefit::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.cl-benefit:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cl-benefit:hover::before { transform: scaleX(1); }
.cl-benefit-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(200,148,62,0.12), rgba(200,148,62,0.04));
    border: 1px solid rgba(200,148,62,0.2);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.cl-benefit-icon svg { color: var(--gold); }
.cl-benefit h4 { margin: 0 0 10px; color: var(--navy); font-size: 1rem; }
.cl-benefit p { margin: 0; color: var(--text-light); font-size: 0.88rem; line-height: 1.6; }
.cl-who-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.cl-who-copy h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    color: var(--white);
    margin: 12px 0 20px;
}
.cl-who-copy p { color: rgba(255,255,255,0.65); margin-bottom: 0; }
.cl-who-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.cl-who-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    padding: 24px;
    transition: background var(--transition), border-color var(--transition);
}
.cl-who-card:hover {
    background: rgba(200,148,62,0.1);
    border-color: rgba(200,148,62,0.3);
}
.cl-who-card-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(200,148,62,0.15);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
}
.cl-who-card-icon svg { color: var(--gold); }
.cl-who-card h4 { margin: 0 0 6px; color: var(--white); font-size: 0.95rem; }
.cl-who-card p { margin: 0; color: rgba(255,255,255,0.55); font-size: 0.85rem; }
.cl-why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.cl-why-copy h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    color: var(--navy);
    margin: 12px 0 20px;
}
.cl-why-copy p { color: var(--text-light); margin-bottom: 32px; }
.cl-why-list { display: grid; gap: 16px; }
.cl-why-row {
    display: flex;
    gap: 18px;
    padding: 22px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition);
}
.cl-why-row:hover { transform: translateX(4px); }
.cl-why-row-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
    line-height: 1;
    min-width: 32px;
}
.cl-why-row h4 { margin: 0 0 4px; color: var(--navy); font-size: 0.95rem; }
.cl-why-row p { margin: 0; color: var(--text-light); font-size: 0.88rem; }

@media (max-width: 1100px) {
    .cl-hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .cl-overview, .cl-who-layout, .cl-why-layout { grid-template-columns: 1fr; gap: 40px; }
    .cl-benefits-strip { grid-template-columns: repeat(2, 1fr); }
    .cl-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .cl-stat { padding: 22px 16px; }
    .cl-services-grid, .cl-who-cards, .cl-benefits-strip { grid-template-columns: 1fr; }
    .cl-overview-img img { height: 280px; }
}

/* ══════════════════════════════════════
   FOOTER — Dark Professional
   ══════════════════════════════════════ */
.site-footer {
    padding: 72px 0 0;
    background: linear-gradient(180deg, var(--navy-deep) 0%, #060d18 100%);
    color: rgba(255,255,255,0.65);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 148, 62, 0.3), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
}

.footer-logo {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 18px;
}

.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.92rem;
    line-height: 1.72;
    margin: 0 0 24px;
    max-width: 340px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.55);
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.footer-social a:hover {
    background: rgba(200, 148, 62, 0.15);
    border-color: rgba(200, 148, 62, 0.3);
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 22px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(200, 148, 62, 0.25);
    display: inline-block;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    font-weight: 400;
    transition: color var(--transition), padding-left var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

/* Contact Column */
.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact ul li svg {
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 2px;
}

.footer-contact ul li span,
.footer-contact ul li a {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    line-height: 1.6;
}

.footer-contact ul li a:hover {
    color: var(--gold-light);
    padding-left: 0;
}

/* Footer Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.35);
    font-size: 0.84rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.35);
    font-size: 0.82rem;
    font-weight: 500;
    transition: color var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 32px;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 56px 0 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
    }
}

/* ══════════════════════════════════════
   ABOUT PAGE — Hero
   ══════════════════════════════════════ */
.about-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    padding: 120px 0 60px;
    overflow: hidden;
    text-align: center;
}

.about-hero-backdrop {
    position: absolute;
    inset: 0;
}

.about-hero-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,15,28,0.7) 0%, rgba(7,15,28,0.85) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

.about-hero-content h1 {
    margin: 16px 0 14px;
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--white);
    line-height: 1.15;
}

.about-hero-content p {
    color: rgba(255,255,255,0.7);
    font-size: 1.08rem;
    max-width: 560px;
    margin: 0 auto 24px;
}

.about-hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
}

.about-hero-breadcrumb a {
    color: var(--gold-light);
    font-weight: 500;
    transition: color var(--transition);
}

.about-hero-breadcrumb a:hover {
    color: var(--white);
}

.about-hero-breadcrumb svg {
    color: rgba(255,255,255,0.3);
}

/* ══════════════════════════════════════
   ABOUT — Introduction Section
   ══════════════════════════════════════ */
.about-intro-section {
    background: var(--cream);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

.about-intro-copy h2 {
    max-width: 18ch;
}

.about-intro-copy p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.78;
    margin: 0 0 12px;
}

.about-intro-highlights {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 28px;
}

.about-highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid var(--border);
}

.about-highlight-item:last-child {
    border-bottom: 1px solid var(--border);
}

.about-highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(200,148,62,0.1);
    border: 1px solid rgba(200,148,62,0.15);
    color: var(--gold);
    flex-shrink: 0;
}

.about-highlight-item strong {
    display: block;
    color: var(--navy);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.about-highlight-item span {
    color: var(--text-light);
    font-size: 0.86rem;
}

.about-intro-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-intro-visual img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
}

.about-intro-badge {
    position: absolute;
    right: 24px;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    border-radius: 16px;
    background: rgba(12,30,54,0.85);
    border: 1px solid rgba(200,148,62,0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.about-badge-number {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.about-badge-text {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    line-height: 1.35;
}

/* ══════════════════════════════════════
   ABOUT — Our Approach Section
   ══════════════════════════════════════ */
.about-approach-section {
    background: var(--white);
}

.about-approach-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.about-approach-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-approach-visual img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
}

.about-approach-copy h2 {
    max-width: 14ch;
}

.about-approach-copy > p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.78;
}

.approach-pillars {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 32px;
}

.approach-pillar {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
}

.approach-pillar:last-child {
    border-bottom: 1px solid var(--border);
}

.approach-pillar-num {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gold), #b07a2a);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
    flex-shrink: 0;
}

.approach-pillar strong {
    display: block;
    color: var(--navy);
    font-size: 0.98rem;
    margin-bottom: 4px;
}

.approach-pillar span {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.55;
}

/* ══════════════════════════════════════
   ABOUT — Vision & Mission Section
   ══════════════════════════════════════ */
.about-vm-section {
    background: linear-gradient(160deg, var(--navy-deep), var(--navy), var(--navy-mid));
    position: relative;
    overflow: hidden;
}

.about-vm-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(200,148,62,0.06), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(200,148,62,0.04), transparent 40%);
    pointer-events: none;
}

.about-vm-section .container {
    position: relative;
    z-index: 1;
}

.about-vm-header {
    text-align: center;
    margin-bottom: 48px;
}

.about-vm-header h2 {
    color: var(--white);
    margin: 14px 0 0;
}

.about-vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.about-vm-card {
    padding: 40px 36px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.about-vm-card:hover {
    background: rgba(200,148,62,0.06);
    border-color: rgba(200,148,62,0.2);
    transform: translateY(-4px);
}

.about-vm-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(200,148,62,0.1);
    border: 1px solid rgba(200,148,62,0.18);
    color: var(--gold);
    margin-bottom: 22px;
}

.about-vm-card h3 {
    margin: 0 0 14px;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    font-weight: 700;
}

.about-vm-card p {
    margin: 0 0 24px;
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.75;
}

.vm-accent-line {
    width: 48px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

/* ══════════════════════════════════════
   ABOUT — Core Values Section
   ══════════════════════════════════════ */
.about-values-section {
    background: var(--stone);
}

.about-values-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 52px;
}

.about-values-header p {
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 8px;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-value-card {
    padding: 32px 28px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.about-value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(200,148,62,0.2);
}

.about-value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(200,148,62,0.08);
    border: 1px solid rgba(200,148,62,0.12);
    color: var(--gold);
    margin-bottom: 20px;
}

.about-value-card h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 1.08rem;
    font-weight: 700;
}

.about-value-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.65;
}

/* ══════════════════════════════════════
   ABOUT — Growth & Presence Section
   ══════════════════════════════════════ */
.about-growth-section {
    background: linear-gradient(160deg, var(--navy-deep), var(--navy));
    position: relative;
    overflow: hidden;
}

.about-growth-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

.about-growth-copy h2 {
    color: var(--white);
    max-width: 14ch;
}

.about-growth-copy > p {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    line-height: 1.78;
}

.about-growth-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 36px;
}

.about-growth-stat {
    padding: 22px 20px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    transition: background var(--transition), border-color var(--transition);
}

.about-growth-stat:hover {
    background: rgba(200,148,62,0.06);
    border-color: rgba(200,148,62,0.2);
}

.growth-stat-num {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
    margin-bottom: 4px;
}

.growth-stat-label {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.about-growth-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.08);
}

.about-growth-visual img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
}

/* ── About Page Responsive ── */
@media (max-width: 1024px) {
    .about-intro-grid,
    .about-approach-grid,
    .about-growth-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .about-vm-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .about-hero {
        min-height: 320px;
        padding: 100px 0 48px;
    }
    .about-vm-grid {
        grid-template-columns: 1fr;
    }
    .about-values-grid {
        grid-template-columns: 1fr;
    }
    .about-growth-stats {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .about-intro-visual img,
    .about-approach-visual img,
    .about-growth-visual img {
        min-height: 300px;
    }
    .about-vm-card {
        padding: 28px 24px;
    }
}

/* ══════════════════════════════════════
   TEAM PAGE
   ══════════════════════════════════════ */
.team-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.team-section-header p {
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 8px;
}

.team-leadership-section {
    background: var(--cream);
}

.leadership-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.leadership-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
}

.leadership-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.leadership-card-image {
    height: 320px;
    overflow: hidden;
    background: var(--stone);
}

.leadership-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.55s ease;
}

.leadership-card:hover .leadership-card-image img {
    transform: scale(1.04);
}

.leadership-card-body {
    padding: 28px;
}

.leadership-card-body h3,
.founding-partner-card h3 {
    margin: 16px 0 12px;
    font-family: "Playfair Display", serif;
    color: var(--navy);
    line-height: 1.25;
}

.leadership-card-body h3 {
    font-size: 1.35rem;
}

.leadership-card-body p,
.founding-partner-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.72;
}

.founding-partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 28px;
}

.founding-partner-card {
    overflow: hidden;
    padding: 0;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.founding-partner-image {
    height: 320px;
    overflow: hidden;
    background: var(--stone);
}

.founding-partner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.founding-partner-body {
    padding: 24px;
}

.founding-partner-card h3 {
    margin-top: 0;
    font-size: 1.15rem;
}

/* ── Featured Founder Card ── */
.leader-featured {
    display: grid;
    grid-template-columns: 0.45fr 0.55fr;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    margin-bottom: 36px;
}

.leader-featured-image {
    position: relative;
    min-height: 480px;
    overflow: hidden;
}

.leader-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.leader-featured:hover .leader-featured-image img {
    transform: scale(1.03);
}

.leader-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(7,15,28,0.25), transparent);
    pointer-events: none;
}

.leader-featured-content {
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.leader-role-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    padding: 6px 14px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--gold), #b07a2a);
    color: var(--white);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.director-badge {
    background: linear-gradient(135deg, rgba(200,148,62,0.12), rgba(200,148,62,0.06));
    color: var(--gold);
    border: 1px solid rgba(200,148,62,0.2);
}

.leader-featured-content h3 {
    margin: 0 0 16px;
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

.leader-featured-content p {
    margin: 0 0 24px;
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.75;
}

.leader-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.leader-cred-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(200,148,62,0.08);
    border: 1px solid rgba(200,148,62,0.12);
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 600;
}

.leader-cred-item svg {
    color: var(--gold);
}

.leader-social {
    display: flex;
    gap: 8px;
}

.leader-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(12,30,54,0.06);
    border: 1px solid var(--border);
    color: var(--text-light);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.leader-social a:hover {
    background: rgba(200,148,62,0.1);
    color: var(--gold);
    border-color: rgba(200,148,62,0.2);
}

/* ── Director Cards Grid ── */
.directors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.director-card {
    display: flex;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
}

.director-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.director-image {
    width: 220px;
    flex-shrink: 0;
    overflow: hidden;
}

.director-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.director-card:hover .director-image img {
    transform: scale(1.04);
}

.director-body {
    padding: 28px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.director-body h3 {
    margin: 0 0 12px;
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
}

.director-body p {
    margin: 0 0 18px;
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.7;
}

.director-body .leader-credentials {
    margin-bottom: 16px;
}

.director-body .leader-cred-item {
    font-size: 0.78rem;
    padding: 4px 10px;
}

/* ══════════════════════════════════════
   TEAM — Expertise Section
   ══════════════════════════════════════ */
.team-expertise-section {
    background: linear-gradient(160deg, var(--navy-deep), var(--navy));
    position: relative;
    overflow: hidden;
}

.team-expertise-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

.team-expertise-copy h2 {
    color: var(--white);
}

.team-expertise-copy > p {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    line-height: 1.78;
}

.team-qualifications {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 32px;
}

.team-qual-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.team-qual-item:last-child {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.team-qual-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(200,148,62,0.1);
    border: 1px solid rgba(200,148,62,0.18);
    color: var(--gold);
    flex-shrink: 0;
}

.team-qual-item strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.team-qual-item span {
    color: rgba(255,255,255,0.5);
    font-size: 0.84rem;
}

.team-expertise-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.08);
}

.team-expertise-visual img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
}

.team-expertise-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 22px;
    border-radius: 14px;
    background: rgba(12,30,54,0.85);
    border: 1px solid rgba(200,148,62,0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.team-badge-num {
    font-family: "Playfair Display", serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    letter-spacing: 0.02em;
}

.team-badge-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
}

/* ── Team Page Responsive ── */
@media (max-width: 1024px) {
    .leadership-card-grid,
    .founding-partners-grid {
        grid-template-columns: 1fr;
    }
    .leader-featured {
        grid-template-columns: 1fr;
    }
    .leader-featured-image {
        min-height: 360px;
    }
    .directors-grid {
        grid-template-columns: 1fr;
    }
    .team-expertise-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 640px) {
    .leader-featured-content {
        padding: 28px 24px;
    }
    .leader-featured-content h3 {
        font-size: 1.5rem;
    }
    .director-card {
        flex-direction: column;
    }
    .director-image {
        width: 100%;
        height: 240px;
    }
    .director-body {
        padding: 22px 20px;
    }
    .team-expertise-visual img {
        min-height: 320px;
    }
}

/* ══════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════ */
@keyframes heroTitleReveal {
    0% { opacity: 0; transform: translateY(34px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes serviceReveal {
    0% { opacity: 0; transform: translateY(24px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes marqueeForward {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marqueeReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-title span {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
    .split-card,
    .why-grid,
    .cta-card,
    .leadership-grid,
    .clientele-grid {
        flex-direction: column;
        gap: 32px;
    }

    .split-card {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .service-grid,
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-visual-panel {
        grid-template-columns: 1fr;
    }

    .leadership-copy {
        max-width: none;
    }

    .why-copy {
        max-width: none;
    }

    .leadership-copy,
    .leadership-media {
        order: initial;
    }

    .industry-marquee {
        mask-image: none;
        -webkit-mask-image: none;
    }

    .site-nav {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--navy);
        padding: 24px;
        gap: 4px;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        border-bottom: 1px solid rgba(200, 148, 62, 0.15);
        box-shadow: 0 16px 40px rgba(0,0,0,0.3);
    }

    .site-nav.active {
        display: flex;
    }

    .site-nav a {
        padding: 14px 16px;
        font-size: 1rem;
    }

    .nav-item {
        width: 100%;
    }

    .nav-item > .nav-link {
        display: flex;
        justify-content: space-between;
    }

    .nav-dropdown {
        position: static;
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        max-height: 260px;
        margin: 2px 0 8px;
        padding: 10px;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        border-radius: 12px;
        background: rgba(7, 15, 28, 0.55);
        box-shadow: none;
    }

    .nav-dropdown::before {
        display: none;
    }

    .nav-item:hover .nav-dropdown,
    .nav-item:focus-within .nav-dropdown {
        transform: none;
    }

    .site-nav .nav-dropdown a {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .site-nav .nav-cta {
        margin-left: 0;
        margin-top: 8px;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
    }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════ */
@media (max-width: 640px) {
    .container {
        width: calc(100% - 32px);
    }

    .section {
        padding: 72px 0;
    }

    .hero-section {
        min-height: 80vh;
        padding-top: 56px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        min-width: 0;
    }

    .stats-bar-inner {
        flex-direction: column;
    }

    .stat-item {
        width: 100%;
        justify-content: flex-start;
        padding: 18px 24px;
    }

    .stat-divider {
        width: 60%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(200, 148, 62, 0.2), transparent);
    }

    .split-card {
        padding: 20px;
    }

    .about-visual {
        min-height: 280px;
    }

    .service-grid,
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-body {
        min-height: auto;
        padding: 20px;
    }

    .service-media {
        height: 180px;
    }

    .why-image-wrap img {
        min-height: 300px;
    }

    .why-list {
        grid-template-columns: 1fr;
    }

    .leadership-media {
        min-height: 340px;
    }

    .leadership-panel {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 16px 18px;
    }

    .cta-card {
        padding: 32px 24px;
    }

    .brand img {
        height: 40px;
    }

    .footer-wrap {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}
