:root {
    --ash: #B2BEB5;
    --ash-light: #D0D8D2;
    --ash-dark: #8A9A90;
    --white: #FFFFFF;
    --off-white: #F8FAF8;
    --ink: #111714;
    --ink2: #1C221E;
    --ink3: #252D27;
    --accent: #6B7C6F;
    --olive: #4A5C4E;
    --olive-glow: rgba(178, 190, 181, 0.25);
    --shadow: rgba(0, 0, 0, 0.6);
    --neon-cyan: #00F5FF;
    --neon-violet: #BF00FF;
    --neon-pink: #FF007A;
    --neon-green: #00FF88;
}

*,
*::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(--ink);
    overflow-x: hidden;
}

/* ==================== NAVBAR ==================== */
#navbar {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(178, 190, 181, 0.35);
    border-radius: 16px;
    padding: 0 32px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.09), 0 2px 8px rgba(178, 190, 181, 0.2);
    transition: all 0.3s ease;
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.13);
}

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

.nav-logo-image {
    height: 94px;
    width: auto;
    display: block;
}

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

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: 0.3px;
    position: relative;
    transition: color 0.2s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--ash-dark);
    transition: width 0.25s ease;
}

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

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

.nav-cta {
    background: var(--ink);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px;
    transition: background 0.2s, transform 0.2s !important;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

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

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

.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(120px, 20vw, 300px);
    color: rgba(178, 190, 181, 0.07);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    letter-spacing: -4px;
}

/* Staircase images */
.hero-img-1,
.hero-img-2,
.hero-img-3 {
    position: absolute;
    overflow: hidden;
    border: 3px solid var(--ash-dark);
    box-shadow: 8px 12px 32px rgba(0, 0, 0, 0.55);
    z-index: 2;
}

.hero-img-1 {
    top: 10vh;
    left: 6vw;
    width: 220px;
    height: 320px;
    animation: imgFloat1 6s ease-in-out infinite;
}

.hero-img-2 {
    top: 28vh;
    left: 28vw;
    width: 240px;
    height: 360px;
    animation: imgFloat2 7s ease-in-out infinite;
}

.hero-img-3 {
    top: 52vh;
    left: 50vw;
    width: 220px;
    height: 300px;
    animation: imgFloat3 5.5s ease-in-out infinite;
}

.hero-img-1 img,
.hero-img-2 img,
.hero-img-3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes imgFloat1 {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

@keyframes imgFloat2 {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(8px)
    }
}

@keyframes imgFloat3 {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-6px)
    }
}

/* Diagonal rule lines */
.diagonal-rule {
    position: absolute;
    background: var(--ash-dark);
    opacity: 0.35;
    z-index: 1;
    transform-origin: left center;
}

.rule-1 {
    top: 26vh;
    left: 13vw;
    width: 200px;
    height: 1.5px;
    transform: rotate(30deg);
}

.rule-2 {
    top: 48vh;
    left: 35vw;
    width: 180px;
    height: 1.5px;
    transform: rotate(30deg);
}

/* Hero text – upper right */
.hero-brand-text {
    position: absolute;
    top: 8vh;
    right: 3vw;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(52px, 6.5vw, 100px);
    line-height: 0.92;
    color: var(--ink);
    text-align: right;
    z-index: 3;
    letter-spacing: -1px;
    max-width: 520px;
    animation: fadeSlideIn 1s ease both;
}

.hero-brand-text em {
    display: block;
    color: var(--ash-dark);
    font-style: normal;
    font-size: 0.52em;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Tagline – lower left */
.hero-tagline {
    position: absolute;
    bottom: 14vh;
    left: 5vw;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(16px, 1.6vw, 22px);
    color: var(--ink);
    max-width: 320px;
    line-height: 1.6;
    z-index: 3;
    animation: fadeSlideIn 1.2s 0.3s ease both;
}

/* Stat badges */
.stat-badge {
    position: absolute;
    background: var(--white);
    border: 1.5px solid var(--ash);
    border-radius: 12px;
    padding: 12px 18px;
    z-index: 4;
    box-shadow: 4px 6px 20px rgba(0, 0, 0, 0.09);
    animation: fadeSlideIn 1s ease both;
}

.stat-badge .num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--ink);
    line-height: 1;
}

