:root {
    --ink: #090a08;
    --forest: #27492a;
    --moss: #8d9b70;
    --sky: #dceaf0;
    --sun: #f3d6a2;
    --paper: #fbfaf6;
    --white: #ffffff;
    --muted: #676b5f;
    --line: #dedbd1;
    --shadow: 0 24px 60px rgba(35, 43, 32, 0.12);
    --transition: 180ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: "Outfit", Arial, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

img,
video,
svg {
    display: block;
}

a {
    color: inherit;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(39, 73, 42, 0.14);
    background: rgba(251, 250, 246, 0.9);
    backdrop-filter: blur(14px);
}

.nav-shell {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
    color: var(--ink);
    font-size: clamp(1.65rem, 3vw, 2.4rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1;
    text-decoration: none;
}

.logo strong {
    color: var(--forest);
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
}

.nav-links a {
    color: var(--ink);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition);
}

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

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
}

.bar {
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
    transition:
        transform var(--transition),
        opacity var(--transition);
}

.btn-primary,
.btn-ghost {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition);
}

.btn-primary {
    border: 1px solid var(--forest);
    background: var(--forest);
    color: var(--white) !important;
    padding: 12px 20px;
}

.btn-primary:hover,
.btn-ghost:hover {
    transform: translateY(-2px);
}

.btn-ghost {
    border: 1px solid rgba(9, 10, 8, 0.18);
    background: rgba(255, 255, 255, 0.58);
    color: var(--ink);
    padding: 12px 18px;
}

.hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(
            130deg,
            rgba(251, 250, 246, 0.98) 0%,
            rgba(251, 250, 246, 0.86) 48%,
            rgba(220, 234, 240, 0.78) 100%
        ),
        linear-gradient(180deg, rgba(243, 214, 162, 0.24), rgba(255, 255, 255, 0));
}

.hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 110px;
    background: linear-gradient(to top, rgba(251, 250, 246, 0.98), rgba(251, 250, 246, 0));
    content: "";
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    min-height: min(860px, calc(100vh - 78px));
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
    align-items: center;
    gap: clamp(32px, 6vw, 72px);
    padding-top: 56px;
    padding-bottom: 56px;
}

.hero-copy {
    max-width: 580px;
}

.eyebrow {
    color: var(--forest);
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero h1,
.section-header h2,
.process-section h2,
.site-footer h2,
.reel-header h2 {
    font-family: "Bebas Neue", "Arial Narrow", Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 0.94;
}

.hero h1 {
    max-width: 620px;
    margin-top: 18px;
    font-size: clamp(4.1rem, 7.4vw, 7.1rem);
}

.hero h1 span {
    display: block;
    color: var(--forest);
}

.hero-lede {
    max-width: 540px;
    margin-top: 24px;
    color: #31352d;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.reel-panel {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.reel-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.reel-header h2 {
    max-width: 280px;
    font-size: clamp(2rem, 4vw, 3.25rem);
    text-align: right;
}

.video-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(39, 73, 42, 0.2);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(9, 10, 8, 0.1), rgba(9, 10, 8, 0.32)),
        linear-gradient(135deg, #dceaf0 0%, #fbfaf6 42%, #f3d6a2 100%);
    box-shadow: var(--shadow);
}

.video-card video {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: transparent;
    object-fit: cover;
}

.video-card::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, transparent 0 54%, rgba(39, 73, 42, 0.16) 54.5% 55%, transparent 55.5%),
        radial-gradient(circle at 74% 28%, rgba(255, 255, 255, 0.76) 0 3px, transparent 4px),
        radial-gradient(circle at 28% 70%, rgba(39, 73, 42, 0.55) 0 2px, transparent 3px);
    content: "";
    pointer-events: none;
}

.play-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-radius: 8px;
    background: rgba(251, 250, 246, 0.9);
    color: var(--ink);
    padding: 9px 12px;
    font-size: 0.85rem;
    font-weight: 700;
}

.play-badge svg {
    width: 17px;
    height: 17px;
    fill: var(--forest);
}

.preview-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.preview-strip article {
    min-height: 126px;
    border: 1px solid rgba(39, 73, 42, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    padding: 15px;
}

.preview-strip span,
.process-list span {
    color: var(--moss);
    font-family: "Bebas Neue", "Arial Narrow", Arial, sans-serif;
    font-size: 1.55rem;
    line-height: 1;
}

.preview-strip strong,
.process-list strong,
.trust-grid strong {
    display: block;
    font-size: 1.02rem;
}

.preview-strip p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.9rem;
}

.trust-band {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.trust-grid article {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 138px;
    border-right: 1px solid var(--line);
    padding: 28px 34px;
}

.trust-grid article:last-child {
    border-right: 0;
}

.trust-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    object-fit: contain;
}

.trust-grid span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
}

