:root {
    --orange: #FFB347;
    --orange-dark: #e89a2a;
    --orange-light: #ffd08a;
    --platinum: #E7EBEA;
    --ink: #0f0e0c;
    --ink2: #1a1916;
    --ink3: #252420;
    --ink4: #32302b;
    --beige: #f5f0e8;
    --olive: #8b8b3e;
    --olive-light: rgba(139, 139, 62, 0.3);
    --white: #ffffff;
    --gray: #6b6b6b;
    --gray-light: #d4d4d4;
    --cream: #fdf8f0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IBM Plex Mono', monospace;
    background: var(--ink);
    color: var(--platinum);
    overflow-x: hidden;
}

/* ===== SCROLL SHRINK NAVBAR ===== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 14, 12, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 179, 71, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 48px;
}

#navbar.scrolled {
    background: rgba(15, 14, 12, 0.98);
    border-bottom-color: rgba(255, 179, 71, 0.35);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#navbar.scrolled .nav-inner {
    height: 58px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: all 0.4s;
}

.nav-logo-icon {
    width: 96px;
    height: 96px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

#navbar.scrolled .nav-logo-icon {
    width: 94px;
    height: 94px;
    border-radius: 7px;
}

.nav-logo-icon svg {
    transition: all 0.4s;
}

.nav-logo-icon img {
    width: 92px;
    height: 92px;
    object-fit: contain;
    transition: all 0.4s;
}

#navbar.scrolled .nav-logo-icon svg {
    transform: scale(0.78);
}

#navbar.scrolled .nav-logo-icon img {
    transform: scale(0.82);
}

.logo-text {
    transition: all 0.4s;
}

.logo-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--white);
    letter-spacing: 0.5px;
    line-height: 1;
    transition: font-size 0.4s;
}

#navbar.scrolled .logo-name {
    font-size: 17px;
}

.logo-tagline {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: var(--orange);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
    transition: all 0.4s;
}

#navbar.scrolled .logo-tagline {
    font-size: 7.5px;
}

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

.nav-links a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--platinum);
    text-decoration: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
}

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

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

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

.nav-cta {
    background: var(--orange);
    color: var(--ink) !important;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 11px !important;
    letter-spacing: 1px;
    transition: all 0.3s !important;
}

.nav-cta:hover {
    background: var(--orange-dark) !important;
    transform: translateY(-1px);
}

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

/* ===== HERO — ARCHAEOLOGICAL GRID ===== */
#hero {
    position: relative;
    min-height: 100vh;
    background: var(--ink);
    overflow: hidden;
}

.site-header-placard {
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    z-index: 10;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--olive);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(128, 128, 0, 0.25);
    background: rgba(15, 14, 12, 0.6);
}

.excavation-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 1fr);
    width: 100%;
    height: 100vh;
    gap: 0;
}

.exc-cell {
    position: relative;
    border: 2px solid rgba(128, 128, 0, 0.2);
    background: var(--ink2);
    overflow: hidden;
    transition: all 0.3s;
}

.exc-cell.depth-deep {
    background: var(--ink);
}

.exc-cell.depth-mid {
    background: var(--ink2);
}

.exc-cell.depth-shallow {
    background: var(--ink3);
}

.exc-cell.depth-surface {
    background: var(--ink4);
}

.cell-label {
    position: absolute;
    top: 8px;
    left: 8px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: var(--olive);
    opacity: 0.7;
    z-index: 2;
    letter-spacing: 0.5px;
}

/* Find #001 — A2-B3 (col 2, row 1 → col 3, row 2) */
.find-001 {
    grid-column: 2 / 4;
    grid-row: 1 / 3;
    background: var(--ink) !important;
    position: relative;
}

.find-001 .annotation {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: var(--olive);
    letter-spacing: 2px;
    z-index: 4;
    white-space: nowrap;
}

.find-001 .find-img {
    position: absolute;
    inset: 38px 12px 12px;
    border: 3px solid var(--olive);
    object-fit: cover;
    background: linear-gradient(135deg, #2a2a1a 0%, #1a1a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--olive);
    overflow: hidden;
}

.find-001 .find-img img,
.find-002 .find-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.find-001 .find-img img {
    filter: brightness(1.05) contrast(1.06);
}

/* Headline cell — B1-C1 */
.headline-cell {
    grid-column: 4 / 6;
    grid-row: 1 / 2;
    background: var(--beige) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.headline-cell h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 4.5vw, 64px);
    color: var(--ink);
    line-height: 0.9;
    letter-spacing: -1px;
}