.stat-badge .lbl {
    font-size: 11px;
    color: var(--ash-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.badge-1 {
    top: 22vh;
    right: 8vw;
    animation-delay: 0.4s;
}

.badge-2 {
    top: 42vh;
    right: 22vw;
    animation-delay: 0.6s;
}

.badge-3 {
    bottom: 22vh;
    left: 26vw;
    animation-delay: 0.8s;
}

/* CTA buttons – lower right */
.hero-cta-group {
    position: absolute;
    bottom: 12vh;
    right: 4vw;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 4;
    align-items: flex-end;
    animation: fadeSlideIn 1s 0.5s ease both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ink);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s;
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    background: var(--olive);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--ink);
    padding: 14px 30px;
    border-radius: 12px;
    border: 1.5px solid var(--ash);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s;
}

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

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Scroll indicator */
.scroll-cue {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
    animation: fadeSlideIn 1.5s 1s ease both;
}

.scroll-cue span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ash-dark);
    font-weight: 500;
}

.scroll-cue-dot {
    width: 1.5px;
    height: 40px;
    background: linear-gradient(to bottom, var(--ash-dark), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4
    }

    50% {
        opacity: 1
    }
}

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

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

.about-image-block {
    position: relative;
}

.about-img-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    border: 3px solid var(--ash);
}

.about-img-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 260px;
    object-fit: cover;
    border: 3px solid var(--ink);
    border-radius: 4px;
    box-shadow: 8px 12px 32px rgba(0, 0, 0, 0.3);
}

.about-badge-float {
    position: absolute;
    top: 30px;
    left: -30px;
    background: var(--ink);
    color: var(--white);
    padding: 18px 22px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-badge-float .big {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 36px;
    line-height: 1;
    display: block;
}

.about-badge-float .small {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ash);
    font-weight: 500;
}

.about-content {}

.section-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ash-dark);
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::before {
    content: '';
    display: block;
    width: 32px;
    height: 1.5px;
    background: var(--ash-dark);
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(38px, 4vw, 60px);
    line-height: 0.95;
    color: var(--ink);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.section-title .accent {
    color: var(--ash-dark);
}

.about-desc {
    font-size: 16px;
    line-height: 1.75;
    color: #3a4a3d;
    margin-bottom: 28px;
    font-weight: 300;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--ash-light);
}

.about-stat {}

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

.about-stat .l {
    font-size: 12px;
    color: var(--ash-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 4px;
    display: block;
}

/* ==================== SERVICES FULL SCREEN ==================== */
#services {
    position: relative;
}

.services-progress {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 200px;
    background: rgba(178, 190, 181, 0.2);
    border-radius: 3px;
    z-index: 100;
    display: none;
}

.services-progress-fill {
    width: 100%;
    background: var(--ash-dark);
    border-radius: 3px;
    transition: height 0.3s ease;
}

.service-panel {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.sp-1 {
    background: var(--white);
}

.sp-2 {
    background: var(--off-white);
}

.sp-3 {
    background: var(--ink);
    color: var(--white);
}

.sp-4 {
    background: var(--ash-light);
}

.sp-5 {
    background: var(--ink2);
    color: var(--white);
}

.sp-6 {
    background: var(--white);
}

/* Panel 1: text left + big number right */
.sp-1 .panel-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.sp-big-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(180px, 22vw, 320px);
    line-height: 0.85;
    color: rgba(178, 190, 181, 0.18);
    letter-spacing: -8px;
    text-align: right;
    user-select: none;
}

/* Panel 2: diagonal split */
.sp-2 .panel-inner {
    width: 100%;
    height: 100vh;
    position: relative;
}

.sp-2-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 52%;
    height: 100%;
    background: var(--ash-light);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    display: flex;
    align-items: center;
    padding: 80px 80px 80px 80px;
}

.sp-2-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-2-icon {
    width: 160px;
    height: 160px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* Panel 3: centered concentric */
.sp-3 .panel-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 48px;
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.concentric-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(178, 190, 181, 0.12);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 300px;
    height: 300px;
}

.ring-2 {
    width: 500px;
    height: 500px;
    animation: rotateSlow 30s linear infinite;
}

.ring-3 {
    width: 700px;
    height: 700px;
    animation: rotateSlow 45s linear infinite reverse;
}

.ring-4 {
    width: 900px;
    height: 900px;
}

