:root {
    --ruby: #A0002A;
    --ruby-dark: #700020;
    --ruby-light: #C4003A;
    --ruby-glow: rgba(160, 0, 42, 0.15);
    --ink: #0A0A0B;
    --ink2: #111114;
    --ink3: #1A1A1F;
    --bone: #F5F0EB;
    --ash: #C8C4BE;
    --silver: #7A7672;
    --white: #FFFFFF;
    --line: rgba(255, 255, 255, 0.08);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--ink);
    color: var(--bone);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ─── NAVBAR ─── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 11, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--ruby);
}

.nav-line {
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--ruby), var(--ruby-light), transparent);
    opacity: 0.6;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 56px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 32px;
    height: 32px;
    background: var(--ruby);
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.nav-logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
}

.nav-logo-text span {
    color: var(--ruby-light);
}

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

.nav-menu a {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ash);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 100%;
    height: 1px;
    background: var(--ruby);
    transition: right 0.3s;
}

.nav-menu a:hover {
    color: var(--white);
}

.nav-menu a:hover::after {
    right: 0;
}

.nav-cta {
    background: var(--ruby);
    color: var(--white) !important;
    padding: 8px 20px;
    font-size: 11px !important;
    letter-spacing: 0.14em;
    transition: background 0.2s !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--ruby-light) !important;
}

/* ─── HERO ─── */
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 58px;
    background:
        url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20'><rect x='5' y='5' width='10' height='10' rx='2' fill='rgba(255,255,255,0.025)'/></svg>"),
        var(--ink);
}

.hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(160, 0, 42, 0.08), transparent 70%);
    top: 10%;
    left: 30%;
    pointer-events: none;
}

.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 48px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}

/* Plates */
.plate {
    background: var(--ink2);
    position: relative;
}

.plate-headline {
    clip-path: polygon(0 0, 100% 2%, 98% 100%, 1% 98%);
    padding: 40px 48px;
    margin-bottom: 24px;
}

.plate-headline .eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ruby-light);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plate-headline .eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--ruby);
}

.plate-headline h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(44px, 6vw, 80px);
    line-height: 0.95;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: -0.01em;
}

.plate-headline h1 em {
    font-style: italic;
    font-family: 'Playfair Display', serif;
    color: var(--ruby-light);
    font-size: 0.72em;
}

.plate-tagline {
    clip-path: polygon(0 3%, 100% 0, 97% 100%, 2% 97%);
    padding: 18px 28px;
    display: inline-block;
    margin-bottom: 28px;
    font-size: 14px;
    color: var(--ash);
    line-height: 1.6;
    max-width: 480px;
}

.plate-cta {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--ruby);
    color: var(--white);
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 14px 32px;
    clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
    transition: background 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: var(--ruby-light);
    transform: translateY(-1px);
}

.btn-ghost {
    color: var(--ash);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 2px;
    transition: color 0.2s;
}

.btn-ghost:hover {
    color: var(--white);
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plate-image-main {
    clip-path: polygon(2% 0%, 100% 1%, 98% 99%, 0% 100%);
    overflow: hidden;
    height: clamp(220px, 28vh, 320px);
    background: var(--ink3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.plate-image-main svg {
    width: 100%;
    height: 100%;
}

.plate-image-small {
    clip-path: polygon(0 2%, 98% 0%, 100% 98%, 2% 100%);
    overflow: hidden;
    height: clamp(140px, 18vh, 200px);
    background: var(--ink3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Garage Door SVG Illustration */
.garage-illustration {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ─── STATS ─── */
#stats {
    background: var(--ruby);
    padding: 0;
    position: relative;
    overflow: hidden;
}

#stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20'><rect x='5' y='5' width='10' height='10' rx='2' fill='rgba(0,0,0,0.1)'/></svg>");
}

.stats-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
}

.stat-item {
    padding: 48px 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

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

.stat-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(52px, 5vw, 72px);
    line-height: 1;
    color: var(--white);
    letter-spacing: -0.02em;
}

.stat-suffix {
    font-size: 0.5em;
    vertical-align: top;
    margin-top: 12px;
    display: inline-block;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 6px;
    font-weight: 500;
}

/* ─── SERVICES ─── */
#services {
    padding: 120px 0;
    background: var(--ink);
    position: relative;
}

.section-header {
    max-width: 1400px;
    margin: 0 auto 72px;
    padding: 0 48px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ruby-light);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--ruby);
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 4vw, 56px);
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.01em;
}

.section-desc {
    font-size: 14px;
    color: var(--silver);
    max-width: 360px;
    line-height: 1.8;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
}

