:root {
    --ink: #111111;
    --muted: #6d665f;
    --cream: #f5efe6;
    --cream-2: #fbf7f1;
    --orange: #f15a24;
    --line: #e8ded2;
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(24, 20, 16, .10);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--cream-2);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

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

img {
    display: block;
    max-width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 74px;
    padding: 0 7vw;
    background: rgba(251, 247, 241, .94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.brand {
    font-size: 19px;
    font-weight: 950;
    letter-spacing: -.02em;
}

.brand span {
    color: var(--orange);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 17px;
    color: #4d4741;
}

.site-nav a {
    /*padding: 8px 0;*/
}

.site-nav a.active {
    color: var(--orange);
}

.nav-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 21px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    background: var(--ink);
    color: var(--white);
    font-weight: 900;
    font-size: 13px;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.btn-orange {
    border-color: var(--orange);
    background: var(--orange);
    box-shadow: 0 12px 24px rgba(241, 90, 36, .20);
}

.btn-light {
    background: var(--white);
    color: var(--ink);
}

.btn:hover,
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(17, 17, 17, .16);
}

.nav-toggle {
    display: none;
}

.section {
    padding: 92px 7vw;
}

.section-dark {
    background: #101010;
    color: var(--white);
}

.section-cream {
    background: var(--cream);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--orange);
    font-size: 11.5px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.headline {
    max-width: 860px;
    margin: 0;
    font-size: clamp(40px, 5vw, 76px);
    line-height: .94;
    /*font-weight: 950;*/
    letter-spacing: -.035em;
}

.headline span,
.orange {
    color: var(--orange);
}

.section-title {
    margin: 0;
    font-size: clamp(32px, 3.75vw, 58px);
    line-height: .98;
    font-weight: 950;
    letter-spacing: -.035em;
}

.lead {
    max-width: 660px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.62;
}

.section-dark .lead,
.section-dark .muted {
    color: #cfc7bd;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
    gap: 72px;
    align-items: center;
    min-height: calc(100vh - 74px);
    background-color: var(--cream-2);
    background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 42px 42px;
}

.hero-actions,
.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,.78);
    color: #675f56;
    font-size: 12px;
    font-weight: 700;
}

.workflow-card {
    width: min(100%, 570px);
    max-width: 570px;
    padding: 28px;
    border: 1px solid rgba(232, 222, 210, .9);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.workflow-card h3 {
    margin: 0 0 18px;
    color: #a39b92;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding: 15px 16px;
    border-radius: 10px;
    background: #f4eee6;
    font-weight: 850;
}

.step-dot {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), #ff8a4f);
    color: var(--white);
    font-size: 12px;
}

.step-time {
    margin-left: auto;
    color: var(--orange);
    font-size: 12px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 46px;
}

.service-card,
.plain-card {
    padding: 30px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 14px;
    background: rgba(255,255,255,.03);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.service-card:hover,
.plain-card:hover,
.gallery-card:hover {
    transform: translateY(-4px);
}

.light-card {
    border-color: var(--line);
    background: var(--white);
    box-shadow: 0 14px 34px rgba(24, 20, 16, .06);
}

.service-icon {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    margin-bottom: 20px;
    border-radius: 8px;
    background: rgba(241,90,36,.14);
    color: var(--orange);
    font-weight: 950;
}

.service-card h3,
.plain-card h3 {
    margin: 0 0 10px;
    font-size: 23px;
    line-height: 1.1;
}

.service-card p,
.plain-card p {
    margin: 0;
    color: #cfc7bd;
}

.light-card p {
    color: var(--muted);
}

.check-list {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    margin-top: 9px;
    color: inherit;
    font-size: 14px;
}

.check-list li::before {
    content: "->";
    margin-right: 8px;
    color: var(--orange);
    font-weight: 900;
}

.two-col {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
    gap: 46px;
    align-items: center;
}

.stack-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.stack-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
}

