:root {
    --olive: #808000;
    --olive-dark: #5a5a00;
    --olive-mid: #6b6b00;
    --olive-light: #9a9a10;
    --olive-glow: rgba(128, 128, 0, 0.18);
    --olive-dim: rgba(128, 128, 0, 0.08);
    --beige: #F5F5DC;
    --beige-dark: #e8e8c4;
    --beige-warm: #f0ead0;
    --ink: #0e0e08;
    --ink2: #181810;
    --ink3: #222218;
    --charcoal: #2a2a1e;
    --stone: #6b6b55;
    --parchment: #faf8f0;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background: var(--ink);
    color: var(--beige);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.04'/></svg>");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.35;
}

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

img {
    display: block;
}

button {
    cursor: pointer;
    font-family: inherit;
}

select,
input,
textarea {
    font-family: inherit;
}

/* ========= REVEAL ANIMATIONS ========= */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

.reveal-delay-3 {
    transition-delay: 0.24s;
}

.reveal-delay-4 {
    transition-delay: 0.32s;
}

/* ========= SECTION 1: NAVBAR ========= */
#navbar {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    height: 52px;
    pointer-events: none;
}

#navbar>* {
    pointer-events: all;
}

.nav-logo-pill {
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(14, 14, 8, 0.92);
    border: 1px solid rgba(128, 128, 0, 0.35);
    border-radius: 30px;
    padding: 10px 20px;
    backdrop-filter: blur(16px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}



.nav-logo-pill:hover {
    border-color: rgba(128, 128, 0, 0.6);
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo-main {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--beige);
    letter-spacing: 0.06em;
    line-height: 1;
}

.nav-logo-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
    font-size: 10px;
    color: var(--olive-light);
    letter-spacing: 0.25em;
    line-height: 1;
    margin-top: 2px;
}

.nav-pills {
    display: flex;
    gap: 10px;
}

.nav-pill {
    background: rgba(14, 14, 8, 0.88);
    border: 1px solid rgba(128, 128, 0, 0.2);
    border-radius: 50px;
    padding: 9px 22px;
    backdrop-filter: blur(16px);
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: rgba(245, 245, 220, 0.6);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

.nav-pill:hover {
    background: rgba(128, 128, 0, 0.18);
    border-color: rgba(128, 128, 0, 0.55);
    color: var(--beige);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(128, 128, 0, 0.2);
}

.nav-pill.active {
    background: var(--olive);
    border-color: var(--olive);
    color: var(--ink);
    box-shadow: 0 4px 16px rgba(128, 128, 0, 0.4);
}

.nav-cta-pill {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--olive);
    border: 1px solid var(--olive-light);
    border-radius: 50px;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.nav-cta-pill:hover {
    background: var(--olive-light);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(128, 128, 0, 0.35);
}

.nav-cta-text {
    display: flex;
    flex-direction: column;
}

.nav-cta-phone {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 13px;
    color: var(--ink);
    line-height: 1;
}

.nav-cta-label {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: 8px;
    color: rgba(14, 14, 8, 0.6);
    letter-spacing: 0.2em;
    line-height: 1;
    margin-top: 3px;
}

/* Scroll state */
#navbar.scrolled .nav-logo-pill {
    background: rgba(8, 8, 4, 0.97);
    border-color: rgba(128, 128, 0, 0.55);
}

#navbar.scrolled .nav-pill {
    padding: 7px 18px;
}

#navbar.scrolled {
    top: 12px;
}

/* Mobile hamburger */
.nav-hamburger {
    display: none;
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(14, 14, 8, 0.88);
    border: 1px solid rgba(128, 128, 0, 0.2);
    border-radius: 50px;
    padding: 11px 16px;
    backdrop-filter: blur(16px);
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.nav-hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--olive);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 4, 0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.open {
    transform: translateY(0);
}

.mobile-menu-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 56px;
    color: rgba(245, 245, 220, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    width: 90%;
    text-align: center;
    padding: 16px;
    background: rgba(128, 128, 0, 0.1);
    border: 1px solid rgba(128, 128, 0, 0.2);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-menu-link:hover {
    background: rgba(128, 128, 0, 0.2);
    color: var(--beige);
}

.mobile-menu-phone {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 18px;
    color: var(--olive);
    margin-top: 16px;
    letter-spacing: 0.1em;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: rgba(245, 245, 220, 0.5);
    font-size: 32px;
    cursor: pointer;
    font-family: 'Barlow Condensed', sans-serif;
}

/* ========= SECTION 2: HERO ========= */
#hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    position: relative;
}

