:root {
    /* Logo palette — warm beige/gold #F5E6CC and tones from the same hue only */
    --logo: #F5E6CC;
    --cream: #F5E6CC;
    --beige: #F5E6CC;
    --beige-light: #FBF5E8;
    --beige-mid: #C4B08A;
    --beige-dark: #9A8258;
    --beige-darker: #6E5C3A;
    /* Legacy aliases (same logo family — no green) */
    --olive: var(--beige-mid);
    --olive-light: #D9C9A8;
    --olive-dark: var(--beige-dark);
    --ink: #100E0A;
    --ink2: #181510;
    --stone: rgba(245, 230, 204, 0.42);
    --dark-bg: #0C0B08;
    --dark-mid: #141210;
    --glass-bg: rgba(245, 230, 204, 0.08);
    --glass-border: rgba(198, 180, 138, 0.35);
    --text-muted: rgba(245, 230, 204, 0.6);
    --accent-rgb: 198, 180, 138;
    --logo-rgb: 245, 230, 204;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark-bg);
    color: var(--cream);
    font-family: 'Cormorant Garamond', Georgia, serif;
    overflow-x: hidden;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 60px);
    max-width: 1100px;
    background: rgba(245, 230, 204, 0.07);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(245, 230, 204, 0.15);
    border-radius: 16px;
    padding: 14px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: background 0.3s;
}

.navbar.scrolled {
    background: rgba(16, 14, 10, 0.7);
    border-color: rgba(var(--accent-rgb), 0.3);
}

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

.nav-logo-icon {
    display: block;
    height: 48px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    border-radius: 8px;
    background: rgba(245, 230, 204, 0.95);
    padding: 4px 6px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

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

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

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

.nav-links a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(245, 230, 204, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--olive), var(--olive-dark));
    color: var(--cream) !important;
    padding: 10px 22px;
    border-radius: 8px;
    font-family: 'IBM Plex Mono', monospace !important;
    font-size: 11px !important;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(var(--accent-rgb), 0.35);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.5);
}

/* ========== HERO — PERIODIC TABLE ========== */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--dark-bg) 0%, var(--dark-mid) 50%, var(--ink) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(var(--accent-rgb), 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--accent-rgb), 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.12) 0%, transparent 70%);
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.hero-periodic {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 110px 24px 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-periodic-grid {
    position: relative;
    width: 100%;
    max-width: 820px;
    height: 620px;
    margin: 0 auto 32px;
    flex-shrink: 0;
}

/* Shared element cell */
.pt-cell {
    border: 2px solid var(--olive);
    background: var(--ink2);
    padding: 20px;
    position: absolute;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(245, 230, 204, 0.06);
    transition: border-color 0.25s, box-shadow 0.25s;
    overflow: hidden;
    isolation: isolate;
}

/* Background photos in service cells */
.pt-cell-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
}

.pt-cell-bg-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 14, 10, 0.55) 0%, rgba(16, 14, 10, 0.82) 100%);
    z-index: 1;
    pointer-events: none;
}

.pt-cell--small .pt-atomic-num,
.pt-cell--small .pt-symbol,
.pt-cell--small .pt-name,
.pt-cell--small .pt-mass {
    position: absolute;
    z-index: 2;
}

.pt-cell:hover {
    border-color: var(--olive-light);
    box-shadow: 0 12px 36px rgba(var(--accent-rgb), 0.2), inset 0 1px 0 rgba(245, 230, 204, 0.1);
}

.pt-atomic-num {
    position: absolute;
    top: 10px;
    left: 12px;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 16px;
    color: var(--olive);
    line-height: 1;
}

.pt-symbol-wrap {
    position: absolute;
    inset: 20px 20px 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.pt-main-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
}

.pt-main-bg-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg,
            rgba(16, 14, 10, 0.72) 0%,
            rgba(16, 14, 10, 0.88) 55%,
            rgba(16, 14, 10, 0.94) 100%);
    z-index: 1;
    pointer-events: none;
}