@keyframes rotateSlow {
    from {
        transform: translate(-50%, -50%) rotate(0deg)
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

/* Panel 4: bottom-left text */
.sp-4 .panel-inner {
    width: 100%;
    height: 100vh;
    position: relative;
}

.sp-4-content {
    position: absolute;
    bottom: 80px;
    left: 80px;
    max-width: 500px;
}

.sp-4-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 70%;
    object-fit: cover;
}

/* Panel 5: dark with image */
.sp-5 .panel-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.sp-5-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border: 2px solid rgba(178, 190, 181, 0.3);
    border-radius: 4px;
}

/* Panel 6: full width centered */
.sp-6 .panel-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 48px;
    text-align: center;
    width: 100%;
}

.service-icon-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.service-icon-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--off-white);
    border: 1.5px solid var(--ash);
    border-radius: 50px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
}

/* Service panel shared */
.service-tag {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

.sp-1 .service-tag,
.sp-2 .service-tag,
.sp-4 .service-tag,
.sp-6 .service-tag {
    color: var(--ash-dark);
}

.sp-3 .service-tag,
.sp-5 .service-tag {
    color: var(--ash);
}

.service-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(40px, 4.5vw, 68px);
    line-height: 0.95;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.service-desc {
    font-size: 16px;
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 28px;
    max-width: 480px;
}

.sp-1 .service-desc,
.sp-2-left .service-desc,
.sp-4 .service-desc,
.sp-6 .service-desc {
    color: #3a4a3d;
}

.sp-3 .service-desc,
.sp-5 .service-desc {
    color: var(--ash-light);
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
}

.service-features li::before {
    content: '';
    width: 20px;
    height: 1.5px;
    background: var(--ash-dark);
    flex-shrink: 0;
}

.sp-3 .service-features li::before,
.sp-5 .service-features li::before {
    background: var(--ash);
}

/* ==================== FAQ ==================== */
#faq {
    background: #0A0D0B;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.faq-ghost {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(180px, 30vw, 420px);
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    user-select: none;
    letter-spacing: -10px;
    white-space: nowrap;
}

.faq-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 2;
}

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

.faq-header .section-label {
    justify-content: center;
    color: rgba(178, 190, 181, 0.5);
}

.faq-header .section-label::before {
    background: rgba(178, 190, 181, 0.3);
}

.faq-header .section-title {
    color: var(--white);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.faq-item:nth-child(1) {
    --neon: var(--neon-cyan);
}

.faq-item:nth-child(2) {
    --neon: var(--neon-violet);
}

.faq-item:nth-child(3) {
    --neon: var(--neon-pink);
}

.faq-item:nth-child(4) {
    --neon: var(--neon-green);
}

.faq-item:nth-child(5) {
    --neon: var(--neon-cyan);
}

.faq-item:nth-child(6) {
    --neon: var(--neon-violet);
}

.faq-item:nth-child(7) {
    --neon: var(--neon-pink);
}

.faq-question {
    padding: 24px 0 24px 24px;
    border-left: 2.5px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.3s, box-shadow 0.3s;
    position: relative;
}

.faq-question:hover {
    border-color: var(--neon);
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.2), inset 3px 0 0 var(--neon);
}

.faq-item.open .faq-question {
    border-color: var(--neon);
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.3);
}

.faq-q-text {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.2s;
    flex: 1;
    padding-right: 20px;
    line-height: 1.5;
}

.faq-question:hover .faq-q-text,
.faq-item.open .faq-q-text {
    color: var(--white);
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
    line-height: 1;
}

.faq-item.open .faq-toggle {
    border-color: var(--neon);
    color: var(--neon);
    transform: rotate(45deg);
    box-shadow: 0 0 12px var(--neon);
}

.faq-neon-line {
    height: 1.5px;
    background: var(--neon);
    width: 0;
    box-shadow: 0 0 8px var(--neon);
    transition: width 0.4s ease;
    margin-left: 24px;
}

.faq-item.open .faq-neon-line {
    width: calc(100% - 24px);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-left: 24px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 20px 0 28px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    font-weight: 300;
}

/* ==================== DETAIL SERVICE (STACKED CARDS) ==================== */
#detail-service {
    background: #0F1410;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.ds-header {
    text-align: center;
    color: var(--white);
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.ds-header .section-label {
    justify-content: center;
    color: var(--ash);
}