.stat-box {
    padding: 42px;
    border-radius: 16px;
    background: #efe7dc;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.stat strong {
    display: block;
    color: var(--orange);
    font-size: 34px;
    line-height: 1;
}

.quote {
    padding: 22px;
    border-radius: 12px;
    background: var(--white);
    color: #5c554e;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 38px;
}

.difference-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    padding: 22px;
    border-radius: 12px;
    background: var(--cream);
}

.difference-item b {
    color: #d4c8ba;
    font-size: 20px;
}

.process-line {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 52px;
    border-top: 2px solid #c87552;
    padding-top: 28px;
}

.process-step {
    text-align: center;
}

.process-dot {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin: -50px auto 18px;
    border: 8px solid var(--cream);
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 8px 22px rgba(0,0,0,.08);
}

.founder {
    display: grid;
    grid-template-columns: minmax(320px, 430px) 1fr;
    gap: 60px;
    align-items: center;
}

.founder-photo {
    position: relative;
    overflow: hidden;
    display: block;
    min-height: 500px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    background: #1d1d1d;
    box-shadow: 0 26px 70px rgba(0, 0, 0, .36);
}

.founder-photo img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.founder-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, .26));
    pointer-events: none;
}

.featured-card {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
    box-shadow: 0 22px 52px rgba(17, 17, 17, .24);
}

.featured-card p {
    color: #d8d0c6;
}

.content-page {
    min-height: 380px;
}

.content-card {
    max-width: 980px;
    margin-top: 34px;
    padding: 34px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 38px;
}

.gallery-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 14px 34px rgba(24,20,16,.08);
}

.gallery-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.gallery-card div {
    padding: 22px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(340px, 1.1fr);
    gap: 58px;
    align-items: start;
}

.contact-list {
    display: grid;
    gap: 14px;
    margin-top: 34px;
}

.contact-item {
    padding: 18px 20px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 10px 28px rgba(24, 20, 16, .05);
}

.form-card {
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.form-card .btn {
    width: 100%;
    border-radius: 9px;
}

.founder h3 {
    margin-bottom: 4px;
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1;
    letter-spacing: -.03em;
}

.form-grid {
    display: grid;
    gap: 15px;
}

label {
    display: grid;
    gap: 7px;
    color: #4f4842;
    font-size: 13px;
    font-weight: 800;
}

input,
textarea,
select {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #f6f0e8;
    padding: 11px 13px;
    color: var(--ink);
    font: inherit;
    transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: rgba(241, 90, 36, .7);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(241, 90, 36, .12);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 8px;
    background: #fff3eb;
    color: #9a3b16;
    font-weight: 800;
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    padding: 28px 7vw;
    background: #101010;
    color: var(--white);
}

.site-footer p {
    margin: 0;
    color: #bdb6ad;
    text-align: center;
}

.site-footer small {
    justify-self: end;
    color: #8c8379;
}

@media (max-width: 900px) {
    .site-header {
        padding: 0 22px;
    }

    .nav-toggle {
        display: inline-flex;
        border: 0;
        background: transparent;
        font-weight: 900;
    }

    .site-nav {
        position: absolute;
        top: 68px;
        right: 22px;
        left: 22px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .site-nav.open {
        display: flex;
    }

    .section,
    .hero {
        padding: 62px 22px;
    }

    .hero,
    .two-col,
    .contact-grid,
    .founder {
        grid-template-columns: 1fr;
    }

    .cards-grid,
    .gallery-grid,
    .difference-grid {
        grid-template-columns: 1fr;
    }

    .headline {
        font-size: clamp(38px, 12vw, 54px);
    }

    .section-title {
        font-size: clamp(30px, 10vw, 44px);
    }

    .founder-photo,
    .founder-photo img {
        min-height: 360px;
    }

    .process-line {
        grid-template-columns: 1fr;
        border-top: 0;
        padding-top: 0;
    }

    .process-dot {
        margin: 0 auto 12px;
        border-color: var(--cream-2);
    }

    .site-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .site-footer small {
        justify-self: center;
    }
}