.pt-symbol {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: calc(100% - 52px);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 96px;
    color: var(--beige);
    line-height: 1;
    text-align: center;
    letter-spacing: -2px;
    text-decoration: none;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
}

.pt-cell--main .pt-symbol-wrap {
    inset: 28px 20px 56px;
}

.pt-cell--main .pt-symbol-wrap .pt-symbol {
    height: auto;
    font-size: clamp(72px, 14vw, 108px);
    color: var(--cream);
    text-shadow:
        0 0 40px rgba(var(--logo-rgb), 0.35),
        0 4px 20px rgba(0, 0, 0, 0.55);
}

.pt-symbol--watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 200px;
    color: var(--beige);
    opacity: 0.07;
    line-height: 1;
    letter-spacing: -4px;
    pointer-events: none;
    z-index: 2;
}

.pt-cell--main .pt-name,
.pt-cell--main .pt-atomic-num,
.pt-cell--main .pt-mass {
    z-index: 3;
}

.pt-name {
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: 12px;
    color: var(--stone);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.pt-mass {
    position: absolute;
    bottom: 10px;
    right: 12px;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: 10px;
    color: var(--olive);
    line-height: 1;
}

.pt-name--main {
    bottom: 32px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cream);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.pt-mass--main {
    bottom: 14px;
    right: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--olive-light);
}

.pt-cell--main .pt-atomic-num {
    z-index: 3;
    font-size: 18px;
    color: var(--olive-light);
}

/* Main center element */
.pt-cell--main {
    width: 280px;
    height: 280px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    border-color: var(--olive-light);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(198, 180, 138, 0.15),
        inset 0 1px 0 rgba(245, 230, 204, 0.12);
}

.pt-cell--main:hover {
    border-color: var(--cream);
    box-shadow:
        0 16px 48px rgba(var(--accent-rgb), 0.28),
        0 0 32px rgba(var(--accent-rgb), 0.12),
        inset 0 1px 0 rgba(245, 230, 204, 0.15);
}

/* Small service cells */
.pt-cell--small {
    width: 140px;
    height: 120px;
    padding: 14px 12px;
    z-index: 4;
}

.pt-cell--small .pt-atomic-num {
    font-size: 11px;
    top: 8px;
    left: 10px;
}

.pt-symbol--sm {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -58%);
    width: auto;
    height: auto;
    font-size: 42px;
    letter-spacing: -1px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
}

.pt-name--sm {
    font-size: 10px;
    bottom: 10px;
}

.pt-mass--sm {
    font-size: 9px;
    bottom: 8px;
    right: 10px;
    letter-spacing: 0.5px;
}

/* Scattered positions */
.pt-cell--pos-above {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.pt-cell--pos-upper-left {
    top: 12%;
    left: 0;
}

.pt-cell--pos-upper-right {
    top: 8%;
    right: 0;
}

.pt-cell--pos-lower-left {
    bottom: 22%;
    left: 0;
}

.pt-cell--pos-lower-right {
    bottom: 26%;
    right: 0;
}

.pt-cell--pos-below {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Image element cell */
.pt-cell--image {
    width: 160px;
    height: 140px;
    padding: 0;
    z-index: 4;
}

.pt-cell--pos-image {
    top: 44%;
    right: 0;
}

.pt-cell-img-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.pt-cell-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    vertical-align: middle;
}

.pt-cell-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(16, 14, 10, 0.4);
    pointer-events: none;
    z-index: 1;
}

.pt-cell--image .pt-atomic-num,
.pt-cell--image .pt-name,
.pt-cell--image .pt-mass {
    z-index: 2;
}

.pt-cell--image .pt-atomic-num {
    color: var(--beige);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.85);
}

.pt-name--img {
    bottom: 10px;
    color: var(--beige);
    font-size: 11px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.85);
}

.pt-mass--img {
    bottom: 10px;
    right: 12px;
    color: var(--olive-light);
    font-size: 9px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.85);
}

/* CTA + legend */
.hero-periodic-cta {
    width: 100%;
    max-width: 640px;
    text-align: center;
    padding: 0 16px;
}