.service-card {
    background: var(--ink2);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ruby);
    transition: width 0.4s;
}

.service-card:hover {
    background: var(--ink3);
}

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

.service-card:nth-child(1) {
    grid-column: span 2;
}

.service-card:nth-child(4) {
    grid-column: span 2;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--ruby-glow);
    border: 1px solid rgba(160, 0, 42, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    font-size: 20px;
    clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
}

.service-num {
    position: absolute;
    top: 28px;
    right: 28px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.1);
    font-weight: 700;
}

.service-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 22px;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.service-text {
    font-size: 13px;
    color: var(--silver);
    line-height: 1.8;
}

/* ─── WHY CHOOSE US ─── */
#why {
    padding: 120px 0;
    background: var(--ink2);
    position: relative;
    overflow: hidden;
}

#why::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20'><rect x='5' y='5' width='10' height='10' rx='2' fill='rgba(160,0,42,0.04)'/></svg>");
}

.why-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.why-left .section-title {
    margin-bottom: 32px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.why-feature {
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.why-feature:first-child {
    border-top: 1px solid var(--line);
}

.why-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--ruby);
    font-weight: 700;
    min-width: 28px;
    padding-top: 2px;
}

.why-feature-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 6px;
}

.why-feature-text {
    font-size: 13px;
    color: var(--silver);
    line-height: 1.7;
}

.why-right {
    position: relative;
}

.why-visual {
    background: var(--ink);
    clip-path: polygon(0 0, 97% 3%, 100% 100%, 3% 97%);
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
}

.why-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20'><rect x='5' y='5' width='10' height='10' rx='2' fill='rgba(255,255,255,0.025)'/></svg>");
}

.why-badge {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    border: 1px solid rgba(160, 0, 42, 0.3);
    clip-path: polygon(4% 0%, 96% 0%, 100% 4%, 100% 96%, 96% 100%, 4% 100%, 0% 96%, 0% 4%);
    background: rgba(160, 0, 42, 0.06);
}

.why-badge-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 80px;
    line-height: 1;
    color: var(--ruby);
    letter-spacing: -0.02em;
}

.why-badge-text {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ash);
    margin-top: 8px;
}

.why-badge-sub {
    font-size: 12px;
    color: var(--silver);
    margin-top: 12px;
    line-height: 1.6;
}

/* ─── SERVICE AREA ─── */
#service-area {
    padding: 120px 0;
    background: var(--ink);
    position: relative;
}

.area-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: start;
}

.area-left .section-title {
    margin-bottom: 20px;
}

.area-desc {
    font-size: 14px;
    color: var(--silver);
    line-height: 1.8;
    margin-bottom: 32px;
}

.area-phone {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--ruby-light);
    letter-spacing: 0.04em;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.area-phone:hover {
    color: var(--white);
}

.area-address {
    font-size: 12px;
    color: var(--silver);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--line);
}

.city-item {
    background: var(--ink2);
    padding: 18px 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--ash);
    transition: all 0.2s;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.city-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--ruby);
    transition: width 0.3s;
}

.city-item:hover {
    color: var(--white);
    padding-left: 28px;
}

.city-item:hover::before {
    width: 3px;
}

/* ─── FEATURED SERVICE ─── */
#featured {
    padding: 120px 0;
    background: var(--ruby);
    position: relative;
    overflow: hidden;
}

#featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20'><rect x='5' y='5' width='10' height='10' rx='2' fill='rgba(0,0,0,0.08)'/></svg>");
}

.featured-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.featured-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.featured-label::before {
    content: '';
    width: 28px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.featured-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(40px, 4.5vw, 64px);
    text-transform: uppercase;
    color: var(--white);
    line-height: 0.95;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.featured-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 36px;
}

.featured-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}

.featured-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

.featured-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.25);
    clip-path: polygon(4% 0%, 96% 0%, 100% 4%, 100% 96%, 96% 100%, 4% 100%, 0% 96%, 0% 4%);
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'><path d='M4 10l4 4 8-8' stroke='white' stroke-width='1.5'/></svg>");
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
}

.btn-dark {
    background: rgba(0, 0, 0, 0.3);
    color: var(--white);
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
    transition: background 0.2s;
    display: inline-block;
}

.btn-dark:hover {
    background: rgba(0, 0, 0, 0.5);
}

.featured-visual {
    background: rgba(0, 0, 0, 0.25);
    clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
}

.featured-visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feat-box {
    background: rgba(0, 0, 0, 0.25);
    padding: 28px 24px;
    clip-path: polygon(0 0, 96% 3%, 100% 100%, 4% 97%);
    text-align: center;
}

