:root {
    --ink: #11151c;
    --navy: #18283d;
    --charcoal: #242831;
    --gold: #c9a451;
    --gold-soft: #f3dfac;
    --paper: #f8f7f2;
    --white: #ffffff;
    --muted: #69717d;
    --line: rgba(17, 21, 28, 0.12);
    --dark-line: rgba(255, 255, 255, 0.14);
    --shadow: 0 20px 60px rgba(17, 21, 28, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
}

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

p {
    margin: 0 0 1rem;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.08;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 600;
}

h1 {
    font-size: clamp(2.6rem, 6vw, 5.6rem);
    max-width: 980px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    max-width: 860px;
}

h3 {
    font-size: 1.24rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 1rem clamp(1rem, 4vw, 3rem);
    background: rgba(248, 247, 242, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--ink);
    background: var(--gold);
    border-radius: 4px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
}

.brand-copy {
    display: grid;
    gap: 0.05rem;
}

.brand-copy small {
    color: var(--muted);
    font-size: 0.72rem;
    text-transform: uppercase;
}

.site-nav,
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    color: var(--charcoal);
    font-size: 0.94rem;
}

.site-nav a,
.footer-nav a {
    padding: 0.35rem 0;
    border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.footer-nav a:hover {
    border-color: var(--gold);
}

.header-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.78rem 1.1rem;
    border: 1px solid var(--gold);
    border-radius: 4px;
    font-weight: 700;
}

.button.primary,
.header-cta {
    color: var(--ink);
    background: var(--gold);
}

.button.secondary {
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.35);
}

.home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: stretch;
    min-height: calc(100vh - 78px);
    padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 5vw, 5rem);
    color: var(--white);
    background:
        linear-gradient(120deg, rgba(17, 21, 28, 0.96), rgba(24, 40, 61, 0.9)),
        repeating-linear-gradient(90deg, rgba(201, 164, 81, 0.11), rgba(201, 164, 81, 0.11) 1px, transparent 1px, transparent 90px);
}

.hero-copy,
.section-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-copy p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.12rem;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.hero-visual {
    display: flex;
    align-items: stretch;
}

.eyebrow {
    margin-bottom: 0.9rem;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.content-section,
.page-hero,
.cta-band {
    padding: clamp(4rem, 8vw, 7.5rem) clamp(1rem, 5vw, 5rem);
}

.content-section.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.content-section.split.reverse {
    grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1fr);
}

.section-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.section-inner > h2,
.section-copy > h2 {
    margin-bottom: 1.2rem;
}

.section-copy > p,
.section-inner > p,
.prose {
    color: var(--muted);
    font-size: 1.04rem;
}

.page-hero {
    color: var(--white);
    background:
        linear-gradient(125deg, rgba(24, 40, 61, 0.98), rgba(36, 40, 49, 0.94)),
        linear-gradient(90deg, transparent 0, transparent 70%, rgba(201, 164, 81, 0.18) 70%);
}

.page-hero.compact {
    min-height: 42vh;
    display: flex;
    align-items: center;
}

.dark-band,
.process-band {
    color: var(--white);
    background: var(--charcoal);
}

.dark-band .section-copy > p,
.dark-band .section-inner > p,
.dark-band .check-list,
.process-band .section-inner > p {
    color: rgba(255, 255, 255, 0.72);
}

.card-grid,
.process-grid,
.leader-grid,
.definition-grid,
.contact-grid,
.two-col {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.card-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.two-col,
.contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2rem, 5vw, 5rem);
}

.feature-card,
.process-step,
.statement,
.definition-grid > div {
    padding: 1.35rem;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.58);
}

.dark-band .feature-card,
.dark-band .statement,
.dark-band .definition-grid > div,
.process-step {
    border-color: var(--dark-line);
    background: rgba(255, 255, 255, 0.06);
}

.feature-card p,
.process-step p,
.statement p,
.definition-grid p {
    margin-top: 0.65rem;
    color: var(--muted);
}

.dark-band .feature-card p,
.process-step p {
    color: rgba(255, 255, 255, 0.68);
}

.process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-step span {
    display: inline-block;
    margin-bottom: 1.2rem;
    color: var(--gold);
    font-weight: 800;
}

.image-placeholder {
    display: grid;
    align-content: center;
    min-height: 360px;
    width: 100%;
    padding: 2rem;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(24, 40, 61, 0.94), rgba(17, 21, 28, 0.78)),
        repeating-linear-gradient(135deg, rgba(201, 164, 81, 0.28), rgba(201, 164, 81, 0.28) 1px, transparent 1px, transparent 18px);
    border: 1px solid rgba(201, 164, 81, 0.34);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.image-placeholder span {
    max-width: 460px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.45rem, 3vw, 2.4rem);
    line-height: 1.1;
}

.image-placeholder small {
    margin-top: 0.9rem;
    color: var(--gold-soft);
    font-weight: 700;
}

.check-list {
    display: grid;
    gap: 0.75rem;
    margin: 1.2rem 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 1.7rem;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 9px;
    height: 9px;
    background: var(--gold);
    border-radius: 50%;
}

.pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.pill-group span {
    padding: 0.55rem 0.75rem;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
}

.muted {
    margin-top: 1.1rem;
    color: var(--muted);
}

.statement + .statement {
    margin-top: 1rem;
}

.leader-grid {
    gap: 1.4rem;
}

.leader-card {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
    padding: 1.4rem;
    border: 1px solid var(--dark-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.leader-card .image-placeholder {
    min-height: 420px;
}

.leader-card p {
    color: rgba(255, 255, 255, 0.72);
}

.contact-list {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-list p {
    display: grid;
    gap: 0.25rem;
}

.contact-list strong {
    color: var(--gold);
}

.contact-form {
    display: grid;
    gap: 0.85rem;
}

.contact-form label {
    display: grid;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--dark-line);
    border-radius: 4px;
    font: inherit;
}

.map-frame {
    height: 430px;
    margin-top: 1.5rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.cta-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
    color: var(--white);
    background: var(--navy);
}

.cta-band h2 {
    max-width: 900px;
}

.site-footer {
    padding: 4rem clamp(1rem, 5vw, 5rem) 1.5rem;
    color: rgba(255, 255, 255, 0.72);
    background: var(--ink);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    width: min(1180px, 100%);
    margin: 0 auto;
}

.footer-brand,
.site-footer h2,
.site-footer strong {
    color: var(--white);
}

.footer-nav {
    justify-content: flex-start;
    flex-direction: column;
    gap: 0.45rem;
}

.footer-bottom {
    width: min(1180px, 100%);
    margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--dark-line);
}

@media (max-width: 1080px) {
    .card-grid.three,
    .card-grid.four,
    .card-grid.five,
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-hero,
    .content-section.split,
    .content-section.split.reverse,
    .two-col,
    .contact-grid,
    .footer-grid,
    .cta-band {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 760px) {
    .site-header {
        position: static;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .site-nav {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .header-cta {
        width: 100%;
    }

    .home-hero {
        min-height: auto;
    }

    .card-grid.three,
    .card-grid.four,
    .card-grid.five,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .image-placeholder {
        min-height: 280px;
    }
}

