:root {
    /* Koning logo palette */
    --logo-orange: #E87820;
    --logo-orange-bright: #FF9A2E;
    --logo-orange-deep: #B85A12;
    --logo-burnt: #6B3410;
    --logo-copper: #B87333;
    --logo-gold: #C9955C;
    --logo-charcoal: #1A1A1A;
    --logo-ink: #12100E;

    --bg: #1A1814;
    --bg2: #1F1B16;
    --ink: #12100E;
    --ink2: #1A1612;
    --ink3: #221C16;
    --surface: #1E1914;
    --surface2: #261E16;
    --accent: var(--logo-orange);
    --accent-2: var(--logo-orange-bright);
    --accent-deep: var(--logo-orange-deep);
    --accent-soft: rgba(232, 120, 32, 0.14);
    --accent-line: rgba(232, 120, 32, 0.30);
    --accent-faint: rgba(232, 120, 32, 0.08);
    --accent-glow: rgba(255, 154, 46, 0.42);
    --gold: var(--logo-gold);
    --gold-line: rgba(201, 149, 92, 0.38);
    --cream: #FFF8F0;
    --cream-2: #F5E8D8;
    --text: #FFF8F0;
    --muted: rgba(255, 248, 240, 0.62);
    --faint: rgba(255, 248, 240, 0.34);
    --ghost: rgba(255, 248, 240, 0.10);
    --on-accent: #1A1008;
}

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

html {
    scroll-behavior: smooth
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Cormorant Garamond', serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--accent);
    color: var(--cream);
}

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

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

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

.wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px
}

/* metallic garage-panel visual (no external image needed) */
.panel {
    background:
        repeating-linear-gradient(180deg,
            rgba(255, 255, 255, 0.05) 0px,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px,
            transparent 14px),
        repeating-linear-gradient(180deg,
            #2a1f16 0px, #3d2e22 22px, #1f1610 44px),
        linear-gradient(105deg, var(--ink) 0%, #3d3028 40%, #4a3828 50%, #2a2018 60%, var(--logo-ink) 100%);
    position: relative;
}

.panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 30%, var(--accent-soft) 50%, transparent 70%);
    mix-blend-mode: screen;
}

/* ================= NAVBAR ================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 48px;
    transition: padding .45s cubic-bezier(.4, 0, .2, 1), background .45s, backdrop-filter .45s, border-color .45s;
    border-bottom: 1px solid transparent;
}

.nav.compact {
    padding: 13px 40px;
    background: rgba(26, 22, 18, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--ghost);
}

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

.nav .logo-img {
    display: block;
    height: 114px;
    width: auto;
    max-width: min(260px, 58vw);
    object-fit: contain;
    object-position: left center;
    background: #fff;
    border-radius: 6px;
    padding: 5px 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.28);
    transition: height .45s cubic-bezier(.4, 0, .2, 1), padding .45s, box-shadow .45s;
}

.nav.compact .logo-img {
    height: 114px;
    padding: 4px 10px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.22);
}

.nav .logo:hover .logo-img {
    box-shadow: 0 4px 22px rgba(232, 120, 32, 0.35);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    transition: gap .45s;
}

.nav.compact .nav-links {
    gap: 16px
}

.nav-links a.lnk {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    position: relative;
    transition: color .3s;
}

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

.nav-links a.lnk::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 1px;
    width: 0;
    background: var(--accent);
    transition: width .3s;
}

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

.nav .dot {
    display: none;
    color: var(--accent);
    font-size: 8px;
    line-height: 1;
}

.nav.compact .dot {
    display: inline-block
}

.nav .quote {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    background: var(--accent);
    color: var(--on-accent);
    padding: 12px 22px;
    border-radius: 2px;
    transition: all .3s;
}

.nav.compact .quote {
    padding: 9px 17px;
    font-size: 11px
}

.nav .quote:hover {
    background: var(--accent-2);
    box-shadow: 0 0 24px var(--accent-glow)
}

.nav-toggle {
    display: none
}

/* ================= HERO — SHUTTER REVEAL ================= */
.hero {
    min-height: 100vh;
    width: 100%;
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

.hero-inner {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    opacity: 0;
    transform: translateY(18px);
}

.hero.is-revealed .hero-inner {
    animation: heroContentIn 900ms cubic-bezier(.22, 1, .36, 1) 260ms forwards;
}

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

.hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 90% at 50% 40%, var(--accent-soft), transparent 55%);
    pointer-events: none;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    opacity: .45;
    background-image:
        linear-gradient(var(--ghost) 1px, transparent 1px),
        linear-gradient(90deg, var(--ghost) 1px, transparent 1px);
    background-size: 90px 90px;
    -webkit-mask-image: radial-gradient(circle at 50% 45%, #000 10%, transparent 62%);
    mask-image: radial-gradient(circle at 50% 45%, #000 10%, transparent 62%);
}

.hero-layout {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 540px);
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
    width: min(1240px, 94%);
    padding: 120px 0 100px;
}