.hero-company {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin: 0 0 14px;
    line-height: 1.15;
}

.hero-company-el {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 5vw, 40px);
    letter-spacing: -1px;
    color: var(--olive-light);
    opacity: 0.85;
    line-height: 1;
}

.hero-company-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: clamp(26px, 4.5vw, 38px);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--cream);
}

.hero-company-text em {
    font-style: normal;
    font-weight: 600;
    color: var(--olive-light);
    letter-spacing: 3px;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(16px, 2vw, 22px);
    color: rgba(245, 230, 204, 0.75);
    text-align: center;
    line-height: 1.5;
    margin-bottom: 16px;
}

.hero-phone {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: clamp(20px, 2.5vw, 30px);
    color: var(--olive-light);
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
    text-decoration: none;
    transition: color 0.2s;
}

.hero-phone:hover {
    color: var(--cream);
}

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

.pt-legend {
    width: 100%;
    text-align: center;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: 10px;
    color: var(--stone);
    letter-spacing: 0.8px;
    line-height: 1.5;
    padding: 20px 20px 0;
    margin: 0;
}

.pt-legend strong {
    color: var(--olive-light);
    font-weight: 700;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--olive), var(--olive-dark));
    color: var(--cream);
    padding: 16px 36px;
    border-radius: 8px;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(var(--accent-rgb), 0.55);
}

.btn-ghost {
    background: transparent;
    color: var(--cream);
    padding: 16px 36px;
    border-radius: 8px;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(245, 230, 204, 0.25);
    cursor: pointer;
    transition: all 0.25s;
}

.btn-ghost:hover {
    border-color: rgba(245, 230, 204, 0.6);
    background: rgba(245, 230, 204, 0.05);
}

.hero-badges {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-top: 56px;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(245, 230, 204, 0.6);
}

.hero-badge-icon {
    width: 36px;
    height: 36px;
    background: rgba(var(--accent-rgb), 0.15);
    border: 1px solid rgba(var(--accent-rgb), 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* ========== SECTION COMMON ========== */
.section {
    padding: 100px 40px;
    position: relative;
}

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

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 5vw, 64px);
    color: var(--cream);
    line-height: 1;
    margin-bottom: 20px;
}

.section-desc {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 20px;
    color: rgba(245, 230, 204, 0.65);
    max-width: 560px;
    line-height: 1.6;
}

/* ========== ABOUT ========== */
.about {
    background: linear-gradient(160deg, var(--ink) 0%, var(--ink2) 100%);
}

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

.about-images {
    position: relative;
    height: 460px;
}

.about-img {
    position: absolute;
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(var(--accent-rgb), 0.35);
    background: var(--ink2);
    isolation: isolate;
}

.about-img-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    vertical-align: middle;
}

.about-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 14, 10, 0.05) 0%, rgba(16, 14, 10, 0.45) 100%);
    pointer-events: none;
    z-index: 1;
}

.about-img-overlay--accent {
    background: linear-gradient(145deg, rgba(16, 14, 10, 0.1) 0%, rgba(16, 14, 10, 0.5) 100%);
}

.about-img-caption {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    z-index: 2;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--beige);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.85);
    line-height: 1.4;
    margin: 0;
}

.about-img-main {
    width: 320px;
    height: 380px;
    top: 0;
    left: 0;
}

.about-img-accent {
    width: 200px;
    height: 240px;
    bottom: 0;
    right: 0;
    border-top: 3px solid var(--olive);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(var(--accent-rgb), 0.2);
}

.about-content {}

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

.about-feat {
    background: rgba(var(--accent-rgb), 0.08);
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s;
}

.about-feat:hover {
    border-color: rgba(var(--accent-rgb), 0.5);
    background: rgba(var(--accent-rgb), 0.12);
    transform: translateY(-2px);
}

.about-feat-icon {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    line-height: 1;
}

.about-feat-icon i {
    font-size: 26px;
    color: var(--beige-mid);
}

.about-feat-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--cream);
    margin-bottom: 6px;
}

