:root {
    /* Logo palette — navy + white only (Carrington Chimney Care) */
    --navy: #001A3F;
    --navy-deep: #000A1F;
    --navy-mid: #002147;
    --navy-light: #003366;
    --white: #FFFFFF;

    /* Semantic tokens (no extra hues) */
    --ink: var(--navy);
    --ink2: var(--navy-deep);
    --ink3: var(--navy-mid);
    --gold: var(--white);
    --gold-soft: rgba(255, 255, 255, 0.82);
    --beige: var(--white);
    --cream: var(--white);
    --stone: rgba(255, 255, 255, 0.55);
    --parchment: var(--white);
    --line: rgba(255, 255, 255, 0.14);

    /* Logo-only gradients */
    --gradient-body: linear-gradient(165deg, var(--navy-deep) 0%, var(--navy) 42%, var(--navy-mid) 100%);
    --gradient-hero: radial-gradient(120% 90% at 50% 0%, var(--navy-light) 0%, var(--navy) 45%, var(--navy-deep) 100%);
    --gradient-section: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
    --gradient-accent-line: linear-gradient(to right, transparent, var(--white), transparent);
    --gradient-cta: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.88) 100%);
    --gradient-footer-glow: radial-gradient(circle, rgba(0, 26, 63, 0.55), transparent 70%);
}

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

html {
    scroll-behavior: smooth
}

body {
    background: var(--gradient-body);
    color: var(--white);
    font-family: 'IBM Plex Mono', monospace;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

.grain {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: .04;
    background-image: url("../img/hero.gif");
}

/* ============ NAVBAR ============ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 60px;
    transition: all .45s cubic-bezier(.4, 0, .2, 1);
    background: linear-gradient(to bottom, rgba(0, 26, 63, .55), transparent);
}

.nav .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all .45s
}

.nav .brand .mark {
    width: 84px;
    height: 84px;
    flex: none;
    transition: all .45s;
    overflow: hidden;
    border-radius: 6px
}

.nav .brand .mark .brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block
}

.nav .brand .name {
    font-family: 'Barlow Condensed';
    font-weight: 800;
    letter-spacing: .22em;
    font-size: 17px;
    text-transform: uppercase;
    line-height: 1;
    transition: all .45s
}

.nav .links {
    display: flex;
    align-items: center;
    gap: 34px;
    font-family: 'IBM Plex Mono';
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    transition: all .45s
}

.nav .links a.item {
    position: relative;
    color: rgba(255, 255, 255, .78);
    transition: color .3s
}

.nav .links a.item:hover {
    color: var(--gold-soft)
}

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

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

.nav .dot {
    display: none;
    color: var(--gold);
    font-size: 9px;
    opacity: .7
}

.nav .quote {
    border: 1px solid var(--gold);
    color: var(--gold-soft);
    padding: 11px 22px;
    border-radius: 2px;
    letter-spacing: .16em;
    font-size: 11px;
    transition: all .3s
}

.nav .quote:hover {
    background: var(--gold);
    color: var(--ink)
}

/* compact / scrolled state */
.nav.scrolled {
    padding: 13px 40px;
    background: rgba(0, 26, 63, .92);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .18), 0 14px 40px rgba(0, 10, 31, .45);
}

.nav.scrolled .brand .mark {
    width: 26px;
    height: 26px
}

.nav.scrolled .brand .name {
    font-size: 14px;
    letter-spacing: .16em
}

.nav.scrolled .links {
    gap: 18px;
    font-size: 11px
}

.nav.scrolled .links a.item::after {
    display: none
}

.nav.scrolled .dot {
    display: inline
}

.nav.scrolled .quote {
    padding: 8px 16px;
    font-size: 10px
}

/* ============ HERO — inverted pyramid of mass ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--gradient-hero);
    overflow: hidden
}

.hero .vstrip {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 170vh;
    object-fit: cover;
    object-position: center;
    filter: brightness(.5) saturate(.7);
    z-index: 2;
    border-left: 1px solid rgba(255, 255, 255, .25)
}

/* top zone — lightest 15vh */
.hz-top {
    min-height: 15vh;
    padding: 118px 60px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    z-index: 3
}

