:root {
    --exec-navy: #0F203C;
    --exec-gold: #D4AF37;
    --exec-slate: #5A6B82;
    --exec-light: #F4F6F9;
    --exec-white: #FFFFFF;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lora', serif;
    --transition-speed: 0.3s;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--exec-navy);
    background-color: var(--exec-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-speed);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--exec-navy);
    margin-bottom: 2rem;
    position: relative;
}

.centered-title {
    text-align: center;
}

.inline-text-link {
    color: var(--exec-gold);
    border-bottom: 1px solid var(--exec-gold);
    font-weight: 600;
}

.inline-text-link:hover {
    color: var(--exec-navy);
    border-color: var(--exec-navy);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--exec-gold);
    color: var(--exec-navy);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-family: var(--font-heading);
    border: 2px solid var(--exec-gold);
    cursor: pointer;
    transition: all var(--transition-speed);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--exec-gold);
}

.large-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Header & Nav */
.exec-top-bar {
    background-color: var(--exec-navy);
    color: var(--exec-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.exec-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-mark {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-initials {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--exec-gold);
    border-right: 1px solid var(--exec-slate);
    padding-right: 0.75rem;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.exec-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    font-size: 0.95rem;
    font-weight: 600;
}

.nav-item:not(.btn-primary):hover {
    color: var(--exec-gold);
}

/* Hero Section */
.hero-split-module {
    display: flex;
    min-height: 80vh;
    background-color: var(--exec-navy);
    color: var(--exec-white);
}

.hero-content-pane {
    flex: 1;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-headline {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--exec-white);
}

.hero-subhead {
    font-size: 1.25rem;
    color: var(--exec-slate);
    margin-bottom: 3rem;
    max-width: 90%;
}

.hero-action-cluster {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-trust-badge {
    font-style: italic;
    color: var(--exec-slate);
    font-size: 0.95rem;
    border-left: 2px solid var(--exec-gold);
    padding-left: 1rem;
}

.hero-visual-pane {
    flex: 1;
}

.hero-visual-pane img {
    height: 100%;
}

/* Deep Context / Firm Profile */
.deep-context-section {
    padding: 6rem 2rem;
    background-color: var(--exec-white);
}

.context-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
    align-items: center;
}

.narrative-prose {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.data-proof-cluster {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #E0E5EC;
}

.data-point {
    display: flex;
    flex-direction: column;
}

.data-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--exec-gold);
    font-weight: 800;
    line-height: 1;
}

.data-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--exec-slate);
    margin-top: 0.5rem;
}

/* Methodology Band */
.method-process-band {
    background-color: var(--exec-navy);
    color: var(--exec-white);
    padding: 6rem 2rem;
}

.band-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.method-process-band .section-title {
    color: var(--exec-white);
}

.method-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--exec-slate);
    margin-bottom: 4rem;
}

.process-steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step-node {
    background-color: rgba(255,255,255,0.05);
    padding: 2.5rem 2rem;
    border-top: 3px solid var(--exec-gold);
}

.step-numeral {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--exec-gold);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.step-heading {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step-detail {
    color: #A0ABC0;
    font-size: 0.95rem;
}

/* Service Matrix */
.service-matrix-area {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.matrix-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.matrix-card {
    background: var(--exec-white);
    box-shadow: 0 10px 30px rgba(15, 32, 60, 0.05);
    transition: transform var(--transition-speed);
}

.matrix-card:hover {
    transform: translateY(-5px);
}

.matrix-card img {
    height: 200px;
}

.matrix-card-content {
    padding: 2rem;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.card-desc {
    font-size: 0.95rem;
    color: #555;
}

/* Client Feedback */
.client-feedback-zone {
    background-color: #EAEFF5;
    padding: 6rem 2rem;
}

.feedback-scatter {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feedback-plate {
    background: var(--exec-white);
    padding: 2.5rem;
    position: relative;
}

.quote-text {
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #444;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quote-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.author-name {
    display: block;
    font-weight: 700;
    font-family: var(--font-heading);
}

.author-role {
    display: block;
    font-size: 0.8rem;
    color: var(--exec-slate);
    text-transform: uppercase;
}

/* Inquiry / Contact */
.inquiry-sector {
    padding: 6rem 2rem;
    background-color: var(--exec-white);
}

.inquiry-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.inquiry-prompt {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.contact-micro-details p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.secure-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--exec-navy);
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #CCC;
    font-family: var(--font-body);
    background-color: var(--exec-light);
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--exec-gold);
    background-color: var(--exec-white);
}

.form-submit-btn {
    width: 100%;
}

/* Footer */
.corporate-footer-block {
    background-color: #081222;
    color: #8892b0;
    padding: 4rem 2rem 2rem;
    font-size: 0.9rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--exec-white);
    display: block;
    margin-bottom: 1rem;
}

.footer-heading {
    color: var(--exec-white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--exec-gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #1a2942;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}

.disclaimer-noise {
    font-size: 0.75rem;
    max-width: 400px;
    text-align: right;
    opacity: 0.6;
}

/* Utility & Responsive Pages */
.simple-page-wrap {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    background: var(--exec-white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-split-module {
        flex-direction: column;
    }
    .hero-visual-pane img {
        height: 400px;
    }
    .context-grid {
        grid-template-columns: 1fr;
    }
    .context-visual {
        order: -1;
    }
    .feedback-scatter {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .exec-navigation {
        display: none; /* Simplification for generated demo */
    }
    .hero-headline {
        font-size: 2.5rem;
    }
    .process-steps-container {
        grid-template-columns: 1fr;
    }
    .inquiry-container {
        grid-template-columns: 1fr;
    }
    .secure-form .form-row {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: left;
    }
    .disclaimer-noise {
        text-align: left;
    }
}