.about-feat-desc {
    font-size: 14px;
    color: rgba(245, 230, 204, 0.6);
    line-height: 1.5;
}

/* ========== SERVICES (3D GLASS) ========== */
.services {
    background: linear-gradient(160deg, var(--dark-bg) 0%, var(--dark-mid) 100%);
    overflow: hidden;
}

.services-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.services-header {
    margin-bottom: 70px;
}

.glass-scene {
    position: relative;
    transform-style: preserve-3d;
    perspective: 1200px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.glass-layer {
    position: relative;
    background: rgba(16, 14, 10, 0.55);
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    border-radius: 4px;
    padding: 36px 48px;
    margin-bottom: -10px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    z-index: 5;
}

.glass-layer:nth-child(2) {
    backdrop-filter: blur(10px);
    margin-left: 20px;
    z-index: 4;
}

.glass-layer:nth-child(3) {
    backdrop-filter: blur(12px);
    margin-left: 40px;
    z-index: 3;
}

.glass-layer:nth-child(4) {
    backdrop-filter: blur(16px);
    margin-left: 20px;
    z-index: 2;
}

.glass-layer:nth-child(5) {
    backdrop-filter: blur(20px);
    z-index: 1;
}

.glass-layer:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(var(--accent-rgb), 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(var(--accent-rgb), 0.3);
    z-index: 10 !important;
    margin-left: 0 !important;
}

.glass-layer-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.svc-num {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--olive-light);
    letter-spacing: 2px;
    min-width: 50px;
}

.svc-icon-box {
    width: 56px;
    height: 56px;
    background: rgba(var(--accent-rgb), 0.15);
    border: 1px solid rgba(var(--accent-rgb), 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
    line-height: 1;
}

.svc-icon-box i {
    font-size: 26px;
    color: var(--beige-light);
}

.glass-layer:hover .svc-icon-box {
    background: rgba(var(--accent-rgb), 0.25);
    box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.3);
}

.svc-body {
    flex: 1;
}

.svc-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(22px, 3vw, 34px);
    color: var(--beige);
    margin-bottom: 8px;
    line-height: 1;
}

.svc-desc {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 17px;
    color: rgba(245, 230, 204, 0.65);
    margin-bottom: 12px;
    line-height: 1.5;
}

.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.svc-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 1.5px;
    background: rgba(var(--accent-rgb), 0.12);
    border: 1px solid rgba(var(--accent-rgb), 0.25);
    border-radius: 4px;
    padding: 4px 10px;
    color: var(--olive-light);
    text-transform: uppercase;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink2) 100%);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg,
            rgba(var(--accent-rgb), 0.03) 0px, rgba(var(--accent-rgb), 0.03) 1px,
            transparent 1px, transparent 30px);
}

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

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--accent-rgb), 0.15);
    border: 1px solid rgba(var(--accent-rgb), 0.3);
    border-radius: 100px;
    padding: 8px 20px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--olive-light);
    text-transform: uppercase;
    margin-bottom: 28px;
}

.cta-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(42px, 6vw, 80px);
    color: var(--cream);
    line-height: 1;
    margin-bottom: 20px;
}

.cta-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 22px;
    color: rgba(245, 230, 204, 0.65);
    margin-bottom: 40px;
}

.cta-phone-big {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: clamp(28px, 4vw, 48px);
    color: var(--olive-light);
    letter-spacing: 3px;
    display: block;
    margin-bottom: 36px;
    text-decoration: none;
    transition: color 0.2s;
}

.cta-phone-big:hover {
    color: var(--cream);
}

/* ========== HOW IT WORKS ========== */
.how-works {
    background: linear-gradient(160deg, var(--dark-mid) 0%, var(--ink) 100%);
    padding: 100px 40px;
}

.how-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 60px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(var(--accent-rgb), 0.4), transparent);
}

.step {
    text-align: center;
    padding: 40px 24px;
    position: relative;
}

.step-num {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.2), rgba(var(--accent-rgb), 0.08));
    border: 1px solid rgba(var(--accent-rgb), 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 22px;
    color: var(--olive-light);
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
    transition: all 0.3s;
}

