: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.png"),
        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;
    background: rgba(248, 249, 251, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(37, 50, 71, 0.06);
}

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

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0;
}

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

.brand-badge {
    width: 48px;
    height: 48px;
    display: block;
    flex-shrink: 0;
}

.brand-badge-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

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

.brand-note {
    color: var(--muted);
    font-size: 0.86rem;
}

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

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

.site-nav a {
    color: var(--brand);
    font-size: 0.88rem;
    padding: 10px 14px;
    border-radius: 999px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    background: rgba(37, 50, 71, 0.05);
}

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

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

.hero-frame {
    position: relative;
    min-height: 620px;
    margin-top: 0;
    padding: 112px 70px 122px;
    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.24) 0%, rgba(9, 16, 29, 0.08) 30%, rgba(9, 16, 29, 0.22) 100%);
    mix-blend-mode: normal;
    opacity: 1;
    pointer-events: none;
}

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

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

.hero-eyebrow,
.section-eyebrow,
.placeholder-label {
    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.72);
}

.hero-kicker {
    max-width: 720px;
    margin: 0 auto 22px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.hero-title,
.section-intro h2,
.about-copy h2,
.contact-details h2,
.contact-cta 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.8rem, 6vw, 4.6rem);
    max-width: 820px;
    margin-inline: auto;
}

.hero-summary {
    max-width: 720px;
    margin: 24px auto 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.8;
}

.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;
}

.about-visual strong {
    display: block;
    margin-bottom: 8px;
    font-family: "Sora", sans-serif;
    font-size: 1.2rem;
    letter-spacing: -0.03em;
}

.about-visual p,
.about-visual small {
    display: block;
    margin: 0;
    line-height: 1.7;
}

.about-visual small {
    margin-top: 10px;
    font-size: 0.84rem;
}

.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: -54px;
}

.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: 44px;
    border-radius: var(--radius-xl);
}

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

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

.section-eyebrow,
.placeholder-label {
    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 li,
.coverage-column li,
.contact-card strong,
.site-footer p,
.footer-links a {
    color: var(--muted);
    line-height: 1.75;
}

.section-intro p {
    margin: 16px auto 0;
    max-width: 640px;
}

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

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

.service-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1.5px solid rgba(31, 41, 67, 0.12);
    color: var(--brand);
    margin-bottom: 18px;
}

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

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

.service-card ul,
.feature-list,
.coverage-column ul {
    margin: 0;
    padding-left: 18px;
}

.service-card li,
.feature-list li,
.coverage-column li {
    margin-top: 8px;
}

.divider-band {
    height: 132px;
    margin: 28px 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-list {
    margin-top: 24px;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.coverage-column {
    padding: 6px 0;
}

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

.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 {
        justify-content: center;
    }

    .hero-frame {
        padding: 88px 26px 126px;
    }

    .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: 16px 0;
    }

    .hero {
        padding-bottom: 70px;
    }

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

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

    .divider-band {
        height: 86px;
        margin: 24px 0;
    }

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