:root {
    /* Logo palette — Carson Garage Doors */
    --brand: #7B542B;
    --brand-deep: #5C3F1F;
    --brand-mid: #8B5A2B;
    --brand-light: #A67C52;
    --brand-pale: #D4B896;
    --brand-wash: #EDE4D6;
    --brand-faint: #F7F2EB;
    --white: #FFFFFF;
    --cream: #FFFCF8;
    --cream-2: #FAF6F0;
    --text: #4A3520;
    --text-strong: #3D2A15;
    --text-muted: rgba(74, 53, 32, 0.72);
    --text-soft: rgba(74, 53, 32, 0.55);
    --on-brand: #FFFFFF;
    --bg-gradient: linear-gradient(165deg, #FFFFFF 0%, #F7F2EB 42%, #E8D9C8 100%);
    --bg-gradient-soft: linear-gradient(180deg, #FFFCF8 0%, #F5EDE4 100%);
    --bg-gradient-warm: linear-gradient(145deg, #FAF4EC 0%, #EDE4D6 55%, #D4B896 100%);
    --bg-gradient-brand: linear-gradient(135deg, #7B542B 0%, #5C3F1F 50%, #8B5A2B 100%);
    /* Legacy tokens (mapped to logo theme) */
    --dark: var(--cream);
    --dark-2: var(--cream-2);
    --bronze: var(--brand);
    --bronze-deep: var(--brand-deep);
    --bronze-light: var(--brand-light);
    --gold: var(--brand);
    --gold-soft: rgba(123, 84, 43, 0.38);
    --parchment: var(--brand-wash);
    --ink: var(--text-strong);
    --beige: var(--text-strong);
    --line: rgba(123, 84, 43, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text);
    font-family: 'Cormorant Garamond', serif;
    overflow-x: hidden
}

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

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

.mono {
    font-family: 'IBM Plex Mono', monospace
}

section {
    position: relative
}

/* ============ NAVBAR ============ */
.nav-wrap {
    position: fixed;
    top: 18px;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 0 20px;
    transition: top .35s ease
}

.nav-wrap.scrolled {
    top: 10px
}

.navbar {
    width: 100%;
    max-width: 1180px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 26px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid rgba(123, 84, 43, 0.22);
    border-radius: 18px;
    box-shadow: 0 12px 36px rgba(123, 84, 43, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.nav-wrap.scrolled .navbar {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 32px rgba(123, 84, 43, 0.14)
}

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0
}

.brand-logo {
    display: block;
    height: 72px;
    width: auto;
    max-width: min(220px, 58vw);
    object-fit: contain
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none
}

.nav-links a {
    font-family: 'IBM Plex Mono';
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color .25s;
    position: relative;
    padding: 4px 0
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .3s
}

.nav-links a:hover {
    color: var(--gold)
}

.nav-links a:hover::after {
    width: 100%
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'IBM Plex Mono';
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: var(--bg-gradient-brand);
    color: var(--on-brand);
    padding: 11px 20px;
    border-radius: 11px;
    font-weight: 700;
    transition: transform .25s, box-shadow .25s
}

.nav-cta svg {
    width: 14px;
    height: 14px;
    stroke: var(--on-brand)
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(123, 84, 43, 0.35)
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px
}

.burger span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: .3s
}

/* ============ HERO ============ */
.hero {
    height: 100vh;
    min-height: 680px;
    background: var(--bg-gradient-warm);
    position: relative;
    overflow: hidden
}

.hero .ghost {
    position: absolute;
    bottom: -5%;
    left: -2%;
    font-family: 'Bebas Neue';
    font-size: 30vw;
    color: rgba(123, 84, 43, 0.06);
    z-index: 1;
    pointer-events: none;
    line-height: 1;
    user-select: none
}

.hero .glow {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse 60% 60% at 30% 50%, rgba(123, 84, 43, 0.12) 0%, transparent 70%)
}

.glass-panel {
    position: absolute;
    top: -10%;
    left: 5%;
    right: 15%;
    bottom: -10%;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(123, 84, 43, 0.2);
    transform: skewX(-8deg);
    box-shadow: 0 0 80px rgba(123, 84, 43, 0.1), inset 0 0 60px rgba(255, 255, 255, 0.5);
    z-index: 2
}

.glass-inner {
    transform: skewX(8deg);
    padding: 15vh 9vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.hero .eyebrow {
    font-family: 'IBM Plex Mono';
    font-size: 10px;
    color: var(--text-soft);
    letter-spacing: .4em;
    text-transform: uppercase;
    margin-bottom: 22px
}

.hero h1 {
    font-family: 'Bebas Neue';
    font-size: clamp(72px, 11vw, 90px);
    color: var(--beige);
    line-height: .85;
    letter-spacing: .02em;
    text-transform: uppercase
}

.hero h1 .accent {
    color: var(--gold);
    display: block
}

.hero .gold-rule {
    width: 60px;
    height: 2px;
    background: var(--gold);
    box-shadow: 0 0 12px rgba(123, 84, 43, 0.35);
    margin: 26px 0
}

.hero .tagline {
    font-family: 'DM Serif Display';
    font-style: italic;
    font-size: 18px;
    color: var(--text-muted);
    max-width: 420px;
    line-height: 1.75
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-top: 34px;
    flex-wrap: wrap
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: 'IBM Plex Mono';
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 14px 26px;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .25s, box-shadow .25s, background .25s
}

.btn svg {
    width: 15px;
    height: 15px
}

.btn-primary {
    background: var(--bg-gradient-brand);
    color: var(--on-brand);
    border: 1px solid var(--brand-deep)
}

.btn-primary svg {
    stroke: var(--on-brand)
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(123, 84, 43, 0.35)
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(123, 84, 43, 0.45);
    color: var(--brand)
}

.btn-ghost svg {
    stroke: var(--brand)
}

.btn-ghost:hover {
    background: rgba(123, 84, 43, 0.08);
    transform: translateY(-2px)
}

/* Hero image collage — aligned with glass panel */
.hero-visual {
    position: absolute;
    right: clamp(20px, 4vw, 64px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: min(38vw, 500px);
    max-height: min(72vh, 560px);
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    grid-template-rows: 1fr 1fr 1fr auto;
    gap: 12px 14px;
    align-items: stretch
}

.hero-visual__accent {
    position: absolute;
    inset: -12px -8px -12px -16px;
    border: 1px solid rgba(123, 84, 43, 0.22);
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transform: skewX(-7deg);
    z-index: -1;
    pointer-events: none;
    box-shadow: 0 24px 48px rgba(74, 53, 32, 0.12)
}

.hero-visual__main {
    grid-column: 1;
    grid-row: 1 / 4;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(123, 84, 43, 0.38);
    box-shadow: 12px 20px 40px rgba(74, 53, 32, 0.18);
    background: linear-gradient(160deg, var(--brand-wash), var(--brand-deep));
    min-height: 0
}

.hero-visual__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.06) saturate(1.05);
    transition: transform .6s cubic-bezier(.22, 1, .36, 1)
}

.hero-visual__main:hover img {
    transform: scale(1.04)
}

.hero-visual__label {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 14px 16px;
    background: linear-gradient(0deg, rgba(60, 40, 20, 0.88) 0%, transparent 100%);
    display: flex;
    align-items: baseline;
    gap: 10px
}

.hero-visual__label-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    line-height: 1;
    color: var(--brand-pale);
    letter-spacing: .04em
}

.hero-visual__label-txt {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 252, 248, 0.85)
}

.hero-visual__cluster {
    grid-column: 2;
    grid-row: 1 / 4;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    min-height: 0
}

.hero-visual__tile {
    margin: 0;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    border: 1px solid rgba(123, 84, 43, 0.32);
    box-shadow: 6px 10px 24px rgba(74, 53, 32, 0.14);
    background: var(--brand-wash);
    position: relative;
    transition: transform .35s ease, box-shadow .35s ease
}

.hero-visual__tile::after {
    content: '';
    position: absolute;
    inset: 0;
    border-left: 3px solid var(--gold);
    opacity: .65;
    pointer-events: none
}

.hero-visual__tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.04);
    transition: transform .5s cubic-bezier(.22, 1, .36, 1)
}