.hz-top .co {
    font-family: 'IBM Plex Mono';
    font-weight: 700;
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .1em
}

.hz-top .mini {
    font-family: 'IBM Plex Mono';
    font-weight: 400;
    font-size: 20px;
    color: rgba(255, 255, 255, .32);
    text-align: right;
    line-height: 2;
    letter-spacing: .12em
}

/* middle zone — medium 30vh */
.hz-mid {
    min-height: 26vh;
    padding: 0 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    z-index: 3
}

.hz-mid .strip {
    width: 300px;
    height: 190px;
    object-fit: cover;
    object-position: center;
    border-radius: 3px;
    filter: brightness(.85) saturate(1.05);
    flex: none;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(0, 26, 63, .4);
    display: block
}

.hz-mid .tag {
    font-family: 'DM Serif Display';
    font-style: italic;
    font-weight: 400;
    font-size: clamp(20px, 2.5vw, 32px);
    color: rgba(255, 255, 255, .7);
    max-width: 480px;
    line-height: 1.7
}

/* base zone — heaviest 40vh */
.hz-base {
    position: relative;
    flex: 1;
    min-height: 42vh;
    width: 100%;
    display: flex;
    align-items: flex-end;
    padding: 0 60px 46px;
    z-index: 3;
    background: linear-gradient(to top, var(--navy-deep) 0%, transparent 100%)
}

.hz-base .massive {
    position: relative;
    flex: 1
}

.hz-base .headline {
    font-family: 'Bebas Neue';
    font-weight: 400;
    font-size: clamp(100px, 18vw, 260px);
    color: var(--beige);
    line-height: .82;
    letter-spacing: .01em;
    position: relative;
    display: inline-block
}

.hz-base .goldline {
    position: absolute;
    height: 4px;
    width: 100%;
    top: 50%;
    left: 0;
    background: var(--gradient-accent-line)
}

.hz-base .cta-wrap {
    flex: none;
    padding-bottom: 30px
}

.hz-base .cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-cta);
    color: var(--navy);
    font-family: 'Barlow Condensed';
    font-weight: 700;
    letter-spacing: .18em;
    font-size: 15px;
    text-transform: uppercase;
    padding: 18px 30px;
    border-radius: 2px;
    white-space: nowrap;
    transition: all .3s
}

.hz-base .cta:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(255, 255, 255, .3)
}

.hz-base .cta svg {
    width: 18px;
    height: 18px
}

/* ============ SECTION SHELL ============ */
.sec-label {
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 14px
}

.sec-label::before {
    content: "";
    width: 42px;
    height: 1px;
    background: var(--gold);
    opacity: .6
}

/* ============ ABOUT — process first ============ */
.about {
    padding: 130px 60px;
    background: var(--ink2);
    position: relative
}

.about .head {
    max-width: 780px;
    margin-bottom: 74px
}

.about .head h2 {
    font-family: 'Barlow Condensed';
    font-weight: 800;
    font-size: clamp(38px, 5vw, 64px);
    line-height: .98;
    margin-top: 22px;
    text-transform: uppercase;
    color: var(--beige)
}

.about .head h2 em {
    font-family: 'DM Serif Display';
    font-style: italic;
    font-weight: 400;
    color: var(--gold-soft);
    text-transform: none
}

.flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-bottom: 70px
}

.flow .step {
    position: relative;
    padding: 0 30px
}

.flow .step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 26px;
    right: -1px;
    width: calc(100% - 56px);
    left: 56px;
    height: 1px;
    background: linear-gradient(to right, var(--white), rgba(255, 255, 255, .15));
    z-index: 0
}

.flow .node {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue';
    font-size: 24px;
    color: var(--gold-soft);
    background: var(--ink2);
    position: relative;
    z-index: 1;
    margin-bottom: 26px
}