.hero-copy {
    text-align: left;
    align-self: center;
}

.hero-visuals {
    width: 100%;
    max-width: 540px;
    justify-self: end;
    align-self: center;
}

.hero-visuals-stack {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    width: 100%;
    height: clamp(400px, 36vw, 500px);
    position: relative;
}

.hero-photo {
    position: relative;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(201, 149, 92, 0.28);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
    background: var(--ink2);
    opacity: 0;
    transform: translateY(20px);
    min-height: 0;
    min-width: 0;
}

.hero.is-revealed .hero-photo--primary {
    animation: heroPhotoIn 900ms cubic-bezier(.22, 1, .36, 1) 420ms forwards;
}

.hero.is-revealed .hero-photo--secondary {
    animation: heroPhotoIn 900ms cubic-bezier(.22, 1, .36, 1) 580ms forwards;
}

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

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.02);
    transition: transform 6s ease;
}

.hero-photo:hover img {
    transform: scale(1.05);
}

.hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.06) 0%, rgba(5, 5, 5, 0.58) 100%);
    pointer-events: none;
}

.hero-photo--primary {
    grid-column: 5 / 13;
    grid-row: 1 / 8;
    z-index: 1;
}

.hero-photo--secondary {
    grid-column: 1 / 7;
    grid-row: 6 / 13;
    z-index: 2;
    border-color: rgba(201, 149, 92, 0.42);
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(255, 248, 240, 0.06);
}

.hero-photo--primary img {
    object-position: center 38%;
}

.hero-photo--secondary img {
    object-position: center center;
}

.photo-cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 10px 14px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 8px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 248, 240, 0.78);
    pointer-events: none;
    background: linear-gradient(0deg, rgba(5, 5, 5, 0.72) 0%, transparent 100%);
}

.hero-glass-card {
    grid-column: 6 / 13;
    grid-row: 8 / 13;
    z-index: 3;
    align-self: end;
    justify-self: stretch;
    opacity: 0;
    transform: translateY(16px);
    min-width: 0;
}

.hero.is-revealed .hero-glass-card {
    animation: heroPhotoIn 800ms cubic-bezier(.22, 1, .36, 1) 720ms forwards;
}

.glass-card-inner {
    background: rgba(255, 248, 240, 0.05);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(201, 149, 92, 0.22);
    border-radius: 6px;
    padding: 28px 26px 24px;
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 248, 240, 0.08);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    height: 100%;
    justify-content: center;
}

.hero-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: rgba(201, 149, 92, 0.75);
    margin-bottom: 22px;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: clamp(72px, 11vw, 148px);
    line-height: .78;
    letter-spacing: .02em;
    color: var(--cream);
    text-shadow: 0 0 80px rgba(232, 120, 32, 0.15);
}

.hero-title-line {
    display: block;
}

.hero-title-line.accent {
    color: var(--accent);
}

.hero-tagline {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-size: clamp(17px, 2vw, 22px);
    color: var(--muted);
    margin-top: 24px;
    max-width: 34ch;
    line-height: 1.45;
}

.glass-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(201, 149, 92, 0.7);
}

.glass-phone {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: clamp(22px, 3vw, 28px);
    color: var(--cream);
    letter-spacing: .04em;
}

.glass-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    background: var(--accent);
    color: var(--on-accent);
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: 11px;
    padding: 14px 24px;
    border-radius: 2px;
    transition: all .3s;
    align-self: stretch;
    text-align: center;
}

.glass-cta:hover {
    background: var(--on-accent);
    color: var(--accent);
    box-shadow: inset 0 0 0 1px var(--accent), 0 0 30px var(--accent-glow);
}

.glass-meta {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: .12em;
    color: var(--faint);
    margin-top: 4px;
}

.hero-address {
    position: absolute;
    bottom: 26px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 5;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: 9px;
    color: rgba(255, 248, 240, 0.28);
    letter-spacing: .32em;
    text-transform: uppercase;
}

.hero-scroll {
    position: absolute;
    bottom: 24px;
    right: 40px;
    z-index: 5;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: .25em;
    color: var(--faint);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 9px;
}

.hero-scroll .ln {
    width: 30px;
    height: 1px;
    background: var(--accent);
    animation: scrollLn 2s infinite;
}