.hero-visual__tile:hover {
    transform: translateX(-4px);
    box-shadow: 10px 14px 28px rgba(74, 53, 32, 0.2)
}

.hero-visual__tile:hover img {
    transform: scale(1.06)
}

.hero-visual__tile--b {
    margin-left: 10px
}

.hero-visual__tile--c {
    margin-left: 4px
}

.hero-visual__location {
    grid-column: 1 / -1;
    grid-row: 4;
    margin: 4px 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-soft);
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(123, 84, 43, 0.18);
    border-left: 3px solid var(--gold)
}

.hero-visual__loc-pin {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 3px rgba(123, 84, 43, 0.2)
}

@media (min-width: 981px) and (max-width: 1200px) {
    .hero-visual {
        width: min(34vw, 420px);
        right: clamp(16px, 2.5vw, 40px)
    }
}

/* ============ ABOUT ============ */
.about {
    background: var(--bg-gradient-soft);
    padding: 120px 24px 110px
}

.wrap {
    max-width: 1180px;
    margin: 0 auto
}

.sec-tag {
    font-family: 'IBM Plex Mono';
    font-size: 11px;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    margin-bottom: 18px
}

.sec-tag::before,
.sec-tag::after {
    content: '';
    width: 38px;
    height: 1px;
    background: var(--gold-soft)
}