.flow .step h3 {
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 21px;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 12px;
    color: var(--beige)
}

.flow .step p {
    font-family: 'IBM Plex Mono';
    font-weight: 400;
    font-size: 12px;
    line-height: 1.85;
    color: var(--stone)
}

.about .philo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    border-top: 1px solid var(--line);
    padding-top: 54px
}

.about .philo p {
    font-family: 'Cormorant Garamond';
    font-size: 21px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .82)
}

.about .philo .team .t-label {
    font-family: 'IBM Plex Mono';
    font-size: 11px;
    letter-spacing: .24em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 18px
}

.about .philo .team .names {
    font-family: 'Barlow Condensed';
    font-weight: 600;
    font-size: 19px;
    line-height: 2;
    letter-spacing: .04em;
    color: rgba(255, 255, 255, .85)
}

.about .philo .team .names span {
    color: var(--stone);
    margin: 0 6px
}

/* ============ SERVICES — dual opposing tickers ============ */
.services {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: var(--navy-deep)
}

.svc-header {
    position: sticky;
    top: 0;
    z-index: 10;
    height: 52px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .4em;
    color: var(--ink);
    text-transform: uppercase
}

.ticker-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: calc(100vh - 52px)
}

.col {
    overflow: hidden;
    position: relative
}

.col.left .track {
    animation: scroll-up 26s linear infinite
}

.col.right .track {
    animation: scroll-down 26s linear infinite;
    border-left: 1px solid var(--line)
}

.services:hover .track {
    animation-play-state: paused
}

.services.frozen .track {
    animation-play-state: paused
}

@keyframes scroll-up {
    from {
        transform: translateY(0)
    }

    to {
        transform: translateY(-50%)
    }
}

@keyframes scroll-down {
    from {
        transform: translateY(-50%)
    }

    to {
        transform: translateY(0)
    }
}

.card {
    height: 200px;
    padding: 36px 38px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: background .35s
}

.card:nth-child(odd) {
    background: var(--ink2)
}

.card:nth-child(even) {
    background: var(--ink3)
}

.card:hover {
    background: var(--ink)
}

.card .bgnum {
    position: absolute;
    right: 24px;
    top: 6px;
    font-family: 'Barlow Condensed';
    font-weight: 800;
    font-size: 80px;
    color: rgba(255, 255, 255, .07);
    line-height: 1;
    z-index: 0
}

.card .c-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px
}

.card .c-top svg {
    width: 22px;
    height: 22px;
    color: var(--gold)
}

.card .name {
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: var(--beige);
    position: relative;
    z-index: 1
}

.card .tagline {
    font-family: 'IBM Plex Mono';
    font-weight: 400;
    font-size: 11px;
    color: var(--stone);
    position: relative;
    z-index: 1;
    letter-spacing: .06em
}

.card .arrow {
    font-family: 'IBM Plex Mono';
    font-size: 11px;
    color: var(--gold);
    letter-spacing: .18em;
    position: relative;
    z-index: 1;
    text-transform: uppercase
}

.card.img-card {
    padding: 0;
    background-size: cover;
    background-position: center
}

.card.img-card .ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 26, 63, .55), rgba(0, 10, 31, .82))
}