@keyframes scrollLn {

    0%,
    100% {
        opacity: .3;
        transform: scaleX(.5);
    }

    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* shutter slats */
@keyframes shutter-left {
    from {
        transform: translateX(0);
    }

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

@keyframes shutter-right {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(101%);
    }
}

.hero-shutter {
    position: absolute;
    inset: 0;
    z-index: 50;
    display: flex;
    flex-direction: column;
    pointer-events: none;
}

.hero-shutter.is-done {
    visibility: hidden;
}

.shutter-slat {
    flex: 0 0 calc(100vh / 8);
    height: calc(100vh / 8);
    width: 100%;
    position: relative;
    background: linear-gradient(to right, var(--ink2), var(--ink));
    transform: translateX(0);
    will-change: transform;
}

.hero-shutter:not(.is-open) .shutter-slat {
    animation: none;
    transform: translateX(0);
}

.shutter-slat::before,
.shutter-slat::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--logo-gold);
    opacity: 0.3;
    z-index: 1;
}

.shutter-slat::before {
    top: 0;
}

.shutter-slat::after {
    bottom: 0;
}

.hero-shutter.is-open .shutter-slat:nth-child(odd) {
    animation: shutter-left 760ms ease forwards;
}

.hero-shutter.is-open .shutter-slat:nth-child(even) {
    animation: shutter-right 760ms ease forwards;
}

.hero-shutter.is-open .shutter-slat:nth-child(1) {
    animation-delay: 0ms;
}

.hero-shutter.is-open .shutter-slat:nth-child(2) {
    animation-delay: 80ms;
}

.hero-shutter.is-open .shutter-slat:nth-child(3) {
    animation-delay: 160ms;
}

.hero-shutter.is-open .shutter-slat:nth-child(4) {
    animation-delay: 240ms;
}

.hero-shutter.is-open .shutter-slat:nth-child(5) {
    animation-delay: 320ms;
}

.hero-shutter.is-open .shutter-slat:nth-child(6) {
    animation-delay: 400ms;
}

.hero-shutter.is-open .shutter-slat:nth-child(7) {
    animation-delay: 480ms;
}

.hero-shutter.is-open .shutter-slat:nth-child(8) {
    animation-delay: 560ms;
}

.shutter-replay {
    position: absolute;
    bottom: 24px;
    left: 40px;
    z-index: 55;
    background: none;
    border: none;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 248, 240, 0.3);
    cursor: pointer;
    padding: 6px 0;
    transition: color .3s;
}

.shutter-replay:hover {
    color: rgba(255, 248, 240, 0.65);
}

@media (prefers-reduced-motion: reduce) {
    .hero-shutter {
        display: none;
    }

    .hero-inner {
        opacity: 1;
        transform: none;
    }

    .hero-photo,
    .hero-glass-card {
        opacity: 1;
        transform: none;
        animation: none !important;
    }

    .shutter-replay {
        display: none;
    }
}

/* shared section label */
.sec-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 14px;
}

.sec-tag::before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--accent)
}

/* ================= ABOUT — BENTO ================= */
.about {
    padding: 130px 0 90px;
    background: var(--bg)
}

.about .sec-tag {
    margin-bottom: 34px
}

.bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 170px;
    gap: 14px;
}

.cell {
    border: 1px solid var(--ghost);
    border-radius: 4px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: transform .4s, border-color .4s;
}

.cell:hover {
    transform: translateY(-4px);
    border-color: var(--accent-line)
}

.cell .vnum {
    position: absolute;
    top: 18px;
    right: 22px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--faint);
    letter-spacing: .2em;
}

.cell-mission {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(155deg, var(--surface2), var(--ink2));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cell-mission .m-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .3em;
    color: var(--accent);
    text-transform: uppercase
}

.cell-mission h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: clamp(28px, 3.1vw, 46px);
    line-height: 1.08;
    color: var(--cream);
}

.cell-mission h2 em {
    font-style: italic;
    color: var(--accent)
}

.cell-val {
    background: var(--ink2)
}

.cell-val.alt {
    background: var(--surface2)
}

.cell-val.accent {
    background: var(--accent);
    color: var(--on-accent)
}

.cell-val .vword {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(34px, 3.6vw, 54px);
    line-height: .92;
    letter-spacing: .02em;
    color: var(--cream);
}

.cell-val.accent .vword {
    color: var(--on-accent)
}

.cell-val .vdesc {
    font-size: 15px;
    color: var(--muted);
    margin-top: 8px;
    line-height: 1.35
}

.cell-val.accent .vdesc {
    color: rgba(10, 10, 10, 0.7)
}