.hero-panel {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: flex 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-panel.panel-expand {
    flex: 1.55;
}

.hero-panel.panel-shrink {
    flex: 0.45;
}

.hero-panel-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 0;
    transition: opacity 0.45s;
}

.hero-panel:hover .hero-panel-bg {
    opacity: 0.28;
}

.hero-panel-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 48px;
    max-width: 480px;
}

.hero-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: rgba(245, 245, 220, 0.45);
    letter-spacing: 0.4em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title-main {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(52px, 8vw, 100px);
    color: var(--beige);
    line-height: 0.88;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero-panel-left .hero-title-accent {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(52px, 8vw, 100px);
    color: var(--olive-light);
    line-height: 0.88;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-shadow: 0 0 40px rgba(128, 128, 0, 0.4);
}

.hero-panel-right .hero-title-accent {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(52px, 8vw, 100px);
    color: #d4b060;
    line-height: 0.88;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-shadow: 0 0 40px rgba(212, 176, 96, 0.4);
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 17px;
    color: rgba(245, 245, 220, 0.65);
    line-height: 1.7;
    max-width: 320px;
    margin-top: 16px;
}

.hero-cta {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 30px;
    border-radius: 3px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-panel:hover .hero-cta {
    opacity: 1;
    transform: translateY(0);
}

.hero-panel-left .hero-cta {
    background: var(--olive);
    color: var(--ink);
}

.hero-panel-right .hero-cta {
    background: #d4b060;
    color: var(--ink);
}

.hero-vertical-label {
    position: absolute;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 10px;
    color: var(--olive);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    z-index: 2;
}

.hero-panel-left .hero-vertical-label {
    left: 20px;
}

.hero-panel-right .hero-vertical-label {
    right: 20px;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
}

.hero-panel-left {
    background: linear-gradient(160deg, #1a1a08 0%, #2a2a00 40%, #404000 80%, #5a5a00 100%);
}

.hero-panel-right {
    background: linear-gradient(160deg, #1a1208 0%, #2a1e08 40%, #3d2a00 80%, #4a3300 100%);
}

.hero-divider {
    width: 2px;
    background: var(--olive);
    opacity: 0.4;
    transition: opacity 0.3s;
    flex-shrink: 0;
    z-index: 5;
    position: relative;
}

#hero:hover .hero-divider {
    opacity: 0.8;
    box-shadow: 0 0 12px rgba(128, 128, 0, 0.5);
}

.hero-center-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--ink);
    border: 2px solid var(--olive);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px rgba(128, 128, 0, 0.12), 0 0 0 16px rgba(128, 128, 0, 0.06);
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.hero-panel.panel-expand~.hero-center-badge,
#hero:has(.panel-expand) .hero-center-badge {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.4;
}

.hero-bottom-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: linear-gradient(to top, rgba(14, 14, 8, 0.9), transparent);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.hero-trust-badge {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 600;
    font-size: 10px;
    color: rgba(245, 245, 220, 0.55);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0 24px;
}

.hero-trust-sep {
    width: 1px;
    height: 16px;
    background: rgba(128, 128, 0, 0.4);
}

/* ========= SECTION 3: STATS BAR ========= */
#stats-bar {
    background: var(--olive);
    height: 80px;
    width: 100%;
}

.stats-inner {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.stat-item {
    text-align: center;
    border-right: 1px solid rgba(14, 14, 8, 0.15);
}

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

.stat-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 48px;
    color: var(--ink);
    line-height: 1;
    display: block;
}

.stat-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: rgba(14, 14, 8, 0.58);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    display: block;
    margin-top: 3px;
}

/* ========= SECTION 4: SERVICES ACCORDION ========= */
#services {
    background: var(--ink2);
    background-image: repeating-linear-gradient(45deg, rgba(128, 128, 0, 0.02) 0px, rgba(128, 128, 0, 0.02) 1px, transparent 1px, transparent 14px);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.section-header {
    text-align: center;
    padding: 80px 40px 60px;
}

.section-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--olive-light);
    letter-spacing: 0.38em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(44px, 5.5vw, 72px);
    color: var(--beige);
    text-transform: uppercase;
    line-height: 0.9;
}

.section-title.ink {
    color: var(--ink);
}