/* Company name vertical — D2-D3 */
.company-cell {
    grid-column: 6 / 7;
    grid-row: 1 / 3;
    background: var(--ink) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-vertical {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--orange);
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Trust badges — E1, E2 */
.trust-cell-1 {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
    background: var(--ink3) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    gap: 6px;
}

.trust-cell-2 {
    grid-column: 5 / 6;
    grid-row: 2 / 3;
    background: var(--ink2) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    gap: 6px;
}

.trust-annotation {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 8px;
    color: var(--olive);
    letter-spacing: 1.5px;
}

.trust-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--orange);
    line-height: 1;
}

.trust-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: var(--platinum);
    opacity: 0.7;
    text-align: center;
    letter-spacing: 0.5px;
}

/* CTA cell — F3-F4 */
.cta-cell {
    grid-column: 6 / 7;
    grid-row: 3 / 5;
    background: var(--olive) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 12px;
    cursor: pointer;
}

.cta-cell-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
}

.cta-cell-btn {
    background: var(--orange);
    color: var(--ink);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 14px;
    padding: 12px 18px;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: 100%;
    transition: all 0.3s;
}

.cta-cell-btn:hover {
    background: var(--orange-dark);
}

/* Tagline — A4 */
.tagline-cell {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
    background: var(--ink3) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.tagline-cell p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 13px;
    color: var(--orange-light);
    line-height: 1.5;
    text-align: center;
}

/* Find #002 — C4-D4 */
.find-002 {
    grid-column: 2 / 4;
    grid-row: 3 / 5;
    background: var(--ink) !important;
    position: relative;
}

.find-002 .annotation {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: var(--olive);
    letter-spacing: 2px;
    z-index: 4;
    white-space: nowrap;
}

.find-002 .find-img {
    position: absolute;
    inset: 38px 12px 12px;
    border: 3px solid var(--olive);
    background: linear-gradient(225deg, #1a1a0a, #0f0e0c);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Generic remaining cells */
.exc-cell .find-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.04;
}

.exc-cell .find-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    display: block;
}

.exc-cell.depth-deep .find-icon {
    opacity: 0.38;
}

.exc-cell.depth-deep .find-icon img {
    width: 78%;
    height: 78%;
    object-fit: cover;
    border-radius: 8px;
    filter: brightness(1.08) contrast(1.08);
}

.exc-cell.depth-mid .find-icon {
    opacity: 0.28;
}

.exc-cell.depth-mid .find-icon img {
    width: 74%;
    height: 74%;
    object-fit: cover;
    border-radius: 8px;
    filter: brightness(1.06) contrast(1.06);
}

.a3-call-btn {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border: 1px solid var(--orange);
    border-radius: 999px;
    background: rgba(255, 179, 71, 0.14);
    color: var(--white);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s ease;
    z-index: 3;
}

.a3-call-btn:hover {
    background: var(--orange);
    color: var(--ink);
}

/* Phone cell */
.phone-cell {
    grid-column: 4 / 6;
    grid-row: 3 / 4;
    background: rgba(255, 179, 71, 0.08) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border: 2px solid rgba(255, 179, 71, 0.3) !important;
}

.phone-cell .ph-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: var(--olive);
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.phone-cell .ph-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--orange);
    letter-spacing: 1px;
}

.phone-cell .ph-avail {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: var(--platinum);
    opacity: 0.6;
    margin-top: 4px;
}

/* Services preview cell */
.services-cell {
    grid-column: 4 / 6;
    grid-row: 4 / 5;
    background: var(--ink2) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px;
}

.svc-chip {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: var(--olive);
    border: 1px solid rgba(128, 128, 0, 0.3);
    padding: 4px 8px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* SVG Key images inside cells */
.key-svg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== ABOUT SECTION ===== */
#about {
    background: var(--cream);
    padding: 120px 80px;
    position: relative;
    overflow: hidden;
}

#about::before {
    content: 'ABOUT';
    position: absolute;
    right: -40px;
    top: 60px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 180px;
    color: rgba(255, 179, 71, 0.06);
    letter-spacing: -5px;
    pointer-events: none;
}

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

.about-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.about-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(42px, 5vw, 72px);
    color: var(--ink);
    line-height: 0.95;
    margin-bottom: 32px;
}

.about-title span {
    color: var(--orange);
}

.about-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    line-height: 1.85;
    color: #3a3830;
    margin-bottom: 20px;
}

.about-desc-2 {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    line-height: 1.9;
    color: #5a5850;
    margin-bottom: 32px;
}

.about-right {
    position: relative;
}