.cell-visual {
    grid-column: span 2;
    grid-row: span 2;
    padding: 0;
    border: 1px solid var(--accent-line);
    position: relative;
    overflow: hidden;
    min-height: 0;
}

.cell-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    display: block;
    transition: transform 5s ease;
}

.cell-visual:hover .cell-visual-img {
    transform: scale(1.04);
}

.cell-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5, 5, 5, 0.78) 0%, rgba(5, 5, 5, 0.08) 50%, transparent 100%);
    pointer-events: none;
}

.cell-visual .vis-cap {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 20px;
    z-index: 2;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: rgba(255, 248, 240, 0.88);
}

.cell-wide {
    grid-column: span 2;
    grid-row: span 2;
    background: var(--ink3);
    display: flex;
    align-items: center
}

.cell-wide p {
    font-size: 17px;
    line-height: 1.5;
    color: var(--muted)
}

.cell-wide p strong {
    color: var(--cream);
    font-weight: 600
}

/* ================= STATS ================= */
.stats {
    padding: 60px 0 110px;
    background: var(--bg)
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--accent-line);
}

.stat {
    padding: 42px 26px;
    border-right: 1px solid var(--ghost);
    position: relative
}

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

.stat .num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 6vw, 88px);
    line-height: .9;
    color: var(--accent);
    letter-spacing: .01em;
}

.stat .lbl {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 10px
}

/* ================= SERVICES — MAGAZINE SPREAD ================= */
.mag {
    background: var(--surface2);
    position: relative;
    padding: 90px 0 120px;
    overflow: hidden;
}

.mag-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative
}

.mag-runhead {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--accent-line);
    padding-bottom: 14px;
    margin-bottom: 60px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--muted);
}

.mag-runhead .accent {
    color: var(--accent)
}

.mag-block {
    position: relative;
    margin-bottom: 74px
}

/* S1 */
.s1 {
    display: grid;
    grid-template-columns: 1fr 210px;
    gap: 30px;
    align-items: end;
    border-bottom: 1px solid var(--ghost);
    padding-bottom: 36px
}

.s1 .s1-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(58px, 9.5vw, 108px);
    line-height: .86;
    letter-spacing: -0.02em;
    color: var(--cream)
}

.s1 .s1-name span {
    color: var(--accent)
}

.s1 .s1-desc {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    line-height: 1.45;
    color: var(--muted);
    border-left: 1px solid var(--accent);
    padding-left: 16px
}

.s1 .s1-no {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--accent);
    letter-spacing: .2em;
    display: block;
    margin-bottom: 8px
}

/* S2 bleed image + two col text */
.s2 {
    position: relative;
    min-height: 300px
}

.s2 .bleed {
    position: absolute;
    left: -40px;
    top: 0;
    width: 46%;
    height: 300px;
    border: 1px solid var(--accent-line);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.s2 .bleed-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 5s ease;
}

.s2 .bleed:hover .bleed-img {
    transform: scale(1.04);
}

.s2 .bleed::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.15) 0%, rgba(5, 5, 5, 0.45) 100%);
    pointer-events: none;
}

.s2 .s2-body {
    margin-left: calc(46% - 12px);
    columns: 2;
    column-gap: 30px;
    column-rule: 1px solid var(--accent-line);
    padding-top: 4px
}

.s2 .s2-body h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 40px;
    color: var(--cream);
    column-span: all;
    margin-bottom: 6px
}

.s2 .s2-body h3 .no {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--accent);
    letter-spacing: .2em;
    vertical-align: super
}

.s2 .s2-body p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--muted);
    margin-bottom: 12px
}

/* S3 pull quote */
.s3 {
    text-align: center;
    padding: 18px 0
}

.s3 .rule {
    height: 1px;
    background: var(--accent);
    width: 100%;
    margin: 0 auto 26px;
    opacity: .5
}

.s3 .rule.b {
    margin: 26px auto 0
}

.s3 blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 700;
    font-size: clamp(26px, 3.6vw, 40px);
    line-height: 1.18;
    color: var(--accent)
}

.s3 cite {
    font-family: 'IBM Plex Mono', monospace;
    font-style: normal;
    font-size: 11px;
    letter-spacing: .22em;
    color: var(--muted);
    text-transform: uppercase;
    display: block;
    margin-top: 16px
}

/* S4 three columns */
.s4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--ghost);
    padding-top: 30px
}

.s4 .col {
    padding: 0 26px;
    border-right: 1px solid var(--accent-line)
}

.s4 .col:first-child {
    padding-left: 0
}

.s4 .col:last-child {
    border-right: none;
    padding-right: 0
}

.s4 .col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--cream);
    margin-bottom: 8px;
    letter-spacing: .01em
}

