/* ———————————————————————————————————————————————————
   AM GARAGE — industrial / automotive visual system
   ——————————————————————————————————————————————————— */

:root {
    --ink: #050506;
    --ink-2: #0a0a0c;
    --ink-3: #101013;
    --steel: #c9cbce;
    --steel-hi: #f2f3f5;
    --steel-lo: #5b5e64;
    --chrome-1: #e9eaec;
    --chrome-2: #8a8d93;
    --chrome-3: #3c3e43;
    --heat: #ff5b1f;
    --heat-soft: #ff7a43;
    --line: rgba(255,255,255,.08);
    --line-2: rgba(255,255,255,.14);

    --font-display: "Anton", "Impact", sans-serif;
    --font-body: "Manrope", system-ui, sans-serif;
    --font-mono: "Space Mono", ui-monospace, monospace;

    --radius: 2px;
    --easing: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--ink);
    color: var(--steel);
    font-family: var(--font-body);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    background:
        radial-gradient(ellipse 90% 60% at 50% -10%, rgba(255,120,60,.08), transparent 60%),
        radial-gradient(ellipse 80% 50% at 100% 20%, rgba(200,220,255,.04), transparent 60%),
        var(--ink);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ————— ambient layers ————— */
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
    opacity: .25;
    mix-blend-mode: overlay;
    background-image:
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.8 0 0 0 0 0.8 0 0 0 0 0.8 0 0 0 0.6 0'/></filter><rect width='240' height='240' filter='url(%23n)' opacity='.6'/></svg>");
}

.ambient {
    position: fixed;
    pointer-events: none;
    z-index: 0;
}

.ambient--top {
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: 1400px;
    height: 700px;
    background: radial-gradient(ellipse at center, rgba(255,140,80,.15), transparent 65%);
    filter: blur(40px);
}

/* ————— NAV ————— */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 500;
    padding: 18px 36px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    background: linear-gradient(to bottom, rgba(5,5,6,.85), rgba(5,5,6,0));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav__brand { display: inline-flex; align-items: center; }
.nav__logo {
    height: 34px;
    width: auto;
    border: 1px solid var(--line);
    filter: drop-shadow(0 2px 14px rgba(255,255,255,.06));
}

.nav__links {
    display: flex;
    justify-content: center;
    gap: 36px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--chrome-2);
}

.nav__links a {
    position: relative;
    padding: 8px 0;
    transition: color .3s var(--easing);
}

.nav__links a:hover { color: var(--steel-hi); }

.nav__links a::after {
    content: "";
    position: absolute;
    left: 0; right: 100%;
    bottom: 2px;
    height: 1px;
    background: var(--steel-hi);
    transition: right .4s var(--easing);
}

.nav__links a:hover::after { right: 0; }

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border: 1px solid var(--line-2);
    background: rgba(255,255,255,.02);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--steel-hi);
    transition: all .3s var(--easing);
}

.nav__cta:hover {
    background: var(--steel-hi);
    color: var(--ink);
    border-color: var(--steel-hi);
}

.nav__cta-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--heat);
    box-shadow: 0 0 12px var(--heat);
    animation: pulse 1.8s ease-in-out infinite;
}

.nav__burger {
    display: none;
    width: 40px;
    height: 40px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line-2);
    cursor: pointer;
    position: relative;
    color: var(--steel-hi);
    transition: border-color .3s var(--easing), background .3s var(--easing);
}

.nav__burger:hover { border-color: var(--steel-hi); }

.nav__burger-line {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 1.5px;
    background: currentColor;
    transform-origin: center;
    transition: transform .35s var(--easing), opacity .25s var(--easing), top .35s var(--easing);
}
.nav__burger-line:nth-child(1) { transform: translate(-50%, -7px); }
.nav__burger-line:nth-child(2) { transform: translate(-50%, 0); }
.nav__burger-line:nth-child(3) { transform: translate(-50%, 7px); }

.nav__burger[aria-expanded="true"] .nav__burger-line:nth-child(1) {
    transform: translate(-50%, 0) rotate(45deg);
}
.nav__burger[aria-expanded="true"] .nav__burger-line:nth-child(2) {
    opacity: 0;
}
.nav__burger[aria-expanded="true"] .nav__burger-line:nth-child(3) {
    transform: translate(-50%, 0) rotate(-45deg);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .4; transform: scale(1.3); }
}

/* ————— HERO ————— */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 36px 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, var(--line) 1px, transparent 1px),
        linear-gradient(to bottom, var(--line) 1px, transparent 1px);
    background-size: 120px 120px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    opacity: .5;
    pointer-events: none;
}