.step:hover .step-num {
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.4), rgba(var(--accent-rgb), 0.2));
    box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.3);
}

.step-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 26px;
    color: var(--beige);
}

.stat-num .fa-star {
    font-size: 0.5em;
    margin-left: 6px;
    color: var(--beige-mid);
    vertical-align: middle;
}

.step-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--cream);
    margin-bottom: 10px;
}

.step-desc {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 16px;
    color: rgba(245, 230, 204, 0.55);
    line-height: 1.6;
}

/* ========== FAQ ========== */
.faq {
    background: linear-gradient(160deg, var(--dark-bg) 0%, var(--dark-mid) 100%);
    padding: 100px 40px;
}

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

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.faq-item {
    border: 1px solid rgba(var(--accent-rgb), 0.15);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item.open {
    border-color: rgba(var(--accent-rgb), 0.4);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    cursor: pointer;
    background: rgba(16, 14, 10, 0.5);
    transition: background 0.2s;
    gap: 16px;
}

.faq-q:hover {
    background: rgba(var(--accent-rgb), 0.08);
}

.faq-q-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--cream);
}

.faq-q-icon {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(var(--accent-rgb), 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--olive-light);
    flex-shrink: 0;
    transition: all 0.3s;
    font-family: 'IBM Plex Mono', monospace;
}

.faq-item.open .faq-q-icon {
    background: rgba(var(--accent-rgb), 0.2);
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    background: rgba(var(--accent-rgb), 0.04);
    padding: 0 28px;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 20px 28px 24px;
}

.faq-a p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    color: rgba(245, 230, 204, 0.7);
    line-height: 1.7;
}

/* ========== SPECIALIZED SERVICES — 3D GLASS STACK ========== */
.glass-stack-section {
    position: relative;
    padding: 100px 40px;
    overflow: hidden;
    background: linear-gradient(160deg, var(--dark-bg) 0%, var(--dark-mid) 100%);
}

.glass-stack-inner {
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.glass-stack-header {
    margin-bottom: 56px;
}

.glass-stack-scene {
    display: grid;
    grid-template-columns: minmax(300px, 1.15fr) minmax(340px, 1fr);
    gap: 32px 44px;
    align-items: stretch;
    position: relative;
}

/* Photos — left column: top image + bottom image, matches services height */
.glass-stack-photos {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    height: 100%;
    min-height: 100%;
    align-self: stretch;
    z-index: 0;
}

.glass-stack-photo {
    position: relative;
    flex: 1 1 0;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid rgba(var(--accent-rgb), 0.3);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.5);
    min-height: 0;
}

.glass-stack-photo:first-child {
    flex: 1.05 1 0;
}

.glass-stack-photo:last-child {
    flex: 1 1 0;
}

.glass-stack-photo-img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.9) brightness(0.8);
}

/* All five glass panels — full content, staggered stack look */
.glass-stack-layers {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    z-index: 1;
    align-self: stretch;
    justify-content: flex-start;
}

