/* ========================================
   F&C CONSULTING — Premium Advisory Website
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1a2332;
    --navy-deep: #0f1620;
    --navy-light: #243044;
    --gold: #8b7355;
    --gold-light: #a8956f;
    --gold-muted: rgba(139, 115, 85, 0.15);
    --cream: #f8f6f3;
    --cream-dark: #eae6e0;
    --warm-gray: #6b6560;
    --text: #2c2825;
    --text-secondary: #5a5550;
    --text-light: #8a8580;
    --white: #ffffff;
    --border: #e0dcd6;
    --border-light: #eeebe7;

    --font-serif: 'Cormorant Garamond', 'Georgia', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --container: 1200px;
    --header-h: 80px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
}

img, svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Typography --- */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0.01em; }

p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

p:last-child {
    margin-bottom: 0;
}

.text-lead {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--text);
    font-weight: 300;
}

strong {
    font-weight: 600;
    color: var(--text);
}

em {
    font-style: italic;
    color: var(--text-light);
}

.section-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-label.center {
    text-align: center;
}

.section-header {
    max-width: 700px;
    margin-bottom: 3.5rem;
}

.section-title {
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--navy-light);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    border-bottom-color: var(--border-light);
    box-shadow: 0 1px 20px rgba(0,0,0,0.04);
}

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-fc {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.02em;
}

.logo-divider {
    width: 1px;
    height: 20px;
    background: var(--border);
}

.logo-text {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

.main-nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--navy);
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}

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

.menu-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--navy);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav-overlay {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    z-index: 999;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 60px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    display: flex;
    opacity: 1;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.mobile-nav-links a {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--navy);
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--gold);
}

/* --- Hero (Home) --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 40px;
    padding-top: var(--header-h);
    max-width: var(--container);
    margin: 0 auto;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero-title {
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    flex: 0 0 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-svg {
    width: 100%;
    max-width: 400px;
    animation: heroRotate 60s linear infinite;
}

@keyframes heroRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Disable animation for screenshot compatibility */
@media (prefers-reduced-motion: reduce) {
    .hero-svg { animation: none; }
}

/* --- Page Hero (internal pages) --- */
.page-hero {
    padding: 160px 0 80px;
    background: var(--cream);
    border-bottom: 1px solid var(--border-light);
}

.page-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.page-title {
    color: var(--navy);
    font-weight: 300;
    margin-bottom: 1rem;
}

.page-intro {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.75;
}

/* --- Section Blocks --- */
.section-block {
    padding: 100px 0;
}

.section-block + .section-block {
    border-top: 1px solid var(--border-light);
}

/* --- Two Column Layout --- */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* --- At a Glance Stats --- */
.at-a-glance {
    background: var(--navy);
    padding: 80px 0;
}

.at-a-glance .section-label {
    color: var(--gold-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.stat-value sup {
    font-size: 0.5em;
    vertical-align: super;
    color: var(--gold-light);
}

.stat-label {
    display: block;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.02em;
    line-height: 1.5;
}

.stat-detail {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.5rem;
    letter-spacing: 0.02em;
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    padding: 32px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
}

.service-icon {
    width: 48px;
    height: 48px;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.88rem;
    line-height: 1.7;
}

/* --- Situations --- */
.situations {
    background: var(--cream);
}

.situations-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.situation-item {
    padding: 32px 36px;
    border: 1px solid var(--border);
    margin: -0.5px;
    transition: background 0.3s ease;
}

.situation-item:hover {
    background: var(--white);
}

.situation-item h4 {
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.situation-item p {
    font-size: 0.88rem;
}

/* --- Advisory Model --- */
.advisory-model {
    background: var(--cream);
    text-align: center;
}

.model-content {
    max-width: 680px;
    margin: 0 auto;
}

.model-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.model-content h3 {
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

/* --- Principles --- */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.principle-card {
    padding: 36px;
    background: var(--cream);
    position: relative;
}

.principle-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.25;
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1;
}

.principle-card h3 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.principle-card p {
    font-size: 0.88rem;
}

/* --- Approach Steps --- */
.approach-steps {
    position: relative;
    max-width: 700px;
}

.approach-steps::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 12px;
    bottom: 12px;
    width: 1px;
    background: var(--border);
}

.approach-step {
    display: flex;
    gap: 32px;
    padding: 24px 0;
    position: relative;
}

.step-marker {
    flex-shrink: 0;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: var(--white);
    position: relative;
    z-index: 1;
    margin-top: 2px;
}

.step-content h4 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.9rem;
}

/* --- Geographic Reach --- */
.geo-reach {
    background: var(--cream);
}

.geo-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.geo-text {
    flex: 1;
}

.geo-text .section-title {
    margin-bottom: 1.5rem;
}

.geo-markets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.market-tag {
    padding: 16px 40px;
    background: var(--white);
    border: 1px solid var(--border);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy);
    text-align: center;
    letter-spacing: 0.04em;
    transition: border-color 0.3s ease;
}

.market-tag:hover {
    border-color: var(--gold);
}

