@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500&display=swap');

:root {
    --black: #000;
    --surface: #09090b;
    --line: #27272a;
    --muted: #71717a;
    --text: #d4d4d8;
    --white: #fff;
    --amber: #fbbf24;
    --amber-dim: #b45309;
    --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--black);
    color: var(--text);
    font-family: "Manrope", sans-serif;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.shell { width: min(var(--shell), calc(100% - 48px)); margin: 0 auto; }
.icon { width: 22px; height: 22px; color: var(--amber); flex: 0 0 auto; }

.nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 20;
    padding: 24px 0;
    transition: .35s ease;
}
.nav.scrolled {
    padding: 15px 0;
    background: rgba(0,0,0,.92);
    border-bottom: 1px solid rgba(120,53,15,.35);
    backdrop-filter: blur(12px);
}
.nav-inner, .footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); letter-spacing: .2em; text-transform: uppercase; font-size: 12px; }
.nav-cta {
    padding: 10px 24px;
    border: 1px solid rgba(146,64,14,.55);
    color: var(--amber);
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    transition: .25s ease;
}
.nav-cta:hover { border-color: var(--amber); background: rgba(251,191,36,.07); }

.hero {
    min-height: 100svh;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: radial-gradient(ellipse at top, #1a0a00 0, #000 68%);
}
.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .22;
    background-image: linear-gradient(rgba(180,120,40,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(180,120,40,.08) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(to bottom, #000, transparent 80%);
}
.hero-content { position: relative; z-index: 1; text-align: center; padding: 140px 0 100px; }
.eyebrow { margin: 0 0 28px; color: rgba(245,158,11,.65); font-size: 11px; letter-spacing: .42em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 {
    margin-bottom: 28px;
    color: var(--white);
    font-size: clamp(46px, 7.5vw, 90px);
    font-weight: 200;
    line-height: 1.06;
    letter-spacing: -.045em;
}
h1 span, h2 span { color: var(--amber); }
.hero-copy { max-width: 720px; margin: 0 auto 42px; color: #a1a1aa; font-size: clamp(16px, 2vw, 19px); line-height: 1.75; }
.primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 17px 30px;
    background: var(--amber);
    color: #080808;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: 11px;
    font-weight: 500;
    transition: .25s ease;
}
.primary-cta:hover { background: #fcd34d; transform: translateY(-2px); }
.primary-cta span { transition: transform .25s ease; }
.primary-cta:hover span { transform: translateX(5px); }
.fine-print { margin-top: 18px; color: #52525b; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.scroll-mark { position: absolute; bottom: 30px; left: 50%; width: 1px; height: 48px; background: linear-gradient(var(--amber), transparent); opacity: .35; }

.section { padding: 128px 0; }
.surface { background: var(--surface); }
.section-heading { max-width: 680px; margin-bottom: 70px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
h2 { color: var(--white); font-size: clamp(36px, 5vw, 54px); font-weight: 200; line-height: 1.2; letter-spacing: -.035em; }
h3 { color: var(--white); font-size: 18px; font-weight: 300; letter-spacing: .02em; }
p { color: #8b8b94; font-size: 14px; line-height: 1.8; }

.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(63,63,70,.45); }
.service-card { padding: 38px; background: var(--surface); transition: .3s ease; }
.service-card:hover { background: #111113; }
.service-card .icon { margin-bottom: 24px; opacity: .75; }
.service-card:hover .icon { opacity: 1; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { margin: 0; color: #71717a; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.split > div > p { max-width: 610px; font-size: 15px; }
blockquote { margin: 28px 0 0; padding-left: 20px; border-left: 1px solid rgba(146,64,14,.6); color: #71717a; font-size: 13px; font-style: italic; line-height: 1.7; }
.difference-list article { padding: 28px 30px; border: 1px solid rgba(63,63,70,.6); transition: .25s ease; }
.difference-list article + article { border-top: 0; }
.difference-list article:hover { border-color: rgba(146,64,14,.7); }
.difference-list h3 { margin-bottom: 7px; color: var(--amber); }
.difference-list p { margin: 0; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); position: relative; }
.steps::before { content: ""; position: absolute; top: 31px; left: 16%; right: 16%; height: 1px; background: linear-gradient(90deg, transparent, rgba(146,64,14,.55), transparent); }
.steps article { position: relative; text-align: center; padding: 0 34px; }
.steps b { display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 28px; border: 1px solid rgba(146,64,14,.5); background: var(--surface); color: #d97706; font-size: 21px; font-weight: 200; letter-spacing: .12em; }
.steps p { color: #71717a; }

.contact { scroll-margin-top: 50px; }
.assurances { list-style: none; padding: 0; margin: 30px 0 0; }
.assurances li { position: relative; margin: 15px 0; padding-left: 18px; color: #71717a; font-size: 13px; }
.assurances li::before { content: ""; position: absolute; left: 0; top: 8px; width: 4px; height: 4px; border-radius: 50%; background: var(--amber); }
form { display: grid; gap: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
label { color: #71717a; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
label em { color: var(--amber-dim); font-style: normal; }
input, textarea {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 12px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: var(--white);
    font: 300 14px/1.5 "Manrope", sans-serif;
    text-transform: none;
    letter-spacing: 0;
    transition: border-color .25s ease;
}
input:focus, textarea:focus { border-color: rgba(245,158,11,.7); }
textarea { resize: vertical; }
::placeholder { color: #52525b; opacity: 1; }
.submit { border: 0; padding: 17px; background: var(--amber); color: #09090b; font: 500 11px "Manrope", sans-serif; letter-spacing: .2em; text-transform: uppercase; cursor: pointer; transition: .25s ease; }
.submit:hover { background: #fcd34d; }
.trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-errors { margin-bottom: 24px; padding: 15px 18px; border-left: 2px solid #ef4444; background: rgba(127,29,29,.14); }
.form-errors p { margin: 0; color: #fca5a5; }
.success { padding: 45px; border: 1px solid rgba(146,64,14,.55); }
.success > span { display: block; width: 10px; height: 10px; margin-bottom: 25px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 14px rgba(251,191,36,.07); }
.success h3 { font-size: 26px; }

footer { padding: 55px 0; border-top: 1px solid #18181b; background: var(--surface); }
footer .brand, footer p { color: #52525b; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; margin: 0; }
footer .icon { width: 18px; height: 18px; opacity: .6; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 850px) {
    .services { grid-template-columns: repeat(2, 1fr); }
    .split { grid-template-columns: 1fr; gap: 60px; }
    .steps { grid-template-columns: 1fr; gap: 55px; }
    .steps::before { display: none; }
    .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 560px) {
    .shell { width: min(100% - 32px, var(--shell)); }
    .section { padding: 90px 0; }
    .services, .form-row { grid-template-columns: 1fr; }
    .service-card { padding: 30px; }
    .hero-content { padding-top: 120px; }
    h1 { font-size: 43px; }
    .primary-cta { padding-inline: 22px; letter-spacing: .13em; }
    .nav-cta { padding-inline: 15px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
