:root {
    --ink: #0a0a0a;
    --black: #000000;
    --white: #FFFFFF;
    --off-white: #f5f5f5;
    --parchment: #f7f6f2;
    --paper: #ffffff;
    --olive: #000000;
    --olive-light: #ffffff;
    --olive-dark: #333333;
    --gray-light: #e8e8e8;
    --gray-mid: #8a8a8a;
    --gray-dark: #4a4a4a;
    --text-body: #1a1a1a;
    --hero-serif: 'Playfair Display', 'Crimson Pro', Georgia, serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text-body);
    overflow-x: hidden;
}

/* ========== NAVBAR ========== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 60px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-logo {
    padding-top: 18px;
    padding-bottom: 14px;
}

.nav-logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.06em;
    background: linear-gradient(135deg, #ffffff, #cccccc, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.nav-logo-sub {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.18em;
    color: var(--gray-dark);
    display: block;
    margin-top: 4px;
}

.nav-links {
    display: flex;
    align-items: flex-end;
    gap: 40px;
    padding-bottom: 16px;
    padding-top: 32px;
    list-style: none;
}

.nav-links a {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

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

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

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

.nav-cta {
    padding-top: 22px;
    padding-bottom: 14px;
}

.nav-phone {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.08em;
    color: var(--olive-light);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 8px 18px;
    transition: all 0.3s;
}

.nav-phone:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

/* ========== HERO — EDITORIAL (LOGO B&W) ========== */
#hero {
    min-height: 100vh;
    background: var(--parchment);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    border-bottom: 1px solid var(--black);
}

.hero-ticker {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 10px 24px;
    flex-shrink: 0;
}

.hero-ticker span {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.hero-editorial {
    flex: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(280px, 1fr);
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    min-height: calc(100vh - 180px);
}

.hero-main {
    padding: clamp(40px, 6vw, 80px) clamp(32px, 5vw, 72px);
    border-right: 1px solid var(--black);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-meta {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-mid);
    margin-bottom: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    align-items: center;
}

.hero-meta-dot {
    color: var(--gray-light);
}

.hero-logo-wrap {
    width: 100%;
    max-width: 640px;
    margin: 0 0 28px;
    padding: 12px;
    border: 1px solid var(--black);
    background: var(--paper);
    box-sizing: border-box;
    align-self: flex-start;
    overflow: hidden;
}

.hero-logo-img {
    width: 100%;
    height: clamp(150px, 19vw, 175px);
    display: block;
    object-fit: cover;
    object-position: center center;
}

.hero-rule {
    border: none;
    border-top: 1px solid var(--black);
    margin: 0 0 32px;
    width: 100%;
}

.hero-headline {
    font-family: var(--hero-serif);
    font-weight: 700;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    line-height: 1.08;
    color: var(--black);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-subhead {
    font-family: var(--hero-serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.55;
    color: var(--text-body);
    max-width: 36em;
    margin-bottom: 40px;
}

.hero-contact-block {
    margin-top: 8px;
}

.hero-phone {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4.5vw, 3rem);
    letter-spacing: 0.04em;
    color: var(--black);
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.25s;
}

.hero-phone:hover {
    opacity: 0.65;
    color: var(--black);
}

.hero-phone-meta {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray-mid);
    margin-top: 12px;
}

.hero-sidebar {
    display: flex;
    flex-direction: column;
    padding: clamp(32px, 4vw, 56px) clamp(28px, 3.5vw, 48px);
    justify-content: stretch;
}

.hero-service-block {
    flex: 1;
    padding: clamp(20px, 3vh, 32px) 0;
    border-bottom: 1px solid var(--black);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-service-block:first-child {
    padding-top: 0;
}

.hero-service-label {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.hero-service-title {
    font-family: var(--hero-serif);
    font-weight: 700;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    line-height: 1.25;
    color: var(--black);
    margin-bottom: 10px;
}

.hero-service-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--gray-dark);
}

.hero-cta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    padding: 28px 24px;
    margin-top: auto;
    transition: background 0.25s, transform 0.25s;
}

.hero-cta-box:hover {
    background: var(--ink);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-cta-main {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
}

.hero-cta-sub {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.hero-scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 28px 0 36px;
    background: var(--parchment);
    border-top: 1px solid var(--gray-light);
}

.hero-scroll-hint span {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.25em;
    color: var(--gray-mid);
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--black), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.1);
    }
}

/* ========== ABOUT ========== */
#about {
    background: var(--off-white);
    padding: 140px 80px;
    position: relative;
    overflow: hidden;
}

.about-bg-num {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 280px;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
    user-select: none;
    pointer-events: none;
}

.about-label {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.22em;
    color: var(--olive);
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-label::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--olive);
}

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

.about-text-col {}

