:root {
    /* Logo palette — pale gold, charcoal, silver */
    --charcoal: #3c4146;
    --charcoal-dark: #2a2e32;
    --charcoal-muted: #5c656d;
    --surface: #ffffff;
    --surface-alt: #f5f6f7;
    --surface-muted: #eceef0;
    --surface-warm: #faf8f4;
    --ink: var(--surface);
    --ink2: var(--surface-alt);
    --ink3: var(--surface-muted);
    --ink4: #dde2e6;
    --slate: #8f979e;
    --slate-2: #7a8289;
    --slate-light: #a8afb5;
    --slate-soft: #5c656d;
    --slate-dark: #4e565e;
    --paper: #ffffff;
    --paper2: #f2f3f5;
    --text-light: var(--charcoal);
    --muted: #6d767e;
    --gold: #d4bc82;
    --gold-light: #ede0b8;
    --gold-dark: #b89850;
    --line: rgba(60, 65, 70, 0.12);
    --line-strong: rgba(60, 65, 70, 0.24);
    --glow: rgba(212, 188, 130, 0.45);
    --shadow: rgba(44, 48, 52, 0.08);
    --shadow-md: rgba(44, 48, 52, 0.14);
    --shadow-lg: rgba(44, 48, 52, 0.2);
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Barlow Condensed', sans-serif;
    background: var(--paper);
    color: var(--charcoal);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

img {
    display: block;
    max-width: 100%
}

.mono {
    font-family: 'IBM Plex Mono', monospace
}

.serif {
    font-family: 'Cormorant Garamond', serif
}

section {
    position: relative
}

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

.eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--gold)
}

.sec-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(34px, 5.5vw, 64px);
    line-height: .98;
    letter-spacing: -.01em;
    text-transform: uppercase;
}

/* ============ NAVBAR ============ */
.nav-shell {
    position: fixed;
    top: 18px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 0 16px;
    pointer-events: none
}

.navbar {
    pointer-events: auto;
    width: min(1100px, 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 12px 14px 12px 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid var(--line);
    box-shadow: 0 18px 50px -20px var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: background .3s, top .3s;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0
}

.nav-logo-img {
    width: auto;
    height: 88px;
    max-width: 132px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 10px;
    display: block
}

.nav-logo .mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: linear-gradient(140deg, var(--slate), var(--slate-dark));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15)
}

.nav-logo .mark svg {
    width: 21px;
    height: 21px;
    stroke: var(--text-light)
}

.nav-logo .txt {
    line-height: 1
}

.nav-logo .txt b {
    font-family: 'Barlow Condensed';
    font-weight: 800;
    font-size: 18px;
    letter-spacing: .02em;
    display: block;
    text-transform: uppercase
}

.nav-logo .txt span {
    font-family: 'IBM Plex Mono';
    font-size: 8.5px;
    letter-spacing: .28em;
    color: var(--gold);
    text-transform: uppercase
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto
}

.nav-links a {
    font-family: 'Barlow Condensed';
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--charcoal-muted);
    padding: 9px 14px;
    border-radius: 9px;
    transition: .2s
}

.nav-links a:hover {
    color: var(--charcoal-dark);
    background: rgba(212, 188, 130, 0.18)
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 11px 20px;
    border-radius: 11px;
    color: var(--charcoal-dark);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 8px 22px -8px rgba(184, 152, 80, 0.45);
    transition: .25s
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -8px rgba(184, 152, 80, 0.5)
}

.nav-cta svg {
    width: 15px;
    height: 15px
}

.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    align-items: center;
    justify-content: center
}

.burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--charcoal);
    position: relative
}

.burger span::before,
.burger span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--charcoal)
}

.burger span::before {
    top: -6px
}

.burger span::after {
    top: 6px
}