/* service modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 10, 31, .6);
    backdrop-filter: blur(6px);
    transform: translateY(100%);
    transition: transform .5s ease;
    display: flex;
    justify-content: center;
    align-items: flex-end
}

.modal.open {
    transform: translateY(0)
}

.modal .panel {
    width: 100%;
    max-width: 1100px;
    background: var(--ink2);
    border-top: 3px solid var(--gold);
    max-height: 92vh;
    overflow-y: auto;
    border-radius: 14px 14px 0 0;
    padding: 64px 70px 80px;
    position: relative
}

.modal .close {
    position: absolute;
    top: 26px;
    right: 30px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent;
    font-size: 18px;
    transition: all .3s
}

.modal .close:hover {
    background: var(--gold);
    color: var(--ink);
    transform: rotate(90deg)
}

.modal .m-num {
    font-family: 'IBM Plex Mono';
    font-size: 12px;
    color: var(--gold);
    letter-spacing: .24em
}

.modal h3 {
    font-family: 'Barlow Condensed';
    font-weight: 800;
    font-size: clamp(34px, 5vw, 58px);
    text-transform: uppercase;
    line-height: 1;
    margin: 14px 0 24px;
    color: var(--beige)
}

.modal .m-desc {
    font-family: 'Cormorant Garamond';
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .82);
    max-width: 760px;
    margin-bottom: 38px
}

.modal .m-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: start
}

.modal .m-steps {
    list-style: none
}

.modal .m-steps li {
    font-family: 'IBM Plex Mono';
    font-size: 12.5px;
    line-height: 1.6;
    padding: 14px 0 14px 28px;
    border-bottom: 1px solid var(--line);
    position: relative;
    color: rgba(255, 255, 255, .78)
}

.modal .m-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--gold)
}

.modal .m-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 6px;
    filter: brightness(.8);
    border: 1px solid rgba(255, 255, 255, .25)
}

.modal .m-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px
}

.modal .m-tags span {
    font-family: 'IBM Plex Mono';
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, .4);
    color: var(--gold-soft);
    padding: 7px 13px;
    border-radius: 2px
}

/* ============ SERVICE-AREAS CTA + 27 areas ============ */
.areas {
    padding: 120px 60px;
    background: var(--ink);
    text-align: center
}

.areas .acta {
    max-width: 760px;
    margin: 0 auto 76px
}

.areas .acta h2 {
    font-family: 'Bebas Neue';
    font-size: clamp(44px, 7vw, 96px);
    line-height: .9;
    color: var(--beige);
    margin: 20px 0 26px
}

.areas .acta h2 .g {
    color: var(--gold-soft)
}

.areas .acta .sub {
    font-family: 'Cormorant Garamond';
    font-size: 21px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.7;
    margin-bottom: 34px
}

.areas .acta .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: var(--ink);
    font-family: 'Barlow Condensed';
    font-weight: 700;
    letter-spacing: .16em;
    font-size: 15px;
    text-transform: uppercase;
    padding: 18px 34px;
    border-radius: 2px;
    transition: all .3s
}

.areas .acta .btn:hover {
    background: var(--gold-soft);
    transform: translateY(-3px)
}

.areas .acta .btn svg {
    width: 17px;
    height: 17px
}

.area-label {
    font-family: 'IBM Plex Mono';
    font-size: 11px;
    letter-spacing: .3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 30px
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    max-width: 1200px;
    margin: 0 auto
}

.area-grid .cell {
    background: var(--ink);
    padding: 20px 14px;
    font-family: 'Barlow Condensed';
    font-weight: 600;
    font-size: 16px;
    letter-spacing: .04em;
    color: rgba(255, 255, 255, .78);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .3s
}

.area-grid .cell:hover {
    background: var(--ink3);
    color: var(--gold-soft)
}

.area-grid .cell svg {
    width: 13px;
    height: 13px;
    color: var(--gold);
    opacity: .7;
    flex: none
}

/* ============ ADDITIONAL SERVICES — stacked paper sheets ============ */
.stack-sec {
    padding: 130px 60px 170px;
    background: var(--ink2);
    text-align: center;
    position: relative
}

.stack-sec .s-head {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px
}

.stack-sec .s-head h2 {
    font-family: 'Barlow Condensed';
    font-weight: 800;
    font-size: clamp(34px, 5vw, 58px);
    text-transform: uppercase;
    color: var(--beige);
    line-height: 1
}

.stack-wrap {
    position: relative;
    width: min(800px, 100%);
    margin: 0 auto;
    height: 560px
}

.sheet {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--parchment);
    border-radius: 4px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 10, 31, .4), 0 1px 4px rgba(0, 10, 31, .3);
    padding: 46px 52px;
    cursor: pointer;
    transition: transform .55s cubic-bezier(.55, 0, .3, 1), opacity .5s;
    min-height: 520px;
    overflow: hidden
}