.sec-title {
    font-family: 'Bebas Neue';
    font-size: clamp(42px, 6vw, 76px);
    text-align: center;
    line-height: .95;
    letter-spacing: .02em;
    color: var(--beige)
}

.sec-title .accent {
    color: var(--gold)
}

.sec-sub {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-size: 19px;
    color: var(--text-soft);
    text-align: center;
    max-width: 600px;
    margin: 18px auto 0;
    line-height: 1.7
}

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 70px
}

.about-copy p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 20px
}

.about-copy p .lead {
    color: var(--gold);
    font-weight: 600
}

.about-points {
    list-style: none;
    margin-top: 26px;
    display: grid;
    gap: 14px
}

.about-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.5
}

.about-points svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    flex-shrink: 0;
    margin-top: 3px
}

.about-media {
    position: relative
}

.about-media .main-img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--line);
    box-shadow: 0 24px 60px rgba(123, 84, 43, 0.18);
    background: linear-gradient(135deg, var(--bronze), var(--bronze-deep))
}

.about-media .sub-img {
    position: absolute;
    bottom: -34px;
    left: -34px;
    width: 190px;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
    border: 3px solid var(--white);
    box-shadow: 0 18px 40px rgba(123, 84, 43, 0.2);
    background: linear-gradient(135deg, var(--bronze-light), var(--bronze))
}

.about-media .badge {
    position: absolute;
    top: -26px;
    right: -20px;
    background: var(--bg-gradient-brand);
    color: var(--on-brand);
    padding: 16px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 14px 34px rgba(123, 84, 43, 0.35)
}

.about-media .badge b {
    font-family: 'Bebas Neue';
    font-size: 38px;
    line-height: 1;
    display: block
}

.about-media .badge span {
    font-family: 'IBM Plex Mono';
    font-size: 9px;
    letter-spacing: .15em;
    text-transform: uppercase
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 96px;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden
}

.stat {
    padding: 34px 22px;
    text-align: center;
    border-right: 1px solid var(--line)
}

.stat:last-child {
    border-right: none
}

.stat b {
    font-family: 'Bebas Neue';
    font-size: clamp(44px, 5vw, 62px);
    color: var(--gold);
    line-height: 1;
    display: block
}

.stat span {
    font-family: 'IBM Plex Mono';
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-top: 10px;
    display: block
}

/* ============ FEATURED SERVICES (BOOK) ============ */
.book {
    background: var(--parchment);
    color: var(--ink);
    padding: 110px 24px 90px
}

.book .sec-tag {
    color: var(--bronze)
}

.book .sec-tag::before,
.book .sec-tag::after {
    background: rgba(123, 84, 43, 0.35)
}

.book .sec-title {
    color: var(--ink)
}

.book .sec-title .accent {
    color: var(--bronze)
}