/* ============ HERO (ISOMETRIC) ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--surface-warm) 0%, var(--paper) 55%, var(--surface-alt) 100%);
    overflow: hidden;
    padding: 140px 20px 90px;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(143, 151, 158, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(143, 151, 158, 0.12) 1px, transparent 1px);
    background-size: 54px 54px;
    transform: perspective(900px) rotateX(58deg) scale(2.4);
    transform-origin: center 60%;
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 55%, #000 30%, transparent 80%);
    mask-image: radial-gradient(ellipse 70% 70% at 50% 55%, #000 30%, transparent 80%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse 60% 55% at 50% 40%, rgba(212, 188, 130, 0.2), transparent 70%)
}

.iso-stage {
    position: relative;
    z-index: 2;
    perspective: 1700px;
    width: 100%;
    max-width: 880px
}

.iso-world {
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(30deg) rotateZ(-20deg);
    transition: transform .6s ease;
    height: 520px;
}

.iso-block {
    position: absolute;
    transform-style: preserve-3d
}

.iso-face {
    transform: rotateZ(20deg) rotateX(-30deg);
    transform-style: preserve-3d
}

/* headline block */
.headline-block {
    top: 40px;
    left: 30px;
    width: 430px;
    height: 230px
}

.headline-block .surface {
    width: 100%;
    height: 100%;
    background: var(--surface);
    border-radius: 8px;
    border: 1px solid var(--line-strong);
    box-shadow: 14px 16px 0 var(--ink4), 28px 32px 0 #c8cdd2, 40px 46px 60px var(--shadow-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 26px 30px;
    position: relative;
    overflow: hidden
}

.headline-block .surface::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 188, 130, 0.2), transparent 55%)
}

.headline-block h1 {
    position: relative;
    font-family: 'Bebas Neue';
    font-weight: 400;
    font-size: clamp(40px, 5.5vw, 76px);
    line-height: .84;
    letter-spacing: .01em;
    color: var(--charcoal-dark);
}

.headline-block h1 em {
    display: block;
    font-style: normal;
    color: var(--gold-dark);
    font-size: .55em
}

.headline-block .tag {
    position: relative;
    margin-top: 14px;
    font-family: 'IBM Plex Mono';
    font-size: 10px;
    letter-spacing: .3em;
    color: var(--gold);
    text-transform: uppercase
}

/* sub block */
.sub-block {
    top: 300px;
    left: 96px;
    width: 300px;
    height: 150px
}

.sub-block .surface {
    width: 100%;
    height: 100%;
    background: var(--surface-alt);
    border-radius: 8px;
    border: 1px solid var(--line);
    box-shadow: 12px 14px 0 var(--ink4), 24px 28px 0 #c8cdd2, 34px 40px 50px var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 22px 24px
}

.sub-block p {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-size: 17px;
    color: var(--slate-soft);
    line-height: 1.3
}

.iso-cta {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 12px 22px;
    border-radius: 10px;
    color: var(--charcoal-dark);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 10px 22px -8px rgba(184, 152, 80, 0.45);
    transition: .2s
}

.iso-cta:hover {
    filter: brightness(1.08)
}

.iso-cta svg {
    width: 15px;
    height: 15px
}

/* image block */
.image-block {
    top: 10px;
    left: 470px;
    width: 330px;
    height: 300px
}

.image-block .surface {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(140deg, var(--slate), var(--slate-dark));
    border: 1px solid var(--line-strong);
    box-shadow: 14px 16px 0 var(--ink4), 28px 32px 0 #c8cdd2, 40px 46px 60px var(--shadow-lg);
}

.image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .95
}

.image-block .surface::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, transparent 40%, rgba(255, 255, 255, 0.35))
}

.image-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 2;
    font-family: 'IBM Plex Mono';
    font-size: 9px;
    letter-spacing: .2em;
    color: var(--charcoal-dark);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid var(--line-strong)
}

/* floating 2D layer */
.hero-float {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none
}

.float-phone {
    pointer-events: auto;
    position: absolute;
    left: 24px;
    bottom: 36px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 18px;
    letter-spacing: .03em;
    color: var(--charcoal-dark);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid var(--line-strong);
    padding: 13px 20px;
    border-radius: 12px;
    transition: .2s
}

.float-phone:hover {
    border-color: var(--gold)
}

.float-phone svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold)
}

.float-badge {
    position: absolute;
    right: 24px;
    top: 120px;
    text-align: right;
    font-family: 'IBM Plex Mono';
    font-size: 20px;
    letter-spacing: .25em;
    color: var(--slate-light);
    line-height: 2
}

.float-badge b {
    color: var(--gold)
}

.scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    font-family: 'IBM Plex Mono';
    font-size: 9px;
    letter-spacing: .3em;
    color: var(--muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

.scroll-hint .line {
    width: 1px;
    height: 34px;
    background: linear-gradient(var(--gold), transparent);
    animation: drop 1.8s infinite
}

@keyframes drop {
    0% {
        transform: scaleY(0);
        transform-origin: top
    }

    50% {
        transform: scaleY(1);
        transform-origin: top
    }

    51% {
        transform-origin: bottom
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom
    }
}

/* ============ TRUST STRIP ============ */
.strip {
    background: var(--ink2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.strip .wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 40px;
    justify-content: space-between;
    padding: 26px 24px
}

.strip .item {
    display: flex;
    align-items: center;
    gap: 12px
}

.strip .item svg {
    width: 26px;
    height: 26px;
    stroke: var(--gold);
    flex-shrink: 0
}

.strip .item b {
    font-family: 'Barlow Condensed';
    font-weight: 800;
    font-size: 22px;
    display: block;
    line-height: 1
}

.strip .item span {
    font-family: 'IBM Plex Mono';
    font-size: 9.5px;
    letter-spacing: .2em;
    color: var(--muted);
    text-transform: uppercase
}

/* ============ HOW WE WORK ============ */
.how {
    padding: 110px 0 120px;
    background: var(--surface-alt);
    overflow: hidden
}

.how .head {
    max-width: 680px;
    margin-bottom: 64px
}

.how .head .sec-title {
    margin-top: 16px
}

.how .head p {
    margin-top: 18px;
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-size: 20px;
    color: var(--slate-soft);
    max-width: 540px
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative
}

.steps::before {
    content: "";
    position: absolute;
    top: 38px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--slate), var(--slate), transparent)
}

.step {
    position: relative;
    padding: 0 16px;
    text-align: center
}

.step .num {
    width: 76px;
    height: 76px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
    background: radial-gradient(circle at 35% 30%, var(--ink4), var(--ink2));
    border: 1px solid var(--line-strong);
    box-shadow: 0 14px 30px -12px var(--shadow-md);
}

.step .num svg {
    width: 30px;
    height: 30px;
    stroke: var(--gold)
}

.step .num b {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--charcoal-dark);
    font-family: 'Barlow Condensed';
    font-weight: 800;
    font-size: 14px;
    display: grid;
    place-items: center
}

.step h3 {
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: .02em;
    margin-bottom: 10px
}

.step p {
    font-family: 'Barlow Condensed';
    font-weight: 400;
    font-size: 15.5px;
    color: var(--muted);
    line-height: 1.5
}

/* ============ SERVICES — AR CAMERA VIEW ============ */
.ar {
    padding: 150px 0 160px;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.ar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(to bottom, transparent, transparent 3px, rgba(154, 160, 166, 0.025) 3px, rgba(154, 160, 166, 0.025) 4px);
    pointer-events: none;
    z-index: 1
}

.ar-reticle {
    position: absolute;
    width: 34px;
    height: 34px;
    border: 2px solid var(--slate-light);
    box-shadow: 0 0 8px var(--glow);
    z-index: 3;
    opacity: .7
}

.ar-reticle.tl {
    top: 24px;
    left: 24px;
    border-right: none;
    border-bottom: none
}

.ar-reticle.tr {
    top: 24px;
    right: 24px;
    border-left: none;
    border-bottom: none
}

.ar-reticle.bl {
    bottom: 24px;
    left: 24px;
    border-right: none;
    border-top: none
}

.ar-reticle.br {
    bottom: 24px;
    right: 24px;
    border-left: none;
    border-top: none
}

.ar-cross {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: .55
}

.ar-cross::before,
.ar-cross::after {
    content: "";
    position: absolute;
    background: rgba(154, 160, 166, 0.3)
}

.ar-cross::before {
    top: 50%;
    left: calc(50% - 18px);
    width: 36px;
    height: 1px
}

.ar-cross::after {
    left: 50%;
    top: calc(50% - 18px);
    height: 36px;
    width: 1px
}

.ar-scan {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--slate-light), transparent);
    opacity: .6;
    z-index: 3;
    animation: scan 4.5s linear infinite;
    box-shadow: 0 0 12px var(--glow)
}

@keyframes scan {
    0% {
        top: 5%
    }

    100% {
        top: 95%
    }
}

.ar-hud {
    position: absolute;
    z-index: 4;
    font-family: 'IBM Plex Mono';
    font-size: 10px;
    letter-spacing: .18em;
    color: var(--slate-light);
    text-transform: uppercase
}