.s4 .col h4 .no {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--accent);
    letter-spacing: .2em;
    display: block;
    margin-bottom: 4px
}

.s4 .col p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    line-height: 1.5;
    color: var(--muted)
}

/* S5 big number */
.s5 {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--ghost);
    padding-top: 40px
}

.s5 .bignum {
    position: absolute;
    right: -10px;
    top: -30px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(150px, 22vw, 260px);
    line-height: .8;
    color: rgba(232, 120, 32, 0.08);
    z-index: 0;
    pointer-events: none
}

.s5 .s5-fg {
    position: relative;
    z-index: 1;
    max-width: 60%
}

.s5 .s5-fg .no {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--accent);
    letter-spacing: .2em
}

.s5 .s5-fg h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(42px, 6vw, 72px);
    line-height: .92;
    color: var(--cream);
    margin: 6px 0 12px
}

.s5 .s5-fg p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    line-height: 1.5;
    color: var(--muted)
}

/* ================= SERVICE AREA ================= */
.area {
    padding: 120px 0;
    background: var(--bg);
    position: relative
}

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

.area-head h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(46px, 6vw, 84px);
    line-height: .9;
    color: var(--cream);
    letter-spacing: .01em
}

.area-head h2 span {
    color: var(--accent)
}

.area-head .lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    line-height: 1.55;
    color: var(--muted)
}

.area-body {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px
}

.area-cities {
    column-count: 3;
    column-gap: 24px
}

.area-cities .city {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--cream-2);
    padding: 9px 0;
    border-bottom: 1px solid var(--ghost);
    break-inside: avoid;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color .3s;
    cursor: default;
}

.area-cities .city:hover {
    color: var(--accent)
}

.area-cities .city .pin {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex: none
}

.area-cities .city.main {
    color: var(--accent);
    font-weight: 700
}

.area-side {
    border: 1px solid var(--accent-line);
    padding: 34px;
    background: var(--ink2);
    border-radius: 4px
}

.area-side .mono-sm {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .24em;
    color: var(--accent);
    text-transform: uppercase
}

.area-side h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 26px;
    color: var(--cream);
    margin: 14px 0 14px
}

.area-side p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.55;
    color: var(--muted);
    margin-bottom: 14px
}

.area-side .coord {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--faint);
    letter-spacing: .1em;
    margin-top: 6px
}

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

.why .sec-tag {
    margin-bottom: 40px
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--ghost);
    border: 1px solid var(--ghost)
}

.why-card {
    background: var(--bg);
    padding: 40px 30px;
    position: relative;
    transition: background .4s
}

.why-card:hover {
    background: var(--surface2)
}

.why-card .icn {
    color: var(--accent);
    margin-bottom: 24px
}

.why-card .wno {
    position: absolute;
    top: 26px;
    right: 26px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--faint);
    letter-spacing: .2em
}

.why-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--cream);
    margin-bottom: 12px;
    letter-spacing: .01em
}

.why-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--muted)
}

/* ================= CLOCK SERVICES ================= */
.clock-sec {
    padding: 120px 0;
    background: var(--bg);
    overflow: hidden
}

.clock-sec .sec-tag {
    margin-bottom: 14px
}

.clock-sec .sec-h {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 5vw, 72px);
    color: var(--cream);
    letter-spacing: .01em;
    margin-bottom: 50px
}

.clock-sec .sec-h span {
    color: var(--accent)
}

.clock-layout {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 50px;
    align-items: center;
    position: relative
}

.clock-stage {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    aspect-ratio: 1/1
}

.clock-stage svg {
    width: 100%;
    height: 100%;
    display: block
}

.outer-c {
    fill: none;
    stroke: var(--accent-line);
    stroke-width: 2
}

.inner-c {
    fill: var(--ink2);
    stroke: var(--accent);
    stroke-width: 2
}

.tick {
    stroke: var(--ghost);
    stroke-width: 1
}

.spoke {
    stroke: rgba(232, 120, 32, 0.16);
    stroke-width: 1;
    transition: stroke .5s, stroke-width .5s
}

.spoke.on {
    stroke: var(--accent);
    stroke-width: 2;
    stroke-dasharray: 4 4
}

.hand {
    stroke: var(--accent);
    stroke-width: 2;
    transform-origin: 300px 300px;
    transition: transform 1s cubic-bezier(.4, 0, .2, 1)
}

.hand-tip {
    fill: var(--accent);
    transition: transform 1s cubic-bezier(.4, 0, .2, 1);
    transform-origin: 300px 300px
}

.clock-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 33%;
    height: 33%;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 7px;
}