.section-rule {
    width: 70px;
    height: 2px;
    background: var(--olive);
    box-shadow: 0 0 12px rgba(128, 128, 0, 0.35);
    margin: 24px auto 0;
}

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

.accordion-item {
    border-bottom: 1px solid rgba(245, 245, 220, 0.07);
    transition: background 0.2s;
}

.accordion-item:nth-child(even) {
    background: var(--ink3);
}

.accordion-header {
    height: 72px;
    display: flex;
    align-items: center;
    padding: 0 48px;
    cursor: pointer;
    transition: background 0.2s, padding-left 0.2s;
    position: relative;
}

.accordion-header:hover {
    background: rgba(128, 128, 0, 0.06);
    padding-left: 56px;
}

.accordion-item.open {
    border-left: 4px solid var(--olive);
    background: rgba(128, 128, 0, 0.05) !important;
}

.accordion-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 52px;
    color: rgba(128, 128, 0, 0.12);
    line-height: 1;
    width: 80px;
    flex-shrink: 0;
}

.accordion-divider {
    width: 1px;
    height: 28px;
    background: var(--olive);
    opacity: 0.4;
    margin: 0 20px;
    flex-shrink: 0;
}

.accordion-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--beige);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    flex: 1;
}

.accordion-toggle {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 300;
    font-size: 28px;
    color: var(--olive);
    transition: transform 0.3s;
    width: 32px;
    text-align: center;
    flex-shrink: 0;
}

.accordion-item.open .accordion-toggle {
    transform: rotate(45deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.open .accordion-body {
    max-height: 800px;
}

.accordion-inner {
    padding: 48px 48px 48px 128px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
}

.accordion-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: rgba(245, 245, 220, 0.7);
    line-height: 1.88;
    margin-bottom: 20px;
}

.accordion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.accordion-tag {
    background: rgba(128, 128, 0, 0.1);
    border: 1px solid rgba(128, 128, 0, 0.3);
    color: var(--olive-light);
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 9px;
    border-radius: 3px;
    padding: 4px 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.accordion-steps {
    display: flex;
    gap: 0;
    margin-bottom: 28px;
    position: relative;
}

.accordion-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px;
    position: relative;
}

.accordion-step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 16px;
    width: calc(100% - 32px);
    height: 1px;
    background: rgba(128, 128, 0, 0.3);
    border-top: 1px dashed rgba(128, 128, 0, 0.3);
    left: calc(50% + 16px);
}

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--olive);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--olive);
    flex-shrink: 0;
    background: var(--ink2);
    z-index: 2;
    position: relative;
}

.step-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--beige);
    margin-top: 8px;
}

.step-desc {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--stone);
    margin-top: 4px;
    line-height: 1.4;
}

.accordion-cta {
    display: inline-block;
    background: var(--olive);
    color: var(--ink);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 3px;
    border: none;
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
}

.accordion-cta:hover {
    background: var(--olive-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(128, 128, 0, 0.3);
}

.accordion-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid rgba(128, 128, 0, 0.2);
}

.accordion-stat-card {
    background: var(--ink3);
    border: 1px solid rgba(128, 128, 0, 0.2);
    border-radius: 3px;
    padding: 28px;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.stat-card-item {}

.stat-card-val {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--olive-light);
}

.stat-card-lbl {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--stone);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 2px;
}

.stat-card-sep {
    height: 1px;
    background: rgba(128, 128, 0, 0.12);
}

/* ========= SECTION 5: CTA BANNER ========= */
#cta-banner {
    height: 400px;
    display: flex;
    align-items: stretch;
    position: relative;
}