.ar-hud.topleft {
    top: 30px;
    left: 70px
}

.ar-hud.topright {
    top: 30px;
    right: 70px;
    display: flex;
    align-items: center;
    gap: 14px
}

.ar-hud.topright svg {
    width: 18px;
    height: 11px;
    stroke: var(--slate-light)
}

.ar-hud .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    margin-right: 7px;
    animation: pulse 1.4s infinite;
    box-shadow: 0 0 8px var(--gold)
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .25
    }
}

.ar .wrap {
    position: relative;
    z-index: 5
}

.ar .head {
    text-align: center;
    margin-bottom: 60px
}

.ar .head .eyebrow {
    justify-content: center
}

.ar .head .sec-title {
    margin-top: 16px
}

.ar-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 30px;
    align-items: stretch
}

.ar-object {
    position: relative;
    border: 1px dashed rgba(154, 160, 166, 0.5);
    border-radius: 3px;
    padding: 34px 30px 30px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(2px);
}

.ar-object .objlabel {
    position: absolute;
    top: -11px;
    left: 18px;
    background: var(--ink);
    padding: 2px 10px;
    font-family: 'IBM Plex Mono';
    font-weight: 700;
    font-size: 10.5px;
    letter-spacing: .14em;
    color: var(--gold);
    display: flex;
    align-items: center
}

.ar-object .objstats {
    margin-top: 18px;
    font-family: 'IBM Plex Mono';
    font-size: 9px;
    letter-spacing: .12em;
    color: var(--muted)
}

.ar-object .objstats .ok {
    color: var(--slate-light)
}

.ar-svc-name {
    font-family: 'Barlow Condensed';
    font-weight: 800;
    font-size: clamp(26px, 3.4vw, 46px);
    line-height: .98;
    text-transform: uppercase;
    color: var(--charcoal-dark)
}

.ar-svc-desc {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-weight: 400;
    font-size: 16px;
    color: var(--charcoal-muted);
    margin: 12px 0 16px;
    line-height: 1.45
}

.ar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px
}

.ar-tags span {
    font-family: 'IBM Plex Mono';
    font-size: 9px;
    letter-spacing: .1em;
    color: var(--slate-light);
    border: 1px solid var(--line-strong);
    padding: 5px 9px;
    border-radius: 3px;
    background: rgba(212, 188, 130, 0.12)
}

.ar-image {
    position: relative;
    border: 1px dashed rgba(154, 160, 166, 0.5);
    border-radius: 3px;
    overflow: hidden;
    min-height: 340px;
    background: linear-gradient(140deg, var(--slate), var(--slate-dark))
}

.ar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    opacity: .9
}

.ar-image .frame {
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(154, 160, 166, 0.35);
    border-radius: 2px;
    z-index: 2
}

.ar-image .ovl {
    position: absolute;
    z-index: 3;
    font-family: 'IBM Plex Mono';
    font-size: 9px;
    letter-spacing: .14em;
    color: var(--charcoal-dark);
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.8)
}

.ar-image .ovl.top {
    top: 24px;
    left: 24px
}

.ar-image .ovl.bot {
    bottom: 24px;
    left: 24px;
    color: var(--gold-light)
}

.ar-image .conf {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 3;
    font-family: 'IBM Plex Mono';
    font-size: 10px;
    color: var(--slate-light);
    text-align: right
}

.ar-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px
}

.ar-mini .ar-object {
    padding-top: 30px
}

.ar-mini .ar-svc-name {
    font-size: clamp(22px, 2.6vw, 30px)
}

/* ============ CTA BANNER ============ */
.cta {
    padding: 96px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-dark) 100%)
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 15% 30%, rgba(255, 255, 255, 0.35), transparent 45%), radial-gradient(circle at 85% 80%, rgba(60, 65, 70, 0.08), transparent 50%)
}

.cta::after {
    content: "";
    position: absolute;
    top: -40%;
    right: -5%;
    width: 420px;
    height: 420px;
    border: 60px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%
}

.cta .wrap {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 36px
}

.cta h2 {
    font-family: 'Barlow Condensed';
    font-weight: 800;
    font-size: clamp(32px, 5vw, 58px);
    line-height: .98;
    text-transform: uppercase;
    max-width: 640px;
    color: var(--charcoal-dark)
}