.clock-center .cc-icon {
    color: var(--accent)
}

.clock-center .cc-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: clamp(14px, 1.5vw, 18px);
    color: var(--cream);
    line-height: 1;
    letter-spacing: .02em;
    padding: 0 8px
}

.clock-center .cc-no {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 10px;
    color: var(--accent);
    letter-spacing: .2em
}

.clk-label {
    position: absolute;
    transform: translate(-50%, -50%);
    background: var(--ink3);
    border: 1px solid var(--accent-line);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .05em;
    color: var(--cream-2);
    padding: 7px 13px;
    border-radius: 40px;
    cursor: pointer;
    white-space: nowrap;
    transition: all .4s;
    text-transform: uppercase;
}

.clk-label:hover {
    border-color: var(--accent)
}

.clk-label.active {
    background: var(--accent);
    color: var(--on-accent);
    border-color: var(--accent);
    box-shadow: 0 0 22px var(--accent-glow)
}

.clock-panel {
    position: relative;
    min-height: 280px
}

.cp-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .5s, transform .5s;
    pointer-events: none
}

.cp-item.show {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    position: relative
}

.cp-item .cp-no {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .24em;
    color: var(--accent)
}

.cp-item h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(30px, 3.6vw, 46px);
    color: var(--cream);
    margin: 8px 0 14px;
    letter-spacing: .01em
}

.cp-item p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    line-height: 1.55;
    color: var(--muted);
    margin-bottom: 18px
}

.cp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px
}

.cp-tags span {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid var(--accent-line);
    padding: 5px 11px;
    border-radius: 30px
}

.cp-cta {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 9px
}

.cp-cta .arr {
    width: 22px;
    height: 1px;
    background: var(--accent);
    transition: width .3s
}

.cp-cta:hover .arr {
    width: 36px
}

.clock-anchor {
    position: absolute;
    width: 150px;
    height: 188px;
    border: 1px solid var(--accent-line);
    z-index: 0;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.42);
}

.clock-anchor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 5s ease;
}

.clock-anchor.tr .clock-anchor-img {
    object-position: center 38%;
}

.clock-anchor.br .clock-anchor-img {
    object-position: center 42%;
}

.clock-anchor:hover .clock-anchor-img {
    transform: scale(1.06);
}

.clock-anchor::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.05) 0%, rgba(5, 5, 5, 0.35) 100%);
    pointer-events: none;
}

.clock-anchor.tr {
    top: -30px;
    right: -10px
}

.clock-anchor.br {
    bottom: -30px;
    right: -10px
}

/* ================= SPINE PREMIUM ================= */
.spine-sec {
    background: var(--ink);
    padding: 110px 0 60px;
    position: relative
}

.spine-sec .sec-tag {
    justify-content: center;
    margin-bottom: 12px
}

.spine-sec .sec-h {
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 5vw, 72px);
    color: var(--cream);
    margin-bottom: 70px;
    letter-spacing: .01em
}

.spine-sec .sec-h span {
    color: var(--accent)
}

.spine-wrap {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px
}

.spine-track {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(232, 120, 32, 0.15);
    transform: translateX(-50%)
}

.spine-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background: var(--accent);
    box-shadow: 0 0 14px var(--accent-glow)
}

.spine-block {
    position: relative;
    width: 44%;
    padding: 38px 34px;
    background: var(--ink3);
    border: 1px solid rgba(232, 120, 32, 0.12);
    border-radius: 3px;
    margin-bottom: 64px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s, transform .7s
}

.spine-block.in {
    opacity: 1;
    transform: none
}

.spine-block.left {
    margin-right: auto
}

.spine-block.right {
    margin-left: auto
}

.spine-block .pno {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 60px;
    line-height: .8;
    color: rgba(232, 120, 32, 0.25);
    position: absolute;
    top: 20px;
    right: 26px
}

.spine-block .ptag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .24em;
    color: var(--accent);
    text-transform: uppercase
}

.spine-block h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: var(--cream);
    margin: 12px 0 10px;
    letter-spacing: .01em
}

.spine-block p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.55;
    color: var(--muted);
    margin-bottom: 16px;
    max-width: 90%
}

.spine-block .b-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 16px
}

.spine-block .b-tags span {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    border: 1px solid var(--ghost);
    padding: 4px 9px;
    border-radius: 20px
}

.spine-block .b-cta {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--accent)
}

.spine-block .b-img {
    width: 100%;
    height: 150px;
    border: none;
    margin-top: 6px;
    position: relative
}

.spine-block .b-img .panel {
    width: 100%;
    height: 100%
}

