:root {
    --canvas: #eef1f6;
    --paper: #f8f9fb;
    --surface: rgba(255, 255, 255, 0.94);
    --ink: #253247;
    --muted: #6c7789;
    --line: rgba(37, 50, 71, 0.09);
    --brand: #1f2943;
    --brand-deep: #11192c;
    --accent: #9e8254;
    --accent-soft: rgba(158, 130, 84, 0.12);
    --shadow: 0 28px 70px rgba(23, 33, 54, 0.12);
    --radius-xl: 30px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(10, 16, 28, 0.46) 0%, rgba(10, 16, 28, 0.58) 100%),
        url("home-hero-bg.webp"),
        linear-gradient(180deg, #f6f7f9 0%, var(--canvas) 100%);
    background-position: center, center 22%, center;
    background-size: auto, cover, auto;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-attachment: fixed, fixed, scroll;
}

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

.landing-shell {
    min-height: 100vh;
    background: transparent;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    padding-top: 18px;
    background: transparent;
    border-bottom: 0;
}

.section-shell,
.site-footer-inner {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}

.site-header-inner {
    width: min(calc(100% - 24px), calc(var(--container) + 88px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 18px 24px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(248, 249, 251, 0.72) 100%);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow:
        0 20px 42px rgba(31, 41, 67, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
}

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

.brand-badge {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    overflow: hidden;
    padding: 0;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 241, 246, 0.92));
    border: 1px solid rgba(37, 50, 71, 0.08);
    box-shadow:
        0 12px 24px rgba(37, 50, 71, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.brand-badge-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.16);
    transform-origin: center;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand-name {
    font-family: "Sora", sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: var(--brand);
}

.brand-note {
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 7px;
    border-radius: 999px;
    background: rgba(31, 41, 67, 0.04);
    border: 1px solid rgba(37, 50, 71, 0.06);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 8px 18px rgba(37, 50, 71, 0.05);
}

.site-nav a,
.button-link {
    font-family: "Sora", sans-serif;
    font-weight: 600;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    color: rgba(31, 41, 67, 0.76);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0 20px;
    border-radius: 999px;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.site-nav a.is-active,
.site-nav a[aria-current="page"] {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.82));
    color: var(--brand-deep);
    box-shadow:
        0 10px 20px rgba(37, 50, 71, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.site-nav a:hover,
.site-nav a:focus-visible {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82));
    color: var(--brand-deep);
    box-shadow:
        0 10px 20px rgba(37, 50, 71, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    transform: translateY(-1px);
}

.section-anchor {
    scroll-margin-top: 96px;
}

.hero {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
    padding: 0 0 88px;
}

.hero-frame {
    position: relative;
    min-height: 640px;
    margin-top: 0;
    padding: 118px 70px 136px;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    background: transparent;
}

.hero-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(8, 14, 26, 0.52) 0%, rgba(8, 14, 26, 0.32) 34%, rgba(8, 14, 26, 0.14) 66%, transparent 100%);
    pointer-events: none;
}

.hero-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(9, 16, 29, 0.18) 0%, rgba(9, 16, 29, 0.08) 30%, rgba(9, 16, 29, 0.22) 100%);
    pointer-events: none;
}

.hero-content,
.scroll-indicator {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    color: #f3f5f9;
    text-shadow: 0 10px 28px rgba(9, 16, 29, 0.28);
}

.hero-eyebrow,
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-eyebrow {
    color: rgba(255, 255, 255, 0.74);
}

.hero-title,
.section-intro h2,
.about-copy h2,
.contact-details h2,
.contact-cta h3,
.service-card h3,
.coverage-card h3 {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1.02;
}

.hero-title {
    font-size: clamp(2.9rem, 5.8vw, 4.9rem);
    max-width: 760px;
    margin-inline: auto;
}

.hero-summary,
.section-intro p,
.about-copy p,
.contact-details p,
.contact-cta p,
.service-card p,
.coverage-card p,
.site-footer p,
.footer-links a {
    line-height: 1.75;
}

.hero-summary {
    max-width: 600px;
    margin: 24px auto 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.98rem;
}

.hero-actions,
.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-actions {
    justify-content: center;
    margin-top: 30px;
}

.button-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.92rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button-link:hover,
.button-link:focus-visible {
    transform: translateY(-1px);
}

.button-link.primary {
    background: linear-gradient(135deg, var(--accent) 0%, #806942 100%);
    color: #f9f6ef;
    box-shadow: 0 16px 30px rgba(128, 105, 66, 0.22);
}

.button-link.secondary {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.16);
    color: #f8fafc;
}

.hero-marks {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 38px;
}