.cta-left {
    width: 55%;
    background: linear-gradient(135deg, var(--olive-dark) 0%, var(--olive) 60%, var(--olive-light) 100%);
    clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%);
    padding: 0 0 0 clamp(32px, 8vw, 100px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-right {
    flex: 1;
    background: var(--ink);
    padding: 0 clamp(32px, 6vw, 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.cta-headline {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(44px, 6.5vw, 72px);
    color: var(--ink);
    line-height: 0.9;
    text-transform: uppercase;
}

.cta-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    color: rgba(14, 14, 8, 0.72);
    line-height: 1.62;
    margin-top: 16px;
    max-width: 380px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: var(--ink);
    color: var(--olive-light);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 15px 28px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.cta-btn-primary:hover {
    background: var(--ink2);
}

.cta-btn-secondary {
    background: transparent;
    color: var(--ink);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 15px 28px;
    border-radius: 3px;
    border: 2px solid rgba(14, 14, 8, 0.45);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.cta-btn-secondary:hover {
    background: rgba(14, 14, 8, 0.1);
}

.trust-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-check {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.trust-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--beige);
    letter-spacing: 0.04em;
}

.trust-sep {
    height: 1px;
    background: rgba(128, 128, 0, 0.18);
    margin-left: 34px;
}

/* ========= SECTION 6: FAQ WHEEL ========= */
#faq {
    background: var(--ink2);
    background-image: repeating-linear-gradient(45deg, rgba(128, 128, 0, 0.02) 0px, rgba(128, 128, 0, 0.02) 1px, transparent 1px, transparent 14px);
    padding-bottom: 80px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 0;
    align-items: center;
    gap: 0;
    min-height: 600px;
}

.wheel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    position: relative;
}

.wheel-wrap {
    position: relative;
    width: clamp(320px, 40vw, 480px);
    height: clamp(320px, 40vw, 480px);
}

.wheel-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.wheel-inner-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--olive);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    box-shadow: 0 0 0 6px rgba(128, 128, 0, 0.08), 0 0 0 12px rgba(128, 128, 0, 0.04);
    padding: 10px;
}

.wheel-inner-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--ink);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.2;
}

.wheel-category-pill {
    position: absolute;
    top: 50%;
    left: 50%;
    background: rgba(14, 14, 8, 0.85);
    border: 1px solid rgba(128, 128, 0, 0.3);
    border-radius: 50px;
    padding: 8px 18px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s;
    z-index: 5;
}

.wheel-category-pill span {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: rgba(245, 245, 220, 0.65);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.wheel-category-pill.active {
    background: var(--olive);
    border-color: var(--olive);
}

.wheel-category-pill.active span {
    color: var(--ink);
}

.wheel-category-pill:hover {
    background: rgba(128, 128, 0, 0.18);
    border-color: rgba(128, 128, 0, 0.55);
}

.wheel-category-pill:hover span {
    color: var(--beige);
}

.faq-content {
    padding-left: 60px;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.faq-content.fade-out {
    opacity: 0;
    transform: translateX(10px);
}

.faq-cat-pill {
    background: var(--olive);
    color: var(--ink);
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.2em;
    border-radius: 3px;
    padding: 4px 12px;
    display: inline-block;
    text-transform: uppercase;
}

.faq-cat-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 4vw, 52px);
    color: var(--beige);
    line-height: 0.95;
    text-transform: uppercase;
    margin-top: 12px;
}

.faq-rule {
    width: 50px;
    height: 2px;
    background: var(--olive);
    margin: 20px 0;
}

.faq-qa {
    border-bottom: 1px solid rgba(245, 245, 220, 0.08);
    padding: 20px 0;
}

.faq-qa:first-of-type {
    border-top: 1px solid rgba(245, 245, 220, 0.08);
}

.faq-q {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--beige);
    line-height: 1.3;
    margin-bottom: 10px;
}

.faq-a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: rgba(245, 245, 220, 0.65);
    line-height: 1.82;
}

.faq-call-btn {
    display: inline-block;
    margin-top: 24px;
    background: var(--olive);
    color: var(--ink);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.faq-call-btn:hover {
    background: var(--olive-light);
    transform: translateY(-2px);
}

/* ========= SECTION 7: SERVICE AREAS ========= */
#service-areas {
    background: var(--ink2);
    background-image: repeating-linear-gradient(45deg, rgba(128, 128, 0, 0.02) 0px, rgba(128, 128, 0, 0.02) 1px, transparent 1px, transparent 14px);
    clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 100%);
    padding-top: 80px;
    padding-bottom: 80px;
}

.primary-city-block {
    max-width: 600px;
    margin: 40px auto;
    background: var(--olive);
    border-radius: 4px;
    padding: 28px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.primary-city-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--ink);
    text-transform: uppercase;
}

.primary-city-sub {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 11px;
    color: rgba(14, 14, 8, 0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 3px;
}

.primary-city-phone {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 14px;
    color: var(--ink);
    text-decoration: none;
}

.areas-cluster-label {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 10px;
    color: var(--olive);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    padding: 16px 20px 8px;
    border-top: 1px solid rgba(128, 128, 0, 0.12);
    margin-top: 16px;
    display: block;
}

.areas-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.cluster-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-bottom: 4px;
}