.sheet::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .5;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)' opacity='0.05'/%3E%3C/svg%3E")
}

.sheet .s-num {
    font-family: 'IBM Plex Mono';
    font-weight: 700;
    font-size: 12px;
    color: var(--gold);
    letter-spacing: .1em
}

.sheet hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .5);
    margin: 14px 0 22px
}

.sheet h3 {
    font-family: 'Barlow Condensed';
    font-weight: 800;
    font-size: 36px;
    text-transform: uppercase;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 16px
}

.sheet .s-body {
    font-family: 'Cormorant Garamond';
    font-size: 16px;
    line-height: 1.65;
    color: rgba(0, 10, 31, .7);
    max-width: 62%
}

.sheet .s-steps {
    list-style: none;
    margin: 18px 0;
    max-width: 62%
}

.sheet .s-steps li {
    font-family: 'IBM Plex Mono';
    font-size: 11px;
    color: rgba(0, 10, 31, .6);
    padding: 6px 0 6px 22px;
    position: relative
}

.sheet .s-steps li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 8px;
    top: 9px
}

.sheet .s-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 20px
}

.sheet .s-tags span {
    font-family: 'IBM Plex Mono';
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
    border: 1px solid rgba(0, 10, 31, .25);
    color: rgba(0, 10, 31, .6);
    padding: 5px 10px;
    border-radius: 2px
}

.sheet .s-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    background: var(--ink);
    color: var(--beige);
    font-family: 'Barlow Condensed';
    font-weight: 700;
    letter-spacing: .14em;
    font-size: 13px;
    text-transform: uppercase;
    padding: 13px 22px;
    border-radius: 2px
}

.sheet .s-photo {
    position: absolute;
    right: 48px;
    top: 90px;
    width: 210px;
    height: 250px;
    object-fit: cover;
    border: 6px solid #fff;
    box-shadow: 0 3px 12px rgba(0, 10, 31, .25);
    transform: rotate(2.5deg);
    filter: brightness(.92)
}

.sheet.gone {
    transform: translateX(-120%) rotate(-8deg);
    opacity: 0
}

.shuffle {
    margin-top: 46px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold-soft);
    font-family: 'Barlow Condensed';
    font-weight: 700;
    letter-spacing: .16em;
    font-size: 13px;
    text-transform: uppercase;
    padding: 13px 26px;
    border-radius: 2px;
    cursor: pointer;
    transition: all .3s
}

.shuffle:hover {
    background: var(--gold);
    color: var(--ink)
}

.shuffle svg {
    width: 15px;
    height: 15px
}

/* ============ FAQ ============ */
.faq {
    padding: 130px 60px;
    background: var(--ink);
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: start
}

.faq .f-left h2 {
    font-family: 'Barlow Condensed';
    font-weight: 800;
    font-size: clamp(36px, 5vw, 60px);
    text-transform: uppercase;
    color: var(--beige);
    line-height: .98;
    margin-top: 22px
}

.faq .f-left p {
    font-family: 'Cormorant Garamond';
    font-size: 19px;
    line-height: 1.7;
    color: var(--stone);
    margin-top: 24px;
    max-width: 340px
}

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

.faq-item:last-child {
    border-bottom: 1px solid var(--line)
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 26px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    font-family: 'Barlow Condensed';
    font-weight: 600;
    font-size: 21px;
    letter-spacing: .02em;
    color: var(--beige);
    transition: color .3s
}

.faq-q:hover {
    color: var(--gold-soft)
}

.faq-q .ic {
    flex: none;
    width: 26px;
    height: 26px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: transform .35s;
    font-size: 15px
}

.faq-item.active .faq-q .ic {
    transform: rotate(45deg)
}

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

.faq-a p {
    font-family: 'IBM Plex Mono';
    font-size: 13px;
    line-height: 1.9;
    color: var(--stone);
    padding: 0 0 28px
}

