:root {
    --honey: #f5c518;
    --honey-light: #ffe889;
    --ink: #151515;
    --muted: #5f5c55;
    --paper: #fffdf7;
    --white: #ffffff;
    --line: #e9e2ce;
    --shadow: 0 24px 70px rgba(27, 23, 12, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin: auto; }

.skip-link {
    position: fixed;
    z-index: 100;
    top: -80px;
    left: 20px;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--white);
    font-weight: 800;
}
.skip-link:focus { top: 16px; }

.site-header {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
}

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

.wordmark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: -.02em;
}

.wordmark img { width: 48px; height: 48px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a { padding: 9px 13px; border-radius: 999px; text-decoration: none; font-weight: 750; }
.nav-links a:hover, .nav-links a:focus-visible { background: rgba(255,255,255,.45); }
.nav-links .nav-cta { padding-inline: 18px; color: var(--white); background: var(--ink); }
.nav-links .nav-cta:hover, .nav-links .nav-cta:focus-visible { background: #353535; }

.hero {
    position: relative;
    min-height: 760px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #ffd324, #f3b817);
}

.hero::before {
    position: absolute;
    width: 520px;
    height: 450px;
    right: -70px;
    bottom: -120px;
    content: "";
    background: rgba(255,255,255,.25);
    clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

.hero::after {
    position: absolute;
    width: 190px;
    height: 164px;
    left: -70px;
    top: 190px;
    content: "";
    background: rgba(21,21,21,.08);
    clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 64px;
    padding: 150px 0 95px;
}

.eyebrow {
    margin: 0 0 13px;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

h1, h2, h3 { margin-top: 0; line-height: 1.04; letter-spacing: -.045em; }
h1 { max-width: 760px; margin-bottom: 22px; font-size: clamp(3.6rem, 7.4vw, 7rem); }
h2 { font-size: clamp(2.35rem, 5vw, 4.6rem); }
h3 { font-size: 1.45rem; }
.hero-copy > p:not(.eyebrow) { max-width: 650px; margin-bottom: 32px; font-size: clamp(1.1rem, 2vw, 1.3rem); }

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 13px 23px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    color: var(--white);
    background: var(--ink);
    text-decoration: none;
    font-weight: 850;
    cursor: pointer;
}
.button:hover, .button:focus-visible { color: var(--ink); background: var(--white); }

.logo-stage {
    position: relative;
    display: grid;
    min-height: 480px;
    place-items: center;
}
.logo-stage::before {
    position: absolute;
    inset: 12px 0;
    content: "";
    background: rgba(255,255,255,.52);
    clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}
.logo-stage img {
    position: relative;
    width: min(390px, 82%);
    max-height: 450px;
    object-fit: contain;
    filter: drop-shadow(0 28px 20px rgba(80, 54, 0, .16));
}

.section { padding: 105px 0; }
.section-white { background: var(--white); }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading p, .lead { color: var(--muted); font-size: 1.14rem; }

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

.service {
    position: relative;
    min-height: 300px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: var(--paper);
}
.service::after {
    position: absolute;
    width: 126px;
    height: 110px;
    right: -44px;
    bottom: -44px;
    content: "";
    background: var(--honey);
    clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}
.service-number { display: block; margin-bottom: 70px; color: #a38d42; font-weight: 900; }
.service p { color: var(--muted); }

.process-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: start;
    gap: 80px;
}
.process-copy { position: sticky; top: 40px; }
.process-list { display: grid; gap: 18px; }
.process-step {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    padding: 26px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 8px 28px rgba(27,23,12,.06);
}
.process-step strong {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: var(--honey);
    clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}
.process-step p { margin: 4px 0 0; color: var(--muted); }

.contact-wrap {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    overflow: hidden;
    border-radius: 34px;
    background: var(--ink);
    box-shadow: var(--shadow);
}

.contact-copy {
    position: relative;
    padding: clamp(38px, 6vw, 70px);
    color: var(--white);
}
.contact-copy::after {
    position: absolute;
    width: 190px;
    height: 164px;
    left: -55px;
    bottom: -90px;
    content: "";
    background: rgba(245,197,24,.88);
    clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}
.contact-copy p { color: #cbc8bf; }
.contact-copy a { color: var(--honey-light); font-weight: 800; }

.contact-form {
    padding: clamp(34px, 6vw, 66px);
    background: var(--white);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; margin-bottom: 17px; }
.field label { font-weight: 800; }
.field input, .field textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #cbc6b7;
    border-radius: 11px;
    background: var(--paper);
}
.field textarea { min-height: 145px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: 3px solid rgba(245,197,24,.35); border-color: #bd9100; }
.honeypot { position: absolute; left: -9999px; }

.alert { margin-bottom: 20px; padding: 14px 16px; border-radius: 10px; font-weight: 700; }
.alert-success { color: #185b31; background: #e2f7e9; }
.alert-error { color: #8a2828; background: #fde7e7; }

.site-footer { padding: 34px 0; background: var(--honey); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: .9rem; }
.footer-inner a { font-weight: 800; }

@media (max-width: 860px) {
    .hero-grid, .process-grid, .contact-wrap { grid-template-columns: 1fr; }
    .hero-grid { padding-top: 130px; gap: 0; }
    .logo-stage { min-height: 360px; }
    .logo-stage img { max-height: 330px; }
    .services { grid-template-columns: 1fr; }
    .service { min-height: auto; }
    .service-number { margin-bottom: 36px; }
    .process-copy { position: static; }
}

@media (max-width: 620px) {
    .container { width: min(100% - 28px, 1160px); }
    .nav-links a:not(.nav-cta) { display: none; }
    .wordmark span { display: none; }
    h1 { font-size: 3.7rem; }
    .section { padding: 76px 0; }
    .field-row { grid-template-columns: 1fr; gap: 0; }
    .footer-inner { align-items: flex-start; flex-direction: column; }
}