.cta h2 em {
    font-style: normal;
    color: var(--charcoal-dark)
}

.cta p {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-size: 19px;
    color: var(--charcoal-muted);
    margin-top: 14px
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 240px
}

.btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 18px;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 18px 30px;
    border-radius: 13px;
    background: var(--surface);
    color: var(--charcoal-dark);
    transition: .25s;
    box-shadow: 0 16px 34px -14px var(--shadow-lg)
}

.btn-light:hover {
    transform: translateY(-3px)
}

.btn-light svg {
    width: 19px;
    height: 19px
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 16px;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 16px 30px;
    border-radius: 13px;
    border: 1.5px solid var(--charcoal-dark);
    color: var(--charcoal-dark);
    transition: .25s
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.35)
}

/* ============ WHY CHOOSE US ============ */
.why {
    padding: 120px 0;
    background: var(--ink)
}

.why .head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 56px
}

.why .head p {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-size: 19px;
    color: var(--slate-soft);
    max-width: 380px
}

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

.why-card {
    background: linear-gradient(160deg, var(--surface), var(--surface-alt));
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 30px 26px;
    position: relative;
    overflow: hidden;
    transition: .3s
}

.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: .4s
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: var(--line-strong)
}

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

.why-card .ic {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: rgba(212, 188, 130, 0.2);
    border: 1px solid var(--line-strong);
    margin-bottom: 20px
}

.why-card .ic svg {
    width: 26px;
    height: 26px;
    stroke: var(--gold)
}

.why-card h3 {
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 21px;
    text-transform: uppercase;
    margin-bottom: 9px;
    letter-spacing: .01em
}

.why-card p {
    font-family: 'Barlow Condensed';
    font-weight: 400;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.5
}

.why-card.big {
    grid-column: span 3
}

.why-card.mid {
    grid-column: span 2
}

.why-card.sm {
    grid-column: span 2
}

/* ============ FAQ ============ */
.faq {
    padding: 120px 0;
    background: var(--ink2)
}

.faq .grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 60px;
    align-items: start
}

.faq .intro .sec-title {
    margin-top: 16px
}

.faq .intro p {
    margin-top: 20px;
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-size: 19px;
    color: var(--slate-soft);
    line-height: 1.5
}

.faq .intro .callbox {
    margin-top: 34px;
    padding: 22px 24px;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    background: var(--ink);
    display: flex;
    align-items: center;
    gap: 16px
}

.faq .intro .callbox svg {
    width: 30px;
    height: 30px;
    stroke: var(--gold);
    flex-shrink: 0
}

.faq .intro .callbox b {
    font-family: 'Barlow Condensed';
    font-weight: 800;
    font-size: 24px;
    display: block;
    line-height: 1
}

.faq .intro .callbox span {
    font-family: 'IBM Plex Mono';
    font-size: 9px;
    letter-spacing: .2em;
    color: var(--muted);
    text-transform: uppercase
}

.acc {
    border-top: 1px solid var(--line)
}

.acc-item {
    border-bottom: 1px solid var(--line)
}

.acc-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 4px;
    color: var(--text-light);
    font-family: 'Barlow Condensed';
    font-weight: 600;
    font-size: 20px;
    letter-spacing: .01em;
    transition: .2s
}

.acc-q:hover {
    color: var(--gold-dark)
}

.acc-q .pm {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    display: grid;
    place-items: center;
    position: relative;
    transition: .3s
}

.acc-q .pm::before,
.acc-q .pm::after {
    content: "";
    position: absolute;
    background: var(--gold);
    transition: .3s
}

.acc-q .pm::before {
    width: 12px;
    height: 2px
}

.acc-q .pm::after {
    width: 2px;
    height: 12px
}

.acc-item.open .pm {
    background: var(--gold);
    transform: rotate(180deg)
}

.acc-item.open .pm::before,
.acc-item.open .pm::after {
    background: var(--charcoal-dark)
}

.acc-item.open .pm::after {
    height: 0
}

.acc-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease
}

.acc-a p {
    font-family: 'Barlow Condensed';
    font-weight: 400;
    font-size: 16px;
    color: var(--muted);
    line-height: 1.6;
    padding: 0 4px 26px
}

/* ============ TICKETS — DETAILED SERVICES ============ */
.tickets {
    padding: 120px 0;
    background: var(--surface-alt)
}