/* ============ DETAIL SERVICE SECTION ============ */
.detail {
    padding: 0;
    background: var(--navy-deep);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px
}

.detail .d-img {
    position: relative;
    background-size: cover;
    background-position: center;
    filter: brightness(.66)
}

.detail .d-img .badge {
    position: absolute;
    left: 40px;
    bottom: 40px;
    font-family: 'Bebas Neue';
    font-size: 120px;
    color: rgba(255, 255, 255, .16);
    line-height: .8
}

.detail .d-body {
    padding: 100px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.detail .d-body h2 {
    font-family: 'Barlow Condensed';
    font-weight: 800;
    font-size: clamp(34px, 4.4vw, 56px);
    text-transform: uppercase;
    color: var(--beige);
    line-height: 1;
    margin: 20px 0 24px
}

.detail .d-body h2 em {
    font-family: 'DM Serif Display';
    font-style: italic;
    font-weight: 400;
    color: var(--gold-soft);
    text-transform: none
}

.detail .d-body .lead {
    font-family: 'Cormorant Garamond';
    font-size: 21px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 34px
}

.detail .feats {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 28px
}

.detail .feats li {
    font-family: 'IBM Plex Mono';
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .78);
    display: flex;
    gap: 11px;
    align-items: flex-start
}

.detail .feats li svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
    flex: none;
    margin-top: 2px
}

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

.contact .c-head {
    text-align: center;
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px
}

.contact .c-head h2 {
    font-family: 'Bebas Neue';
    font-size: clamp(48px, 8vw, 110px);
    line-height: .86;
    color: var(--beige)
}

.contact .c-head h2 .g {
    color: var(--gold-soft)
}

.c-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden
}

.c-grid .map {
    min-height: 480px
}

.c-grid .map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(.3) contrast(1.05)
}

.c-info {
    padding: 58px 56px;
    background: var(--ink);
    display: flex;
    flex-direction: column;
    gap: 8px
}

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

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

.info-row .ico {
    width: 46px;
    height: 46px;
    flex: none;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold)
}

.info-row .ico svg {
    width: 20px;
    height: 20px
}

.info-row .k {
    font-family: 'IBM Plex Mono';
    font-size: 10px;
    letter-spacing: .24em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 7px
}

.info-row .v {
    font-family: 'Barlow Condensed';
    font-weight: 600;
    font-size: 20px;
    color: var(--beige);
    letter-spacing: .02em;
    line-height: 1.35
}

.info-row .v a:hover {
    color: var(--gold-soft)
}

.c-info .cbtn {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gold);
    color: var(--ink);
    font-family: 'Barlow Condensed';
    font-weight: 700;
    letter-spacing: .16em;
    font-size: 14px;
    text-transform: uppercase;
    padding: 18px;
    border-radius: 2px;
    transition: all .3s
}

.c-info .cbtn:hover {
    background: var(--gold-soft)
}

.c-info .cbtn svg {
    width: 17px;
    height: 17px
}

/* ============ FOOTER — full viewport destination ============ */
.footer {
    min-height: 100vh;
    background: var(--navy-deep);
    display: flex;
    flex-direction: column;
    padding: 80px 60px 30px;
    position: relative;
    overflow: hidden
}

.footer::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: var(--gradient-footer-glow);
    pointer-events: none
}

.footer .f-brand {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 1
}

.footer .f-brand .f-brand-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit
}

.footer .f-brand .f-brand-logo {
    width: clamp(72px, 11vw, 132px);
    height: clamp(72px, 11vw, 132px);
    flex: none;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(0, 26, 63, .35);
    padding: 6px;
    box-shadow: 0 8px 32px rgba(0, 10, 31, .35)
}

.footer .f-brand .big {
    font-family: 'Bebas Neue';
    font-size: clamp(80px, 17vw, 320px);
    line-height: .82;
    color: var(--beige);
    letter-spacing: .005em
}