.feat-box-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 40px;
    color: var(--white);
    line-height: 1;
}

.feat-box-label {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 6px;
}

/* ─── FAQ ─── */
#faq {
    padding: 120px 0;
    background: var(--ink2);
}

.faq-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

.faq-split {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 1px;
    background: var(--line);
    min-height: 520px;
    margin-top: 60px;
}

.faq-questions {
    background: var(--ink);
    padding: 0;
    overflow-y: auto;
    max-height: 580px;
}

.faq-q-item {
    display: flex;
    gap: 20px;
    padding: 22px 28px;
    cursor: pointer;
    border-bottom: 1px solid var(--line);
    transition: background 0.2s;
    align-items: flex-start;
}

.faq-q-item:hover {
    background: rgba(160, 0, 42, 0.06);
}

.faq-q-item.active {
    background: var(--ruby);
}

.faq-q-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--ruby-light);
    font-weight: 700;
    min-width: 24px;
    padding-top: 2px;
    flex-shrink: 0;
}

.faq-q-item.active .faq-q-num {
    color: rgba(255, 255, 255, 0.6);
}

.faq-q-text {
    font-size: 13px;
    color: var(--ash);
    line-height: 1.5;
    font-weight: 400;
}

.faq-q-item.active .faq-q-text {
    color: var(--white);
    font-weight: 500;
}

.faq-answer-panel {
    background: var(--ink2);
    padding: 52px 60px;
    position: relative;
}

.faq-answer-icon {
    width: 56px;
    height: 56px;
    background: var(--ruby-glow);
    border: 1px solid rgba(160, 0, 42, 0.3);
    clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 28px;
}

.faq-answer-q {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.faq-answer-text {
    font-size: 14px;
    color: var(--silver);
    line-height: 1.9;
}

.faq-related {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.faq-related-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ruby-light);
    margin-bottom: 14px;
}

.faq-related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.faq-related-link {
    font-size: 11px;
    color: var(--ash);
    text-decoration: none;
    padding: 6px 14px;
    border: 1px solid var(--line);
    transition: all 0.2s;
    cursor: pointer;
}

.faq-related-link:hover {
    border-color: var(--ruby);
    color: var(--white);
    background: var(--ruby-glow);
}

.faq-divider {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 1px;
    background: var(--line);
}

/* ─── CTA ─── */
#cta {
    padding: 120px 48px;
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20'><rect x='5' y='5' width='10' height='10' rx='2' fill='rgba(255,255,255,0.025)'/></svg>");
}

.cta-glow {
    position: absolute;
    width: 600px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(160, 0, 42, 0.12), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.cta-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ruby-light);
    margin-bottom: 24px;
}

.cta-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(44px, 5vw, 72px);
    text-transform: uppercase;
    color: var(--white);
    line-height: 0.95;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.cta-title em {
    font-style: italic;
    font-family: 'Playfair Display', serif;
    color: var(--ruby-light);
    font-size: 0.8em;
}

.cta-sub {
    font-size: 14px;
    color: var(--silver);
    margin-bottom: 44px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 18px 48px;
    font-size: 14px;
    letter-spacing: 0.2em;
}

/* ─── CONTACT ─── */
#contact {
    padding: 120px 0 0;
    background: var(--ink2);
}

.contact-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info {}

.contact-info .section-title {
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.contact-detail:first-of-type {
    border-top: 1px solid var(--line);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--ruby-glow);
    border: 1px solid rgba(160, 0, 42, 0.25);
    clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ruby-light);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 15px;
    color: var(--white);
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s;
}

a.contact-value:hover {
    color: var(--ruby-light);
}

.map-container {
    background: var(--ink3);
    clip-path: polygon(0 2%, 98% 0%, 100% 98%, 2% 100%);
    overflow: hidden;
    position: relative;
    height: 420px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    background: #0d0d10;
}

/* Stylized Map */
.map-svg {
    width: 100%;
    height: 100%;
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.map-pin-dot {
    width: 16px;
    height: 16px;
    background: var(--ruby);
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 0 20px rgba(160, 0, 42, 0.6);
    animation: pulse-pin 2s ease-in-out infinite;
}

.map-pin-line {
    width: 2px;
    height: 20px;
    background: var(--ruby);
    opacity: 0.8;
}

@keyframes pulse-pin {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(160, 0, 42, 0.6);
    }

    50% {
        box-shadow: 0 0 40px rgba(160, 0, 42, 0.9), 0 0 60px rgba(160, 0, 42, 0.3);
    }
}