.tickets .head {
    text-align: center;
    margin-bottom: 54px
}

.tickets .head .eyebrow {
    justify-content: center
}

.tickets .head .sec-title {
    margin-top: 16px
}

.ticket {
    width: 100%;
    max-width: 920px;
    margin: 0 auto 18px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 3px 4px 22px var(--shadow-md);
    display: flex;
    position: relative;
    transition: .45s cubic-bezier(.2, .7, .3, 1)
}

.ticket-body {
    width: 78%;
    background: var(--ink2);
    padding: 24px 30px;
    display: flex;
    align-items: center;
    gap: 28px;
    border-right: 2px dashed rgba(154, 160, 166, 0.35);
    position: relative
}

.ticket-body::after {
    content: "";
    position: absolute;
    right: -8px;
    top: -8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--ink)
}

.ticket-body::before {
    content: "";
    position: absolute;
    right: -8px;
    bottom: -8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--ink)
}

.ticket-thumb {
    width: 104px;
    height: 104px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    background: linear-gradient(140deg, var(--slate), var(--slate-dark))
}

.ticket-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.ticket-main {
    flex: 1;
    min-width: 0
}

.ticket-main h3 {
    font-family: 'Barlow Condensed';
    font-weight: 800;
    font-size: 28px;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: .01em
}

.ticket-main .desc {
    font-family: 'IBM Plex Mono';
    font-size: 11px;
    color: var(--muted);
    margin: 8px 0 10px;
    line-height: 1.5
}

.ticket-main .tg {
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}

.ticket-main .tg span {
    font-family: 'IBM Plex Mono';
    font-size: 9px;
    letter-spacing: .06em;
    color: var(--slate-light);
    border: 1px solid var(--line);
    padding: 3px 7px;
    border-radius: 3px
}

.ticket-main .venue {
    margin-top: 12px;
    font-family: 'IBM Plex Mono';
    font-size: 9px;
    letter-spacing: .12em;
    color: var(--slate-dark)
}

.ticket-main .venue b {
    color: var(--muted)
}

.ticket-stub {
    width: 22%;
    background: var(--slate);
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: .25s;
    position: relative
}

.ticket-stub:hover {
    background: var(--slate-2);
    transform: scale(1.015)
}

.ticket-stub .snum {
    font-family: 'Barlow Condensed';
    font-weight: 800;
    font-size: 38px;
    color: var(--charcoal-dark);
    transform: rotate(0deg);
    line-height: 1
}

.ticket-stub .admit {
    font-family: 'IBM Plex Mono';
    font-weight: 700;
    font-size: 10px;
    letter-spacing: .2em;
    color: var(--charcoal-dark);
    text-align: center
}

.ticket-stub .tear {
    font-family: 'IBM Plex Mono';
    font-size: 8px;
    letter-spacing: .1em;
    color: rgba(12, 13, 15, 0.55);
    display: flex;
    align-items: center;
    gap: 4px
}

.ticket-stub .book {
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .04em;
    color: var(--charcoal-dark);
    display: flex;
    align-items: center;
    gap: 6px
}

.ticket-expand {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease;
    background: var(--ink2);
    max-width: 920px;
    margin: -18px auto 18px;
    border-radius: 0 0 6px 6px;
    width: 100%
}

.ticket-expand .inner {
    padding: 30px 32px 34px;
    border-top: 1px dashed rgba(154, 160, 166, 0.25)
}

.ticket-expand .inner>p {
    font-family: 'Barlow Condensed';
    font-weight: 400;
    font-size: 16px;
    color: var(--slate-soft);
    line-height: 1.6;
    max-width: 680px
}

.ticket-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0
}

.ticket-steps span {
    font-family: 'IBM Plex Mono';
    font-size: 10px;
    letter-spacing: .06em;
    color: var(--slate-light);
    background: rgba(212, 188, 130, 0.15);
    border: 1px solid var(--line);
    padding: 8px 12px;
    border-radius: 6px
}

.ticket-imgs {
    display: flex;
    gap: 16px;
    margin: 20px 0
}

.ticket-imgs .ph {
    flex: 1;
    height: 200px;
    border-radius: 4px;
    overflow: hidden;
    background: linear-gradient(140deg, var(--slate), var(--slate-dark));
    border: 1px solid var(--line)
}