.ds-header .section-label::before {
    background: var(--ash-dark);
}

.ds-header .section-title {
    color: var(--white);
}

.card-stack-scene {
    position: relative;
    width: 70vw;
    max-width: 900px;
    height: 72vh;
    min-height: 500px;
    margin: 0 auto;
}

.deck-card {
    position: absolute;
    width: 70vw;
    max-width: 900px;
    height: 72vh;
    min-height: 500px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    left: 0;
}

/* Peek positions */
.deck-card:nth-child(5) {
    /* back – peeks bottom */
    background: #1C2520;
    top: 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.deck-card:nth-child(4) {
    /* peeks top */
    background: #232C27;
    top: -35px;
    z-index: 2;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.deck-card:nth-child(3) {
    /* peeks right */
    background: #1E2823;
    top: 0;
    left: 25px;
    z-index: 3;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.deck-card:nth-child(2) {
    /* peeks top-left */
    background: #252E29;
    top: -20px;
    left: -20px;
    z-index: 4;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.deck-card:nth-child(1) {
    /* front – fully visible */
    background: var(--ink2);
    top: 0;
    left: 0;
    z-index: 5;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
    padding: 48px;
}

.deck-card:nth-child(1):hover {
    transform: translateY(-6px);
}

.card-img {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 300px;
    height: 240px;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 8% 100%, 0 88%);
    border: 2px solid rgba(178, 190, 181, 0.3);
}

.card-headline {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 4.5vw, 62px);
    color: var(--white);
    line-height: 0.95;
    max-width: 420px;
    letter-spacing: -1px;
}

.card-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--ash);
    margin-top: 16px;
    max-width: 320px;
    line-height: 1.5;
}

.card-cta {
    position: absolute;
    bottom: 48px;
    left: 48px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ash);
    color: var(--ink);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
}

.card-cta:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.card-peek-label {
    position: absolute;
    top: 50%;
    left: 48px;
    transform: translateY(-50%);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: rgba(178, 190, 181, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
    pointer-events: none;
}

.card-img-peek {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    object-fit: cover;
    object-position: center 60%;
    opacity: 0.3;
    border-radius: 0 0 6px 6px;
}

/* Service navigator dots */
.card-nav {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 20;
}

.card-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(178, 190, 181, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.card-dot.active {
    background: var(--ash);
    transform: scale(1.4);
}

/* Slide out animation */
.deck-card.fly-out {
    transform: translateY(-110vh) !important;
    opacity: 0;
    pointer-events: none;
}

/* ==================== CITIES ==================== */
#cities {
    padding: 80px 0;
    background: var(--off-white);
    overflow: hidden;
}

.cities-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    text-align: center;
}

.cities-ticker {
    overflow: hidden;
    margin-top: 40px;
    padding: 24px 0;
    border-top: 1px solid var(--ash-light);
    border-bottom: 1px solid var(--ash-light);
    position: relative;
}

.cities-ticker::before,
.cities-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
}

.cities-ticker::before {
    left: 0;
    background: linear-gradient(to right, var(--off-white), transparent);
}

.cities-ticker::after {
    right: 0;
    background: linear-gradient(to left, var(--off-white), transparent);
}

.ticker-track {
    display: flex;
    gap: 0;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    flex-shrink: 0;
    padding: 0 40px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--ink);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 20px;
}

.ticker-item .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--ash-dark);
}

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

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

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

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

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

.contact-info-block {}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 24px;
    border: 1.5px solid var(--ash-light);
    border-radius: 12px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-info-card:hover {
    border-color: var(--ash);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--ink);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-card .ci-label {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ash-dark);
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-info-card .ci-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
}

.contact-info-card a {
    color: inherit;
    text-decoration: none;
}

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

.contact-form-side {}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ash-dark);
}

.form-field input,
.form-field textarea,
.form-field select {
    background: var(--off-white);
    border: 1.5px solid var(--ash-light);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    transition: border-color 0.2s;
    outline: none;
    resize: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: var(--ash-dark);
    background: var(--white);
}

.form-field textarea {
    height: 120px;
}

.form-submit {
    background: var(--ink);
    color: var(--white);
    border: none;
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.25s;
    align-self: flex-start;
    letter-spacing: 0.3px;
}