.services-section,
.process-section {
    padding: clamp(74px, 9vw, 118px) 0;
}

.split-header,
.creative-grid,
.process-grid,
.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
    gap: clamp(28px, 5vw, 70px);
    align-items: start;
}

.section-header h2,
.process-section h2,
.site-footer h2 {
    margin-top: 12px;
    font-size: clamp(3rem, 7vw, 6.8rem);
}

.section-header p,
.split-header > p,
.process-list p,
.site-footer p {
    color: var(--muted);
    font-size: 1.05rem;
}

.split-header > p {
    max-width: 520px;
    padding-top: 12px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.section-kicker img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 44px;
}

.service-card {
    min-height: 238px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    padding: 26px;
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.service-card:hover {
    border-color: rgba(39, 73, 42, 0.42);
    box-shadow: 0 16px 34px rgba(39, 73, 42, 0.09);
    transform: translateY(-4px);
}

.service-card h3,
.creative-list h3 {
    margin-top: 22px;
    font-size: 1.35rem;
    line-height: 1.1;
}

.service-card p,
.creative-list p {
    margin-top: 12px;
    color: var(--muted);
}

.service-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    object-fit: contain;
}

.creative-section {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(220, 234, 240, 0.52), rgba(251, 250, 246, 0.78));
}

.creative-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.creative-list article {
    min-height: 190px;
    border: 1px solid rgba(39, 73, 42, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.74);
    padding: 26px;
}

.process-section {
    background: var(--white);
}

.process-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    list-style: none;
}

.process-list li {
    border-top: 4px solid var(--forest);
    padding-top: 20px;
}

.process-list strong {
    margin-top: 12px;
    font-size: 1.3rem;
}

.process-list p {
    margin-top: 10px;
}

.site-footer {
    background: var(--ink);
    color: var(--white);
    padding: clamp(58px, 8vw, 96px) 0;
}

.site-footer .eyebrow {
    color: var(--moss);
}

.site-footer p {
    max-width: 580px;
    color: rgba(255, 255, 255, 0.78);
}

.contact-card {
    display: grid;
    gap: 14px;
    border: 1px solid rgba(141, 155, 112, 0.48);
    border-radius: 8px;
    padding: 28px;
}

.contact-card a {
    color: var(--white);
    font-size: clamp(1.2rem, 3vw, 1.85rem);
    font-weight: 600;
    text-decoration: none;
}

.contact-card a:hover {
    color: var(--sun);
}

.contact-card span {
    color: var(--moss);
    font-weight: 700;
}

@media (max-width: 980px) {
    .hero-grid,
    .split-header,
    .creative-grid,
    .process-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-copy {
        max-width: 720px;
    }

    .reel-header h2 {
        text-align: left;
    }

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

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

    .trust-grid article {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .trust-grid article:last-child {
        border-bottom: 0;
    }
}

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

    .site-header {
        position: sticky;
    }

    .nav-shell {
        min-height: 68px;
    }

    .logo {
        font-size: 1.45rem;
        letter-spacing: 0.1em;
    }

    .menu-toggle {
        display: grid;
        position: relative;
        z-index: 30;
    }

    .menu-toggle .bar {
        grid-area: 1 / 1;
    }

    .menu-toggle .bar:nth-child(1) {
        transform: translateY(-7px);
    }

    .menu-toggle .bar:nth-child(3) {
        transform: translateY(7px);
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg);
    }

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

    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        inset: 0 0 auto 0;
        display: grid;
        gap: 0;
        border-bottom: 1px solid var(--line);
        background: var(--paper);
        padding: 86px 18px 24px;
        transform: translateY(-110%);
        transition: transform var(--transition);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links li {
        border-top: 1px solid var(--line);
    }

    .nav-links a {
        display: flex;
        padding: 16px 0;
        font-size: 1.1rem;
    }

    .nav-links .btn-primary {
        margin-top: 14px;
        padding: 12px 18px;
    }

    .hero {
        background-position: center top;
    }

    .hero-grid {
        padding-top: 38px;
        padding-bottom: 48px;
    }

    .eyebrow {
        font-size: 0.72rem;
        letter-spacing: 0.16em;
    }

    .hero h1 {
        font-size: clamp(3.05rem, 14.5vw, 4.7rem);
    }

    .reel-header {
        align-items: start;
        flex-direction: column;
        gap: 8px;
    }

    .reel-header h2 {
        max-width: none;
        font-size: 2.55rem;
    }

    .hero-actions,
    .preview-strip,
    .services-grid,
    .creative-list,
    .process-list {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        display: grid;
    }

    .preview-strip {
        display: grid;
    }

    .service-card,
    .creative-list article {
        min-height: auto;
    }

    .section-header h2,
    .process-section h2,
    .site-footer h2 {
        font-size: clamp(3.4rem, 15vw, 5.5rem);
    }
}