.map-label {
    background: var(--ink2);
    border: 1px solid var(--ruby);
    padding: 10px 16px;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--white);
    white-space: nowrap;
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

/* ─── FOOTER ─── */
#footer {
    background: var(--ink);
    border-top: 1px solid var(--ruby);
    position: relative;
    overflow: hidden;
}

.footer-track-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.footer-fade-left,
.footer-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 10;
    pointer-events: none;
}

.footer-fade-left {
    left: 0;
    background: linear-gradient(90deg, var(--ink), transparent);
}

.footer-fade-right {
    right: 0;
    background: linear-gradient(270deg, var(--ink), transparent);
}

.footer-track {
    display: flex;
    align-items: center;
    height: 180px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    padding: 0 80px;
    scrollbar-width: none;
}

.footer-track::-webkit-scrollbar {
    display: none;
}

.footer-section {
    flex-shrink: 0;
    padding: 0 48px;
    border-right: 1px solid var(--line);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 200px;
}

.footer-section:first-child {
    padding-left: 0;
}

.footer-section:last-child {
    border-right: none;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.footer-logo-icon {
    width: 28px;
    height: 28px;
    background: var(--ruby);
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
}

.footer-logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
}

.footer-tagline {
    font-size: 11px;
    color: var(--silver);
    max-width: 200px;
    line-height: 1.6;
}

.footer-nav-title,
.footer-contact-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ruby-light);
    margin-bottom: 12px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style: none;
}

.footer-links a {
    font-size: 12px;
    color: var(--silver);
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: 0.04em;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact-value {
    font-size: 12px;
    color: var(--ash);
    line-height: 1.8;
}

.footer-social-row {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.social-btn {
    width: 32px;
    height: 32px;
    background: var(--ink2);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
    clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
}

.social-btn:hover {
    background: var(--ruby);
    border-color: var(--ruby);
}

.footer-newsletter-input {
    display: flex;
    gap: 0;
    margin-top: 4px;
}

.footer-newsletter-input input {
    background: var(--ink2);
    border: 1px solid var(--line);
    border-right: none;
    color: var(--white);
    padding: 8px 14px;
    font-size: 12px;
    font-family: 'DM Sans', sans-serif;
    width: 160px;
    outline: none;
}

.footer-newsletter-input input::placeholder {
    color: var(--silver);
}

.footer-newsletter-input button {
    background: var(--ruby);
    border: none;
    color: var(--white);
    padding: 8px 16px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    transition: background 0.2s;
}

.footer-newsletter-input button:hover {
    background: var(--ruby-light);
}

.footer-copyright {
    font-size: 11px;
    color: var(--silver);
    letter-spacing: 0.08em;
    white-space: nowrap;
    min-width: 220px;
}

.footer-copyright span {
    color: var(--ruby-light);
}

.footer-scroll-hint {
    position: absolute;
    bottom: 16px;
    right: 96px;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--silver);
    display: flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
    opacity: 0.6;
}

.footer-bottom {
    text-align: center;
    padding: 16px 48px;
    border-top: 1px solid var(--line);
    font-size: 11px;
    color: var(--silver);
    letter-spacing: 0.08em;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.fade-up {
    opacity: 0;
    animation: fadeUp 0.7s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.25s;
}

.delay-3 {
    animation-delay: 0.4s;
}

.delay-4 {
    animation-delay: 0.55s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-right {
        display: none;
    }

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

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-card:nth-child(1) {
        grid-column: span 1;
    }

    .service-card:nth-child(4) {
        grid-column: span 1;
    }

    .why-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .area-inner {
        grid-template-columns: 1fr;
    }

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

    .featured-inner {
        grid-template-columns: 1fr;
    }

    .faq-split {
        grid-template-columns: 1fr;
    }

    .faq-questions {
        max-height: 300px;
    }

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

@media (max-width: 768px) {
    .nav-inner {
        padding: 0 24px;
    }

    .nav-menu {
        display: none;
    }

    .hero-inner {
        padding: 60px 24px;
    }

    .plate-headline {
        padding: 28px 24px;
    }

    .section-header {
        padding: 0 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .services-grid {
        padding: 0 24px;
        grid-template-columns: 1fr;
    }

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

    .why-inner,
    .area-inner,
    .featured-inner,
    .faq-inner,
    .contact-inner {
        padding: 0 24px;
    }

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

    #cta {
        padding: 80px 24px;
    }

    .contact-inner {
        padding-bottom: 60px;
    }

    #footer .footer-section {
        min-width: 180px;
    }
}