.about-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4.5vw, 68px);
    font-weight: 700;
    color: var(--black);
    line-height: 1.08;
    margin-bottom: 30px;
}

.about-headline em {
    font-style: italic;
    color: var(--olive-dark);
}

.about-body {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a38;
    margin-bottom: 20px;
    max-width: 540px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.about-stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 52px;
    color: var(--black);
    line-height: 1;
    display: block;
}

.about-stat-label {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.15em;
    color: var(--gray-dark);
    text-transform: uppercase;
    margin-top: 6px;
    display: block;
}

.about-images-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
}

.about-img {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.about-img:nth-child(1) {
    grid-column: span 2;
    height: 260px;
}

.about-img:nth-child(2) {
    height: 200px;
}

.about-img:nth-child(3) {
    height: 200px;
    margin-top: 30px;
}

.about-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #141414, #222222, #141414);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-img-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.12), transparent);
}

.about-img-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-family: 'Space Mono', monospace;
    font-size: 8px;
    letter-spacing: 0.15em;
    color: rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    z-index: 2;
}

/* ========== WHY CHOOSE US ========== */
#why {
    background: var(--off-white);
    padding: 140px 80px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--gray-light);
}

.why-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(0, 0, 0, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.why-header {
    max-width: 1400px;
    margin: 0 auto 80px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.why-headline {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(52px, 7vw, 110px);
    color: var(--black);
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.why-headline span {
    display: block;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    color: var(--olive-dark);
    -webkit-text-fill-color: var(--olive-dark);
    background: none;
}

.why-desc {
    max-width: 360px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--gray-dark);
    text-align: right;
}

.why-boxes {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
    background: rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.why-box {
    background: var(--white);
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.4s;
    cursor: default;
}

.why-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--olive-dark), var(--black), var(--olive-dark));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.why-box:hover {
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.why-box:hover::before {
    transform: scaleX(1);
}

.why-box-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 72px;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.4s;
}

.why-box:hover .why-box-num {
    color: rgba(0, 0, 0, 0.08);
}

.why-box-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    opacity: 0.85;
}

.why-box-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--black);
    letter-spacing: 0.04em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.why-box-text {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--gray-dark);
}

/* ========== SERVICES (Counter Reveal) ========== */
#services {
    background: var(--off-white);
    padding: 0 80px 140px;
    position: relative;
}

.services-progress-bar {
    position: sticky;
    top: 70px;
    z-index: 50;
    height: 2px;
    background: rgba(0, 0, 0, 0.08);
    margin-bottom: 80px;
}

.services-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--olive-dark), var(--olive-light));
    transition: width 0.1s linear;
}

.services-label {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.22em;
    color: var(--olive);
    text-transform: uppercase;
    padding-top: 80px;
    padding-bottom: 60px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.services-label::before,
.services-label::after {
    content: '';
    width: 60px;
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
}

.services-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.service-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.service-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-counter {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 96px;
    color: rgba(0, 0, 0, 0.06);
    line-height: 1;
    position: absolute;
    left: -20px;
    top: -20px;
    transition: color 0.6s;
    letter-spacing: -0.04em;
}

.service-item.visible .service-counter {
    color: rgba(0, 0, 0, 0.1);
}

.service-content {
    padding-left: 60px;
}

.service-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 4vw, 48px);
    color: var(--black);
    letter-spacing: -0.01em;
    line-height: 1;
    transform: translateX(-30px);
    opacity: 0;
    transition: transform 0.7s 0.15s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s 0.15s ease;
    text-transform: uppercase;
}

.service-item.visible .service-name {
    transform: translateX(0);
    opacity: 1;
}

.service-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--olive), transparent);
    margin: 16px 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s 0.3s ease;
}

.service-item.visible .service-divider {
    transform: scaleX(1);
}

.service-desc {
    font-size: 15px;
    line-height: 1.85;
    color: #444440;
    max-width: 600px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s 0.35s ease, transform 0.6s 0.35s ease;
}

.service-item.visible .service-desc {
    opacity: 1;
    transform: translateY(0);
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    opacity: 0;
    transition: opacity 0.6s 0.5s ease;
}

.service-item.visible .service-tags {
    opacity: 1;
}

.service-tag {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.12em;
    color: var(--olive-dark);
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 5px 12px;
    text-transform: uppercase;
}

/* ========== SURROUNDING AREAS ========== */
#areas {
    background: var(--parchment);
    padding: 120px 80px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--gray-light);
}

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

.areas-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 70px;
    gap: 40px;
}

.areas-headline {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(42px, 6vw, 90px);
    color: var(--black);
    letter-spacing: -0.02em;
    line-height: 0.9;
}

.areas-headline em {
    display: block;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    color: var(--olive-dark);
    -webkit-text-fill-color: var(--olive-dark);
    background: none;
}