.spine-node {
    position: absolute;
    top: 46px;
    width: 13px;
    height: 13px;
    background: var(--ink);
    border: 2px solid var(--accent);
    border-radius: 50%;
    transition: all .5s
}

.spine-block.in .spine-node {
    background: var(--accent);
    box-shadow: 0 0 16px var(--accent-glow)
}

.spine-block.left .spine-node {
    right: -72px
}

.spine-block.right .spine-node {
    left: -72px
}

.spine-conn {
    position: absolute;
    top: 52px;
    height: 1px;
    background: transparent;
    border-top: 1px dashed var(--accent-line);
    width: 0;
    transition: width .8s ease
}

.spine-block.in .spine-conn {
    width: 60px
}

.spine-block.left .spine-conn {
    right: -66px
}

.spine-block.right .spine-conn {
    left: -66px
}

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

.contact .sec-tag {
    margin-bottom: 34px
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--accent-line);
    border-radius: 6px;
    overflow: hidden
}

.contact-info {
    padding: 54px 48px;
    background: var(--ink2)
}

.contact-info h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(38px, 4.4vw, 62px);
    color: var(--cream);
    line-height: .92;
    margin-bottom: 26px;
    letter-spacing: .01em
}

.contact-info h2 span {
    color: var(--accent)
}

.cinfo-row {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--ghost)
}

.cinfo-row:last-of-type {
    border-bottom: none
}

.cinfo-row .ci-ic {
    color: var(--accent);
    flex: none;
    margin-top: 3px
}

.cinfo-row .ci-k {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--faint);
    margin-bottom: 5px
}

.cinfo-row .ci-v {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--cream)
}

.cinfo-row .ci-v a:hover {
    color: var(--accent)
}

.contact-cta {
    margin-top: 30px
}

.contact-cta a {
    display: inline-block;
    background: var(--accent);
    color: var(--on-accent);
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 16px 34px;
    border-radius: 2px;
    transition: all .3s
}

.contact-cta a:hover {
    background: var(--accent-2);
    box-shadow: 0 0 26px var(--accent-glow)
}

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

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) invert(0.9) contrast(0.85) sepia(0.35) hue-rotate(-12deg) saturate(2.4);
    position: absolute;
    inset: 0
}

.map-badge {
    position: absolute;
    left: 24px;
    top: 24px;
    z-index: 2;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid var(--accent-line);
    padding: 14px 18px;
    border-radius: 3px;
    backdrop-filter: blur(6px)
}

.map-badge .mb-k {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: .24em;
    color: var(--accent);
    text-transform: uppercase
}

.map-badge .mb-v {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--cream);
    margin-top: 4px
}

.map-badge .mb-c {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--faint);
    margin-top: 4px;
    letter-spacing: .08em
}

/* ================= FOOTER — WORLD GRID ================= */
.footer {
    position: relative;
    background: var(--logo-ink);
    padding: 90px 0 36px;
    overflow: hidden;
    border-top: 1px solid var(--accent-line)
}

.footer-map {
    position: absolute;
    inset: 0;
    opacity: .16;
    z-index: 0
}

.footer-map svg {
    width: 100%;
    height: 100%
}

.footer .wrap {
    position: relative;
    z-index: 2
}

.footer-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: clamp(24px, 4vw, 48px);
    margin-bottom: 56px;
}

.footer-head-copy {
    flex: 1;
    min-width: 0;
}

.footer-head-aside {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 18px;
}

.footer-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 11vw, 150px);
    line-height: .86;
    color: var(--cream);
    letter-spacing: .01em;
    margin-bottom: 8px
}

.footer-brand span {
    color: var(--accent)
}

.footer-op {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-size: clamp(18px, 2.4vw, 30px);
    color: var(--muted);
    margin-bottom: 0;
    max-width: 22ch;
}

.footer-op span {
    color: var(--accent)
}

.footer-logo {
    display: block;
    line-height: 0;
    text-decoration: none;
    transition: transform .35s ease, box-shadow .35s ease;
}

.footer-logo:hover {
    transform: translateY(-3px);
}

.footer-logo-img {
    display: block;
    height: clamp(76px, 9vw, 108px);
    width: auto;
    max-width: min(280px, 38vw);
    object-fit: contain;
    background: #fff;
    border-radius: 6px;
    padding: 8px 14px;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(201, 149, 92, 0.24);
    transition: box-shadow .35s ease;
}

.footer-logo:hover .footer-logo-img {
    box-shadow: 0 14px 44px rgba(232, 120, 32, 0.28);
}

.footer-cols {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--ghost)
}

.footer-col h4 {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px
}

.footer-col a,
.footer-col p {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 11px;
    transition: color .3s
}

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