.glass-stack-layer {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 100%;
    padding: 28px 40px 32px 52px;
    border-radius: 4px;
    border: 1px solid rgba(var(--accent-rgb), 0.22);
    background: rgba(16, 14, 10, 0.52);
    cursor: default;
    overflow: visible;
    opacity: 1;
    transition:
        transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.35s ease,
        border-color 0.3s ease,
        background 0.35s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

/* Cascading offset — layered stack aesthetic, all cards readable */
.glass-stack-layer:nth-child(1) {
    margin-left: 0;
    z-index: 5;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.glass-stack-layer:nth-child(2) {
    margin-left: 16px;
    width: calc(100% - 16px);
    z-index: 4;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.glass-stack-layer:nth-child(3) {
    margin-left: 32px;
    width: calc(100% - 32px);
    z-index: 3;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.glass-stack-layer:nth-child(4) {
    margin-left: 48px;
    width: calc(100% - 48px);
    z-index: 2;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.glass-stack-layer:nth-child(5) {
    margin-left: 64px;
    width: calc(100% - 64px);
    z-index: 1;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.glass-stack-layer:hover,
.glass-stack-layer:focus-within {
    border-color: rgba(var(--accent-rgb), 0.5);
    background: rgba(16, 14, 10, 0.62);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(var(--accent-rgb), 0.2);
    transform: translateY(-3px);
    z-index: 10;
}

.glass-svc-num {
    position: absolute;
    top: 20px;
    left: 24px;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 12px;
    color: var(--olive);
    letter-spacing: 2px;
}

.glass-svc-content {
    position: relative;
    padding-top: 8px;
}

.glass-svc-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(24px, 3vw, 40px);
    color: var(--beige);
    line-height: 1.05;
    margin: 0 0 12px;
}

.glass-svc-desc {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(16px, 1.8vw, 19px);
    color: rgba(245, 230, 204, 0.72);
    line-height: 1.55;
    margin: 0 0 18px;
    max-width: 52ch;
}

.glass-svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.glass-svc-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(var(--accent-rgb), 0.12);
    border: 1px solid rgba(var(--accent-rgb), 0.28);
    border-radius: 4px;
    padding: 5px 10px;
    color: var(--olive-light);
}

.glass-svc-cta {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--olive-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.4);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.glass-svc-cta:hover {
    color: var(--beige);
    border-color: var(--beige);
}

/* Legacy scroll grid — removed from markup; keep rule harmless */
.scrolls-grid {
    display: none;
}

/* ========== SERVICE AREAS ========== */
.areas {
    background: linear-gradient(160deg, var(--ink) 0%, var(--dark-mid) 100%);
    padding: 100px 40px;
}

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

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

.cities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.city-pill {
    background: rgba(var(--accent-rgb), 0.06);
    border: 1px solid rgba(var(--accent-rgb), 0.15);
    border-radius: 6px;
    padding: 12px 10px;
    text-align: center;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.5px;
    color: rgba(245, 230, 204, 0.65);
    transition: all 0.2s;
    cursor: default;
}

.city-pill:hover {
    border-color: rgba(var(--accent-rgb), 0.45);
    color: var(--cream);
    background: rgba(var(--accent-rgb), 0.12);
    transform: translateY(-2px);
}

/* ========== STATS ========== */
.stats {
    background: linear-gradient(135deg, var(--dark-mid) 0%, var(--dark-bg) 100%);
    padding: 80px 40px;
    border-top: 1px solid rgba(var(--accent-rgb), 0.15);
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.15);
}

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

.stat {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.stat+.stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(var(--accent-rgb), 0.15);
}

.stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(48px, 5vw, 72px);
    color: var(--olive-light);
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245, 230, 204, 0.5);
}

/* ========== CONTACT ========== */
.contact {
    background: linear-gradient(160deg, var(--dark-bg) 0%, var(--dark-mid) 100%);
    padding: 100px 40px;
}

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

.contact-info {}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(var(--accent-rgb), 0.1);
    border: 1px solid rgba(var(--accent-rgb), 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 18px;
    color: var(--olive-light);
    font-size: 20px;
    flex-shrink: 0;
}

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

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

.contact-item-val a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item-val a:hover {
    color: var(--olive-light);
}

.map-container {
    position: relative;
    border: 1px solid rgba(var(--accent-rgb), 0.35);
    border-radius: 10px;
    overflow: hidden;
    height: 450px;
    min-height: 320px;
    background: var(--ink2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.map-embed {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
}

.map-link {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--olive-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.4);
    padding-bottom: 2px;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
    text-transform: uppercase;
}

.map-link--overlay {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 2;
    margin: 0;
    padding: 10px 14px;
    background: rgba(16, 14, 10, 0.88);
    border: 1px solid rgba(var(--accent-rgb), 0.4);
    border-radius: 6px;
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.map-link:hover {
    color: var(--cream);
    border-color: var(--olive-light);
    background: rgba(16, 14, 10, 0.95);
}

/* ========== FOOTER ========== */
footer {
    background: var(--dark-bg);
    border-top: 1px solid rgba(var(--accent-rgb), 0.15);
    padding: 60px 40px 32px;
    position: relative;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-brand {}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
    line-height: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-logo:hover {
    opacity: 0.92;
    transform: translateY(-2px);
}

.footer-logo-img {
    display: block;
    width: clamp(140px, 18vw, 200px);
    height: auto;
    max-height: 200px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(245, 230, 204, 0.96);
    padding: 10px;
    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(var(--accent-rgb), 0.35);
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 16px;
    color: rgba(245, 230, 204, 0.5);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.social-btn {
    width: 36px;
    height: 36px;
    background: rgba(var(--accent-rgb), 0.1);
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s;
}

.social-btn:hover {
    background: rgba(var(--accent-rgb), 0.2);
    border-color: rgba(var(--accent-rgb), 0.5);
    transform: translateY(-2px);
}

.footer-col-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--olive-light);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    color: rgba(245, 230, 204, 0.55);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(var(--accent-rgb), 0.1);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 1px;
    color: rgba(245, 230, 204, 0.3);
}

.footer-hint {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: rgba(var(--accent-rgb), 0.15);
    cursor: pointer;
    transition: color 0.3s;
    user-select: none;
    position: relative;
}

.footer-hint:hover {
    color: rgba(var(--accent-rgb), 0.3);
}

/* ========== EASTER EGG ========== */
#easter-egg {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#easter-egg.show {
    display: flex;
    animation: fadeInEgg 0.3s ease;
}

@keyframes fadeInEgg {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.egg-close {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 28px;
    cursor: pointer;
    color: rgba(245, 230, 204, 0.5);
    background: none;
    border: none;
    transition: color 0.2s;
}

.egg-close:hover {
    color: var(--cream);
}

.egg-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--olive-light);
    margin-bottom: 20px;
    text-transform: uppercase;
}

#snake-canvas {
    border: 1px solid rgba(var(--accent-rgb), 0.3);
    border-radius: 4px;
    background: var(--dark-bg);
}