.ticket-imgs .ph img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.ticket-expand .ex-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 13px 24px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--ink)
}

.ticket-expand .ex-cta svg {
    width: 15px;
    height: 15px
}

.ticket.torn .ticket-stub {
    transform: translateX(120%) rotate(8deg);
    opacity: 0
}

.ticket.torn .ticket-body {
    width: 100%;
    border-right: none
}

/* ============ PREMIUM + SEASONAL ============ */
.premium {
    padding: 110px 0;
    background: linear-gradient(180deg, var(--ink2), var(--ink))
}

.dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px
}

.panel {
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden
}

.panel.gold {
    background: linear-gradient(150deg, rgba(212, 188, 130, 0.22), var(--surface));
    border-color: rgba(184, 152, 80, 0.35)
}

.panel.slate {
    background: linear-gradient(150deg, rgba(143, 151, 158, 0.12), var(--surface-alt))
}

.panel .ptag {
    font-family: 'IBM Plex Mono';
    font-size: 10px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold)
}

.panel h3 {
    font-family: 'Barlow Condensed';
    font-weight: 800;
    font-size: clamp(26px, 3vw, 38px);
    text-transform: uppercase;
    margin: 14px 0 8px;
    line-height: 1
}

.panel>p {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-size: 17px;
    color: var(--slate-soft);
    margin-bottom: 24px
}

.plist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.plist li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    font-family: 'Barlow Condensed';
    font-weight: 500;
    font-size: 16.5px;
    color: var(--charcoal)
}

.plist li svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    flex-shrink: 0;
    margin-top: 2px
}

.plist li small {
    display: block;
    font-weight: 400;
    font-size: 13px;
    color: var(--muted);
    margin-top: 1px
}

/* ============ SERVICE AREAS ============ */
.areas {
    padding: 110px 0;
    background: var(--ink)
}

.areas .head {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 50px
}

.areas .head .eyebrow {
    justify-content: center
}

.areas .head .sec-title {
    margin-top: 16px
}

.areas .head p {
    margin-top: 18px;
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-size: 19px;
    color: var(--slate-soft)
}

.area-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 34px
}

.area-main svg {
    width: 26px;
    height: 26px;
    stroke: var(--gold)
}

.area-main b {
    font-family: 'Barlow Condensed';
    font-weight: 800;
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: .02em
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    max-width: 1080px;
    margin: 0 auto
}

.area-grid a {
    font-family: 'Barlow Condensed';
    font-weight: 500;
    font-size: 14.5px;
    text-align: center;
    padding: 13px 8px;
    border: 1px solid var(--line);
    border-radius: 9px;
    color: var(--slate-soft);
    transition: .2s;
    background: var(--ink2)
}

.area-grid a:hover {
    border-color: var(--gold);
    color: var(--charcoal-dark);
    background: rgba(212, 188, 130, 0.2);
    transform: translateY(-2px)
}

/* ============ CONTACT ============ */
.contact {
    padding: 0;
    background: var(--ink2)
}

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

.contact-info {
    padding: 96px 56px
}

.contact-info .sec-title {
    margin-top: 16px
}

.contact-info>p {
    margin: 20px 0 36px;
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-size: 19px;
    color: var(--slate-soft);
    max-width: 440px;
    line-height: 1.5
}

.cinfo {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 28px
}

.cinfo .row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line)
}

.cinfo .row svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    flex-shrink: 0;
    margin-top: 2px
}

.cinfo .row .lbl {
    font-family: 'IBM Plex Mono';
    font-size: 9px;
    letter-spacing: .22em;
    color: var(--muted);
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px
}

.cinfo .row .val {
    font-family: 'Barlow Condensed';
    font-weight: 600;
    font-size: 18px;
    color: var(--charcoal)
}

.contact-info .btn-light {
    margin-top: 6px
}

.contact-map {
    position: relative;
    min-height: 560px;
    background: var(--ink3)
}

.contact-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(.25) contrast(1.02) brightness(1.02)
}

/* ============ FOOTER ============ */
footer {
    background: var(--ink);
    padding: 80px 0 36px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--line)
}

.foot-wave {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    line-height: .8;
    margin-bottom: 64px;
    user-select: none
}