.about-img-wrap {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.about-img-main {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #1a1916 0%, #2a2820 50%, #1a1814 100%);
    border: 3px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-img-overlay {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: var(--orange);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.about-overlay-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 56px;
    color: var(--ink);
    line-height: 1;
}

.about-overlay-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--ink);
    text-align: center;
    letter-spacing: 1px;
    margin-top: 4px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.feature-box {
    background: var(--white);
    border: 1px solid rgba(255, 179, 71, 0.25);
    border-left: 3px solid var(--orange);
    padding: 20px;
    transition: all 0.3s;
}

.feature-box:hover {
    border-left-color: var(--orange-dark);
    box-shadow: 0 8px 32px rgba(255, 179, 71, 0.12);
    transform: translateY(-3px);
}

.feature-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 179, 71, 0.12);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.feature-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--ink);
    margin-bottom: 6px;
}

.feature-desc {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--gray);
    line-height: 1.7;
}

/* ===== SERVICES SECTION — MORSE CODE DATA ROWS ===== */
#services {
    background: var(--ink);
    background-image: repeating-linear-gradient(0deg, rgba(128, 128, 0, 0.02) 0px, rgba(128, 128, 0, 0.02) 1px, transparent 1px, transparent 4px);
    padding: 120px 0;
    position: relative;
}

.services-header {
    padding: 0 80px 60px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.services-title-area .sec-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--olive);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.services-title-area h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(40px, 5vw, 68px);
    color: var(--platinum);
    line-height: 0.95;
}

.services-title-area h2 span {
    color: var(--orange);
}

.service-row {
    border-top: 2px solid rgba(128, 128, 0, 0.25);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-row:last-child {
    border-bottom: 2px solid rgba(128, 128, 0, 0.25);
}

.service-row.expanded {
    border-left: 4px solid var(--olive);
}

.service-row-inner {
    display: grid;
    grid-template-columns: 120px 1fr 140px;
    min-height: 180px;
    transition: min-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-row.expanded .service-row-inner {
    min-height: 480px;
}

/* Zone A */
.zone-a {
    border-right: 1px solid rgba(128, 128, 0, 0.2);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.zone-a-ghost {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 72px;
    color: var(--platinum);
    opacity: 0.06;
    position: absolute;
    line-height: 1;
}

.zone-a svg.signal-line {
    position: absolute;
    width: 100%;
    height: 60px;
}

/* Zone B */
.zone-b {
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.zone-b-collapsed {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--platinum);
    transition: font-size 0.3s;
}

.service-row.expanded .service-name {
    font-size: 32px;
    color: var(--orange);
}

.service-brief {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--olive);
    letter-spacing: 0.5px;
}

.zone-b-expanded {
    display: none;
    margin-top: 20px;
}

.service-row.expanded .zone-b-expanded {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.service-long-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    line-height: 1.88;
    color: var(--platinum);
    opacity: 0.85;
    flex: 1;
}

.service-img {
    width: 240px;
    height: 200px;
    min-width: 240px;
    object-fit: cover;
    clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
    background: linear-gradient(135deg, #2a2820 0%, #1a1610 100%);
    border: 3px solid var(--olive);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.service-img-row {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.service-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.service-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: var(--olive);
    border: 1px solid rgba(128, 128, 0, 0.4);
    padding: 4px 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Zone C */
.zone-c {
    border-left: 1px solid rgba(128, 128, 0, 0.2);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

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

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

.stat-key {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: var(--olive);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.stat-val {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--platinum);
    font-weight: 500;
}

/* ===== FAQ SECTION ===== */
#faq {
    background: var(--white);
    padding: 120px 80px;
}

.faq-inner {
    max-width: 900px;
    margin: 0 auto;
}

.faq-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.faq-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(40px, 5vw, 64px);
    color: var(--ink);
    line-height: 0.95;
    margin-bottom: 72px;
}

.faq-item {
    display: flex;
    gap: 24px;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
}

.faq-ink-line {
    width: 2px;
    background: #e0ddd8;
    min-height: 72px;
    position: relative;
    flex-shrink: 0;
    transition: background 0.4s;
    align-self: stretch;
}

.faq-ink-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--orange);
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-ink-fill {
    height: 100%;
}

.faq-item.open .faq-ink-line {
    background: #e0ddd8;
}

.faq-content {
    flex: 1;
    padding: 24px 0;
}

.faq-question {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--ink);
    cursor: pointer;
    transition: color 0.25s;
    user-select: none;
    line-height: 1.2;
}

.faq-item:hover .faq-question {
    color: #2a2820;
}

.faq-item.open .faq-question {
    color: var(--orange);
}

.faq-answer {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    line-height: 1.85;
    color: #4a4840;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s, margin 0.3s;
    opacity: 0;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    opacity: 1;
    margin-top: 16px;
    padding-bottom: 8px;
}

/* ===== SERVICE AREAS ===== */
#areas {
    background: var(--ink2);
    padding: 120px 80px;
    position: relative;
    overflow: hidden;
}

.areas-inner {
    max-width: 1400px;
    margin: 0 auto;
}

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

.areas-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--platinum);
    opacity: 0.8;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.area-chip {
    background: rgba(255, 179, 71, 0.05);
    border: 1px solid rgba(255, 179, 71, 0.15);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    cursor: default;
}