.form-submit:hover {
    background: var(--olive);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-container {
    width: 100%;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--ash-light);
    position: relative;
    margin-top: 20px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.map-overlay-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    background: var(--ink);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    pointer-events: none;
}

/* ==================== FOOTER ==================== */
footer {
    background: var(--ink);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(178, 190, 181, 0.12);
}

.footer-brand {}

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

.footer-logo-icon {
    width: 44px;
    height: 44px;
    background: rgba(178, 190, 181, 0.1);
    border: 1px solid rgba(178, 190, 181, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.footer-logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--white);
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.footer-logo-text span {
    display: block;
    font-size: 10px;
    font-weight: 400;
    color: var(--ash);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
}

.footer-about {
    font-size: 14px;
    color: rgba(178, 190, 181, 0.6);
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 300;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(178, 190, 181, 0.1);
    border: 1px solid rgba(178, 190, 181, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.social-btn:hover {
    background: rgba(178, 190, 181, 0.2);
    border-color: rgba(178, 190, 181, 0.35);
    transform: translateY(-2px);
}

.footer-col-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 14px;
    color: rgba(178, 190, 181, 0.55);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '';
    display: block;
    width: 14px;
    height: 1px;
    background: rgba(178, 190, 181, 0.25);
    transition: width 0.2s, background 0.2s;
}

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

.footer-links a:hover::before {
    width: 20px;
    background: var(--ash);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    font-size: 13px;
    color: rgba(178, 190, 181, 0.3);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom a {
    color: rgba(178, 190, 181, 0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: var(--ash);
}

/* ==================== MOBILE ==================== */
@media (max-width: 900px) {
    #navbar {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 100px;
        left: 24px;
        right: 24px;
        background: var(--white);
        border: 1px solid var(--ash-light);
        border-radius: 16px;
        padding: 24px;
        gap: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        z-index: 999;
    }

    /* Hero mobile */
    .hero-brand-text {
        font-size: 36px;
        right: 16px;
        top: 12vh;
    }

    .hero-img-1 {
        width: 130px;
        height: 190px;
        top: 12vh;
        left: 16px;
    }

    .hero-img-2 {
        width: 150px;
        height: 220px;
        top: 32vh;
        left: 30vw;
    }

    .hero-img-3 {
        display: none;
    }

    .badge-2,
    .badge-3 {
        display: none;
    }

    .badge-1 {
        top: 18vh;
        right: 16px;
    }

    .hero-cta-group {
        bottom: 8vh;
        right: 16px;
    }

    .hero-tagline {
        left: 16px;
        bottom: 20vh;
        font-size: 14px;
    }

    .rule-1,
    .rule-2 {
        display: none;
    }

    /* About mobile */
    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 24px;
    }

    .about-img-accent {
        display: none;
    }

    .about-badge-float {
        left: 16px;
    }

    .about-img-main {
        height: 320px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    /* Service panels mobile */
    .sp-1 .panel-inner,
    .sp-5 .panel-inner {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        gap: 40px;
    }

    .sp-big-num {
        font-size: 120px;
    }

    .sp-2-left {
        width: 100%;
        clip-path: none;
        padding: 40px 24px;
        position: relative;
        height: auto;
    }

    .sp-2-right {
        display: none;
    }

    .sp-2 .panel-inner {
        height: auto;
        min-height: auto;
    }

    .sp-2 {
        min-height: auto;
    }

    .sp-4-content {
        left: 24px;
        bottom: 40px;
        right: 24px;
    }

    .sp-4-img {
        display: none;
    }

    /* FAQ mobile */
    .faq-inner {
        padding: 0 24px;
    }

    /* Contact mobile */
    .contact-header {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-inner {
        padding: 0 24px;
    }

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

    /* Footer mobile */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-inner {
        padding: 0 24px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Card stack mobile */
    .card-stack-scene {
        width: 90vw;
    }

    .deck-card {
        width: 90vw;
    }

    .card-img {
        display: none;
    }

    .card-headline {
        font-size: 32px;
    }

    .card-nav {
        right: -40px;
    }

    /* Cities mobile */
    .cities-inner {
        padding: 0 24px;
    }
}

/* ==================== MISC HELPERS ==================== */
.text-ash {
    color: var(--ash-dark);
}

.mt-8 {
    margin-top: 8px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

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

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