.foot-wave span {
    font-family: 'Bebas Neue';
    font-weight: 400;
    font-size: clamp(46px, 12vw, 170px);
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(143, 151, 158, 0.5);
    background: linear-gradient(180deg, rgba(212, 188, 130, 0.25), transparent);
    -webkit-background-clip: text;
    background-clip: text;
    transition: .4s;
    display: inline-block
}

.foot-wave span.fill {
    -webkit-text-stroke: 0;
    color: var(--gold-dark)
}

.foot-wave span:hover {
    -webkit-text-stroke: 1.5px var(--gold);
    color: var(--gold);
    transform: translateY(-10px) !important
}

.foot-cols {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 40px;
    border-top: 1px solid var(--line);
    padding-top: 46px
}

.foot-brand .logo {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 16px
}

.foot-brand .logo .mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: linear-gradient(140deg, var(--slate), var(--slate-dark));
    border: 1px solid rgba(255, 255, 255, 0.1)
}

.foot-brand .logo .mark svg {
    width: 21px;
    height: 21px;
    stroke: var(--charcoal)
}

.foot-brand .logo b {
    font-family: 'Barlow Condensed';
    font-weight: 800;
    font-size: 20px;
    text-transform: uppercase
}

.foot-brand p {
    font-family: 'Barlow Condensed';
    font-weight: 400;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 300px
}

.foot-col h4 {
    font-family: 'IBM Plex Mono';
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px
}

.foot-col a,
.foot-col span {
    display: block;
    font-family: 'Barlow Condensed';
    font-weight: 500;
    font-size: 15px;
    color: var(--slate-soft);
    margin-bottom: 11px;
    transition: .2s
}

.foot-col a:hover {
    color: var(--gold-dark)
}

.foot-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    border-top: 1px solid var(--line);
    margin-top: 46px;
    padding-top: 26px;
    font-family: 'IBM Plex Mono';
    font-size: 10px;
    letter-spacing: .1em;
    color: var(--muted)
}

/* ============ RESPONSIVE ============ */
@media(max-width:1024px) {
    .why-grid {
        grid-template-columns: repeat(4, 1fr)
    }

    .why-card.big {
        grid-column: span 4
    }

    .why-card.mid,
    .why-card.sm {
        grid-column: span 2
    }

    .area-grid {
        grid-template-columns: repeat(5, 1fr)
    }

    .iso-world {
        transform: rotateX(22deg) rotateZ(-14deg) scale(.82)
    }
}

@media(max-width:860px) {
    .nav-links {
        display: none
    }

    .navbar.open .nav-links {
        display: flex;
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(18px);
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: 14px;
        gap: 4px
    }

    .navbar.open .nav-links a {
        width: 100%
    }

    .burger {
        display: flex
    }

    .nav-cta span {
        display: none
    }

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

    .steps::before {
        display: none
    }

    .ar-grid {
        grid-template-columns: 1fr
    }

    .ar-mini {
        grid-template-columns: 1fr
    }

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

    .dual {
        grid-template-columns: 1fr
    }

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

    .contact-info {
        padding: 70px 28px
    }

    .contact-map {
        min-height: 380px
    }

    .foot-cols {
        grid-template-columns: 1fr 1fr
    }

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

@media(max-width:760px) {
    .iso-stage {
        max-width: 520px
    }

    .iso-world {
        transform: none;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 24px
    }

    .iso-block {
        position: relative;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        height: auto !important
    }

    .iso-face {
        transform: none
    }

    .headline-block .surface,
    .sub-block .surface {
        height: auto;
        box-shadow: 8px 10px 0 var(--ink4), 18px 22px 40px var(--shadow-lg)
    }

    .image-block .surface {
        height: 240px
    }

    .float-badge {
        display: none
    }

    .ticket-stub .snum {
        font-size: 30px
    }

    .ticket-body {
        padding: 18px;
        gap: 16px
    }

    .ticket-thumb {
        width: 78px;
        height: 78px
    }

    .ticket-main h3 {
        font-size: 22px
    }

    .ticket-imgs {
        flex-direction: column
    }
}

@media(max-width:520px) {
    .why-grid {
        grid-template-columns: 1fr
    }

    .why-card.big,
    .why-card.mid,
    .why-card.sm {
        grid-column: span 1
    }

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

    .cta .wrap {
        flex-direction: column;
        align-items: flex-start
    }

    .strip .wrap {
        justify-content: flex-start;
        gap: 18px 26px
    }
}