.book .sec-sub {
    color: var(--text-soft)
}

.chapter {
    max-width: 760px;
    margin: 0 auto;
    padding: 64px 0 10px;
    position: relative
}

.running-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'IBM Plex Mono';
    font-size: 9px;
    letter-spacing: .12em;
    color: var(--text-soft);
    text-transform: uppercase;
    border-bottom: 1px solid rgba(123, 84, 43, 0.18);
    padding-bottom: 10px;
    margin-bottom: 30px
}

.chapter .chap-no {
    font-family: 'Barlow Condensed';
    font-weight: 400;
    font-size: clamp(80px, 12vw, 150px);
    color: rgba(123, 84, 43, 0.12);
    line-height: .8;
    letter-spacing: .02em
}

.chapter h3 {
    font-family: 'Cormorant Garamond';
    font-weight: 700;
    font-size: clamp(32px, 4.5vw, 54px);
    color: var(--ink);
    line-height: 1.05;
    margin-top: -6px
}

.ornament {
    text-align: center;
    color: var(--bronze);
    font-size: 18px;
    margin: 22px 0;
    letter-spacing: .5em
}

.chap-body {
    font-family: 'Cormorant Garamond';
    font-weight: 400;
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.88;
    text-align: justify;
    hyphens: auto
}

.chap-body .dropcap {
    font-family: 'Cormorant Garamond';
    font-weight: 700;
    font-size: clamp(60px, 9vh, 96px);
    color: var(--bronze);
    float: left;
    line-height: .72;
    margin: 6px 10px 0 0
}

.chap-img {
    width: 320px;
    height: 240px;
    object-fit: cover;
    float: right;
    margin: 6px 0 18px 32px;
    border-radius: 2px;
    filter: sepia(12%) contrast(1.04);
    box-shadow: 0 10px 26px rgba(123, 84, 43, 0.15);
    background: linear-gradient(135deg, var(--bronze-light), var(--bronze))
}

.chap-cap {
    font-family: 'IBM Plex Mono';
    font-style: italic;
    font-size: 9px;
    color: var(--text-soft);
    margin-top: 6px;
    text-align: left
}

.pull-quote {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-weight: 700;
    font-size: 24px;
    color: var(--bronze);
    margin: 28px 0;
    padding: 18px 0;
    border-top: 1px solid rgba(123, 84, 43, 0.28);
    border-bottom: 1px solid rgba(123, 84, 43, 0.28);
    clear: none
}

.plate {
    clear: both;
    margin: 34px 0 8px
}

.plate img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 2px;
    filter: sepia(12%) contrast(1.04);
    box-shadow: 0 14px 34px rgba(123, 84, 43, 0.16);
    background: linear-gradient(135deg, var(--bronze), var(--bronze-deep))
}

.plate .chap-cap {
    text-align: right
}

.page-no {
    clear: both;
    text-align: center;
    font-family: 'IBM Plex Mono';
    font-size: 12px;
    color: var(--text-soft);
    padding-top: 30px
}

.chap-sep {
    text-align: center;
    color: rgba(123, 84, 43, 0.45);
    letter-spacing: .6em;
    font-size: 14px;
    padding: 46px 0 0
}

/* ============ WHY CHOOSE US ============ */
.why {
    background: linear-gradient(180deg, var(--brand-faint) 0%, var(--white) 100%);
    padding: 110px 24px
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 64px
}

.why-card {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 34px 26px;
    transition: transform .3s, border-color .3s, background .3s;
    box-shadow: 0 8px 28px rgba(123, 84, 43, 0.06)
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-soft);
    background: rgba(255, 255, 255, 0.95)
}

.why-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    background: linear-gradient(135deg, rgba(123, 84, 43, 0.12), rgba(166, 124, 82, 0.22));
    border: 1px solid rgba(123, 84, 43, 0.28)
}

.why-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--gold)
}

.why-card h4 {
    font-family: 'Bebas Neue';
    font-size: 24px;
    letter-spacing: .04em;
    color: var(--beige);
    margin-bottom: 10px
}

.why-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted)
}