.hero-mark {
    min-width: 148px;
    padding: 15px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.hero-mark-icon {
    width: 34px;
    height: 34px;
    margin: 0 auto 10px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.hero-mark strong {
    display: block;
    color: #ffffff;
    font-size: 0.92rem;
    letter-spacing: -0.02em;
}

.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 32px;
    width: 44px;
    height: 44px;
    margin-left: -22px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.scroll-indicator span {
    width: 10px;
    height: 10px;
    border-right: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
    transform: rotate(45deg) translateY(-2px);
}

.services-stage {
    position: relative;
    margin-top: -58px;
}

.services-panel,
.coverage-panel,
.contact-panel,
.about-copy,
.about-visual {
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.services-panel,
.coverage-panel,
.contact-panel {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
    padding: 48px;
    border-radius: var(--radius-xl);
}

.section-intro {
    max-width: 760px;
}

.section-intro.centered {
    margin: 0 auto;
    text-align: center;
}

.section-eyebrow {
    color: var(--accent);
}

.section-intro h2,
.about-copy h2,
.contact-details h2,
.contact-cta h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--brand);
}

.section-intro p,
.about-copy p,
.contact-details p,
.contact-cta p,
.service-card p,
.coverage-card p,
.site-footer p,
.footer-links a {
    color: var(--muted);
}

.section-intro p {
    margin: 14px auto 0;
    max-width: 540px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 36px;
}

.service-card {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: #ffffff;
    border: 1px solid rgba(37, 50, 71, 0.06);
    text-align: center;
}

.service-icon,
.coverage-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1.5px solid rgba(31, 41, 67, 0.12);
    color: var(--brand);
    margin: 0 auto 18px;
    background: var(--accent-soft);
}

.service-card h3,
.coverage-card h3,
.contact-card span {
    margin: 0 0 12px;
    font-family: "Sora", sans-serif;
    letter-spacing: -0.03em;
}

.service-card h3,
.coverage-card h3 {
    font-size: 1.15rem;
    color: var(--brand);
}

.service-card p,
.coverage-card p {
    margin: 0;
}

.divider-band {
    height: 124px;
    margin: 26px 0;
    background: transparent;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
    gap: 24px;
}

.about-copy,
.about-visual {
    padding: 36px;
    border-radius: var(--radius-xl);
}

.about-visual {
    min-height: 360px;
    display: grid;
    align-content: center;
    background:
        linear-gradient(135deg, rgba(31, 41, 67, 0.06), rgba(158, 130, 84, 0.08)),
        #ffffff;
}

.about-visual-session {
    background:
        linear-gradient(135deg, rgba(31, 41, 67, 0.08), rgba(17, 25, 44, 0.2)),
        url("Client Strategy Session.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.feature-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.feature-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 13px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--brand);
    font-size: 0.82rem;
    font-weight: 700;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.coverage-card {
    padding: 28px 22px;
    border-radius: var(--radius-lg);
    background: #ffffff;
    border: 1px solid rgba(37, 50, 71, 0.06);
    text-align: center;
}

.contact-section {
    padding: 0 0 62px;
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.85fr);
    gap: 24px;
    background:
        linear-gradient(135deg, rgba(17, 25, 44, 0.88) 0%, rgba(31, 41, 67, 0.82) 100%);
    color: #f4f6fa;
    backdrop-filter: blur(16px);
}

.contact-details h2,
.contact-cta h3 {
    color: #ffffff;
}

.contact-details p,
.contact-cta p,
.contact-card strong {
    color: rgba(255, 255, 255, 0.72);
}

.contact-cards {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.contact-card {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card span {
    display: block;
    margin-bottom: 6px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
}

.contact-cta {
    padding: 30px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    align-self: center;
}

.contact-cta .button-link.secondary {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.site-footer {
    border-top: 1px solid rgba(37, 50, 71, 0.08);
    background: rgba(248, 249, 251, 0.82);
    backdrop-filter: blur(14px);
}

.site-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 0;
}

.site-footer p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.9rem;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp 0.8s ease forwards;
}

.reveal-delay-1 {
    animation-delay: 0.12s;
}

.reveal-delay-2 {
    animation-delay: 0.2s;
}

.reveal-delay-3 {
    animation-delay: 0.28s;
}

.reveal-delay-4 {
    animation-delay: 0.36s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1080px) {
    .about-grid,
    .contact-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .services-grid,
    .coverage-grid {
        grid-template-columns: 1fr;
    }

    .site-header-inner {
        flex-direction: column;
        justify-content: center;
        border-radius: 26px;
    }

    .hero-frame {
        padding: 96px 26px 128px;
    }

    .scroll-indicator {
        bottom: 24px;
    }

    .services-panel,
    .coverage-panel,
    .contact-panel,
    .about-copy,
    .about-visual {
        padding: 28px;
    }
}

@media (max-width: 640px) {
    .site-header-inner,
    .section-shell,
    .site-footer-inner,
    .hero,
    .services-panel,
    .coverage-panel,
    .contact-panel {
        width: min(calc(100% - 24px), var(--container));
    }

    .site-header-inner {
        padding: 14px;
    }

    .hero {
        padding-bottom: 70px;
    }

    .hero-frame {
        min-height: auto;
        border-radius: 0 0 24px 24px;
    }

    .hero-actions,
    .cta-actions,
    .site-nav,
    .hero-marks {
        width: 100%;
        justify-content: center;
    }

    .site-nav {
        padding: 6px;
    }

    .site-nav a {
        flex: 1 1 calc(50% - 8px);
        min-width: 128px;
    }

    .hero-mark {
        width: 100%;
        max-width: 220px;
    }

    .divider-band {
        height: 78px;
        margin: 22px 0;
    }

    .site-footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
