:root {
    --bg: #0d0e0f;
    --bg-soft: #151618;
    --surface: #1b1c1f;
    --text: #f1eee7;
    --muted: #99958d;
    --line: rgba(255,255,255,.12);
    --gold: #b89762;
    --gold-light: #d0b27d;
    --cream: #ede7dd;
    --max: 1440px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

.container {
    width: min(calc(100% - 64px), var(--max));
    margin-inline: auto;
}


/* HEADER */

.site-header {
    position: absolute;
    z-index: 100;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.header-inner {
    min-height: 104px;
    display: flex;
    align-items: center;
    gap: 44px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-right: auto;
}

.brand-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-weight: 700;
    font-size: 23px;
}

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

.brand-copy strong {
    letter-spacing: .11em;
    font-size: 18px;
}

.brand-copy small {
    color: var(--muted);
    font-size: 10px;
    letter-spacing: .05em;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.main-nav a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.header-cta {
    border: 1px solid var(--gold);
    padding: 15px 22px;
    color: var(--gold-light);
    font-size: 13px;
}

.menu-toggle {
    display: none;
}


/* HERO */

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 78% 35%,
            rgba(184,151,98,.16),
            transparent 27%),
        linear-gradient(135deg,#090a0b,#17181a 65%,#0c0d0e);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            transparent 0,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );
    background-size: 120px 100%;
}

.hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    right: -160px;
    top: 100px;
    background: rgba(184,151,98,.06);
    filter: blur(80px);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 145px;
}

.hero-kicker,
.eyebrow {
    display: block;
    color: var(--gold-light);
    font-size: 11px;
    letter-spacing: .27em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(64px,9vw,145px);
    line-height: .84;
    margin: 38px 0 40px;
    max-width: 1100px;
    font-weight: 500;
    letter-spacing: -.055em;
}

.hero h1 span {
    color: var(--gold-light);
}

.hero-description {
    max-width: 570px;
    color: #b5b1aa;
    font-size: 19px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 45px;
}

.button {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    font-size: 13px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.button-primary {
    color: #101112;
    background: var(--gold-light);
}

.button-primary:hover {
    background: #dfc38d;
}

.button-ghost {
    border: 1px solid rgba(255,255,255,.22);
}

.hero-bottom {
    margin-top: 90px;
    padding-top: 23px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    color: #77746f;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
}


/* GENERIC SECTIONS */

.section {
    padding: 140px 0;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 80px;
    margin-bottom: 70px;
}

.section-heading h2,
.contact-section h2 {
    margin: 18px 0 0;
    font-size: clamp(42px,5vw,76px);
    font-weight: 500;
    letter-spacing: -.045em;
}

.section-heading > p {
    max-width: 410px;
    color: var(--muted);
    line-height: 1.7;
}


/* SERVICES */

.services-section {
    background: #ece7de;
    color: #141516;
}

.services-section .eyebrow {
    color: #826b47;
}

.services-grid {
    border-top: 1px solid rgba(0,0,0,.18);
}

.service-card {
    min-height: 180px;
    display: grid;
    grid-template-columns: 90px 1fr 80px;
    gap: 30px;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,.18);
    transition:
        background .25s ease,
        padding .25s ease;
}

.service-card:hover {
    background: rgba(255,255,255,.32);
    padding-inline: 22px;
}

.service-number {
    color: #8a785d;
    font-size: 12px;
}

.service-card h3 {
    margin: 0 0 13px;
    font-size: clamp(25px,3vw,42px);
    font-weight: 500;
}

.service-card p {
    margin: 0;
    max-width: 580px;
    color: #67635c;
    line-height: 1.6;
}

.service-arrow {
    justify-self: end;
    font-size: 28px;
    color: #7e6846;
}


/* STATEMENT */

.statement-section {
    min-height: 650px;
    display: flex;
    align-items: center;
}

.statement {
    max-width: 1200px;
    margin: 35px 0 0;
    font-size: clamp(48px,7vw,105px);
    line-height: 1.02;
    letter-spacing: -.055em;
}

.statement span {
    color: var(--gold-light);
}


/* PROJECTS */

.projects-section {
    background: var(--bg-soft);
}

.text-link {
    color: var(--gold-light);
    font-size: 13px;
}

.project-placeholder {
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 60px;
    overflow: hidden;
    background:
        radial-gradient(circle at 65% 30%,
            rgba(184,151,98,.23),
            transparent 32%),
        linear-gradient(135deg,#242527,#0c0d0e);
}

.project-placeholder::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,.08);
}

.project-overlay {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.project-overlay span {
    color: var(--gold-light);
    font-size: 11px;
    letter-spacing: .2em;
}

.project-overlay h3 {
    margin: 17px 0;
    font-size: clamp(35px,4vw,60px);
    line-height: 1.04;
}

.project-overlay p {
    color: var(--muted);
}


/* CONTACT */

.contact-section {
    background: var(--gold-light);
    color: #111214;
}

.contact-section .eyebrow {
    color: #665130;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    gap: 120px;
}

.contact-panel {
    align-self: end;
    max-width: 440px;
}

.contact-panel p {
    color: #574b3a;
    line-height: 1.75;
    margin-bottom: 30px;
}

.contact-section .button-primary {
    background: #111214;
    color: #fff;
}


/* PAGE */

.page-hero {
    min-height: 70vh;
    padding: 220px 0 120px;
}

.page-hero h1 {
    font-size: clamp(50px,8vw,110px);
    margin: 25px 0 60px;
}

.page-content {
    max-width: 850px;
    color: #bbb7af;
    line-height: 1.8;
}


/* FOOTER */

.site-footer {
    padding: 85px 0 30px;
    background: #090a0b;
    color: var(--muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 70px;
}

.footer-brand {
    color: var(--text);
    font-size: 24px;
    letter-spacing: .1em;
}

.site-footer ul {
    padding: 0;
    list-style: none;
}

.site-footer li {
    margin: 10px 0;
}

.footer-bottom {
    margin-top: 70px;
    padding-top: 25px;
    border-top: 1px solid var(--line);
    font-size: 11px;
}


/* MOBILE */

@media (max-width: 900px) {

    .container {
        width: min(calc(100% - 36px), var(--max));
    }

    .header-inner {
        min-height: 82px;
    }

    .brand-copy small {
        display: none;
    }

    .main-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
        margin-left: auto;
        width: 42px;
        height: 42px;
        border: 0;
        background: transparent;
        flex-direction: column;
        justify-content: center;
        gap: 7px;
    }

    .menu-toggle span {
        width: 100%;
        height: 1px;
        background: #fff;
    }

    .hero-content {
        padding-top: 120px;
    }

    .hero h1 {
        font-size: clamp(55px,17vw,92px);
    }

    .hero-bottom {
        margin-top: 60px;
    }

    .section {
        padding: 90px 0;
    }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 30px;
    }

    .service-card {
        grid-template-columns: 50px 1fr 30px;
        min-height: 160px;
    }

    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .project-placeholder {
        min-height: 500px;
        padding: 30px;
    }

}

@media (max-width: 560px) {

    .brand-mark {
        width: 40px;
        height: 40px;
    }

    .brand-copy strong {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-bottom span:first-child {
        display: none;
    }

    .service-card {
        grid-template-columns: 34px 1fr;
        gap: 15px;
        padding: 25px 0;
    }

    .service-arrow {
        display: none;
    }

}