.area-chip:hover {
    background: rgba(255, 179, 71, 0.12);
    border-color: rgba(255, 179, 71, 0.4);
    transform: translateX(4px);
}

.area-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
}

.area-name {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--platinum);
    letter-spacing: 0.5px;
}

/* ===== CTA SECTION ===== */
#cta {
    background: var(--orange);
    padding: 100px 80px;
    position: relative;
    overflow: hidden;
}

#cta::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 500px;
    height: 500px;
    border: 80px solid rgba(0, 0, 0, 0.06);
    border-radius: 50%;
}

#cta::after {
    content: '';
    position: absolute;
    right: 100px;
    bottom: -200px;
    width: 400px;
    height: 400px;
    border: 60px solid rgba(0, 0, 0, 0.04);
    border-radius: 50%;
}

.cta-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 4px;
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cta-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(48px, 7vw, 88px);
    color: var(--ink);
    line-height: 0.9;
    margin-bottom: 24px;
}

.cta-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.65);
    margin-bottom: 48px;
}

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

.btn-primary {
    background: var(--ink);
    color: var(--orange);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 16px;
    padding: 18px 44px;
    border: none;
    cursor: pointer;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #1a1916;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--ink);
    border: 2px solid var(--ink);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 18px 44px;
    cursor: pointer;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--ink);
    color: var(--orange);
}

/* ===== WHY CHOOSE US ===== */
#why {
    background: var(--cream);
    padding: 120px 80px;
}

.why-inner {
    max-width: 1400px;
    margin: 0 auto;
}

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

.why-reasons {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.why-reason {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 28px;
    background: var(--white);
    border: 1px solid rgba(255, 179, 71, 0.15);
    transition: all 0.3s;
}

.why-reason:hover {
    box-shadow: 0 8px 32px rgba(255, 179, 71, 0.1);
    transform: translateX(6px);
    border-color: rgba(255, 179, 71, 0.4);
}

.why-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 48px;
    color: var(--orange);
    opacity: 0.3;
    line-height: 1;
    flex-shrink: 0;
    width: 50px;
    text-align: center;
}

.why-text h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--ink);
    margin-bottom: 8px;
}

.why-text p {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--gray);
    line-height: 1.8;
}

/* ===== STATS ===== */
#stats {
    background: var(--ink);
    padding: 100px 80px;
    border-top: 2px solid rgba(255, 179, 71, 0.2);
    border-bottom: 2px solid rgba(255, 179, 71, 0.2);
}

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

.stat-box {
    padding: 40px 32px;
    border-right: 1px solid rgba(255, 179, 71, 0.15);
    text-align: center;
    position: relative;
}

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

.stat-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 68px;
    color: var(--orange);
    line-height: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
}

.stat-suffix {
    font-size: 32px;
    margin-top: 8px;
}

.stat-desc {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--platinum);
    opacity: 0.6;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 12px;
}

/* ===== COMPREHENSIVE SERVICES ===== */
#comp-services {
    background: var(--cream);
    padding: 120px 80px;
}

.comp-grid {
    max-width: 1400px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.comp-card {
    background: var(--white);
    border: 1px solid rgba(255, 179, 71, 0.12);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.comp-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: var(--orange);
    transition: width 0.4s;
}

.comp-card:hover::after {
    width: 100%;
}

.comp-card:hover {
    box-shadow: 0 12px 40px rgba(255, 179, 71, 0.1);
    transform: translateY(-4px);
}

.comp-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 179, 71, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.comp-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--ink);
    margin-bottom: 8px;
}

.comp-card-stat {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 40px;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.comp-card-stat-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--gray);
    letter-spacing: 1px;
}

.comp-bar {
    height: 3px;
    background: #e8e4de;
    margin-top: 16px;
    border-radius: 2px;
    overflow: hidden;
}