.why-card .num {
    font-family: 'IBM Plex Mono';
    font-size: 10px;
    color: var(--gold);
    letter-spacing: .2em;
    margin-bottom: 18px;
    display: block
}

/* ============ SERVICE AREAS ============ */
.areas {
    background: var(--bg-gradient-soft);
    padding: 110px 24px;
    overflow: hidden
}

.areas-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 56px
}

.areas-head .left .sec-tag {
    justify-content: flex-start
}

.areas-head .left .sec-tag::before {
    display: none
}

.areas-head .left .sec-title {
    text-align: left
}

.areas-head .right {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-muted);
    font-style: italic;
    padding-bottom: 8px
}

.main-city {
    display: flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, rgba(123, 84, 43, 0.14), rgba(212, 184, 150, 0.35));
    border: 1px solid var(--gold-soft);
    border-radius: 14px;
    padding: 26px 30px;
    margin-bottom: 34px
}

.main-city .pin {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--bg-gradient-brand);
    display: grid;
    place-items: center;
    flex-shrink: 0
}

.main-city .pin svg {
    width: 26px;
    height: 26px;
    stroke: var(--on-brand)
}

.main-city .info b {
    font-family: 'Bebas Neue';
    font-size: 30px;
    letter-spacing: .04em;
    color: var(--beige);
    display: block;
    line-height: 1
}

.main-city .info span {
    font-family: 'IBM Plex Mono';
    font-size: 11px;
    letter-spacing: .12em;
    color: var(--gold);
    text-transform: uppercase
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px
}

.area-grid a {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: 'IBM Plex Mono';
    font-size: 12px;
    letter-spacing: .04em;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 13px 15px;
    transition: .25s
}

.area-grid a svg {
    width: 13px;
    height: 13px;
    stroke: var(--gold);
    flex-shrink: 0
}

.area-grid a:hover {
    background: rgba(123, 84, 43, 0.1);
    border-color: var(--gold-soft);
    color: var(--brand-deep);
    transform: translateX(3px)
}

/* ============ FAQ ============ */
.faq {
    background: linear-gradient(180deg, var(--white) 0%, var(--brand-faint) 100%);
    padding: 110px 24px
}

.faq-list {
    max-width: 860px;
    margin: 60px auto 0
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.85);
    transition: border-color .3s
}

.faq-item.open {
    border-color: var(--gold-soft)
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 26px;
    cursor: pointer
}

.faq-q span {
    font-family: 'Cormorant Garamond';
    font-weight: 600;
    font-size: 21px;
    color: var(--beige)
}

.faq-q .ic {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--gold-soft);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: .3s
}

.faq-q .ic svg {
    width: 15px;
    height: 15px;
    stroke: var(--gold);
    transition: transform .3s
}

.faq-item.open .ic {
    background: var(--brand)
}

.faq-item.open .ic svg {
    stroke: var(--on-brand);
    transform: rotate(45deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
    padding: 0 26px
}

.faq-item.open .faq-a {
    max-height: 240px;
    padding: 0 26px 26px
}

.faq-a p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-muted)
}

/* ============ ADDITIONAL SERVICES (AR) ============ */
.ar {
    background: var(--bg-gradient-warm);
    padding: 110px 24px;
    overflow: hidden;
    background-image: repeating-linear-gradient(to bottom, transparent, transparent 3px, rgba(123, 84, 43, 0.04) 3px, rgba(123, 84, 43, 0.04) 4px)
}

.ar-reticle {
    position: absolute;
    width: 34px;
    height: 34px;
    border: 2px solid rgba(123, 84, 43, 0.45);
    filter: drop-shadow(0 0 8px rgba(123, 84, 43, 0.2))
}

.ar-reticle.tl {
    top: 18px;
    left: 18px;
    border-right: none;
    border-bottom: none
}

.ar-reticle.tr {
    top: 18px;
    right: 18px;
    border-left: none;
    border-bottom: none
}

.ar-reticle.bl {
    bottom: 18px;
    left: 18px;
    border-right: none;
    border-top: none
}

.ar-reticle.br {
    bottom: 18px;
    right: 18px;
    border-left: none;
    border-top: none
}