.area-card {
    background: var(--ink3);
    border-left: 3px solid transparent;
    padding: 22px 20px;
    transition: all 0.25s;
    cursor: default;
}

.area-card:hover {
    background: var(--olive-dim);
    border-left-color: var(--olive);
    transform: translateX(3px);
}

.area-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--beige);
    margin-bottom: 3px;
    text-transform: uppercase;
}

.area-zip {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 10px;
    color: var(--olive);
    letter-spacing: 0.15em;
}

.area-dist {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--stone);
    margin-top: 3px;
}

/* ========= SECTION 8: DETAILED SERVICES ========= */
#detailed-services {
    background: var(--parchment);
    position: relative;
}

.wave-top {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-bottom: -2px;
}

.section-header-left {
    padding: 80px 80px 60px;
    max-width: 1200px;
}

.section-eyebrow-ink {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: rgba(128, 128, 0, 0.7);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.section-title-ink {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(44px, 5.5vw, 72px);
    color: var(--ink);
    text-transform: uppercase;
    line-height: 0.9;
}

.section-title-olive {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(44px, 5.5vw, 72px);
    color: var(--olive);
    text-transform: uppercase;
    line-height: 0.9;
}

.section-rule-ink {
    width: 80px;
    height: 2px;
    background: var(--olive);
    margin: 24px 0 0;
}

.featured-image-band {
    position: relative;
    width: 100%;
    height: 280px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    margin-bottom: 0;
}

.featured-image-band img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 14, 8, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-image-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(22px, 4vw, 52px);
    color: var(--beige);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
}

.service-row {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 80px;
}

.service-row-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: start;
}

.service-row-grid.reverse {
    grid-template-columns: 280px 1fr;
}

.service-row-dark {
    background: var(--ink);
    border-top: 3px solid var(--olive);
}

.service-row-dark2 {
    background: var(--ink2);
}

.service-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: rgba(128, 128, 0, 0.7);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.service-eyebrow-light {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--olive-light);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.service-title-ink {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 38px;
    color: var(--ink);
    text-transform: uppercase;
    line-height: 0.9;
}

.service-title-olive {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 38px;
    color: var(--olive);
    text-transform: uppercase;
    line-height: 0.9;
}

.service-title-beige {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 38px;
    color: var(--beige);
    text-transform: uppercase;
    line-height: 0.9;
}

.service-title-ol-light {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 38px;
    color: var(--olive-light);
    text-transform: uppercase;
    line-height: 0.9;
}

.service-rule {
    width: 60px;
    height: 2px;
    background: var(--olive);
    margin: 16px 0;
}

.service-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    color: rgba(14, 14, 8, 0.65);
    line-height: 1.9;
    margin-bottom: 20px;
}

.service-desc-light {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    color: rgba(245, 245, 220, 0.7);
    line-height: 1.9;
    margin-bottom: 20px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.service-tag {
    background: rgba(128, 128, 0, 0.1);
    border: 1px solid rgba(128, 128, 0, 0.3);
    color: var(--olive-light);
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 9px;
    border-radius: 3px;
    padding: 4px 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.service-tag.ink-bg {
    background: rgba(128, 128, 0, 0.15);
}

.dark-stat-card {
    background: var(--ink);
    border: 1px solid rgba(128, 128, 0, 0.2);
    border-radius: 3px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.dark-stat-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(128, 128, 0, 0.1);
}

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

.dark-stat-val {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--olive-light);
}

.dark-stat-lbl {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--stone);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 2px;
}

.ghost-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 180px;
    color: rgba(128, 128, 0, 0.04);
    line-height: 1;
    text-align: center;
    position: relative;
}

.ghost-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: var(--olive-light);
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
}

/* ========= SECTION 9: PROCESS ========= */
#process {
    background: var(--beige);
    clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 100%);
    padding: 80px 0 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 40px 60px;
    position: relative;
}

.process-line {
    position: absolute;
    top: 68px;
    left: calc(10% + 28px);
    right: calc(10% + 28px);
    height: 1px;
    background: rgba(128, 128, 0, 0.2);
    z-index: 0;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.process-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--olive);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--olive);
    box-shadow: 0 0 0 6px rgba(128, 128, 0, 0.08);
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    transform: scale(0.6);
}

.process-circle.visible {
    opacity: 1;
    transform: scale(1);
}