.footer-col .big {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 18px;
    color: var(--cream);
    letter-spacing: .02em
}

.footer-coords {
    text-align: right;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .18em;
    color: var(--faint);
    line-height: 1.9
}

.footer-coords .c {
    color: var(--accent)
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 26px;
    flex-wrap: wrap;
    gap: 14px
}

.footer-bottom p {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .16em;
    color: var(--faint);
    text-transform: uppercase
}

.footer-bottom .dot {
    color: var(--accent)
}

/* reveal */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .8s cubic-bezier(.2, .7, .2, 1), transform .8s cubic-bezier(.2, .7, .2, 1)
}

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

/* ================= RESPONSIVE ================= */
@media (max-width:1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 48px;
        padding-top: 110px;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-tagline {
        margin-inline: auto;
    }

    .hero-visuals {
        justify-self: center;
        max-width: min(520px, 92vw);
    }

    .bento {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px
    }

    .cell-mission {
        grid-column: span 2
    }

    .cell-visual {
        grid-column: span 2
    }

    .cell-wide {
        grid-column: span 2
    }

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

    .stat:nth-child(2) {
        border-right: none
    }

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

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

    .clock-anchor {
        display: none
    }

    .area-body {
        grid-template-columns: 1fr;
        gap: 34px
    }
}

@media (max-width:780px) {

    .wrap,
    .mag-inner,
    .spine-wrap {
        padding: 0 22px
    }

    .nav {
        padding: 18px 22px
    }

    .nav.compact {
        padding: 11px 22px
    }

    .nav .logo-img {
        height: 44px;
        max-width: 52vw;
        padding: 4px 8px
    }

    .nav.compact .logo-img {
        height: 38px
    }

    .nav-links {
        display: none
    }

    .nav-links.open {
        display: flex;
        position: absolute;
        top: 100%;
        right: 22px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.97);
        border: 1px solid var(--ghost);
        padding: 22px;
        gap: 18px;
        border-radius: 6px;
        align-items: flex-start
    }

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

    .nav-toggle span {
        width: 24px;
        height: 2px;
        background: var(--cream);
        display: block
    }

    .hero-layout {
        grid-template-columns: 1fr;
        width: 92%;
        padding: 100px 0 120px;
        gap: 40px;
    }

    .hero-visuals {
        max-width: 100%;
        justify-self: center;
        width: min(480px, 100%);
    }

    .hero-visuals-stack {
        height: clamp(360px, 105vw, 440px);
    }

    .hero-photo--primary {
        grid-column: 4 / 13;
        grid-row: 1 / 8;
    }

    .hero-photo--secondary {
        grid-column: 1 / 8;
        grid-row: 5 / 13;
    }

    .hero-glass-card {
        grid-column: 5 / 13;
        grid-row: 8 / 13;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-eyebrow {
        margin-bottom: 16px;
    }

    .hero-tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .glass-card-inner {
        padding: 24px 20px;
    }

    .glass-cta {
        align-self: stretch;
    }

    .shutter-replay {
        left: 22px;
        bottom: 56px;
    }

    .hero-scroll {
        right: 22px;
    }

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

    .s2 .bleed {
        position: relative;
        left: -22px;
        width: calc(100% + 44px);
        height: 240px;
        border: 1px solid var(--accent-line);
    }

    .s2 .s2-body {
        margin-left: 0;
        columns: 1;
        margin-top: 24px
    }

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

    .s4 .col {
        border-right: none;
        border-bottom: 1px solid var(--ghost);
        padding: 18px 0
    }

    .s4 .col:last-child {
        border-bottom: none
    }

    .s5 .s5-fg {
        max-width: 100%
    }

    .area-head {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .area-cities {
        column-count: 2
    }

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

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

    .spine-track {
        left: 18px
    }

    .spine-block {
        width: 100%;
        margin-left: 42px !important;
        margin-right: 0 !important
    }

    .spine-block.left .spine-node,
    .spine-block.right .spine-node {
        left: -37px;
        right: auto
    }

    .spine-block.left .spine-conn,
    .spine-block.right .spine-conn {
        left: -30px;
        right: auto;
        width: 0
    }

    .spine-block.in.left .spine-conn,
    .spine-block.in.right .spine-conn {
        width: 26px
    }

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

    .footer-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .footer-head-aside {
        align-items: flex-start;
        width: 100%;
    }

    .footer-coords {
        text-align: left;
    }

    .footer-logo-img {
        max-width: min(260px, 72vw);
    }

    .clock-stage {
        max-width: 340px
    }

    .clk-label {
        font-size: 10px;
        padding: 5px 9px
    }
}