.areas-sub {
    max-width: 380px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-dark);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2px;
    background: rgba(0, 0, 0, 0.08);
}

.area-cell {
    background: var(--white);
    padding: 22px 20px;
    text-align: center;
    transition: box-shadow 0.3s, background 0.3s;
    cursor: default;
}

.area-cell:hover {
    background: var(--white);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.area-cell-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.06em;
    color: var(--black);
    text-transform: uppercase;
    transition: color 0.3s;
}

.area-cell:hover .area-cell-name {
    color: var(--olive-dark);
}

.area-cell-dist {
    font-family: 'Space Mono', monospace;
    font-size: 8px;
    letter-spacing: 0.1em;
    color: var(--gray-mid);
    margin-top: 4px;
}

/* ========== PREMIUM SERVICE ========== */
#premium {
    background: var(--off-white);
    padding: 140px 80px;
}

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

.premium-header {
    text-align: center;
    margin-bottom: 80px;
}

.premium-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.25em;
    color: var(--olive);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.premium-eyebrow::before,
.premium-eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: rgba(0, 0, 0, 0.25);
}

.premium-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 72px);
    color: var(--black);
    font-weight: 700;
    line-height: 1.1;
}

.premium-title em {
    font-style: italic;
    color: var(--olive-dark);
}

.premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    background: rgba(0, 0, 0, 0.08);
}

.premium-card {
    background: var(--white);
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.4s;
}

.premium-card:hover {
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.premium-card-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 140px;
    color: rgba(0, 0, 0, 0.04);
    line-height: 1;
    position: absolute;
    top: -20px;
    right: 20px;
    letter-spacing: -0.04em;
}

.premium-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--black), var(--olive-dark));
    border-radius: 3px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 26px;
    color: var(--black);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.premium-card-text {
    font-size: 14.5px;
    line-height: 1.8;
    color: #555550;
    max-width: 480px;
}

/* ========== PARALLAX SERVICES ========== */
#services-magazine {
    background: var(--parchment);
    padding: 120px 0 160px;
    position: relative;
    overflow: hidden;
}

.services-sticky-label {
    position: sticky;
    top: 90px;
    z-index: 10;
    padding: 0 80px;
    margin-bottom: -20px;
    pointer-events: none;
}

.services-sticky-label span {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.25em;
    color: rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
}

.parallax-columns {
    display: grid;
    grid-template-columns: 140px 1fr 320px;
    gap: 60px;
    padding: 60px 80px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.parallax-col-numbers {
    position: relative;
}

.parallax-col-numbers::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--olive-dark), transparent);
    opacity: 0.3;
}

.parallax-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(80px, 12vw, 160px);
    color: rgba(0, 0, 0, 0.06);
    line-height: 1;
    display: block;
    margin-bottom: 160px;
}

.parallax-col-content {}

.parallax-service {
    margin-bottom: 180px;
}

.parallax-service:last-child {
    margin-bottom: 0;
}

.parallax-service-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(34px, 4.5vw, 58px);
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1;
    margin-bottom: 20px;
}

.parallax-service-desc {
    font-size: 15px;
    line-height: 1.85;
    color: #3a3a35;
    max-width: 520px;
    margin-bottom: 20px;
}

.parallax-process {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.parallax-step {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.parallax-step-text {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.1em;
    color: var(--olive-dark);
    text-transform: uppercase;
}

.parallax-cta {
    display: inline-block;
    margin-top: 28px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--black);
    border-bottom: 2px solid var(--olive);
    padding-bottom: 4px;
    text-decoration: none;
    transition: color 0.3s;
}

.parallax-cta:hover {
    color: var(--olive-dark);
}

.parallax-col-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.parallax-img {
    width: 100%;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.parallax-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.08);
    mix-blend-mode: multiply;
}

.parallax-img-placeholder {
    width: 100%;
    background: linear-gradient(135deg, #252515, #353520, #252515);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.25);
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
}

/* ========== FAQ ========== */
#faq {
    background: var(--white);
    padding: 140px 80px;
    position: relative;
}

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

.faq-header {
    margin-bottom: 60px;
}

.faq-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.22em;
    color: var(--olive);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.faq-eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--olive);
}

.faq-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4.5vw, 64px);
    color: var(--black);
    font-weight: 700;
    line-height: 1.1;
}

.faq-split {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 2px;
    background: rgba(0, 0, 0, 0.08);
    min-height: 600px;
}

.faq-questions {
    background: var(--off-white);
    padding: 0;
    overflow-y: auto;
}

.faq-q-item {
    padding: 28px 36px;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: background 0.25s;
}

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

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

.faq-q-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--gray-dark);
    flex-shrink: 0;
    padding-top: 2px;
    transition: color 0.25s;
}

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