.hero__meta {
    position: absolute;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .28em;
    color: var(--chrome-2);
    animation: fadeInSlow 1.4s var(--easing) .4s both;
}
.hero__meta--left { left: 36px; text-align: left; }
.hero__meta--right { right: 36px; text-align: right; }

.tick {
    position: relative;
    padding-left: 18px;
}
.tick::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    width: 10px; height: 1px;
    background: var(--chrome-2);
}
.hero__meta--right .tick { padding-left: 0; padding-right: 18px; }
.hero__meta--right .tick::before { left: auto; right: 0; }

.hero__logo-wrap {
    position: relative;
    margin-bottom: 44px;
    animation: fadeInScale 1.2s var(--easing) .2s both;
}

.hero__logo {
    width: clamp(240px, 32vw, 400px);
    border: 1px solid var(--line);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 30px 80px rgba(255,140,80,.12));
}

.hero__logo-shine {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.3) 50%, transparent 60%);
    mix-blend-mode: overlay;
    pointer-events: none;
    animation: shine 5s ease-in-out infinite;
    animation-delay: 1.4s;
}

@keyframes shine {
    0%, 100% { transform: translateX(-100%); opacity: 0; }
    40% { opacity: 1; }
    60% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

.hero__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(54px, 9vw, 130px);
    line-height: .88;
    letter-spacing: -0.01em;
    color: var(--steel-hi);
    text-transform: uppercase;
    margin: 0 0 32px;
    max-width: 1200px;
}

.hero__title-line {
    display: block;
    background: linear-gradient(180deg, #fefefe 0%, #b5b7bb 45%, #646669 85%, #2a2b2e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(40px);
    animation: reveal .9s var(--easing) forwards;
}
.hero__title-line--1 { animation-delay: .5s; }
.hero__title-line--2 { animation-delay: .65s; }
.hero__title-line--3 {
    animation-delay: .8s;
    background: linear-gradient(180deg, var(--heat-soft), var(--heat));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    padding-right: 8px;
}

@keyframes reveal {
    to { opacity: 1; transform: translateY(0); }
}

.hero__lede {
    font-size: clamp(15px, 1.15vw, 18px);
    line-height: 1.55;
    color: var(--chrome-1);
    max-width: 560px;
    margin: 0 auto 48px;
    opacity: 0;
    animation: fadeInSlow 1s var(--easing) 1s forwards;
}
.hero__lede em {
    font-style: normal;
    color: var(--steel-hi);
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,.2);
}

.hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeInSlow 1s var(--easing) 1.2s forwards;
}

.btn {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 26px;
    border: 1px solid var(--line-2);
    min-width: 230px;
    transition: all .4s var(--easing);
    position: relative;
    overflow: hidden;
}

.btn__label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--chrome-2);
    transition: color .3s var(--easing);
}

.btn__phone {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: .02em;
    color: var(--steel-hi);
    margin-top: 4px;
}

.btn__arrow {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%) translateX(0);
    width: 22px; height: 22px;
    color: var(--steel-hi);
    transition: transform .4s var(--easing);
}

.btn--primary {
    background: linear-gradient(180deg, #f6f6f7 0%, #cfd1d4 100%);
    border-color: transparent;
}
.btn--primary .btn__label,
.btn--primary .btn__phone,
.btn--primary .btn__arrow { color: var(--ink); }

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(255,255,255,.12);
}
.btn--primary:hover .btn__arrow { transform: translateY(-50%) translateX(6px); }

.btn--ghost {
    padding-right: 60px;
    background: rgba(255,255,255,.02);
}
.btn--ghost:hover {
    background: rgba(255,255,255,.05);
    border-color: var(--steel-hi);
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--chrome-2);
    opacity: 0;
    animation: fadeInSlow 1s var(--easing) 1.8s forwards;
}

.hero__scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, var(--chrome-2), transparent);
    position: relative;
    overflow: hidden;
}
.hero__scroll-line::after {
    content: "";
    position: absolute;
    top: -40%;
    left: 0;
    width: 100%;
    height: 40%;
    background: var(--steel-hi);
    animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -40%; }
    100% { top: 100%; }
}

@keyframes fadeInSlow { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInScale {
    from { opacity: 0; transform: scale(.92); }
    to { opacity: 1; transform: scale(1); }
}

/* ————— MARQUEE ————— */
.marquee {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
    overflow: hidden;
    white-space: nowrap;
    background: var(--ink-2);
}

.marquee__track {
    display: inline-flex;
    gap: 48px;
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: .06em;
    color: var(--steel-hi);
    text-transform: uppercase;
    animation: scroll 45s linear infinite;
    padding-right: 48px;
}

.marquee__dot {
    color: var(--heat);
    font-size: 12px;
    display: inline-flex;
    align-items: center;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ————— SECTION HEAD ————— */
.section-head {
    max-width: 1100px;
    margin: 0 auto 72px;
    padding: 0 36px;
}

.section-head__tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--heat);
    margin-bottom: 16px;
}