.egg-controls {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: rgba(245, 230, 204, 0.4);
    margin-top: 14px;
    letter-spacing: 1px;
}

#egg-score {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--olive-light);
    margin-top: 10px;
}

/* ========== CONFETTI ========== */
.confetti-piece {
    position: fixed;
    width: 8px;
    height: 8px;
    pointer-events: none;
    z-index: 9998;
    animation: confettiFall 2.5s ease-in forwards;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-20px) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

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

    /* Hero periodic — stack on tablet */
    .hero-periodic {
        padding: 100px 16px 48px;
    }

    .hero-periodic-grid {
        height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        margin-bottom: 28px;
    }

    .pt-cell {
        position: relative;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
        margin: 0;
    }

    .pt-cell--main {
        width: min(280px, 88vw);
        height: min(280px, 88vw);
    }

    .pt-cell--small {
        width: min(140px, 42vw);
        height: 120px;
    }

    .pt-cell--image {
        width: min(160px, 48vw);
        height: 140px;
    }

    .pt-legend {
        font-size: 9px;
        padding-top: 16px;
    }

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

    .about-images {
        height: 280px;
    }

    .about-img-main {
        width: 220px;
        height: 260px;
    }

    .about-img-accent {
        width: 150px;
        height: 180px;
    }

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

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

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

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .glass-stack-scene {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 20px;
    }

    .glass-stack-photos {
        position: relative;
        top: auto;
        height: auto;
        min-height: 0;
        flex-direction: column;
        gap: 14px;
        margin-bottom: 8px;
    }

    .glass-stack-photo {
        flex: none;
        min-height: 0;
        height: auto;
    }

    .glass-stack-photo-img {
        min-height: 260px;
        height: 260px;
    }

    .glass-stack-layer,
    .glass-stack-layer:nth-child(n) {
        margin-left: 0 !important;
        width: 100% !important;
    }

    .glass-stack-layer:hover,
    .glass-stack-layer:focus-within {
        transform: none;
    }
}

@media (max-width: 600px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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