.ar-hud-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'IBM Plex Mono';
    font-size: 10px;
    letter-spacing: .1em;
    color: var(--gold);
    max-width: 1180px;
    margin: 0 auto 8px;
    text-transform: uppercase
}

.ar-hud-top .dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 8px var(--gold);
    animation: pulse 1.6s infinite;
    margin-right: 6px;
    vertical-align: middle
}

.ar-hud-top .sig {
    display: flex;
    align-items: center;
    gap: 7px
}

.ar-hud-top .sig svg {
    width: 15px;
    height: 15px;
    stroke: var(--gold)
}

.ar .sec-title {
    color: var(--beige)
}

.ar .sec-title .accent {
    color: var(--gold)
}

.ar .sec-sub {
    color: var(--text-soft)
}

.ar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 60px;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto
}

.ar-obj {
    border: 1px dashed rgba(123, 84, 43, 0.4);
    border-radius: 3px;
    padding: 22px;
    position: relative;
    background: rgba(255, 255, 255, 0.65);
    transition: .3s
}

.ar-obj:hover {
    background: rgba(255, 255, 255, 0.92);
    border-color: var(--gold)
}

.ar-obj .obj-label {
    position: absolute;
    top: -11px;
    left: 14px;
    background: var(--cream);
    padding: 0 8px;
    font-family: 'IBM Plex Mono';
    font-weight: 700;
    font-size: 10px;
    color: var(--gold);
    letter-spacing: .08em;
    display: flex;
    align-items: center;
    gap: 6px
}

.ar-obj .obj-label .pdot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 6px var(--gold);
    animation: pulse 1.4s infinite
}

.ar-obj .obj-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 3px;
    margin-bottom: 16px;
    border: 1px solid rgba(123, 84, 43, 0.28);
    background: linear-gradient(135deg, var(--bronze), var(--bronze-deep));
    position: relative
}

.ar-conf {
    font-family: 'IBM Plex Mono';
    font-size: 9px;
    color: var(--gold);
    margin-bottom: 12px;
    letter-spacing: .05em
}

.ar-obj h4 {
    font-family: 'Barlow Condensed';
    font-weight: 800;
    font-size: clamp(26px, 3vw, 40px);
    color: var(--beige);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .01em
}

.ar-obj p {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 10px 0 16px
}

.ar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px
}

.ar-tags span {
    font-family: 'IBM Plex Mono';
    font-size: 9px;
    letter-spacing: .06em;
    color: var(--gold);
    border: 1px solid rgba(123, 84, 43, 0.3);
    border-radius: 3px;
    padding: 4px 8px
}

.ar-icn {
    width: 46px;
    height: 46px;
    border: 1px dashed rgba(123, 84, 43, 0.4);
    border-radius: 4px;
    display: grid;
    place-items: center;
    margin-bottom: 16px
}

.ar-icn svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold)
}

.scan-line {
    position: absolute;
    left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: .55;
    animation: scan 4s linear infinite;
    z-index: 5;
    pointer-events: none
}

/* ============ CTA ============ */
.cta {
    background: var(--bg-gradient-brand);
    padding: 90px 24px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta::before {
    content: 'GARAGE';
    position: absolute;
    font-family: 'Bebas Neue';
    font-size: 28vw;
    color: rgba(255, 255, 255, 0.04);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none
}

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto
}

.cta h2 {
    font-family: 'Bebas Neue';
    font-size: clamp(40px, 6vw, 70px);
    color: var(--cream);
    line-height: .95;
    letter-spacing: .02em
}

.cta h2 .accent {
    color: var(--brand-pale)
}

.cta p {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin: 18px auto 32px;
    max-width: 540px;
    line-height: 1.6
}

.cta .hero-cta {
    justify-content: center
}

.cta .btn-primary {
    background: var(--white);
    color: var(--brand-deep);
    border-color: var(--white)
}

.cta .btn-primary svg {
    stroke: var(--brand-deep)
}

.cta .btn-ghost {
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--cream)
}

.cta .btn-ghost svg {
    stroke: var(--cream)
}

.cta .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12)
}

/* ============ CONTACT ============ */
.contact {
    background: var(--bg-gradient-soft);
    padding: 0
}