.section-head__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -0.005em;
    color: var(--steel-hi);
    text-transform: uppercase;
    margin: 0;
    max-width: 900px;
}

/* ————— SERVICES ————— */
.services {
    padding: 140px 0 60px;
    position: relative;
}

.services__grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.service {
    padding: 44px 36px 48px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    transition: background .4s var(--easing);
}

.service:hover {
    background: rgba(255,255,255,.02);
}

.service::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--heat), var(--heat-soft));
    transition: width .5s var(--easing);
}

.service:hover::before { width: 100%; }

.service__num {
    display: block;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .2em;
    color: var(--chrome-3);
    margin-bottom: 22px;
}

.service__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 38px;
    line-height: 1;
    letter-spacing: -0.005em;
    color: var(--steel-hi);
    text-transform: uppercase;
    margin: 0 0 18px;
}

.service__body {
    color: var(--chrome-2);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
    max-width: 320px;
}

.service--accent .service__title {
    color: var(--heat-soft);
}
.service--accent .service__num {
    color: var(--heat);
}

/* ————— CLAIM SPOTLIGHT ————— */
.claim {
    position: relative;
    padding: 140px 0 140px;
    background:
        radial-gradient(ellipse 70% 60% at 78% 30%, rgba(255,140,80,.14), transparent 60%),
        radial-gradient(ellipse 50% 50% at 10% 85%, rgba(255,140,80,.08), transparent 60%),
        var(--ink-3);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.claim::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, var(--line) 1px, transparent 1px),
        linear-gradient(to bottom, var(--line) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at 75% 35%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 75% 35%, black 0%, transparent 70%);
    opacity: .35;
    pointer-events: none;
}

.claim__wrap {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 36px;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    align-items: start;
}

.claim__aside {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: sticky;
    top: 120px;
}

.claim__tag { margin-bottom: 0; }

.claim__badge {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 26px 28px;
    border: 1px solid var(--heat);
    background:
        linear-gradient(135deg, rgba(255,91,31,.10), transparent 55%),
        rgba(0,0,0,.35);
    position: relative;
}

.claim__badge::before,
.claim__badge::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    border: 1px solid var(--heat);
}
.claim__badge::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.claim__badge::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.claim__badge-num {
    font-family: var(--font-display);
    font-size: 96px;
    line-height: 1;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, var(--heat-soft), var(--heat));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.claim__badge-text {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--steel);
    line-height: 1.55;
}

.claim__aside-note {
    font-family: var(--font-mono);
    font-size: 11.5px;
    line-height: 1.7;
    letter-spacing: .04em;
    color: var(--chrome-2);
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    text-transform: uppercase;
}

.claim__main { max-width: 760px; }

.claim__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(40px, 5.4vw, 76px);
    line-height: .95;
    letter-spacing: -0.005em;
    color: var(--steel-hi);
    text-transform: uppercase;
    margin: 0 0 28px;
}

.claim__title em {
    display: block;
    font-style: italic;
    background: linear-gradient(180deg, var(--heat-soft), var(--heat));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-right: 8px;
}

.claim__lede {
    font-size: clamp(15px, 1.15vw, 17px);
    line-height: 1.65;
    color: var(--chrome-1);
    margin: 0 0 48px;
    max-width: 620px;
}

.claim__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    margin: 0 0 48px;
    border-bottom: 1px solid var(--line);
}

.claim__list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding: 26px 0;
    border-top: 1px solid var(--line);
}

.claim__check {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--heat);
    color: var(--ink);
    font-weight: 800;
    font-size: 13px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 18px rgba(255,91,31,.45);
    margin-top: 2px;
}

.claim__list h4 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 22px;
    line-height: 1;
    letter-spacing: .005em;
    color: var(--steel-hi);
    text-transform: uppercase;
    margin: 4px 0 8px;
}

.claim__list p {
    color: var(--chrome-2);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.claim__cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 22px 32px;
    background: linear-gradient(180deg, var(--heat-soft), var(--heat));
    color: var(--ink);
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 700;
    transition: all .4s var(--easing);
    border: 1px solid var(--heat);
}

.claim__cta svg { width: 22px; height: 22px; }

.claim__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 50px rgba(255,91,31,.4);
}