.footer .f-brand .big .g {
    color: var(--gold-soft);
    display: block;
    font-size: .34em;
    letter-spacing: .3em;
    -webkit-text-stroke: 0;
    margin-left: 6px
}

.f-cols {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1.3fr;
    gap: 50px;
    padding: 54px 0;
    border-top: 1px solid var(--line);
    position: relative;
    z-index: 1
}

.f-col .fc-label {
    font-family: 'IBM Plex Mono';
    font-size: 11px;
    letter-spacing: .26em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 24px
}

.f-col .fc-nav {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.f-col .fc-nav a {
    font-family: 'Barlow Condensed';
    font-weight: 600;
    font-size: 18px;
    letter-spacing: .04em;
    color: rgba(255, 255, 255, .78);
    transition: all .3s;
    width: fit-content
}

.f-col .fc-nav a:hover {
    color: var(--gold-soft);
    transform: translateX(6px)
}

.f-col .fc-contact {
    font-family: 'Barlow Condensed';
    font-weight: 500;
    font-size: 18px;
    line-height: 2;
    color: rgba(255, 255, 255, .8)
}

.f-col .fc-contact a:hover {
    color: var(--gold-soft)
}

.news .nd {
    font-family: 'Cormorant Garamond';
    font-size: 18px;
    color: var(--stone);
    line-height: 1.6;
    margin-bottom: 20px
}

.news .nform {
    display: flex;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 3px;
    overflow: hidden
}

.news .nform input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 15px 18px;
    font-family: 'IBM Plex Mono';
    font-size: 12px;
    color: var(--beige)
}

.news .nform input::placeholder {
    color: var(--stone)
}

.news .nform button {
    background: var(--gold);
    border: none;
    cursor: pointer;
    padding: 0 20px;
    color: var(--ink);
    display: flex;
    align-items: center;
    transition: background .3s
}

.news .nform button:hover {
    background: var(--gold-soft)
}

.news .nform button svg {
    width: 18px;
    height: 18px
}

.f-social {
    display: flex;
    gap: 14px;
    margin-top: 30px
}

.f-social a {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-soft);
    transition: all .35s
}

.f-social a:hover {
    background: var(--gold);
    color: var(--ink);
    transform: translateY(-4px)
}

.f-social a svg {
    width: 22px;
    height: 22px
}

.f-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    position: relative;
    z-index: 1;
    font-family: 'IBM Plex Mono';
    font-size: 10.5px;
    letter-spacing: .1em;
    color: var(--stone)
}

.f-bottom .lic span {
    color: var(--gold-soft)
}

/* ============ RESPONSIVE ============ */
@media(max-width:1024px) {
    .flow {
        grid-template-columns: 1fr 1fr;
        gap: 44px 0
    }

    .flow .step:not(:last-child)::after {
        display: none
    }

    .about .philo,
    .faq,
    .detail,
    .c-grid {
        grid-template-columns: 1fr
    }

    .detail .d-img {
        min-height: 340px
    }

    .hz-mid {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px
    }
}

@media(max-width:768px) {
    .nav {
        padding: 18px 24px
    }

    .nav .links {
        gap: 14px
    }

    .hz-top,
    .hz-mid,
    .hz-base {
        padding-left: 24px;
        padding-right: 24px
    }

    .hz-top {
        padding-top: 90px
    }

    .about,
    .areas,
    .stack-sec,
    .faq,
    .contact,
    .footer,
    .detail .d-body {
        padding-left: 24px;
        padding-right: 24px
    }

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

    .col.right {
        display: none
    }

    .modal .panel {
        padding: 54px 28px 60px
    }

    .modal .m-grid {
        grid-template-columns: 1fr
    }

    .sheet .s-photo {
        display: none
    }

    .sheet .s-body,
    .sheet .s-steps {
        max-width: 100%
    }

    .f-cols {
        grid-template-columns: 1fr;
        gap: 38px
    }

    .nav .links .item.hide-sm {
        display: none
    }
}