.comp-bar-fill {
    height: 100%;
    background: var(--orange);
    border-radius: 2px;
    width: 0;
    transition: width 1.5s ease 0.3s;
}

.comp-card-desc {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--gray);
    line-height: 1.8;
    margin-top: 12px;
}

/* ===== CONTACT ===== */
#contact {
    background: var(--ink);
    padding: 120px 80px;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 179, 71, 0.12);
    transition: all 0.3s;
}

.contact-item:hover {
    border-color: rgba(255, 179, 71, 0.35);
    background: rgba(255, 179, 71, 0.03);
}

.contact-icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(255, 179, 71, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: var(--olive);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-item-val {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--platinum);
}

.map-wrap {
    height: 500px;
    border: 2px solid rgba(255, 179, 71, 0.25);
    overflow: hidden;
    position: relative;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(60%) contrast(1.1);
}

/* ===== FOOTER — HORIZONTAL SCROLLING ===== */
#footer {
    background: var(--ink);
    border-top: 2px solid rgba(255, 179, 71, 0.2);
    position: relative;
    overflow: hidden;
}

.footer-scroll-hint {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--olive);
    letter-spacing: 2px;
    z-index: 10;
    animation: hintPulse 2s infinite;
    pointer-events: none;
}

@keyframes hintPulse {

    0%,
    100% {
        opacity: 0.4
    }

    50% {
        opacity: 1
    }
}

.footer-track-wrap {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
}

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

.footer-left-fade {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(to right, var(--ink), transparent);
    z-index: 5;
    pointer-events: none;
}

.footer-right-fade {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(to left, var(--ink), transparent);
    z-index: 5;
    pointer-events: none;
}

.footer-track {
    display: flex;
    align-items: center;
    height: 180px;
    gap: 0;
    padding: 0;
    min-width: max-content;
}

.footer-section {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 48px;
    border-right: 1px solid rgba(255, 179, 71, 0.1);
    flex-shrink: 0;
}

.footer-logo-sec {
    gap: 14px;
}

.footer-logo-icon {
    width: 44px;
    height: 44px;
    background: var(--orange);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--white);
}

.footer-logo-sub {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: var(--olive);
    letter-spacing: 2px;
}

.footer-about-sec {
    max-width: 280px;
}

.footer-about-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: var(--platinum);
    opacity: 0.6;
    line-height: 1.7;
}

.footer-nav-sec {
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
}

.footer-nav-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: var(--olive);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav-links a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--platinum);
    text-decoration: none;
    opacity: 0.65;
    transition: all 0.2s;
    letter-spacing: 0.5px;
}

.footer-nav-links a:hover {
    color: var(--orange);
    opacity: 1;
}

.footer-contact-sec {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-item span {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--platinum);
    opacity: 0.7;
}

.footer-social-sec {
    gap: 12px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 179, 71, 0.08);
    border: 1px solid rgba(255, 179, 71, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
}

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

.social-btn:hover svg path,
.social-btn:hover svg rect {
    fill: var(--ink);
}

.footer-newsletter-sec {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    max-width: 260px;
}

.newsletter-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: var(--olive);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.newsletter-input-wrap {
    display: flex;
    width: 100%;
}

.newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 179, 71, 0.2);
    border-right: none;
    color: var(--platinum);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    padding: 10px 14px;
    outline: none;
}

.newsletter-btn {
    background: var(--orange);
    border: none;
    padding: 10px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.newsletter-btn:hover {
    background: var(--orange-dark);
}

.footer-copy-sec {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding-right: 100px;
}

.footer-copy {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--platinum);
    opacity: 0.35;
    letter-spacing: 0.5px;
}

/* ===== SECTION HEADERS ===== */
.sec-label-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.sec-line {
    height: 1px;
    width: 48px;
    background: var(--orange);
}

.sec-label-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--orange);
    text-transform: uppercase;
}

.section-h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 0.95;
    margin-bottom: 20px;
}

/* ===== COUNTER ANIMATION ===== */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {

    .about-inner,
    .why-grid,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

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

    #about,
    #services,
    #faq,
    #areas,
    #cta,
    #why,
    #stats,
    #comp-services,
    #contact {
        padding: 80px 40px;
    }

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

@media (max-width: 768px) {
    #navbar {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

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

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

    #about,
    #faq,
    #areas,
    #cta,
    #why,
    #stats,
    #comp-services,
    #contact {
        padding: 64px 24px;
    }

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

    .zone-c {
        display: none;
    }

    .areas-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-track {
        gap: 0;
    }
}