/* ————— VALUES ————— */
.values {
    padding: 140px 0 120px;
    background:
        linear-gradient(180deg, transparent, rgba(255,140,80,.03), transparent),
        var(--ink);
    position: relative;
}

.values::before, .values::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1280px;
    height: 1px;
    background: var(--line);
}
.values::before { top: 0; }
.values::after { bottom: 0; }

.values__grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.value {
    padding: 32px 0;
    position: relative;
}

.value__num {
    display: block;
    font-size: 56px;
    line-height: 1;
    color: var(--chrome-3);
    margin-bottom: 24px;
}

.value__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 44px;
    line-height: 1;
    color: var(--steel-hi);
    text-transform: uppercase;
    letter-spacing: -0.005em;
    margin: 0 0 18px;
    background: linear-gradient(180deg, #fefefe, #888a8f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.value__body {
    color: var(--chrome-2);
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
    max-width: 340px;
}

/* ————— PROCESS ————— */
.process {
    padding: 140px 0 120px;
}

.process__steps {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 36px;
}

.step {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 32px;
    padding: 40px 0;
    border-bottom: 1px solid var(--line);
    position: relative;
    transition: transform .4s var(--easing);
}

.step:hover { transform: translateX(8px); }

.step:last-child { border-bottom: none; }

.step__index {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-top: 6px;
}

.step__num {
    font-family: var(--font-display);
    font-size: 48px;
    line-height: 1;
    color: var(--chrome-3);
    transition: color .4s var(--easing);
}

.step:hover .step__num { color: var(--heat); }

.step__line {
    flex: 1;
    height: 1px;
    background: var(--line);
    margin-top: 26px;
}

.step__body h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 34px;
    line-height: 1.05;
    color: var(--steel-hi);
    text-transform: uppercase;
    margin: 0 0 12px;
}

.step__body p {
    color: var(--chrome-2);
    font-size: 15.5px;
    line-height: 1.65;
    margin: 0;
    max-width: 580px;
}

/* ————— CONTACT ————— */
.contact {
    padding: 140px 0 100px;
    background:
        radial-gradient(ellipse 60% 50% at 30% 30%, rgba(255,120,60,.08), transparent 60%),
        var(--ink-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.contact__wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 36px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(36px, 5.2vw, 72px);
    line-height: .95;
    color: var(--steel-hi);
    text-transform: uppercase;
    letter-spacing: -0.005em;
    margin: 16px 0 48px;
    max-width: 600px;
}

.contact__phones {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.phone {
    display: flex;
    flex-direction: column;
    padding: 24px 28px;
    border: 1px solid var(--line-2);
    background: rgba(255,255,255,.02);
    position: relative;
    transition: all .4s var(--easing);
    max-width: 440px;
}

.phone::after {
    content: "→";
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--chrome-2);
    transition: all .4s var(--easing);
}

.phone:hover {
    background: var(--steel-hi);
    border-color: var(--steel-hi);
    transform: translateY(-3px);
}
.phone:hover .phone__label,
.phone:hover .phone__num { color: var(--ink); }
.phone:hover::after { color: var(--ink); transform: translateY(-50%) translateX(6px); }

.phone__label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--chrome-2);
    margin-bottom: 6px;
    transition: color .3s var(--easing);
}

.phone__num {
    font-family: var(--font-display);
    font-size: clamp(32px, 3.2vw, 44px);
    color: var(--steel-hi);
    letter-spacing: .01em;
    transition: color .3s var(--easing);
}

.contact__right {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 48px;
}

.location {
    padding: 24px 0;
    border-top: 1px solid var(--line);
}

.location__label {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--heat);
    margin-bottom: 14px;
}

.location__addr {
    font-family: var(--font-display);
    font-size: 26px;
    line-height: 1.15;
    color: var(--steel-hi);
    text-transform: uppercase;
    letter-spacing: .005em;
    margin: 0 0 16px;
}

.location--services .location__addr {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.65;
    color: var(--chrome-1);
    text-transform: none;
    letter-spacing: 0;
}

.location__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.location__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--steel-hi);
    padding-bottom: 3px;
    border-bottom: 1px solid var(--line-2);
    transition: all .3s var(--easing);
}

.location__link svg { width: 16px; height: 16px; flex-shrink: 0; }

.location__link:hover {
    border-bottom-color: var(--heat);
    color: var(--heat);
    gap: 14px;
}

/* ————— FOOTER ————— */
.footer {
    padding: 40px 36px;
    background: var(--ink);
}

.footer__row {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer__logo {
    height: 40px;
    width: auto;
    border: 1px solid var(--line);
    opacity: .7;
}

.footer__copy {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--chrome-2);
    flex-wrap: wrap;
}