.process-step-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--ink);
    margin-top: 18px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.process-step-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: rgba(14, 14, 8, 0.55);
    line-height: 1.7;
    margin-top: 8px;
}

.process-cta-strip {
    background: var(--olive);
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.process-cta-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ========= SECTION 10: CONTACT ========= */
#contact {
    background: var(--ink);
}

.map-band {
    width: 100%;
    height: 360px;
    overflow: hidden;
    border-bottom: 3px solid var(--olive);
}

.map-band iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(88%) contrast(1.05) brightness(0.7);
    border: none;
}

.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 72px 40px;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
}

.contact-info-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--olive-light);
    letter-spacing: 0.38em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.contact-info-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 36px;
    color: var(--beige);
    text-transform: uppercase;
    line-height: 0.9;
}

.contact-rule {
    width: 50px;
    height: 2px;
    background: var(--olive);
    margin: 16px 0 28px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.info-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--olive-dim);
    border: 1px solid rgba(128, 128, 0, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-text-label {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 10px;
    color: var(--olive);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.info-text-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: var(--beige);
    line-height: 1.5;
}

.info-text-val a {
    color: var(--beige);
    text-decoration: none;
}

.info-text-val a:hover {
    color: var(--olive-light);
}

.kpi-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--ink2);
    border: 1px solid rgba(128, 128, 0, 0.12);
    border-radius: 3px;
    margin-top: 28px;
    overflow: hidden;
}

.kpi-item {
    padding: 20px 16px;
    text-align: center;
    border-right: 1px solid rgba(128, 128, 0, 0.12);
}

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

.kpi-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 38px;
    color: var(--olive-light);
    display: block;
    line-height: 1;
}

.kpi-lbl {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: var(--stone);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}

.form-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 36px;
    color: var(--beige);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.form-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 16px;
    color: var(--stone);
    margin-bottom: 28px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
}

.form-field {
    margin-bottom: 24px;
}

.form-field.full {
    grid-column: 1 / -1;
}

.form-label {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 10px;
    color: var(--olive);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(245, 245, 220, 0.12);
    color: var(--beige);
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    padding: 12px 4px;
    width: 100%;
    transition: border-color 0.2s;
    outline: none;
    appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(245, 245, 220, 0.2);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-bottom-color: var(--olive);
}

.form-input.error {
    border-bottom-color: #cc4400;
}

.form-error {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: #cc4400;
    margin-top: 4px;
    display: none;
}

.form-error.show {
    display: block;
}

.form-select {
    cursor: pointer;
    color: var(--beige);
}

.form-select option {
    background: var(--ink2);
    color: var(--beige);
}

.form-textarea {
    resize: vertical;
}

.form-submit {
    width: 100%;
    background: var(--olive);
    color: var(--ink);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 17px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    height: 52px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    margin-top: 8px;
}

.form-submit:hover {
    background: var(--olive-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(128, 128, 0, 0.3);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-privacy {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--stone);
    text-align: center;
    margin-top: 12px;
}

/* ========= SECTION 11: FOOTER ========= */
#footer {
    background: var(--ink);
}

.marquee-bar {
    background: var(--olive);
    height: 48px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 22s linear infinite;
}

.marquee-track span {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 11px;
    color: var(--ink);
    letter-spacing: 0.22em;
    padding: 0 40px;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.footer-brand {
    text-align: center;
    padding: 60px 40px 40px;
}

.footer-logo-icon {
    margin: 0 auto 14px;
}

.footer-brand-main {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 52px;
    color: var(--beige);
    line-height: 0.9;
    text-transform: uppercase;
}

.footer-brand-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: var(--olive-light);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-top: 4px;
}

.footer-rule {
    width: 60px;
    height: 2px;
    background: var(--olive);
    margin: 16px auto;
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 15px;
    color: var(--stone);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}

.footer-address {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: rgba(245, 245, 220, 0.35);
    text-align: center;
    margin: 20px auto 28px;
}

.footer-action-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
    padding: 0 40px;
}

.footer-btn {
    border-radius: 50px;
    padding: 14px 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
}

.footer-btn-primary {
    background: var(--olive);
    border: 1px solid var(--olive);
}