.faq-q-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #2a2a28;
    line-height: 1.5;
    transition: color 0.25s;
}

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

.faq-answers {
    background: var(--white);
    padding: 56px 64px;
    position: relative;
}

.faq-answer {
    display: none;
    animation: fadeIn 0.4s ease;
}

.faq-answer.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.faq-answer-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--black), var(--olive-dark));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

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

.faq-answer-text {
    font-size: 15px;
    line-height: 1.85;
    color: #3a3a38;
    margin-bottom: 16px;
}

.faq-related {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-related-label {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.15em;
    color: var(--gray-dark);
    text-transform: uppercase;
    margin-bottom: 14px;
}

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

.faq-related-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--olive-dark);
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 6px 14px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
}

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

/* ========== CONTACT ========== */
#contact {
    background: var(--off-white);
    padding: 140px 80px;
}

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

.contact-left {}

.contact-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.22em;
    color: var(--olive);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--olive);
}

.contact-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(48px, 6vw, 88px);
    color: var(--black);
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
}

.contact-title span {
    display: block;
    background: linear-gradient(135deg, #000000, #333333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--white);
}

.contact-info-icon-wrap {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--black), var(--olive-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 2px;
}

.contact-info-label {
    font-family: 'Space Mono', monospace;
    font-size: 8px;
    letter-spacing: 0.15em;
    color: var(--gray-dark);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.contact-info-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--black);
    letter-spacing: 0.03em;
}

.contact-info-value a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-value a:hover {
    color: var(--olive-dark);
}

.contact-right {}

.map-container {
    width: 100%;
    height: 400px;
    background: #1a1a12;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) contrast(1.1) brightness(0.8);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.04);
    pointer-events: none;
}

.contact-cta-btn {
    display: block;
    width: 100%;
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--black);
    transition: all 0.3s;
}

.contact-cta-btn:hover {
    background: transparent;
    color: var(--black);
}

/* ========== FOOTER ========== */
#footer {
    background: var(--off-white);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--gray-light);
}

.footer-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.footer-main {
    padding: 120px 80px 80px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-tagline-small {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.25em;
    color: var(--olive);
    text-transform: uppercase;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.footer-tagline-small::before,
.footer-tagline-small::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--olive);
}

.footer-statement {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(52px, 8vw, 120px);
    color: var(--black);
    line-height: 0.88;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.footer-statement span {
    display: block;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    color: var(--olive-dark);
    -webkit-text-fill-color: var(--olive-dark);
    background: none;
    animation: none;
}

.footer-cta-wrap {
    margin: 56px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-cta-main {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    padding: 20px 56px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.footer-cta-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.footer-cta-main:hover {
    background: var(--ink);
    color: var(--white);
}

.footer-cta-main:hover::before {
    transform: translateX(0);
}

.footer-cta-sub {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--gray-mid);
    text-transform: uppercase;
}

.footer-bar {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 32px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    background: var(--white);
}

.footer-logo-small {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.08em;
    color: var(--black);
    -webkit-text-fill-color: var(--black);
    background: none;
}

.footer-nav {
    display: flex;
    gap: 32px;
    list-style: none;
}

.footer-nav a {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.15em;
    color: var(--gray-mid);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--black);
}

.footer-copy {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.1em;
    color: var(--gray-mid);
}

/* SVG icons */
.icon-key {
    fill: var(--white);
    width: 20px;
    height: 20px;
}

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

    #about,
    #why,
    #services,
    #areas,
    #premium,
    #faq,
    #contact {
        padding-left: 40px;
        padding-right: 40px;
    }

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

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

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

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

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

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

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

    .parallax-col-numbers {
        display: none;
    }

    .parallax-col-images {
        flex-direction: row;
        flex-wrap: wrap;
    }

    nav {
        padding: 0 30px;
    }

    .nav-links {
        gap: 24px;
    }

    .footer-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 992px) {
    .hero-editorial {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-main {
        border-right: none;
        border-bottom: 1px solid var(--black);
    }

    .hero-sidebar {
        padding-top: 0;
    }

    .hero-service-block {
        flex: none;
    }
}

@media (max-width: 768px) {
    #hero {
        padding-top: 88px;
    }

    .hero-ticker span {
        font-size: 8px;
        letter-spacing: 0.14em;
    }

    .hero-logo-wrap {
        max-width: 100%;
        padding: 10px;
    }

    .hero-logo-img {
        height: clamp(100px, 28vw, 130px);
    }

    .why-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .why-desc {
        text-align: left;
    }

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

    .nav-links {
        display: none;
    }

    #services,
    #services-magazine {
        padding: 80px 30px;
    }

    .footer-main {
        padding: 80px 40px 60px;
    }

    .footer-bar {
        padding: 24px 40px;
    }
}