.footer__dot { color: var(--heat); font-size: 8px; }

/* ————— RESPONSIVE ————— */
@media (max-width: 960px) {
    .nav {
        padding: 14px 20px;
        gap: 12px;
        grid-template-columns: auto 1fr auto;
    }
    .nav__cta { display: none; }
    .nav__burger { display: inline-flex; justify-self: end; }

    .nav__links {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 8px 20px 20px;
        background: rgba(5,5,6,.96);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--line);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height .4s var(--easing), opacity .3s var(--easing), padding .4s var(--easing);
        pointer-events: none;
    }

    .nav__links.is-open {
        max-height: 80vh;
        opacity: 1;
        padding: 16px 20px 20px;
        pointer-events: auto;
    }

    .nav__links a {
        padding: 18px 4px;
        border-bottom: 1px solid var(--line);
        font-size: 12px;
    }
    .nav__links a:last-child { border-bottom: none; }
    .nav__links a::after { display: none; }

    .nav__links .nav__mobile-cta {
        margin-top: 14px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 16px 20px;
        background: linear-gradient(180deg, var(--heat-soft), var(--heat));
        color: var(--ink);
        border: none;
        justify-content: center;
        font-weight: 700;
    }
    .nav__links .nav__mobile-cta::after { display: none; }

    .hero { padding: 120px 24px 60px; }
    .hero__meta { display: none; }
    .hero__title { font-size: clamp(48px, 12vw, 88px); }

    .marquee__track { font-size: 22px; gap: 32px; padding-right: 32px; }

    .section-head { margin-bottom: 48px; padding: 0 20px; }

    .services { padding: 80px 0 40px; }
    .services__grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
        border-left: 1px solid var(--line);
    }
    .service { padding: 32px 24px; }
    .service__title { font-size: 30px; }

    .claim { padding: 80px 0; }
    .claim__wrap {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    .claim__aside { position: static; gap: 22px; }
    .claim__badge { padding: 22px 24px; }
    .claim__badge-num { font-size: 72px; }
    .claim__list { grid-template-columns: 1fr; column-gap: 0; }
    .claim__cta { width: 100%; justify-content: center; padding: 20px 24px; }

    .values { padding: 80px 0; }
    .values__grid { grid-template-columns: 1fr; gap: 20px; padding: 0 20px; }
    .value__title { font-size: 36px; }

    .process { padding: 80px 0; }
    .process__steps { padding: 0 20px; }
    .step { grid-template-columns: 80px 1fr; gap: 16px; padding: 28px 0; }
    .step__num { font-size: 36px; }
    .step__line { display: none; }
    .step__body h3 { font-size: 26px; }

    .contact { padding: 80px 0; }
    .contact__wrap {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    .contact__right { padding-top: 0; }
    .phone { padding: 20px 24px; }
    .phone__num { font-size: 28px; }

    .footer { padding: 28px 20px; }

    .btn { min-width: 0; width: 100%; }
    .hero__cta { flex-direction: column; width: 100%; max-width: 340px; }

    .hero__scroll { display: none; }
}

@media (max-height: 760px) {
    .hero__scroll { display: none; }
}

/* ————— SCROLL REVEAL ————— */
.service, .value, .step, .phone, .location, .claim__list li {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s var(--easing), transform .8s var(--easing);
}

.service.is-visible,
.value.is-visible,
.step.is-visible,
.phone.is-visible,
.location.is-visible,
.claim__list li.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.claim__list li:nth-child(2) { transition-delay: .08s; }
.claim__list li:nth-child(3) { transition-delay: .16s; }
.claim__list li:nth-child(4) { transition-delay: .24s; }

/* stagger siblings so they don't all appear simultaneously */
.services__grid .service:nth-child(2) { transition-delay: .08s; }
.services__grid .service:nth-child(3) { transition-delay: .16s; }
.services__grid .service:nth-child(4) { transition-delay: .04s; }
.services__grid .service:nth-child(5) { transition-delay: .12s; }
.services__grid .service:nth-child(6) { transition-delay: .20s; }

.values__grid .value:nth-child(2) { transition-delay: .1s; }
.values__grid .value:nth-child(3) { transition-delay: .2s; }

.process__steps .step:nth-child(2) { transition-delay: .1s; }
.process__steps .step:nth-child(3) { transition-delay: .2s; }
.process__steps .step:nth-child(4) { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .marquee__track { animation: none; }
    .hero__title-line { opacity: 1; transform: none; }
    .service, .value, .step, .phone, .location, .claim__list li { opacity: 1; transform: none; }
}