/* --- Advisory Detailed --- */
.advisory-detailed {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.advisory-item {
    padding: 48px 0;
    border-bottom: 1px solid var(--border-light);
}

.advisory-item:first-child {
    padding-top: 0;
}

.advisory-item:last-child {
    border-bottom: none;
}

.advisory-item-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.advisory-icon {
    width: 48px;
    height: 48px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.advisory-item h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.advisory-credential {
    font-size: 0.82rem;
    color: var(--gold);
    font-style: italic;
    margin-bottom: 0;
}

.advisory-item > p {
    max-width: 800px;
    padding-left: 68px;
}

/* --- Sector Coverage --- */
.sector-coverage {
    background: var(--cream);
}

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

.sector-card {
    padding: 28px 32px;
    background: var(--white);
    border: 1px solid var(--border);
    transition: border-color 0.3s ease;
}

.sector-card:hover {
    border-color: var(--gold);
}

.sector-card h4 {
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 0.92rem;
}

.sector-card p {
    font-size: 0.82rem;
    margin-bottom: 0;
}

/* --- Transactions --- */
.transactions-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.tx-cat-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.tx-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.tx-card {
    padding: 28px 32px;
    background: var(--cream);
    border-left: 3px solid var(--gold);
    transition: background 0.3s ease;
}

.tx-card:hover {
    background: var(--cream-dark);
}

.tx-card h4 {
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.tx-card p {
    font-size: 0.85rem;
    line-height: 1.7;
}

/* --- Leadership --- */
.leaders-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.leader-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 60px;
    align-items: start;
}

.leader-photo {
    position: sticky;
    top: calc(var(--header-h) + 20px);
}

.photo-placeholder {
    width: 100%;
    max-width: 260px;
}

.leader-info h3 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.leader-title {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.leader-bio p {
    font-size: 0.92rem;
}

.leader-expertise {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.leader-expertise h4 {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.leader-expertise ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.leader-expertise li {
    padding: 6px 16px;
    background: var(--cream);
    font-size: 0.82rem;
    color: var(--text-secondary);
}

/* --- Insights --- */
.insights-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 4rem;
}

.insight-pillar {
    padding: 36px;
    border: 1px solid var(--border-light);
    transition: border-color 0.3s ease;
}

.insight-pillar:hover {
    border-color: var(--gold);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.insight-pillar h3 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.insight-pillar p {
    font-size: 0.88rem;
}

.insights-cta {
    text-align: center;
    padding: 40px;
    background: var(--cream);
}

.insights-cta p {
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.insights-cta a {
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
    transition: opacity 0.3s ease;
}

.insights-cta a:hover {
    opacity: 0.7;
}

/* --- Contact --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.contact-location {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 1rem;
}

.contact-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
}

.contact-detail a {
    color: var(--navy);
    font-size: 0.95rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
    width: fit-content;
}

.contact-detail a:hover {
    border-bottom-color: var(--gold);
}

.contact-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.engagement-process h4 {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.engagement-process p {
    font-size: 0.88rem;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border);
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.3s ease;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    align-self: flex-start;
    margin-top: 8px;
}

/* --- Footer --- */
.site-footer {
    background: var(--navy-deep);
    padding: 60px 0;
    border-top: 1px solid var(--navy-light);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 500;
}

.footer-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.footer-nav {
    display: flex;
    gap: 28px;
}

.footer-nav a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
}

.footer-nav a:hover {
    color: var(--gold-light);
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
    margin-bottom: 0;
}

/* --- Scroll Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Heritage --- */
.heritage-content {
    max-width: 760px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .container {
        padding: 0 28px;
    }

    .hero {
        padding: 0 28px;
        padding-top: var(--header-h);
    }

    .header-inner {
        padding: 0 28px;
    }

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

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

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

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

    .contact-layout {
        gap: 60px;
    }

    .leader-card {
        grid-template-columns: 200px 1fr;
        gap: 40px;
    }

    .geo-content {
        flex-direction: column;
        gap: 40px;
    }

    .geo-markets {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 64px;
    }

    .container {
        padding: 0 20px;
    }

    .header-inner {
        padding: 0 20px;
    }

    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        flex-direction: column;
        padding: 0 20px;
        padding-top: calc(var(--header-h) + 40px);
        min-height: auto;
        padding-bottom: 60px;
        gap: 40px;
    }

    .hero-visual {
        flex: 0 0 auto;
        width: 100%;
        max-width: 280px;
    }

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

    .hero-actions .btn {
        text-align: center;
    }

    .section-block {
        padding: 60px 0;
    }

    .page-hero {
        padding: 120px 0 60px;
    }

    .two-col {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .principles-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sectors-grid {
        grid-template-columns: 1fr;
    }

    .tx-items {
        grid-template-columns: 1fr;
    }

    .leader-card {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .leader-photo {
        position: static;
        max-width: 200px;
    }

    .insights-pillars {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .advisory-item > p {
        padding-left: 0;
    }

    .footer-brand {
        flex-direction: column;
        gap: 8px;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .geo-markets {
        flex-direction: column;
    }
}

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

    .hero-title {
        font-size: 2rem;
    }
}