.footer-btn-primary:hover {
    background: var(--olive-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(128, 128, 0, 0.4);
}

.footer-btn-outline {
    background: transparent;
    border: 2px solid rgba(128, 128, 0, 0.45);
}

.footer-btn-outline:hover {
    background: rgba(128, 128, 0, 0.12);
    border-color: rgba(128, 128, 0, 0.7);
    transform: translateY(-3px);
}

.footer-btn-dark {
    background: var(--ink2);
    border: 1px solid rgba(128, 128, 0, 0.25);
}

.footer-btn-dark:hover {
    background: rgba(128, 128, 0, 0.08);
    border-color: rgba(128, 128, 0, 0.45);
    transform: translateY(-3px);
}

.footer-btn-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
}

.footer-btn-sub {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-top: 3px;
}

.footer-btn-primary .footer-btn-label,
.footer-btn-primary .footer-btn-sub {
    color: var(--ink);
}

.footer-btn-primary .footer-btn-sub {
    color: rgba(14, 14, 8, 0.65);
}

.footer-btn-outline .footer-btn-label {
    color: var(--beige);
}

.footer-btn-outline .footer-btn-sub {
    color: rgba(245, 245, 220, 0.4);
}

.footer-btn-dark .footer-btn-label {
    color: var(--beige);
}

.footer-btn-dark .footer-btn-sub {
    color: rgba(245, 245, 220, 0.4);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px 48px;
    gap: 0;
}

.footer-col-title {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 10px;
    color: var(--olive);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(128, 128, 0, 0.2);
    padding-bottom: 12px;
    margin-bottom: 16px;
    display: block;
}

.footer-link {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: rgba(245, 245, 220, 0.38);
    padding: 7px 0;
    transition: all 0.2s;
    text-decoration: none;
    position: relative;
}

.footer-link:hover {
    color: var(--beige);
    padding-left: 16px;
}

.footer-link:hover::before {
    content: '→ ';
    position: absolute;
    left: 0;
    color: var(--olive);
    font-size: 12px;
    top: 9px;
}

.footer-area-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: rgba(245, 245, 220, 0.3);
    line-height: 2.2;
}

.footer-hours-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: rgba(245, 245, 220, 0.38);
    line-height: 2.2;
}

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

.footer-social-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(128, 128, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(245, 245, 220, 0.35);
    cursor: pointer;
    transition: all 0.25s;
    background: transparent;
}

.footer-social-btn:hover {
    background: var(--olive);
    color: var(--ink);
    border-color: var(--olive);
    transform: scale(1.12);
}

.footer-copyright {
    background: #080806;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    max-width: 100%;
}

.footer-copyright-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: rgba(245, 245, 220, 0.2);
}

.footer-copyright-site {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 11px;
    color: var(--olive);
}

.footer-copyright-area {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: rgba(245, 245, 220, 0.2);
}

/* ========= RESPONSIVE ========= */
@media (max-width: 768px) {
    .nav-pills {
        display: none;
    }

    .nav-cta-pill {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .mobile-menu-overlay {
        display: flex;
    }

    .hero-panel-content {
        padding: 24px 24px;
    }

    .hero-vertical-label {
        display: none;
    }

    .hero-center-badge {
        width: 56px;
        height: 56px;
    }

    .hero-trust-badge {
        font-size: 8px;
        padding: 0 12px;
    }

    .accordion-inner {
        grid-template-columns: 1fr;
        padding: 32px 24px;
    }

    .accordion-right-col {
        display: none;
    }

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

    .faq-content {
        padding-left: 0;
        padding-top: 32px;
    }

    .wheel-wrap {
        width: 260px;
        height: 260px;
    }

    .wheel-inner-circle {
        width: 70px;
        height: 70px;
    }

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

    .cta-left {
        clip-path: none;
        width: 100%;
    }

    #cta-banner {
        flex-direction: column;
        height: auto;
    }

    .cta-right {
        padding: 40px 32px;
    }

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

    .footer-links-grid {
        grid-template-columns: 1fr;
    }

    .footer-copyright {
        flex-direction: column;
        height: auto;
        padding: 12px 20px;
        gap: 4px;
    }

    .service-row {
        padding: 40px 24px;
    }

    .service-row-grid {
        grid-template-columns: 1fr;
    }

    .service-row-grid.reverse {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .process-line {
        display: none;
    }

    .section-header-left {
        padding: 60px 24px 40px;
    }

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

    .stat-item {
        padding: 12px;
    }

    #stats-bar {
        height: auto;
    }

    .footer-copyright-area {
        display: none;
    }
}