.contact .map-top {
    width: 100%;
    height: 420px;
    filter: grayscale(35%) contrast(1.05) brightness(.92);
    border: 0
}

.contact-body {
    max-width: 1180px;
    margin: 0 auto;
    padding: 70px 24px 100px
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px
}

.contact-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 34px 30px;
    transition: .3s;
    box-shadow: 0 8px 24px rgba(123, 84, 43, 0.06)
}

.contact-card:hover {
    border-color: var(--gold-soft);
    transform: translateY(-5px)
}

.contact-card .ci {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--bronze), var(--bronze-deep));
    border: 1px solid rgba(123, 84, 43, 0.25)
}

.contact-card .ci svg {
    width: 24px;
    height: 24px;
    stroke: var(--on-brand)
}

.contact-card .k {
    font-family: 'IBM Plex Mono';
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px
}

.contact-card .v {
    font-family: 'Cormorant Garamond';
    font-weight: 600;
    font-size: 22px;
    color: var(--beige);
    line-height: 1.4
}

.contact-card .v a:hover {
    color: var(--gold)
}

/* ============ FOOTER ============ */
footer {
    background: linear-gradient(180deg, var(--brand-faint) 0%, var(--brand-wash) 100%);
    border-top: 1px solid var(--line);
    padding: 70px 24px 30px
}

.foot-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px
}

.foot-brand .brand {
    margin-bottom: 18px
}

.foot-brand p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-soft);
    max-width: 320px
}

.foot-social {
    display: flex;
    gap: 12px;
    margin-top: 22px
}

.foot-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    transition: .25s
}

.foot-social a svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold)
}

.foot-social a:hover {
    background: rgba(123, 84, 43, 0.1);
    border-color: var(--gold-soft);
    transform: translateY(-3px)
}

.foot-col h5 {
    font-family: 'IBM Plex Mono';
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px
}

.foot-col ul {
    list-style: none;
    display: grid;
    gap: 12px
}

.foot-col a {
    font-size: 16px;
    color: var(--text-muted);
    transition: .25s
}

.foot-col a:hover {
    color: var(--gold);
    padding-left: 5px
}

.foot-bottom {
    max-width: 1180px;
    margin: 54px auto 0;
    padding-top: 26px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px
}

.foot-bottom p {
    font-family: 'IBM Plex Mono';
    font-size: 11px;
    letter-spacing: .08em;
    color: var(--text-soft)
}

.foot-bottom .gold {
    color: var(--gold)
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

@keyframes scan {
    0% {
        top: 0
    }

    100% {
        top: 100%
    }
}

/* reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease, transform .8s ease
}

.reveal.in {
    opacity: 1;
    transform: none
}

/* ============ RESPONSIVE ============ */
@media(max-width:980px) {
    .nav-links {
        display: none
    }

    .burger {
        display: flex
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 80px
    }

    .stats {
        grid-template-columns: repeat(2, 1fr)
    }

    .stat:nth-child(2) {
        border-right: none
    }

    .stat:nth-child(1),
    .stat:nth-child(2) {
        border-bottom: 1px solid var(--line)
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .area-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .ar-grid {
        grid-template-columns: 1fr 1fr
    }

    .areas-head {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px
    }

    .hero-visual {
        display: none
    }

    .glass-panel {
        left: 3%;
        right: 3%;
        transform: skewX(-5deg)
    }

    .glass-inner {
        transform: skewX(5deg);
        padding: 13vh 8vw
    }
}

@media(max-width:600px) {
    .navbar {
        padding: 11px 16px
    }

    .brand-logo {
        height: 52px
    }

    .why-grid {
        grid-template-columns: 1fr
    }

    .area-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .ar-grid {
        grid-template-columns: 1fr
    }

    .foot-grid {
        grid-template-columns: 1fr
    }

    .chap-img {
        width: 100%;
        height: 200px;
        float: none;
        margin: 14px 0
    }

    .about-media .sub-img {
        left: 0;
        width: 150px;
        height: 120px
    }

    .glass-inner {
        padding: 12vh 7vw
    }

    .hero .tagline {
        font-size: 16px
    }
}