/* ========================================
   TSVELA LABS
   Global Styles
======================================== */

:root {
    --black: #0A0A0A;
    --soft-black: #111111;
    --ivory: #F3EFE8;
    --gold: #C8B38A;
    --mauve: #8E7185;
    --plum: #3A2638;

    --border: rgba(200, 179, 138, 0.18);
    --muted: rgba(243, 239, 232, 0.58);

    --obsidian: #0A0A0A;
    --champagne: #C8B38A;
    --warm-ivory: #F3EFE8;
}

.section-inner {
    width: min(100% - 48px, 1400px);
    margin-inline: auto;
}
/* ========================================
   RESET
======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--ivory);
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
}

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

button {
    font: inherit;
}


/* ========================================
   HEADER
======================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(10, 10, 10, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid var(--border);
}


/* ========================================
   NAVBAR
======================================== */

.navbar {
    width: min(1400px, 92%);
    min-height: 86px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    position: relative;
    z-index: 1002;
}
/* ========================================
   MOBILE NAVIGATION
======================================== */

.menu-toggle {
    display: none;
    width: 54px;
    height: 54px;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 7px;

    padding: 0;

    border: 1px solid var(--border);
    background: transparent;

    cursor: pointer;
    position: relative;
    z-index: 1003;
}

.menu-toggle span {
    display: block;

    width: 22px;
    height: 1px;

    background: var(--ivory);

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.mobile-language-switch {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-language-switch .language-form {
    display: inline-flex;
    margin: 0;
}

.mobile-language-switch button {
    display: inline-block;
}

/* Hamburger → X */

.menu-toggle.is-active span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.menu-toggle.is-active span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}


/* Full mobile menu */

.mobile-menu {
    position: fixed;

    top: 76px;
    left: 0;

    width: 100%;
    height: calc(100dvh - 76px);

    padding-top: 0;

    background: var(--black);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-10px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;

    z-index: 1001;

    overflow-y: auto;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0);
}

.mobile-menu-inner {
    width: min(100% - 48px, 700px);
    min-height: calc(100dvh - 76px);

    margin: 0 auto;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 35px 0;
}


/* Mobile navigation links */

.mobile-nav-links {
    display: flex;
    flex-direction: column;
}

.mobile-nav-links a {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;

    padding: 18px 0;

    border-bottom: 1px solid var(--border);

    color: var(--ivory);

    text-decoration: none;

    font-size: clamp(28px, 8vw, 46px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.03em;
}

.mobile-nav-links a:first-child {
    border-top: 1px solid var(--border);
}

.mobile-nav-links a > span {
    color: var(--gold);

    font-size: 9px;
    letter-spacing: 0.14em;
}

.mobile-nav-links a.active {
    color: var(--gold);
}


/* Bottom section */

.mobile-menu-bottom {
    display: flex;
    flex-direction: column;

    gap: 25px;

    margin-top: 50px;
}

.mobile-language-switch {
    display: flex;
    align-items: center;

    gap: 10px;

    color: var(--muted);

    font-size: 11px;
    letter-spacing: 0.14em;
}

.mobile-language-switch .language-active {
    color: var(--gold);
}

.mobile-language-switch button {
    padding: 0;

    border: 0;
    background: none;

    color: var(--muted);

    font: inherit;

    cursor: pointer;
}

.mobile-menu-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px 22px;

    border: 1px solid var(--gold);

    color: var(--black);
    background: var(--gold);

    text-decoration: none;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
}


/* Prevent page scrolling while menu is open */

body.menu-open {
    overflow: hidden;
}


/* ========================================
   CLEAN CSS ARROWS
======================================== */

.arrow-diagonal {
    position: relative;

    display: inline-block;

    width: 12px;
    height: 12px;

    flex: 0 0 12px;
}

.arrow-diagonal::before {
    content: "";

    position: absolute;

    top: 1px;
    right: 1px;

    width: 7px;
    height: 7px;

    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
}

.arrow-diagonal::after {
    content: "";

    position: absolute;

    top: 6px;
    left: 1px;

    width: 10px;
    height: 1px;

    background: currentColor;

    transform: rotate(-45deg);
    transform-origin: center;
}

/* ========================================
   LOGO
======================================== */

.brand {
    position: relative;

    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.16em;

    white-space: nowrap;

    transition: color 0.3s ease;
}

.brand span {
    color: var(--gold);
    margin-left: 4px;

    transition: color 0.3s ease;
}

.brand:hover {
    color: var(--gold);
}

.brand:hover span {
    color: var(--ivory);
}


/* ========================================
   NAV LINKS
======================================== */

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    position: relative;

    color: var(--muted);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.nav-link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -9px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--ivory);
    transform: translateY(-1px);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--ivory);
}


/* ========================================
   NAV ACTIONS
======================================== */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}


/* Language */

.language-switch {
    border: none;
    background: transparent;

    color: var(--muted);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;

    cursor: pointer;

    transition: color 0.3s ease;
}

.language-switch span {
    color: var(--gold);
    margin: 0 4px;
}

.language-switch:hover {
    color: var(--ivory);
}


/* CTA */

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 13px 18px;

    border: 1px solid rgba(200, 179, 138, 0.45);

    color: var(--ivory);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.16em;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.nav-cta span {
    color: var(--gold);
    font-size: 14px;

    transition: transform 0.3s ease;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--black);

    border-color: var(--gold);

    transform: translateY(-2px);
}

.nav-cta:hover span {
    color: var(--black);
    transform: translate(2px, -2px);
}


/* ========================================
   MOBILE MENU BUTTON
======================================== */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid var(--border);
    background: transparent;

    cursor: pointer;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
}

.menu-toggle span {
    display: block;

    width: 18px;
    height: 1px;

    background: var(--ivory);

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.menu-toggle:hover span:first-child {
    background: var(--gold);
}


/* ========================================
   TEMPORARY HERO
======================================== */

.temporary-hero {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 140px 20px 80px;

    position: relative;
    overflow: hidden;
}


/* Subtle purple glow */

.temporary-hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    background: radial-gradient(
        circle,
        rgba(58, 38, 56, 0.42) 0%,
        rgba(58, 38, 56, 0.12) 35%,
        transparent 70%
    );

    pointer-events: none;
}

.eyebrow {
    position: relative;

    margin-bottom: 25px;

    color: var(--gold);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.35em;
}

.temporary-hero h1 {
    position: relative;

    font-size: clamp(60px, 11vw, 150px);
    line-height: 0.85;

    font-weight: 500;
    letter-spacing: -0.05em;
}

.temporary-hero h1 span {
    color: var(--gold);
}

.hero-placeholder {
    position: relative;

    margin-top: 35px;

    color: var(--muted);

    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1100px) {

    .nav-links {
        gap: 20px;
    }

    .nav-actions {
        gap: 14px;
    }

    .nav-cta {
        padding: 12px 14px;
    }
}


@media (max-width: 900px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .navbar {
        min-height: 76px;
    }


}


@media (max-width: 500px) {

    .navbar {
        width: 88%;
    }

    .brand {
        font-size: 16px;
    }

    .temporary-hero h1 {
        font-size: clamp(55px, 18vw, 90px);
    }

    .hero-placeholder {
        font-size: 9px;
        letter-spacing: 0.12em;
    }
}

/* ========================================
   HERO
======================================== */

.hero {
    min-height: 100vh;

    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 150px 5% 100px;

    background:
        radial-gradient(
            circle at 72% 42%,
            rgba(58, 38, 56, 0.28),
            transparent 28%
        ),
        var(--black);
}


/* ========================================
   HERO CONTENT
======================================== */

.hero-content {
    width: min(1100px, 100%);

    position: relative;
    z-index: 3;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
}


/* ========================================
   HERO LABEL
======================================== */

.hero-label {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 32px;

    color: var(--gold);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.32em;
}

.label-line {
    width: 35px;
    height: 1px;

    background: rgba(200, 179, 138, 0.55);
}


/* ========================================
   HERO TITLE
======================================== */

.hero-title {
    max-width: 1050px;

    font-size: clamp(48px, 7.2vw, 105px);
    line-height: 0.94;

    font-weight: 500;
    letter-spacing: -0.055em;

    text-transform: uppercase;
}

.hero-title span {
    display: block;

    color: var(--gold);

    font-weight: 400;
}


/* ========================================
   HERO DESCRIPTION
======================================== */

.hero-description {
    max-width: 560px;

    margin-top: 38px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.015em;
}


/* ========================================
   HERO BUTTONS
======================================== */

.hero-actions {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-top: 40px;
}


/* Primary */

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    min-width: 190px;

    padding: 17px 23px;

    background: var(--gold);
    color: var(--black);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;

    border: 1px solid var(--gold);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.primary-button span {
    font-size: 15px;

    transition: transform 0.35s ease;
}

.primary-button:hover {
    transform: translateY(-3px);

    background: var(--ivory);

    box-shadow:
        0 12px 35px rgba(200, 179, 138, 0.15);
}

.primary-button:hover span {
    transform: translate(3px, -3px);
}


/* Secondary */

.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    min-width: 190px;

    padding: 17px 23px;

    background: transparent;
    color: var(--ivory);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.18em;

    border: 1px solid rgba(243, 239, 232, 0.22);

    transition:
        border-color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease;
}

.secondary-button span {
    color: var(--gold);

    font-size: 14px;
}

.secondary-button:hover {
    border-color: var(--gold);

    background: rgba(200, 179, 138, 0.05);

    transform: translateY(-3px);
}


/* ========================================
   HERO GLOW
======================================== */

.hero-glow {
    position: absolute;

    width: 600px;
    height: 600px;

    top: 48%;
    left: 70%;

    transform: translate(-50%, -50%);

    background: radial-gradient(
        circle,
        rgba(142, 113, 133, 0.13) 0%,
        rgba(58, 38, 56, 0.10) 35%,
        transparent 70%
    );

    filter: blur(10px);

    pointer-events: none;
}


/* ========================================
   DECORATIVE ORBITS
======================================== */

.hero-orbit {
    position: absolute;

    border: 1px solid rgba(200, 179, 138, 0.09);

    border-radius: 50%;

    pointer-events: none;
}

.hero-orbit-one {
    width: 550px;
    height: 550px;

    top: 50%;
    left: 72%;

    transform: translate(-50%, -50%) rotate(25deg);

    animation: orbitFloat 12s ease-in-out infinite;
}

.hero-orbit-two {
    width: 720px;
    height: 260px;

    top: 50%;
    left: 72%;

    transform: translate(-50%, -50%) rotate(-25deg);

    border-color: rgba(142, 113, 133, 0.09);

    animation: orbitFloatTwo 15s ease-in-out infinite;
}


/* ========================================
   HERO BOTTOM
======================================== */

.hero-bottom {
    position: absolute;

    left: 5%;
    right: 5%;
    bottom: 32px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: rgba(243, 239, 232, 0.38);

    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.18em;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 9px;
}

.status-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--gold);

    box-shadow:
        0 0 10px rgba(200, 179, 138, 0.55);

    animation: pulse 2.5s ease-in-out infinite;
}

.hero-scroll {
    display: flex;
    align-items: center;
    gap: 9px;
}

.hero-scroll span {
    color: var(--gold);
    font-size: 13px;
}


/* ========================================
   ANIMATIONS
======================================== */

@keyframes orbitFloat {

    0%,
    100% {
        transform:
            translate(-50%, -50%)
            rotate(25deg);
    }

    50% {
        transform:
            translate(-50%, -51%)
            rotate(30deg);
    }
}


@keyframes orbitFloatTwo {

    0%,
    100% {
        transform:
            translate(-50%, -50%)
            rotate(-25deg);
    }

    50% {
        transform:
            translate(-50%, -49%)
            rotate(-20deg);
    }
}


@keyframes pulse {

    0%,
    100% {
        opacity: 0.45;
    }

    50% {
        opacity: 1;
    }
}


/* ========================================
   HERO RESPONSIVE
======================================== */

@media (max-width: 900px) {

    .hero {
        padding-top: 130px;
    }

    .hero-title {
        font-size: clamp(43px, 9vw, 75px);
    }

    .hero-bottom {
        bottom: 25px;
    }

    .hero-scroll {
        display: none;
    }

    .hero-orbit-one {
        width: 450px;
        height: 450px;

        left: 75%;
    }

    .hero-orbit-two {
        width: 580px;
        height: 220px;

        left: 75%;
    }
}


@media (max-width: 600px) {

    .hero {
        min-height: 100svh;

        padding:
            120px
            20px
            90px;
    }

    .hero-label {
        font-size: 8px;
        letter-spacing: 0.22em;
    }

    .label-line {
        width: 22px;
    }

    .hero-title {
        font-size: clamp(38px, 12vw, 62px);
        line-height: 0.95;
    }

    .hero-description {
        margin-top: 28px;

        max-width: 340px;

        font-size: 12px;
        line-height: 1.7;
    }

    .hero-actions {
        width: 100%;

        flex-direction: column;

        margin-top: 32px;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        max-width: 300px;
    }

    .hero-location {
        font-size: 7px;
    }

    .hero-year {
        font-size: 7px;
    }

    .hero-glow {
        width: 350px;
        height: 350px;

        left: 50%;
    }

    .hero-orbit-one {
        width: 350px;
        height: 350px;

        left: 50%;
    }

    .hero-orbit-two {
        width: 430px;
        height: 170px;

        left: 50%;
    }
}

/* ========================================
   MORE THAN A WEBSITE
======================================== */

.more-than-website {
    position: relative;

    padding: 150px 5%;

    background: var(--soft-black);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    overflow: hidden;
}


/* Subtle background glow */

.more-than-website::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -250px;
    top: 50%;

    transform: translateY(-50%);

    background: radial-gradient(
        circle,
        rgba(58, 38, 56, 0.22),
        transparent 70%
    );

    pointer-events: none;
}


/* ========================================
   CONTAINER
======================================== */

.section-container {
    width: min(1400px, 100%);
    margin: 0 auto;

    position: relative;
    z-index: 2;
}


/* ========================================
   SECTION INTRO
======================================== */

.section-intro {
    display: flex;
    align-items: center;
    gap: 20px;

    margin-bottom: 90px;
}

.section-number {
    color: var(--gold);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 15px;

    color: var(--muted);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.25em;
}

.section-label::before {
    content: "";

    width: 45px;
    height: 1px;

    background: rgba(200, 179, 138, 0.35);
}


/* ========================================
   MAIN CONTENT
======================================== */

.more-content {
    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    gap: 100px;

    align-items: end;
}


/* Heading */

.more-heading {
    position: relative;
}

.small-heading {
    margin-bottom: 8px;

    color: var(--muted);

    font-size: clamp(25px, 3vw, 48px);
    font-weight: 400;
    letter-spacing: -0.03em;
}

.more-heading h2 {
    font-size: clamp(70px, 10vw, 150px);
    line-height: 0.85;

    font-weight: 500;
    letter-spacing: -0.065em;
}

.more-heading h2 span {
    color: var(--gold);
}


/* Description */

.more-description {
    max-width: 480px;

    padding-bottom: 8px;
}

.large-description {
    margin-bottom: 25px;

    color: var(--ivory);

    font-size: clamp(22px, 2.2vw, 34px);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.more-description > p:not(.large-description) {
    color: var(--muted);

    font-size: 13px;
    line-height: 1.8;
}


/* ========================================
   TEXT LINK
======================================== */

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 32px;

    color: var(--ivory);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.18em;

    transition: color 0.3s ease;
}

.text-link span {
    color: var(--gold);

    font-size: 14px;

    transition:
        transform 0.3s ease,
        color 0.3s ease;
}

.text-link:hover {
    color: var(--gold);
}

.text-link:hover span {
    transform: translate(3px, -3px);
}


/* ========================================
   SYSTEM FLOW
======================================== */

.system-flow {
    display: flex;
    align-items: stretch;

    margin-top: 130px;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}


.system-item {
    flex: 1;

    min-height: 180px;

    padding: 30px 25px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition:
        background 0.4s ease,
        transform 0.4s ease;
}

.system-item:hover {
    background: rgba(200, 179, 138, 0.035);

    transform: translateY(-4px);
}


.system-number {
    color: var(--gold);

    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.15em;
}


.system-item h3 {
    margin-bottom: 10px;

    color: var(--ivory);

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
}


.system-item p {
    color: var(--muted);

    font-size: 10px;
    line-height: 1.5;
}


/* ========================================
   FLOW LINES
======================================== */

.flow-line {
    width: 1px;

    background: var(--border);

    align-self: stretch;
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1000px) {

    .more-than-website {
        padding: 120px 5%;
    }

    .more-content {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .more-description {
        max-width: 600px;
    }

    .system-flow {
        display: grid;

        grid-template-columns: repeat(2, 1fr);

        margin-top: 90px;
    }

    .flow-line {
        display: none;
    }

    .system-item {
        border-right: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .system-item:nth-child(even) {
        border-right: none;
    }
}


@media (max-width: 600px) {

    .more-than-website {
        padding: 100px 20px;
    }

    .section-intro {
        margin-bottom: 60px;
    }

    .section-label {
        font-size: 8px;
    }

    .section-label::before {
        width: 25px;
    }

    .small-heading {
        font-size: 25px;
    }

    .more-heading h2 {
        font-size: clamp(62px, 18vw, 90px);
    }

    .large-description {
        font-size: 21px;
    }

    .more-description > p:not(.large-description) {
        font-size: 12px;
    }

    .system-flow {
        grid-template-columns: 1fr;

        margin-top: 70px;
    }

    .system-item {
        min-height: 150px;

        border-right: none;
    }

    .system-item:last-child {
        border-bottom: none;
    }
}

/* ========================================
   SERVICES
======================================== */

.services-section {
    position: relative;

    padding: 160px 5%;

    background: var(--black);

    overflow: hidden;
}


/* ========================================
   SERVICES HEADER
======================================== */

.services-header {
    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    gap: 100px;

    align-items: end;

    margin-bottom: 90px;
}

.services-eyebrow {
    margin-bottom: 20px;

    color: var(--gold);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.3em;
}

.services-header h2 {
    font-size: clamp(55px, 8vw, 115px);
    line-height: 0.88;

    font-weight: 500;
    letter-spacing: -0.06em;
}

.services-header h2 span {
    color: var(--gold);
    font-weight: 400;
}

.services-intro-text {
    max-width: 430px;

    padding-bottom: 5px;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.9;
}


/* ========================================
   SERVICES GRID
======================================== */

.services-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}


/* ========================================
   SERVICE CARD
======================================== */

.service-card {
    position: relative;

    min-height: 430px;

    padding: 30px;

    display: flex;
    flex-direction: column;

    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    overflow: hidden;

    background: transparent;

    transition:
        background 0.45s ease,
        transform 0.45s ease;
}


/* Gold corner detail */

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: width 0.5s ease;
}


/* Purple glow */

.service-card::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -160px;
    bottom: -160px;

    background: radial-gradient(
        circle,
        rgba(142, 113, 133, 0.14),
        transparent 70%
    );

    opacity: 0;

    transition: opacity 0.5s ease;

    pointer-events: none;
}


.service-card:hover {
    background: rgba(255, 255, 255, 0.018);

    transform: translateY(-4px);
}

.service-card:hover::before {
    width: 100%;
}

.service-card:hover::after {
    opacity: 1;
}


/* ========================================
   SERVICE TOP
======================================== */

.service-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: var(--gold);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.15em;
}

.service-arrow {
    font-size: 18px;

    transition:
        transform 0.35s ease,
        color 0.35s ease;
}

.service-card:hover .service-arrow {
    color: var(--ivory);

    transform: translate(4px, -4px);
}


/* ========================================
   SERVICE ICON
======================================== */

.service-icon {
    width: 58px;
    height: 58px;

    margin-top: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(200, 179, 138, 0.25);

    color: var(--gold);

    font-size: 24px;
    font-weight: 300;

    transition:
        background 0.4s ease,
        border-color 0.4s ease,
        transform 0.4s ease;
}

.service-card:hover .service-icon {
    background: rgba(200, 179, 138, 0.07);

    border-color: rgba(200, 179, 138, 0.55);

    transform: rotate(8deg);
}


/* ========================================
   SERVICE CONTENT
======================================== */

.service-content {
    margin-top: auto;

    position: relative;
    z-index: 2;
}

.service-content h3 {
    margin-bottom: 20px;

    color: var(--ivory);

    font-size: clamp(25px, 3vw, 40px);
    line-height: 0.95;

    font-weight: 500;
    letter-spacing: -0.035em;
}

.service-content p {
    max-width: 430px;

    color: var(--muted);

    font-size: 11px;
    line-height: 1.7;
}


/* ========================================
   SERVICE FOOTER
======================================== */

.service-footer {
    margin-top: 35px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: rgba(243, 239, 232, 0.42);

    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.18em;

    position: relative;
    z-index: 2;

    transition: color 0.3s ease;
}

.service-footer span {
    color: var(--gold);

    font-size: 14px;

    transition: transform 0.35s ease;
}

.service-card:hover .service-footer {
    color: var(--ivory);
}

.service-card:hover .service-footer span {
    transform: translateX(5px);
}


/* ========================================
   FEATURED CARD
======================================== */

.service-card-featured {
    background:
        linear-gradient(
            135deg,
            rgba(58, 38, 56, 0.13),
            transparent 60%
        );
}


/* ========================================
   CUSTOM CARD
======================================== */

.service-card-custom {
    background:
        linear-gradient(
            315deg,
            rgba(200, 179, 138, 0.025),
            transparent 55%
        );
}


/* ========================================
   SERVICES BOTTOM
======================================== */

.services-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 35px;

    color: rgba(243, 239, 232, 0.35);

    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.16em;
}

.services-bottom a {
    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--ivory);

    transition: color 0.3s ease;
}

.services-bottom a span {
    color: var(--gold);

    font-size: 14px;

    transition: transform 0.3s ease;
}

.services-bottom a:hover {
    color: var(--gold);
}

.services-bottom a:hover span {
    transform: translate(3px, -3px);
}


/* ========================================
   SERVICES RESPONSIVE
======================================== */

@media (max-width: 900px) {

    .services-section {
        padding: 120px 5%;
    }

    .services-header {
        grid-template-columns: 1fr;

        gap: 35px;

        margin-bottom: 60px;
    }

    .services-intro-text {
        max-width: 600px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 390px;
    }
}


@media (max-width: 600px) {

    .services-section {
        padding: 100px 20px;
    }

    .services-header h2 {
        font-size: clamp(50px, 15vw, 75px);
    }

    .services-intro-text {
        font-size: 12px;
    }

    .service-card {
        min-height: 360px;

        padding: 25px;
    }

    .service-icon {
        margin-top: 45px;
    }

    .service-content h3 {
        font-size: 29px;
    }

    .services-bottom {
        flex-direction: column;
        align-items: flex-start;

        gap: 20px;
    }

    .services-bottom a {
        line-height: 1.5;
    }
}

/* =========================
   WHAT CAN WE BUILD?
========================== */

.build-section {
    position: relative;
    background: var(--obsidian);
    padding: 150px 0;
    overflow: hidden;
}

.build-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    top: 10%;
    right: -300px;
    background: radial-gradient(
        circle,
        rgba(142, 113, 133, 0.12),
        transparent 70%
    );
    pointer-events: none;
}


/* HEADER */

.build-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
    margin: 70px 0 90px;
}

.build-eyebrow {
    margin-bottom: 20px;
    color: var(--champagne);
    font-size: 11px;
    letter-spacing: 0.22em;
}

.build-header h2 {
    margin: 0;
    font-size: clamp(42px, 6vw, 86px);
    line-height: 0.95;
    font-weight: 500;
    letter-spacing: -0.04em;
}

.build-header h2 span {
    color: var(--warm-ivory);
}

.build-intro {
    max-width: 390px;
    margin: 0 0 5px;
    color: rgba(243, 239, 232, 0.55);
    font-size: 15px;
    line-height: 1.8;
}


/* LAYOUT */

.build-layout {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 80px;
    align-items: stretch;
}


/* OPTIONS */

.build-options {
    border-top: 1px solid rgba(200, 179, 138, 0.25);
}

.build-option {
    width: 100%;
    min-height: 78px;
    display: grid;
    grid-template-columns: 50px 1fr 30px;
    align-items: center;
    gap: 20px;

    padding: 0;

    border: 0;
    border-bottom: 1px solid rgba(243, 239, 232, 0.1);

    background: transparent;
    color: var(--warm-ivory);

    text-align: left;
    cursor: pointer;

    transition:
        padding 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}

.build-option:hover {
    padding-left: 18px;
    background: rgba(200, 179, 138, 0.035);
}

.build-option.active {
    padding-left: 18px;
    background: rgba(200, 179, 138, 0.055);
}

.option-number {
    color: rgba(243, 239, 232, 0.35);
    font-size: 11px;
    letter-spacing: 0.08em;
}

.build-option.active .option-number {
    color: var(--champagne);
}

.option-text {
    font-size: 13px;
    letter-spacing: 0.13em;
}

.option-arrow {
    color: rgba(243, 239, 232, 0.3);
    font-size: 18px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.build-option:hover .option-arrow,
.build-option.active .option-arrow {
    color: var(--champagne);
    transform: translate(3px, -3px);
}


/* RESULT */

.build-result {
    position: relative;

    min-height: 500px;
    display: flex;
    flex-direction: column;

    padding: 42px;

    border: 1px solid rgba(200, 179, 138, 0.22);

    background:
        linear-gradient(
            145deg,
            rgba(58, 38, 56, 0.38),
            rgba(17, 17, 17, 0.95)
        );

    overflow: hidden;
}

.build-result::after {
    content: "";
    position: absolute;

    width: 280px;
    height: 280px;

    right: -100px;
    top: -100px;

    border-radius: 50%;

    border: 1px solid rgba(200, 179, 138, 0.15);

    box-shadow:
        0 0 80px rgba(142, 113, 133, 0.08);

    pointer-events: none;
}


/* RESULT LABEL */

.result-label {
    display: flex;
    align-items: center;
    gap: 10px;

    color: rgba(243, 239, 232, 0.45);

    font-size: 10px;
    letter-spacing: 0.18em;
}

.result-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--champagne);

    box-shadow:
        0 0 10px rgba(200, 179, 138, 0.5);
}


/* ICON */

.result-icon {
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 65px 0 35px;

    border: 1px solid rgba(200, 179, 138, 0.3);

    color: var(--champagne);

    font-size: 27px;

    transition: transform 0.4s ease;
}

.build-result:hover .result-icon {
    transform: rotate(10deg);
}


/* CONTENT */

.result-small {
    margin-bottom: 10px;

    color: rgba(243, 239, 232, 0.4);

    font-size: 10px;
    letter-spacing: 0.18em;
}

.result-content h3 {
    margin: 0 0 20px;

    color: var(--warm-ivory);

    font-size: clamp(28px, 3vw, 44px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.result-content p:last-child {
    max-width: 430px;

    color: rgba(243, 239, 232, 0.55);

    font-size: 14px;
    line-height: 1.8;
}


/* TAGS */

.result-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-top: 35px;
}

.result-services span {
    padding: 8px 11px;

    border: 1px solid rgba(243, 239, 232, 0.1);

    color: rgba(243, 239, 232, 0.45);

    font-size: 9px;
    letter-spacing: 0.12em;
}


/* CTA */

.result-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    width: fit-content;

    margin-top: auto;
    padding-top: 35px;

    color: var(--champagne);

    font-size: 10px;
    letter-spacing: 0.16em;
    text-decoration: none;

    transition: gap 0.3s ease;
}

.result-link:hover {
    gap: 18px;
}


/* BOTTOM NOTE */

.build-note {
    display: flex;
    align-items: center;
    gap: 20px;

    margin-top: 65px;
}

.note-line {
    width: 45px;
    height: 1px;

    background: var(--champagne);
}

.build-note p {
    margin: 0;

    color: rgba(243, 239, 232, 0.4);

    font-size: 10px;
    letter-spacing: 0.13em;
}

.build-note a {
    color: var(--champagne);
    text-decoration: none;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .build-section {
        padding: 110px 0;
    }

    .build-header {
        flex-direction: column;
        align-items: flex-start;
        margin: 55px 0 60px;
    }

    .build-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .build-result {
        min-height: 460px;
    }

}


@media (max-width: 600px) {

    .build-option {
        min-height: 70px;
        grid-template-columns: 35px 1fr 20px;
        gap: 10px;
    }

    .option-text {
        font-size: 11px;
        letter-spacing: 0.1em;
    }

    .build-result {
        padding: 28px;
        min-height: 440px;
    }

    .result-icon {
        margin-top: 50px;
    }

    .build-note {
        align-items: flex-start;
    }

    .build-note p {
        line-height: 1.7;
    }

}

/* =========================
   SELECTED WORK
========================== */

 .work-section {
    position: relative;
    padding: 150px 0;
    background: var(--soft-black);
    overflow: hidden;
}

.work-section::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    left: -350px;
    bottom: -300px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(58, 38, 56, 0.3),
        transparent 70%
    );

    pointer-events: none;
}


/* HEADER */

.work-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 60px;

    margin: 70px 0 90px;
}

.work-eyebrow {
    margin-bottom: 20px;

    color: var(--champagne);

    font-size: 11px;
    letter-spacing: 0.22em;
}

.work-header h2 {
    margin: 0;

    font-size: clamp(45px, 6vw, 90px);

    line-height: 0.92;

    font-weight: 500;

    letter-spacing: -0.045em;
}

.work-header h2 span {
    color: var(--champagne);
}

.work-intro {
    max-width: 400px;

    margin: 0 0 5px;

    color: rgba(243, 239, 232, 0.5);

    font-size: 15px;
    line-height: 1.8;
}


/* GRID */

.work-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 90px 35px;
}


/* CARD */

.work-card {
    position: relative;
}

.work-card-large {
    grid-column: span 2;
}


/* IMAGE */

.work-image {
    position: relative;

    display: block;

    height: 520px;

    overflow: hidden;

    border: 1px solid rgba(200, 179, 138, 0.15);

    text-decoration: none;

    background: #111;
}

.work-card:not(.work-card-large) .work-image {
    height: 430px;
}


/* IMAGE OVERLAY */

.work-image-overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            180deg,
            rgba(10, 10, 10, 0.15),
            rgba(10, 10, 10, 0.55)
        );

    transition: background 0.5s ease;
}

.work-image:hover .work-image-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(10, 10, 10, 0.05),
            rgba(10, 10, 10, 0.35)
        );
}


/* PROJECT NUMBER */

.work-project-number {
    position: absolute;

    top: 25px;
    left: 25px;

    z-index: 5;

    color: rgba(243, 239, 232, 0.55);

    font-size: 10px;
    letter-spacing: 0.15em;
}


/* VIEW */

.work-view {
    position: absolute;

    right: 25px;
    top: 25px;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 10px;

    color: var(--champagne);

    font-size: 10px;
    letter-spacing: 0.15em;

    opacity: 0;

    transform: translateY(8px);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.work-image:hover .work-view {
    opacity: 1;
    transform: translateY(0);
}

.work-view span {
    font-size: 17px;
}


/* VISUAL AREA */

.work-visual {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    transition: transform 0.8s cubic-bezier(.2,.7,.2,1);
}

.work-image:hover .work-visual {
    transform: scale(1.035);
}


/* =========================
   NOVA
========================== */

.work-image-nova {
    background:
        radial-gradient(
            circle at 70% 35%,
            rgba(142, 113, 133, 0.55),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #171317,
            #080808 70%
        );
}

.nova-circle {
    position: absolute;

    width: 390px;
    height: 390px;

    border-radius: 50%;

    border: 1px solid rgba(200, 179, 138, 0.45);

    box-shadow:
        0 0 100px rgba(142, 113, 133, 0.2);
}

.nova-circle::before {
    content: "";

    position: absolute;

    inset: 35px;

    border-radius: 50%;

    border: 1px solid rgba(243, 239, 232, 0.15);
}

.nova-content,
.ember-content,
.forma-content,
.nexora-content {
    position: relative;

    z-index: 3;

    text-align: center;
}

.nova-content span,
.ember-content span,
.forma-content span,
.nexora-content span {
    display: block;

    color: var(--warm-ivory);

    font-size: clamp(35px, 5vw, 75px);

    font-weight: 400;

    letter-spacing: 0.12em;
}

.nova-content small,
.ember-content small,
.forma-content small,
.nexora-content small {
    display: block;

    margin-top: 12px;

    color: var(--champagne);

    font-size: 9px;

    letter-spacing: 0.25em;
}


/* =========================
   EMBER
========================== */

.work-image-ember {
    background:
        radial-gradient(
            circle at 50% 70%,
            rgba(200, 179, 138, 0.18),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #18120e,
            #080808
        );
}

.ember-lines {
    position: absolute;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    border: 1px solid rgba(200, 179, 138, 0.3);

    transform: rotate(25deg);
}

.ember-lines::before,
.ember-lines::after {
    content: "";

    position: absolute;

    inset: 25px;

    border-radius: 50%;

    border: 1px solid rgba(200, 179, 138, 0.18);
}

.ember-lines::after {
    inset: 55px;
}


/* =========================
   FORMA
========================== */

.work-image-forma {
    background:
        linear-gradient(
            120deg,
            #121212,
            #1c1919
        );
}

.forma-building {
    position: absolute;

    width: 230px;
    height: 310px;

    bottom: -30px;

    border: 1px solid rgba(243, 239, 232, 0.2);

    background:
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 27px,
            rgba(200, 179, 138, 0.12) 28px,
            transparent 29px
        ),
        linear-gradient(
            180deg,
            rgba(58, 38, 56, 0.3),
            rgba(10, 10, 10, 0.8)
        );

    box-shadow:
        0 0 80px rgba(58, 38, 56, 0.25);
}

.forma-building::before {
    content: "";

    position: absolute;

    left: -45px;
    bottom: 0;

    width: 45px;
    height: 240px;

    border: 1px solid rgba(243, 239, 232, 0.12);
}


/* =========================
   NEXORA
========================== */

.work-image-nexora {
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(58, 38, 56, 0.65),
            transparent 40%
        ),
        #090909;
}

.nexora-orbit {
    position: absolute;

    width: 430px;
    height: 180px;

    border: 1px solid rgba(200, 179, 138, 0.35);

    border-radius: 50%;

    transform: rotate(-25deg);

    box-shadow:
        0 0 70px rgba(142, 113, 133, 0.15);
}

.nexora-orbit::before {
    content: "";

    position: absolute;

    width: 12px;
    height: 12px;

    top: 18px;
    left: 70px;

    border-radius: 50%;

    background: var(--champagne);

    box-shadow:
        0 0 25px rgba(200, 179, 138, 0.7);
}


/* CARD INFO */

.work-info {
    display: flex;

    justify-content: space-between;

    gap: 40px;

    padding-top: 25px;
}

.work-category {
    margin-bottom: 10px;

    color: rgba(243, 239, 232, 0.35);

    font-size: 9px;
    letter-spacing: 0.15em;
}

.work-info h3 {
    margin: 0;

    color: var(--warm-ivory);

    font-size: 20px;

    font-weight: 500;

    letter-spacing: 0.04em;
}

.work-description {
    max-width: 330px;

    margin: 0;

    color: rgba(243, 239, 232, 0.45);

    font-size: 13px;

    line-height: 1.7;
}


/* BOTTOM */

.work-bottom {
    display: flex;

    justify-content: space-between;
    align-items: center;

    margin-top: 80px;

    padding-top: 25px;

    border-top: 1px solid rgba(243, 239, 232, 0.1);
}

.work-bottom span {
    color: rgba(243, 239, 232, 0.35);

    font-size: 10px;

    letter-spacing: 0.15em;
}

.work-bottom a {
    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--champagne);

    font-size: 10px;

    letter-spacing: 0.15em;

    text-decoration: none;
}

.work-bottom a span {
    color: var(--champagne);

    font-size: 18px;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .work-section {
        padding: 110px 0;
    }

    .work-header {
        flex-direction: column;

        align-items: flex-start;

        margin: 55px 0 60px;
    }

    .work-grid {
        grid-template-columns: 1fr;

        gap: 65px;
    }

    .work-card-large {
        grid-column: span 1;
    }

    .work-image,
    .work-card:not(.work-card-large) .work-image {
        height: 430px;
    }

}


@media (max-width: 600px) {

    .work-image,
    .work-card:not(.work-card-large) .work-image {
        height: 350px;
    }

    .nova-circle {
        width: 270px;
        height: 270px;
    }

    .nexora-orbit {
        width: 320px;
        height: 140px;
    }

    .work-info {
        flex-direction: column;

        gap: 20px;
    }

    .work-description {
        max-width: none;
    }

    .work-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }

}

/* =========================
   WHY TSVELA LABS
========================== */

.why-section {
    position: relative;

    padding: 160px 0;

    background: var(--obsidian);

    overflow: hidden;
}


/* SUBTLE GLOW */

.why-section::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    top: 25%;
    right: -350px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(142, 113, 133, 0.12),
            transparent 70%
        );

    pointer-events: none;
}


/* HEADER */

.why-header {
    margin: 75px 0 100px;
}

.why-eyebrow {
    margin-bottom: 25px;

    color: var(--champagne);

    font-size: 10px;

    letter-spacing: 0.22em;
}

.why-header h2 {
    margin: 0;

    font-size: clamp(48px, 7vw, 105px);

    line-height: 0.9;

    font-weight: 500;

    letter-spacing: -0.05em;
}

.why-header h2 span {
    color: var(--champagne);
}


/* GRID */

.why-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    border-top: 1px solid rgba(200, 179, 138, 0.22);
}


/* ITEM */

.why-item {
    position: relative;

    display: grid;

    grid-template-columns: 45px 65px 1fr;

    gap: 25px;

    min-height: 310px;

    padding: 45px 40px;

    border-bottom: 1px solid rgba(243, 239, 232, 0.1);

    transition:
        background 0.4s ease,
        padding 0.4s ease;
}

.why-item:nth-child(odd) {
    border-right: 1px solid rgba(243, 239, 232, 0.1);
}

.why-item:hover {
    background: rgba(200, 179, 138, 0.035);

    padding-left: 48px;
}


/* NUMBER */

.why-number {
    color: rgba(243, 239, 232, 0.3);

    font-size: 10px;

    letter-spacing: 0.12em;
}

.why-item:hover .why-number {
    color: var(--champagne);
}


/* ICON */

.why-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(200, 179, 138, 0.25);

    color: var(--champagne);

    font-size: 19px;

    transition:
        transform 0.5s ease,
        border-color 0.4s ease;
}

.why-item:hover .why-icon {
    transform: rotate(10deg);

    border-color: rgba(200, 179, 138, 0.6);
}


/* CONTENT */

.why-content {
    padding-right: 20px;
}

.why-content h3 {
    max-width: 380px;

    margin: 0 0 22px;

    color: var(--warm-ivory);

    font-size: 21px;

    line-height: 1.15;

    font-weight: 500;

    letter-spacing: 0.02em;
}

.why-content h3 span {
    color: var(--champagne);
}

.why-content p {
    max-width: 390px;

    margin: 0;

    color: rgba(243, 239, 232, 0.48);

    font-size: 13px;

    line-height: 1.8;
}


/* STATEMENT */

.why-statement {
    display: flex;

    align-items: center;

    gap: 25px;

    margin: 110px 0 75px;
}

.statement-line {
    flex: 1;

    height: 1px;

    background: rgba(200, 179, 138, 0.25);
}

.why-statement p {
    max-width: 480px;

    margin: 0;

    color: rgba(243, 239, 232, 0.45);

    font-size: 10px;

    line-height: 1.7;

    letter-spacing: 0.14em;

    text-align: center;
}

.why-statement p span {
    color: var(--champagne);
}


/* BOTTOM */

.why-bottom {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;

    padding-top: 35px;

    border-top: 1px solid rgba(243, 239, 232, 0.1);
}

.why-bottom p {
    max-width: 650px;

    margin: 0;

    color: var(--warm-ivory);

    font-size: clamp(20px, 2.5vw, 34px);

    line-height: 1.15;

    font-weight: 400;

    letter-spacing: -0.02em;
}

.why-bottom p span {
    color: var(--champagne);
}

.why-cta {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;

    color: var(--champagne);

    font-size: 10px;

    letter-spacing: 0.15em;

    text-decoration: none;

    transition: gap 0.3s ease;
}

.why-cta:hover {
    gap: 18px;
}

.why-cta span {
    font-size: 18px;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .why-section {
        padding: 110px 0;
    }

    .why-header {
        margin: 55px 0 65px;
    }

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

    .why-item:nth-child(odd) {
        border-right: 0;
    }

    .why-item {
        min-height: 270px;
    }

    .why-bottom {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 600px) {

    .why-item {
        grid-template-columns: 30px 50px 1fr;

        gap: 15px;

        padding: 35px 20px;
    }

    .why-item:hover {
        padding-left: 25px;
    }

    .why-content h3 {
        font-size: 17px;
    }

    .why-content p {
        font-size: 12px;
    }

    .why-statement {
        margin: 80px 0 55px;
    }

    .why-statement p {
        font-size: 8px;
    }

}

/* =========================
   THE PROCESS
========================== */

.process-section {
    position: relative;

    padding: 160px 0;

    background: var(--soft-black);

    overflow: hidden;
}

.process-section::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    left: -300px;
    top: 25%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(142, 113, 133, 0.1),
            transparent 70%
        );

    pointer-events: none;
}


/* HEADER */

.process-header {
    display: flex;

    justify-content: space-between;
    align-items: flex-end;

    gap: 60px;

    margin: 75px 0 90px;
}

.process-eyebrow {
    margin-bottom: 22px;

    color: var(--champagne);

    font-size: 10px;

    letter-spacing: 0.22em;
}

.process-header h2 {
    margin: 0;

    font-size: clamp(48px, 7vw, 100px);

    line-height: 0.9;

    font-weight: 500;

    letter-spacing: -0.05em;
}

.process-header h2 span {
    color: var(--champagne);
}

.process-intro {
    max-width: 410px;

    margin: 0 0 5px;

    color: rgba(243, 239, 232, 0.5);

    font-size: 14px;

    line-height: 1.85;
}


/* PROCESS LIST */

.process-list {
    border-top: 1px solid rgba(200, 179, 138, 0.25);
}


/* ITEM */

.process-item {
    position: relative;

    display: grid;

    grid-template-columns: 70px 1fr 150px 35px;

    align-items: center;

    gap: 30px;

    min-height: 150px;

    padding: 30px 15px;

    border-bottom: 1px solid rgba(243, 239, 232, 0.1);

    transition:
        background 0.4s ease,
        padding 0.4s ease;
}

.process-item:hover {
    padding-left: 30px;

    background: rgba(200, 179, 138, 0.035);
}


/* NUMBER */

.process-number {
    align-self: flex-start;

    padding-top: 5px;

    color: rgba(243, 239, 232, 0.3);

    font-size: 11px;

    letter-spacing: 0.12em;

    transition: color 0.3s ease;
}

.process-item:hover .process-number {
    color: var(--champagne);
}


/* MAIN */

.process-main {
    display: grid;

    grid-template-columns: 260px 1fr;

    gap: 45px;

    align-items: center;
}

.process-title {
    color: var(--warm-ivory);

    font-size: clamp(24px, 3vw, 38px);

    font-weight: 400;

    letter-spacing: 0.02em;

    transition: color 0.3s ease;
}

.process-item:hover .process-title {
    color: var(--champagne);
}

.process-main p {
    max-width: 470px;

    margin: 0;

    color: rgba(243, 239, 232, 0.45);

    font-size: 13px;

    line-height: 1.75;
}


/* SIDE */

.process-side {
    color: rgba(243, 239, 232, 0.28);

    font-size: 9px;

    letter-spacing: 0.15em;

    text-align: right;
}


/* BOTTOM */

.process-bottom {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 30px;

    margin-top: 55px;
}

.process-bottom-label {
    display: flex;

    align-items: center;

    gap: 10px;

    color: rgba(243, 239, 232, 0.35);

    font-size: 9px;

    letter-spacing: 0.15em;
}

.process-status {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--champagne);

    box-shadow:
        0 0 12px rgba(200, 179, 138, 0.45);
}

.process-page-cta {
    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--champagne);

    font-size: 10px;

    letter-spacing: 0.16em;

    text-decoration: none;

    transition: gap 0.3s ease;
}

.process-cta:hover {
    gap: 18px;
}

.process-cta span {
    font-size: 18px;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .process-main {
        grid-template-columns: 190px 1fr;

        gap: 30px;
    }

    .process-item {
        grid-template-columns: 50px 1fr 100px 30px;

        gap: 20px;
    }

}


@media (max-width: 800px) {

    .process-section {
        padding: 110px 0;
    }

    .process-header {
        flex-direction: column;

        align-items: flex-start;

        margin: 55px 0 65px;
    }

    .process-item {
        grid-template-columns: 40px 1fr 30px;

        gap: 20px;

        padding: 30px 10px;
    }

    .process-item:hover {
        padding-left: 18px;
    }

    .process-main {
        display: block;
    }

    .process-title {
        margin-bottom: 12px;
    }

    .process-side {
        display: none;
    }

}


@media (max-width: 600px) {

    .process-item {
        grid-template-columns: 30px 1fr 30px;

        gap: 12px;

        min-height: 145px;
    }

    .process-title {
        font-size: 23px;
    }

    .process-main p {
        font-size: 12px;
        line-height: 1.7;
    }

    .process-bottom {
        flex-direction: column;

        align-items: flex-start;
    }

}

/* =========================
   SERVICES / PACKAGES
========================== */

.packages-section {
    position: relative;

    padding: 160px 0;

    background: var(--obsidian);

    overflow: hidden;
}

.packages-section::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    right: -350px;
    top: 20%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(58, 38, 56, 0.28),
            transparent 70%
        );

    pointer-events: none;
}


/* HEADER */

.packages-header {
    display: flex;

    justify-content: space-between;
    align-items: flex-end;

    gap: 60px;

    margin: 75px 0 90px;
}

.packages-eyebrow {
    margin-bottom: 22px;

    color: var(--champagne);

    font-size: 10px;

    letter-spacing: 0.22em;
}

.packages-header h2 {
    margin: 0;

    font-size: clamp(48px, 7vw, 100px);

    line-height: 0.9;

    font-weight: 500;

    letter-spacing: -0.05em;
}

.packages-header h2 span {
    color: var(--champagne);
}

.packages-intro {
    max-width: 410px;

    margin: 0 0 5px;

    color: rgba(243, 239, 232, 0.5);

    font-size: 14px;

    line-height: 1.85;
}


/* GRID */

.packages-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 1px;

    background: rgba(200, 179, 138, 0.18);

    border: 1px solid rgba(200, 179, 138, 0.18);
}


/* CARD */

.package-card {
    position: relative;

    min-height: 610px;

    display: flex;

    flex-direction: column;

    padding: 38px 35px;

    background: var(--soft-black);

    transition:
        background 0.4s ease,
        transform 0.4s ease;
}

.package-card:hover {
    background: #151315;
}


/* FEATURED */

.package-card-featured {
    background:
        linear-gradient(
            145deg,
            rgba(58, 38, 56, 0.4),
            rgba(17, 17, 17, 1)
        );
}

.package-card-featured:hover {
    background:
        linear-gradient(
            145deg,
            rgba(58, 38, 56, 0.5),
            rgba(17, 17, 17, 1)
        );
}


/* BADGE */

.package-badge {
    position: absolute;

    top: 0;
    right: 0;

    padding: 10px 15px;

    background: var(--champagne);

    color: var(--obsidian);

    font-size: 8px;

    letter-spacing: 0.15em;
}


/* TOP */

.package-top {
    display: flex;

    justify-content: space-between;
    align-items: center;

    padding-bottom: 25px;

    border-bottom: 1px solid rgba(243, 239, 232, 0.1);
}

.package-number {
    color: var(--champagne);

    font-size: 10px;

    letter-spacing: 0.12em;
}

.package-type {
    color: rgba(243, 239, 232, 0.35);

    font-size: 9px;

    letter-spacing: 0.17em;
}


/* HEADING */

.package-heading {
    padding: 45px 0 35px;
}

.package-heading h3 {
    margin: 0 0 22px;

    color: var(--warm-ivory);

    font-size: clamp(30px, 3vw, 45px);

    line-height: 0.95;

    font-weight: 400;

    letter-spacing: -0.03em;
}

.package-heading h3 span {
    color: var(--champagne);
}

.package-heading p {
    max-width: 330px;

    margin: 0;

    color: rgba(243, 239, 232, 0.45);

    font-size: 13px;

    line-height: 1.75;
}


/* DIVIDER */

.package-divider {
    width: 100%;

    height: 1px;

    background: rgba(243, 239, 232, 0.1);
}


/* FEATURES */

.package-features {
    display: flex;

    flex-direction: column;

    gap: 15px;

    margin: 30px 0 35px;

    padding: 0;

    list-style: none;
}

.package-features li {
    display: flex;

    align-items: center;

    gap: 12px;

    color: rgba(243, 239, 232, 0.55);

    font-size: 11px;

    line-height: 1.4;
}

.package-features li span {
    color: var(--champagne);

    font-size: 13px;
}


/* LINK */

.package-link {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: auto;

    padding-top: 25px;

    border-top: 1px solid rgba(243, 239, 232, 0.1);

    color: var(--champagne);

    font-size: 9px;

    letter-spacing: 0.15em;

    text-decoration: none;

    transition:
        padding 0.3s ease,
        color 0.3s ease;
}

.package-link:hover {
    padding-left: 8px;
}

.package-link span {
    font-size: 18px;
}


/* NOTE */

.packages-note {
    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 55px;
}

.packages-note-line {
    width: 45px;

    height: 1px;

    background: var(--champagne);
}

.packages-note p {
    margin: 0;

    color: rgba(243, 239, 232, 0.35);

    font-size: 9px;

    letter-spacing: 0.15em;
}

.packages-note a {
    color: var(--champagne);

    text-decoration: none;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card {
        min-height: auto;

        padding: 35px;
    }

    .package-features {
        margin-bottom: 45px;
    }

}


@media (max-width: 800px) {

    .packages-section {
        padding: 110px 0;
    }

    .packages-header {
        flex-direction: column;

        align-items: flex-start;

        margin: 55px 0 65px;
    }

}


@media (max-width: 600px) {

    .package-card {
        padding: 28px;
    }

    .package-heading {
        padding: 38px 0 30px;
    }

    .package-heading h3 {
        font-size: 30px;
    }

}

/* =========================================
   MAINTENANCE
========================================= */

.maintenance-section {
    position: relative;
    padding: 150px 0;
    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(58, 38, 56, 0.30),
            transparent 32%
        ),
        var(--soft-black);
    overflow: hidden;
}

.maintenance-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 7%;
    right: 7%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(200, 179, 138, 0.45),
        transparent
    );
}

.maintenance-section .section-inner {
    position: relative;
    z-index: 2;
}

.maintenance-intro {
    max-width: 620px;
    margin: 70px 0 65px auto;
}

.maintenance-intro p {
    margin: 0;
    color: rgba(243, 239, 232, 0.62);
    font-size: 18px;
    line-height: 1.8;
}


/* Grid */

.maintenance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(200, 179, 138, 0.15);
    border: 1px solid rgba(200, 179, 138, 0.15);
}


/* Card */

.maintenance-card {
    position: relative;
    padding: 42px 35px 35px;
    min-height: 570px;
    background: rgba(10, 10, 10, 0.88);
    display: flex;
    flex-direction: column;
    transition:
        transform 0.4s ease,
        background 0.4s ease;
}

.maintenance-card:hover {
    background: rgba(17, 17, 17, 0.98);
    transform: translateY(-5px);
    z-index: 2;
}


/* Featured */

.maintenance-card.featured {
    background:
        linear-gradient(
            145deg,
            rgba(58, 38, 56, 0.38),
            rgba(10, 10, 10, 0.95)
        );
}

.maintenance-card.featured::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(200, 179, 138, 0.38);
    pointer-events: none;
}


/* Badge */

.maintenance-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 9px 15px;
    background: var(--champagne);
    color: var(--obsidian);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
}


/* Top */

.maintenance-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 45px;
}

.maintenance-index {
    color: var(--champagne);
    font-size: 11px;
    letter-spacing: 0.16em;
}

.maintenance-label {
    color: rgba(243, 239, 232, 0.38);
    font-size: 9px;
    letter-spacing: 0.18em;
}


/* Title */

.maintenance-card h3 {
    margin: 0 0 22px;
    color: var(--warm-ivory);
    font-size: 27px;
    font-weight: 500;
    letter-spacing: 0.08em;
}


/* Price */

.maintenance-price {
    margin-bottom: 25px;
    color: var(--warm-ivory);
    font-size: 54px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.04em;
}

.maintenance-price span {
    margin-right: 5px;
    color: var(--champagne);
    font-size: 25px;
    vertical-align: top;
}

.maintenance-price small {
    color: rgba(243, 239, 232, 0.38);
    font-size: 11px;
    letter-spacing: 0.08em;
}


/* Description */

.maintenance-description {
    min-height: 80px;
    margin: 0;
    color: rgba(243, 239, 232, 0.55);
    font-size: 14px;
    line-height: 1.7;
}


/* Divider */

.maintenance-divider {
    width: 100%;
    height: 1px;
    margin: 5px 0 25px;
    background: rgba(200, 179, 138, 0.14);
}


/* Features */

.maintenance-features {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin: 0 0 35px;
    padding: 0;
    list-style: none;
}

.maintenance-features li {
    position: relative;
    padding-left: 19px;
    color: rgba(243, 239, 232, 0.68);
    font-size: 12px;
    letter-spacing: 0.02em;
}

.maintenance-features li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--champagne);
}


/* Button */

.maintenance-button {
    margin-top: auto;
    padding: 16px 0;
    border-top: 1px solid rgba(200, 179, 138, 0.22);
    color: var(--warm-ivory);
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition:
        color 0.3s ease,
        border-color 0.3s ease;
}

.maintenance-button span {
    color: var(--champagne);
    font-size: 16px;
    transition: transform 0.3s ease;
}

.maintenance-button:hover {
    color: var(--champagne);
    border-color: rgba(200, 179, 138, 0.55);
}

.maintenance-button:hover span {
    transform: translate(3px, -3px);
}


/* Bottom */

.maintenance-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(200, 179, 138, 0.12);
}

.maintenance-note {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.note-mark {
    color: var(--champagne);
    font-size: 22px;
    line-height: 1;
}

.maintenance-note strong {
    display: block;
    margin-bottom: 7px;
    color: var(--warm-ivory);
    font-size: 10px;
    letter-spacing: 0.14em;
}

.maintenance-note p {
    margin: 0;
    color: rgba(243, 239, 232, 0.42);
    font-size: 12px;
    line-height: 1.6;
}

.text-link {
    flex-shrink: 0;
    color: var(--champagne);
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 0.15em;
    transition: color 0.3s ease;
}

.text-link span {
    margin-left: 8px;
}

.text-link:hover {
    color: var(--warm-ivory);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .maintenance-grid {
        grid-template-columns: 1fr;
    }

    .maintenance-card {
        min-height: auto;
    }

    .maintenance-description {
        min-height: auto;
        max-width: 600px;
    }

    .maintenance-intro {
        margin-left: 0;
    }
}


@media (max-width: 700px) {

    .maintenance-section {
        padding: 100px 0;
    }

    .maintenance-intro {
        margin: 50px 0 45px;
    }

    .maintenance-intro p {
        font-size: 16px;
    }

    .maintenance-card {
        padding: 35px 25px 30px;
    }

    .maintenance-top {
        margin-bottom: 35px;
    }

    .maintenance-card h3 {
        font-size: 23px;
    }

    .maintenance-price {
        font-size: 46px;
    }

    .maintenance-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================
   FAQ
========================================= */

.faq-section {
    position: relative;
    padding: 150px 0;
    background: var(--obsidian);
    overflow: hidden;
}

.faq-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: 15%;
    right: -250px;
    border-radius: 50%;
    background: rgba(58, 38, 56, 0.22);
    filter: blur(100px);
    pointer-events: none;
}

.faq-section .section-inner {
    position: relative;
    z-index: 2;
}


/* Layout */

.faq-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.5fr;
    gap: 100px;
    margin-top: 80px;
}


/* Intro */

.faq-intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.faq-intro p {
    max-width: 330px;
    margin: 0 0 35px;
    color: rgba(243, 239, 232, 0.55);
    font-size: 16px;
    line-height: 1.8;
}


/* FAQ list */

.faq-list {
    border-top: 1px solid rgba(200, 179, 138, 0.22);
}


/* Item */

.faq-item {
    border-bottom: 1px solid rgba(200, 179, 138, 0.16);
}

.faq-item summary {
    display: grid;
    grid-template-columns: 55px 1fr 30px;
    gap: 20px;
    align-items: center;
    padding: 28px 0;
    cursor: pointer;
    list-style: none;
    transition: color 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--champagne);
}


/* Number */

.faq-number {
    color: var(--champagne);
    font-size: 10px;
    letter-spacing: 0.12em;
}


/* Question */

.faq-question {
    color: var(--warm-ivory);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    line-height: 1.5;
}


/* Icon */

.faq-icon {
    color: var(--champagne);
    font-size: 20px;
    font-weight: 300;
    text-align: right;
    transition: transform 0.35s ease;
}


/* Open state */

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-item[open] summary {
    color: var(--champagne);
}


/* Answer */

.faq-answer {
    max-width: 720px;
    padding: 0 50px 30px 75px;
}

.faq-answer p {
    margin: 0 0 13px;
    color: rgba(243, 239, 232, 0.48);
    font-size: 13px;
    line-height: 1.8;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}


/* =========================================
   FAQ RESPONSIVE
========================================= */

@media (max-width: 900px) {

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

    .faq-intro p {
        max-width: 550px;
    }
}


@media (max-width: 600px) {

    .faq-section {
        padding: 100px 0;
    }

    .faq-layout {
        margin-top: 55px;
    }

    .faq-item summary {
        grid-template-columns: 35px 1fr 25px;
        gap: 12px;
        padding: 23px 0;
    }

    .faq-question {
        font-size: 10px;
        letter-spacing: 0.08em;
    }

    .faq-answer {
        padding: 0 20px 25px 47px;
    }

    .faq-answer p {
        font-size: 12px;
    }
}

/* =========================================
   CONTACT / PROJECT INQUIRY
========================================= */

.contact-section {
    position: relative;
    padding: 160px 0;
    background:
        radial-gradient(
            circle at 20% 70%,
            rgba(58, 38, 56, 0.28),
            transparent 32%
        ),
        var(--soft-black);
    overflow: hidden;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 7%;
    right: 7%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(200, 179, 138, 0.45),
        transparent
    );
}

.contact-section .section-inner {
    position: relative;
    z-index: 2;
}


/* =========================================
   CONTACT LAYOUT
========================================= */

.contact-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 110px;
    margin-top: 90px;
}


/* =========================================
   CONTACT INTRO
========================================= */

.contact-lead {
    max-width: 480px;
    margin: 0 0 25px;

    color: var(--warm-ivory);

    font-size: 25px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.contact-secondary {
    max-width: 430px;
    margin: 0;

    color: rgba(243, 239, 232, 0.48);

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   CONTACT DETAILS
========================================= */

.contact-details {
    margin-top: 70px;
    border-top: 1px solid rgba(200, 179, 138, 0.15);
}

.contact-detail {
    display: flex;
    gap: 20px;
    padding: 22px 0;

    border-bottom: 1px solid rgba(200, 179, 138, 0.12);
}

.contact-detail > span {
    min-width: 25px;

    color: var(--champagne);

    font-size: 9px;
    letter-spacing: 0.12em;
}

.contact-detail small {
    display: block;
    margin-bottom: 7px;

    color: rgba(243, 239, 232, 0.35);

    font-size: 8px;
    letter-spacing: 0.15em;
}

.contact-detail a,
.contact-detail strong {
    color: var(--warm-ivory);

    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;

    text-decoration: none;
}

.contact-detail a {
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: var(--champagne);
}


/* =========================================
   FORM WRAPPER
========================================= */

.project-form-wrapper {
    position: relative;

    padding: 42px;

    border: 1px solid rgba(200, 179, 138, 0.20);

    background:
        linear-gradient(
            145deg,
            rgba(58, 38, 56, 0.16),
            rgba(10, 10, 10, 0.70)
        );
}


/* =========================================
   FORM HEADER
========================================= */

.form-header {
    display: flex;
    justify-content: space-between;

    padding-bottom: 25px;
    margin-bottom: 35px;

    border-bottom: 1px solid rgba(200, 179, 138, 0.15);

    color: var(--champagne);

    font-size: 9px;
    letter-spacing: 0.16em;
}


/* =========================================
   FORM
========================================= */

.project-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.form-group label {
    color: rgba(243, 239, 232, 0.45);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.15em;
}


/* Inputs */

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 15px 0;

    border: none;
    border-bottom: 1px solid rgba(200, 179, 138, 0.20);

    outline: none;

    background: transparent;

    color: var(--warm-ivory);

    font-family: inherit;
    font-size: 13px;

    transition:
        border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(243, 239, 232, 0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--champagne);
}


/* Select */

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--soft-black);
    color: var(--warm-ivory);
}


/* Textarea */

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.7;
}


/* Two columns */

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


/* =========================================
   SUBMIT
========================================= */

.form-submit {
    display: flex;
    align-items: center;
    gap: 25px;

    margin-top: 10px;
    padding-top: 30px;

    border-top: 1px solid rgba(200, 179, 138, 0.15);
}

.form-submit .primary-button {
    border: none;
    cursor: pointer;
}

.form-submit p {
    max-width: 250px;
    margin: 0;

    color: rgba(243, 239, 232, 0.35);

    font-size: 10px;
    line-height: 1.6;
}


/* =========================================
   CONTACT RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .contact-lead {
        max-width: 650px;
    }

    .contact-secondary {
        max-width: 600px;
    }

    .contact-details {
        max-width: 650px;
    }
}


@media (max-width: 650px) {

    .contact-section {
        padding: 100px 0;
    }

    .contact-layout {
        margin-top: 60px;
        gap: 55px;
    }

    .contact-lead {
        font-size: 21px;
    }

    .project-form-wrapper {
        padding: 28px 22px;
    }

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

    .form-submit {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-submit p {
        max-width: 100%;
    }

    .form-submit .primary-button {
        width: 100%;
        justify-content: space-between;
    }
}

/* =========================================
   FINAL CTA
========================================= */

.final-cta-section {
    position: relative;
    padding: 180px 0;
    text-align: center;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(58, 38, 56, 0.55),
            transparent 38%
        ),
        var(--obsidian);

    overflow: hidden;
}

.final-cta-section::before,
.final-cta-section::after {
    content: "";
    position: absolute;

    left: 7%;
    right: 7%;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(200, 179, 138, 0.35),
        transparent
    );
}

.final-cta-section::before {
    top: 0;
}

.final-cta-section::after {
    bottom: 0;
}


/* Glow */

.final-cta-orb {
    position: absolute;

    width: 450px;
    height: 450px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(142, 113, 133, 0.16),
            rgba(58, 38, 56, 0.10) 40%,
            transparent 70%
        );

    filter: blur(25px);

    pointer-events: none;
}


/* Content */

.final-cta-section .section-inner {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
}


/* Label */

.final-cta-label {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-bottom: 40px;

    color: var(--champagne);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.22em;
}

.final-cta-label span {
    width: 35px;
    height: 1px;

    background: var(--champagne);

    opacity: 0.65;
}


/* Title */

.final-cta-title {
    margin: 0;

    color: var(--warm-ivory);

    font-size: clamp(50px, 8vw, 110px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.045em;
}

.final-cta-title span {
    color: var(--champagne);
}


/* Description */

.final-cta-description {
    max-width: 570px;

    margin: 40px auto 45px;

    color: rgba(243, 239, 232, 0.50);

    font-size: 15px;
    line-height: 1.8;
}


/* Button */

.final-cta-button {
    min-width: 210px;

    justify-content: center;
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    position: relative;

    padding: 75px 0 30px;

    background: var(--soft-black);
}


/* Main */

.footer-main {
    display: grid;

    grid-template-columns: 1.5fr repeat(3, 1fr);

    gap: 50px;

    padding-bottom: 70px;

    border-bottom: 1px solid rgba(200, 179, 138, 0.14);
}


/* Brand */

.footer-brand .brand {
    display: inline-block;

    margin-bottom: 20px;
}

.footer-brand p {
    margin: 0;

    color: rgba(243, 239, 232, 0.35);

    font-size: 11px;
    line-height: 1.8;
    letter-spacing: 0.08em;
}


/* Footer columns */

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 13px;
}

.footer-heading {
    margin-bottom: 12px;

    color: var(--champagne);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.18em;
}

.footer-column a {
    color: rgba(243, 239, 232, 0.45);

    font-size: 9px;
    letter-spacing: 0.12em;

    text-decoration: none;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.footer-column a:hover {
    color: var(--warm-ivory);
    transform: translateX(3px);
}


/* Footer bottom */

.footer-bottom {
    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 25px;

    padding-top: 25px;

    color: rgba(243, 239, 232, 0.25);

    font-size: 8px;
    letter-spacing: 0.12em;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: inherit;
    text-decoration: none;

    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--champagne);
}

.footer-location {
    text-align: right;
}


/* =========================================
   FOOTER RESPONSIVE
========================================= */

@media (max-width: 900px) {

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 15px;
    }

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


@media (max-width: 600px) {

    .final-cta-section {
        padding: 120px 0;
    }

    .final-cta-label {
        font-size: 8px;
        letter-spacing: 0.15em;
    }

    .final-cta-title {
        font-size: clamp(42px, 13vw, 65px);
    }

    .final-cta-description {
        font-size: 13px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        font-size: 7px;
    }

    .footer-legal {
        flex-wrap: wrap;
        gap: 15px;
    }
}

/* =========================================
   DJANGO MESSAGES
========================================= */

.site-messages {
    position: fixed;
    top: 100px;
    right: 30px;

    z-index: 9999;

    width: min(380px, calc(100% - 40px));
}

.site-message {
    display: flex;
    align-items: center;
    gap: 13px;

    padding: 18px 20px;

    border: 1px solid rgba(200, 179, 138, 0.35);

    background: rgba(17, 17, 17, 0.96);

    color: var(--warm-ivory);

    font-size: 11px;
    line-height: 1.5;
    letter-spacing: 0.04em;

    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35);

    backdrop-filter: blur(12px);
}

.site-message span {
    color: var(--champagne);

    font-size: 17px;
}

.form-error-summary {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 18px 20px;
    border: 1px solid rgba(200, 179, 138, 0.35);
    background: rgba(58, 38, 56, 0.18);
}

.form-error-summary > span {
    color: var(--champagne);
    font-size: 18px;
    line-height: 1;
}

.form-error-summary strong {
    display: block;
    margin-bottom: 6px;
    color: var(--warm-ivory);
    font-size: 11px;
    letter-spacing: 0.14em;
}

.form-error-summary p {
    margin: 0;
    color: rgba(243, 239, 232, 0.65);
    font-size: 13px;
    line-height: 1.6;
}

.field-error {
    margin-top: 8px;
    color: #c99ba8;
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: 0.03em;
}

.language-switch a {
    color: inherit;
    text-decoration: none;
}

.language-switch a:hover {
    color: var(--champagne);
}

.language-active {
    color: var(--champagne);
}

/* ========================================
   ABOUT PAGE
======================================== */

.about-hero {
    position: relative;
    padding: 190px 0 150px;
    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(58, 38, 56, 0.30),
            transparent 32%
        ),
        var(--black);
    overflow: hidden;
}

.about-hero::after {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    right: -300px;
    top: 25%;
    border-radius: 50%;
    border: 1px solid rgba(200, 179, 138, 0.08);
    box-shadow:
        0 0 100px rgba(142, 113, 133, 0.08);
    pointer-events: none;
}

.about-hero-label {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 90px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.22em;
}

.about-hero-label span:first-child {
    color: var(--gold);
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: end;
}

.about-eyebrow {
    margin: 0 0 22px;
    color: var(--gold);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.28em;
}

.about-hero h1 {
    margin: 0;
    font-size: clamp(65px, 10vw, 145px);
    line-height: 0.86;
    font-weight: 500;
    letter-spacing: -0.065em;
}

.about-hero h1 span {
    display: block;
    color: var(--gold);
    font-weight: 400;
}

.about-hero-copy {
    max-width: 450px;
    padding-bottom: 8px;
}

.about-hero-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
}


/* POSITIONING */

.about-positioning {
    padding: 150px 0;
    background: var(--soft-black);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-positioning-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 100px;
    align-items: end;
}

.about-big-statement p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: clamp(25px, 3vw, 42px);
    letter-spacing: -0.03em;
}

.about-big-statement h2 {
    margin: 0;
    font-size: clamp(60px, 9vw, 130px);
    line-height: 0.86;
    font-weight: 500;
    letter-spacing: -0.06em;
}

.about-big-statement h2 span {
    display: block;
    color: var(--gold);
}

.about-positioning-text {
    max-width: 500px;
}

.about-positioning-text p {
    margin: 0 0 25px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
}

.about-positioning-text p:last-child {
    margin-bottom: 0;
}


/* CAPABILITIES */

.about-capabilities {
    padding: 160px 0;
    background: var(--black);
}

.about-capabilities-header {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: end;
    margin: 75px 0 90px;
}

.about-capabilities-header h2 {
    margin: 0;
    font-size: clamp(50px, 7vw, 105px);
    line-height: 0.9;
    font-weight: 500;
    letter-spacing: -0.055em;
}

.about-capabilities-header h2 span {
    display: block;
    color: var(--gold);
}

.about-capabilities-header > p {
    max-width: 430px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
}

.about-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.about-capability {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 25px;
    min-height: 270px;
    padding: 40px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition:
        background 0.4s ease,
        padding 0.4s ease;
}

.about-capability:hover {
    background: rgba(200, 179, 138, 0.035);
    padding-left: 48px;
}

.about-capability > span {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 0.12em;
}

.about-capability h3 {
    margin: 0 0 18px;
    color: var(--ivory);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.about-capability p {
    max-width: 420px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}


/* APPROACH */

.about-approach {
    padding: 160px 0;
    background: var(--soft-black);
    border-top: 1px solid var(--border);
}

.about-approach-content {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 100px;
    align-items: end;
    margin: 75px 0 100px;
}

.about-approach-heading h2 {
    margin: 0;
    font-size: clamp(50px, 7vw, 105px);
    line-height: 0.88;
    font-weight: 500;
    letter-spacing: -0.055em;
}

.about-approach-heading h2 span {
    display: block;
    color: var(--gold);
}

.about-approach-text {
    max-width: 470px;
}

.about-approach-text p {
    margin: 0 0 25px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
}

.about-approach-text p:last-child {
    margin-bottom: 0;
}

.about-principles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-principle {
    min-height: 230px;
    padding: 30px 25px;
    border-right: 1px solid var(--border);
}

.about-principle:last-child {
    border-right: none;
}

.about-principle > span {
    display: block;
    margin-bottom: 65px;
    color: var(--gold);
    font-size: 9px;
    letter-spacing: 0.14em;
}

.about-principle h3 {
    margin: 0 0 12px;
    color: var(--ivory);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.about-principle p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.7;
}


/* CTA */

.about-cta {
    position: relative;
    padding: 170px 0;
    text-align: center;
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(58, 38, 56, 0.48),
            transparent 40%
        ),
        var(--black);
    overflow: hidden;
}

.about-cta .section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-cta h2 {
    margin: 0;
    color: var(--ivory);
    font-size: clamp(55px, 8vw, 115px);
    line-height: 0.9;
    font-weight: 400;
    letter-spacing: -0.055em;
}

.about-cta h2 span {
    color: var(--gold);
}

.about-cta > .section-inner > p:not(.about-eyebrow) {
    max-width: 550px;
    margin: 35px auto 40px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}


/* ABOUT RESPONSIVE */

@media (max-width: 900px) {

    .about-hero {
        padding: 150px 5% 120px;
    }

    .about-hero-content,
    .about-positioning-grid,
    .about-capabilities-header,
    .about-approach-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-hero-label {
        margin-bottom: 65px;
    }

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

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

    .about-principle:nth-child(2) {
        border-right: none;
    }

    .about-principle:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 600px) {

    .about-hero,
    .about-positioning,
    .about-capabilities,
    .about-approach {
        padding: 100px 20px;
    }

    .about-hero h1 {
        font-size: clamp(58px, 17vw, 90px);
    }

    .about-hero-copy p {
        font-size: 13px;
    }

    .about-big-statement h2 {
        font-size: clamp(58px, 18vw, 90px);
    }

    .about-capabilities-header h2,
    .about-approach-heading h2 {
        font-size: clamp(48px, 15vw, 75px);
    }

    .about-capability {
        grid-template-columns: 35px 1fr;
        gap: 15px;
        min-height: auto;
        padding: 30px 20px;
    }

    .about-capability:hover {
        padding-left: 25px;
    }

    .about-capability h3 {
        font-size: 16px;
    }

    .about-capability p,
    .about-positioning-text p,
    .about-approach-text p {
        font-size: 12px;
    }

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

    .about-principle {
        min-height: 190px;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .about-principle:nth-child(2) {
        border-right: none;
    }

    .about-principle:last-child {
        border-bottom: none;
    }

    .about-principle > span {
        margin-bottom: 45px;
    }

    .about-cta {
        padding: 120px 20px;
    }

    .about-cta h2 {
        font-size: clamp(48px, 14vw, 70px);
    }

    .about-cta > .section-inner > p:not(.about-eyebrow) {
        font-size: 13px;
    }
}

/* ========================================
   SERVICES PAGE
======================================== */

.services-hero {
    position: relative;
    padding: 190px 0 150px;
    background:
        radial-gradient(
            circle at 72% 42%,
            rgba(58, 38, 56, 0.30),
            transparent 32%
        ),
        var(--black);
    overflow: hidden;
}

.services-hero::after {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    right: -300px;
    top: 20%;
    border-radius: 50%;
    border: 1px solid rgba(200, 179, 138, 0.08);
    box-shadow: 0 0 100px rgba(142, 113, 133, 0.08);
    pointer-events: none;
}

.services-hero-label {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 90px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.22em;
}

.services-hero-label span:first-child {
    color: var(--gold);
}

.services-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: end;
}

.services-hero h1 {
    margin: 0;
    font-size: clamp(65px, 10vw, 145px);
    line-height: 0.86;
    font-weight: 500;
    letter-spacing: -0.065em;
}

.services-hero h1 span {
    display: block;
    color: var(--gold);
    font-weight: 400;
}

.services-hero-copy {
    max-width: 470px;
    padding-bottom: 8px;
}

.services-hero-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
}


/* INTRO */

.services-intro-section {
    padding: 150px 0;
    background: var(--soft-black);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.services-intro-content {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 100px;
    align-items: end;
}

.services-intro-content h2 {
    margin: 0;
    font-size: clamp(55px, 8vw, 115px);
    line-height: 0.88;
    font-weight: 500;
    letter-spacing: -0.06em;
}

.services-intro-content h2 span {
    display: block;
    color: var(--gold);
}

.services-intro-content > div {
    max-width: 500px;
}

.services-intro-content p {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
}

.services-intro-content p:last-child {
    margin-bottom: 0;
}


/* SERVICE LIST */

.services-list-section {
    padding: 160px 0;
    background: var(--black);
}

.services-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.service-list-card {
    position: relative;
    min-height: 470px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: transparent;
    transition:
        background 0.45s ease,
        transform 0.45s ease;
}

.service-list-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.5s ease;
}

.service-list-card::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    right: -180px;
    bottom: -180px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(142, 113, 133, 0.15),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-list-card:hover {
    background: rgba(255, 255, 255, 0.018);
    transform: translateY(-4px);
}

.service-list-card:hover::before {
    width: 100%;
}

.service-list-card:hover::after {
    opacity: 1;
}

.service-list-featured {
    background:
        linear-gradient(
            135deg,
            rgba(58, 38, 56, 0.16),
            transparent 60%
        );
}

.service-list-custom {
    background:
        linear-gradient(
            315deg,
            rgba(200, 179, 138, 0.025),
            transparent 60%
        );
}

.service-list-top {
    display: flex;
    justify-content: space-between;
    color: var(--gold);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.16em;
}

.service-list-icon {
    width: 64px;
    height: 64px;
    margin-top: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(200, 179, 138, 0.28);
    color: var(--gold);
    font-size: 25px;
    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        background 0.4s ease;
}

.service-list-card:hover .service-list-icon {
    transform: rotate(8deg);
    border-color: rgba(200, 179, 138, 0.6);
    background: rgba(200, 179, 138, 0.06);
}

.service-list-content {
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.service-list-content h2 {
    margin: 0 0 20px;
    color: var(--ivory);
    font-size: clamp(27px, 3vw, 42px);
    line-height: 0.95;
    font-weight: 500;
    letter-spacing: -0.035em;
}

.service-list-content p {
    max-width: 460px;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.75;
}

.service-list-footer {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 22px;
    border-top: 1px solid rgba(200, 179, 138, 0.12);
    color: rgba(243, 239, 232, 0.4);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.16em;
    transition: color 0.3s ease;
}

.service-list-footer span:last-child {
    color: var(--gold);
    font-size: 16px;
    transition: transform 0.35s ease;
}

.service-list-card:hover .service-list-footer {
    color: var(--ivory);
}

.service-list-card:hover .service-list-footer span:last-child {
    transform: translate(4px, -4px);
}


/* SYSTEM */

.services-system-section {
    padding: 160px 0;
    background: var(--soft-black);
    border-top: 1px solid var(--border);
}

.services-system-header {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 100px;
    align-items: end;
    margin: 75px 0 90px;
}

.services-system-header h2 {
    margin: 0;
    font-size: clamp(48px, 7vw, 100px);
    line-height: 0.9;
    font-weight: 500;
    letter-spacing: -0.05em;
}

.services-system-header h2 span {
    display: block;
    color: var(--gold);
}

.services-system-header > p {
    max-width: 450px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
}

.services-system-flow {
    display: flex;
    align-items: stretch;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.services-system-item {
    flex: 1;
    min-height: 210px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.services-system-item > span {
    color: var(--gold);
    font-size: 9px;
    letter-spacing: 0.14em;
}

.services-system-item strong {
    color: var(--ivory);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.12em;
}

.services-system-item p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
}

.services-system-line {
    width: 1px;
    background: var(--border);
}


/* CTA */

.services-cta {
    position: relative;
    padding: 180px 20px;
    text-align: center;
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(58, 38, 56, 0.52),
            transparent 40%
        ),
        var(--black);
    overflow: hidden;
}

.services-cta .section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-cta h2 {
    margin: 0;
    color: var(--ivory);
    font-size: clamp(50px, 8vw, 110px);
    line-height: 0.9;
    font-weight: 400;
    letter-spacing: -0.05em;
}

.services-cta h2 span {
    color: var(--gold);
}

.services-cta > .section-inner > p:not(.services-eyebrow) {
    max-width: 560px;
    margin: 38px auto 42px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .services-hero {
        padding: 150px 5% 120px;
    }

    .services-hero-content,
    .services-intro-content,
    .services-system-header {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-hero-label {
        margin-bottom: 65px;
    }

    .services-list-section,
    .services-system-section {
        padding: 110px 5%;
    }

    .services-list-grid {
        grid-template-columns: 1fr;
    }

    .service-list-card {
        min-height: 410px;
    }

    .services-system-flow {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .services-system-line {
        display: none;
    }

    .services-system-item {
        border-right: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .services-system-item:nth-child(even) {
        border-right: none;
    }

    .services-system-item:nth-last-child(-n + 2) {
        border-bottom: none;
    }
}

@media (max-width: 600px) {

    .services-hero,
    .services-intro-section {
        padding: 100px 20px;
    }

    .services-hero h1 {
        font-size: clamp(58px, 17vw, 90px);
        max-width: 100%;
        overflow: visible;
        overflow-wrap: break-word;
        word-break: normal;
        line-height: 0.95;
    }

    .services-hero-copy p {
        font-size: 13px;
    }

    .services-intro-content h2 {
        font-size: clamp(50px, 15vw, 75px);
    }

    .service-list-card {
        min-height: 370px;
        padding: 25px;
    }

    /* Тук продължава останалият съществуващ
       Services mobile CSS от твоя файл. */

    

    .services-hero-copy p {
        font-size: 13px;
    }

    .services-intro-content h2 {
        font-size: clamp(50px, 15vw, 75px);
    }

    .service-list-card {
        min-height: 370px;
        padding: 25px;
    }

    .service-list-icon {
        margin-top: 48px;
    }

    .service-list-content h2 {
        font-size: 28px;
    }

    .service-list-content p {
        font-size: 11px;
    }

    .services-system-flow {
        grid-template-columns: 1fr;
    }

    .services-system-item {
        min-height: 150px;
        border-right: none;
    }

    .services-system-item:not(:last-child) {
        border-bottom: 1px solid var(--border);
    }

    .services-cta {
        padding: 120px 20px;
    }

    .services-cta h2 {
        font-size: clamp(46px, 14vw, 70px);
    }

    .services-cta > .section-inner > p:not(.services-eyebrow) {
        font-size: 13px;
    }
}

/* ========================================
   CONTACT PAGE — DESKTOP LAYOUT
======================================== */

.contact-page-hero {
    padding: 180px 0 120px;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.contact-page-label {
    margin-bottom: 45px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.contact-page-title {
    max-width: 1150px;
    font-size: clamp(72px, 9vw, 150px);
    line-height: 0.88;
    font-weight: 400;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.contact-page-title span {
    color: var(--gold);
}

.contact-page-description {
    max-width: 560px;
    margin-top: 50px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}


/* CONTACT MAIN */

.contact-page-section {
    padding: 140px 0;
}

.contact-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 100px;
    align-items: start;
}


/* LEFT */

.contact-page-intro h2 {
    margin: 30px 0;
    font-size: clamp(48px, 5vw, 78px);
    line-height: 0.94;
    font-weight: 400;
    letter-spacing: -0.04em;
}

.contact-page-intro h2 span {
    color: var(--gold);
}

.contact-page-intro > p {
    max-width: 480px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.contact-page-details {
    margin-top: 55px;
    border-top: 1px solid var(--border);
}

.contact-page-detail {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
}

.contact-page-detail > span {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 0.15em;
}

.contact-page-detail small {
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 0.18em;
}

.contact-page-detail p,
.contact-page-detail a {
    color: var(--ivory);
    font-size: 12px;
    line-height: 1.6;
    text-decoration: none;
}


/* RIGHT FORM */

.contact-page-form-wrapper {
    padding: 48px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.015);
}

.contact-page-form-header {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 45px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
}


/* FORM GRID */

.project-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 26px;
}

.project-form .form-group {
    min-width: 0;
}

.project-form label {
    display: block;
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.project-form input,
.project-form select,
.project-form textarea {
    width: 100%;
    padding: 15px 0;
    border: 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    outline: none;
    background: transparent;
    color: var(--ivory);
    font-family: inherit;
    font-size: 13px;
}

.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus {
    border-bottom-color: var(--gold);
}

.project-form textarea {
    min-height: 145px;
    resize: vertical;
}

.project-form select option {
    background: var(--soft-black);
    color: var(--ivory);
}


/* MESSAGE — FULL WIDTH */

.project-form .form-group:nth-of-type(5) {
    grid-column: 1 / -1;
}


/* SUBMIT AREA */

.form-submit {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-top: 15px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.form-submit .primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 18px 22px;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--ivory);
    font-family: inherit;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    cursor: pointer;
}

.form-submit .primary-button:hover {
    background: var(--gold);
    color: var(--black);
}

.form-submit p {
    max-width: 260px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.7;
}


/* ERRORS */

.form-error-summary {
    margin-bottom: 35px;
    padding: 18px;
    border: 1px solid rgba(255, 120, 120, 0.35);
}

.field-error {
    margin-top: 8px;
    font-size: 10px;
    color: #d99797;
}


/* TABLET */

@media (max-width: 1000px) {

    .contact-page-layout {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .contact-page-intro {
        max-width: 650px;
    }
}


/* MOBILE */

@media (max-width: 600px) {

    .contact-page-hero {
        padding: 130px 0 90px;
    }

    .contact-page-title {
        font-size: clamp(54px, 16vw, 86px);
    }

    .contact-page-section {
        padding: 90px 0;
    }

    .contact-page-form-wrapper {
        padding: 28px 22px;
    }

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

    .project-form .form-group:nth-of-type(5) {
        grid-column: auto;
    }

    .form-submit {
        flex-direction: column;
        align-items: stretch;
    }

    .form-submit p {
        max-width: none;
    }

    .form-submit .primary-button {
        width: 100%;
    }
}
/* ========================================
   WORK PAGE
======================================== */

.work-hero {
    padding: 170px 0 130px;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.work-hero-label {
    display: flex;
    gap: 24px;
    margin-bottom: 70px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.work-hero-content {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 100px;
    align-items: end;
}

.work-eyebrow {
    margin-bottom: 24px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.work-hero h1 {
    margin: 0;
    font-size: clamp(78px, 10vw, 160px);
    line-height: 0.86;
    font-weight: 400;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.work-hero h1 span {
    display: block;
    color: var(--gold);
}

.work-hero-copy {
    max-width: 500px;
}

.work-hero-copy p {
    margin-bottom: 35px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}


/* INTRO */

.work-intro-section {
    padding: 140px 0;
    border-bottom: 1px solid var(--border);
}

.work-intro-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: start;
    margin-top: 70px;
}

.work-intro-content h2 {
    margin: 0;
    font-size: clamp(55px, 7vw, 105px);
    line-height: 0.9;
    font-weight: 400;
    letter-spacing: -0.05em;
}

.work-intro-content h2 span {
    display: block;
    color: var(--gold);
}

.work-intro-content > div {
    max-width: 520px;
}

.work-intro-content p {
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
}


/* PROJECTS */

.work-projects-section {
    padding: 150px 0;
}

.work-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 70px 40px;
}

.work-project-card {
    position: relative;
    min-width: 0;
}

.work-project-number {
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 0.18em;
}

.work-project-visual {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border: 1px solid var(--border);
    background:
        radial-gradient(
            circle at 70% 25%,
            rgba(142, 113, 133, 0.22),
            transparent 45%
        ),
        var(--soft-black);
}

.work-project-visual-02 {
    background:
        radial-gradient(
            circle at 35% 30%,
            rgba(200, 179, 138, 0.16),
            transparent 42%
        ),
        var(--soft-black);
}

.work-project-visual-03 {
    background:
        linear-gradient(
            135deg,
            rgba(58, 38, 56, 0.42),
            transparent 60%
        ),
        var(--soft-black);
}

.work-project-visual-04 {
    background:
        radial-gradient(
            circle at 60% 55%,
            rgba(200, 179, 138, 0.12),
            transparent 50%
        ),
        var(--soft-black);
}

.work-project-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-project-placeholder span {
    color: var(--ivory);
    font-size: clamp(42px, 5vw, 80px);
    font-weight: 400;
    letter-spacing: 0.08em;
}

.work-project-content {
    padding-top: 28px;
}

.work-project-meta {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
    color: var(--gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.work-project-content h2 {
    margin-bottom: 18px;
    font-size: clamp(30px, 3vw, 46px);
    font-weight: 400;
    letter-spacing: -0.035em;
}

.work-project-content > p {
    max-width: 560px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
}

.work-project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.work-project-tags span {
    padding: 8px 11px;
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.work-project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    color: var(--gold);
    font-size: 9px;
    letter-spacing: 0.15em;
}


/* APPROACH */

.work-approach-section {
    padding: 150px 0;
    background: var(--soft-black);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.work-approach-header {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(45px, 6vw, 90px);
    align-items: end;
    margin: 70px 0 80px;
    width: 100%;
}

.work-approach-header > * {
    min-width: 0;
}

.work-approach-header h2 {
    margin: 0;
    font-size: clamp(50px, 6vw, 88px);
    line-height: 0.92;
    font-weight: 400;
    letter-spacing: -0.045em;
}

.work-approach-header h2 span {
    display: block;
    color: var(--gold);
}

.work-approach-header > p {
    max-width: 500px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
}

.work-principles {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.work-principle {
    min-height: 270px;
    padding: 28px 24px;
    border-right: 1px solid var(--border);
}

.work-principle:last-child {
    border-right: none;
}

.work-principle > span {
    color: var(--gold);
    font-size: 9px;
    letter-spacing: 0.14em;
}

.work-principle h3 {
    margin: 70px 0 20px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.12em;
}

.work-principle p {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.7;
}


/* FUTURE PROJECT */
.work-future-section {
    padding: 150px 0;
    overflow: hidden;
}

.work-future-content {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(45px, 6vw, 90px);
    align-items: end;
    width: 100%;
}

.work-future-content > * {
    min-width: 0;
}

.work-future-content h2 {
    margin: 0;
    max-width: 100%;
    font-size: clamp(50px, 6vw, 88px);
    line-height: 0.92;
    font-weight: 400;
    letter-spacing: -0.045em;
}

.work-future-content h2 span {
    display: block;
    color: var(--gold);
}

.work-future-copy {
    width: 100%;
    max-width: 500px;
    min-width: 0;
}

.work-future-copy p {
    margin-bottom: 35px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}
/* FINAL CTA */

.work-cta {
    padding: 170px 0;
    text-align: center;
    border-top: 1px solid var(--border);
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(58, 38, 56, 0.42),
            transparent 45%
        ),
        var(--black);
}

.work-cta .section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.work-cta h2 {
    margin: 0;
    max-width: 1000px;
    font-size: clamp(48px, 6vw, 88px);
    line-height: 0.94;
    font-weight: 400;
    letter-spacing: -0.045em;
}

.work-cta h2 span {
    color: var(--gold);
}

.work-cta > .section-inner > p:not(.work-eyebrow) {
    max-width: 560px;
    margin: 35px auto 40px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}


/* WORK RESPONSIVE */

@media (max-width: 1000px) {

    .work-hero-content,
    .work-intro-content,
    .work-approach-header,
    .work-future-content {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .work-projects-grid {
        grid-template-columns: 1fr;
    }

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

    .work-principle:nth-child(2) {
        border-right: none;
    }

    .work-principle:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 600px) {

    .work-hero {
        padding: 120px 0 90px;
    }

    .work-hero-label {
        margin-bottom: 50px;
    }

    .work-hero h1 {
        font-size: clamp(58px, 17vw, 88px);
        line-height: 0.9;
    }

    .work-intro-section,
    .work-projects-section,
    .work-approach-section,
    .work-future-section {
        padding: 90px 0;
    }

    .work-intro-content h2,
    .work-approach-header h2 {
        font-size: clamp(48px, 14vw, 72px);
    }

    .work-projects-grid {
        gap: 60px;
    }

    .work-project-meta {
        flex-direction: column;
        gap: 8px;
    }

    .work-principles {
        grid-template-columns: 1fr;
    }

    .work-principle,
    .work-principle:nth-child(2) {
        border-right: none;
    }

    .work-principle:not(:last-child) {
        border-bottom: 1px solid var(--border);
    }

    .work-future-content h2 {
        font-size: clamp(52px, 15vw, 80px);
    }

    .work-cta {
        padding: 120px 0;
    }

    .work-cta h2 {
        font-size: clamp(48px, 14vw, 74px);
    }
}
/* ========================================
   PROCESS PAGE
======================================== */

.process-hero {
    padding: 170px 0 130px;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.process-hero-label {
    display: flex;
    gap: 24px;
    margin-bottom: 70px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.process-hero-content {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 100px;
    align-items: end;
}

.process-eyebrow {
    margin-bottom: 24px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.process-hero h1 {
    margin: 0;
    font-size: clamp(76px, 10vw, 155px);
    line-height: 0.86;
    font-weight: 400;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.process-hero h1 span {
    display: block;
    color: var(--gold);
}

.process-hero-copy {
    max-width: 500px;
}

.process-hero-copy p {
    margin-bottom: 35px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}


/* INTRO */

.process-intro-section {
    padding: 140px 0;
    border-bottom: 1px solid var(--border);
}

.process-intro-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: start;
    margin-top: 70px;
}

.process-intro-content h2 {
    margin: 0;
    font-size: clamp(55px, 7vw, 105px);
    line-height: 0.9;
    font-weight: 400;
    letter-spacing: -0.05em;
}

.process-intro-content h2 span {
    display: block;
    color: var(--gold);
}

.process-intro-content > div {
    max-width: 520px;
}

.process-intro-content p {
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
}


/* STEPS */

.process-steps-section {
    padding: 150px 0;
}

.process-steps {
    margin-top: 40px;
    border-top: 1px solid var(--border);
}

.process-step {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 50px;
    padding: 50px 0;
    border-bottom: 1px solid var(--border);
}

.process-step-number {
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.process-step-content {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 80px;
    align-items: start;
}

.process-step-eyebrow {
    margin-bottom: 15px;
    color: var(--gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.process-step-content h2 {
    margin: 0 0 20px;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 0.95;
    font-weight: 400;
    letter-spacing: -0.04em;
}

.process-step-content > p {
    max-width: 520px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.process-step-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.process-step-list span {
    padding: 9px 12px;
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* COLLABORATION */

.process-collaboration-section {
    padding: 150px 0;
    background: var(--soft-black);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.process-collaboration-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: end;
    margin-top: 70px;
}

.process-collaboration-content h2 {
    margin: 0;
    font-size: clamp(55px, 7vw, 105px);
    line-height: 0.9;
    font-weight: 400;
    letter-spacing: -0.05em;
}

.process-collaboration-content h2 span {
    display: block;
    color: var(--gold);
}

.process-collaboration-copy {
    max-width: 520px;
}

.process-collaboration-copy p {
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
}


/* PRINCIPLES */

.process-principles-section {
    padding: 150px 0;
}

.process-principles-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 75px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.process-principle {
    min-height: 270px;
    padding: 30px 24px;
    border-right: 1px solid var(--border);
}

.process-principle:last-child {
    border-right: none;
}

.process-principle h3 {
    margin: 70px 0 20px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.12em;
}

.process-principle p {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.7;
}


/* FINAL CTA */

.process-page-cta {
    padding: 170px 0;
    text-align: center;
    border-top: 1px solid var(--border);
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(58, 38, 56, 0.42),
            transparent 45%
        ),
        var(--black);
}

.process-page-cta .section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-page-cta h2 {
    margin: 0;
    font-size: clamp(55px, 8vw, 115px);
    line-height: 0.9;
    font-weight: 400;
    letter-spacing: -0.05em;
}

.process-page-cta h2 span {
    display: block;
    color: var(--gold);
}

.process-page-cta > .section-inner > p:not(.process-eyebrow) {
    max-width: 560px;
    margin: 35px auto 40px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}


/* PROCESS PAGE RESPONSIVE */

@media (max-width: 1000px) {

    .process-hero-content,
    .process-intro-content,
    .process-collaboration-content {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .process-step-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

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

    .process-principle:nth-child(2) {
        border-right: none;
    }

    .process-principle:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 600px) {

    .process-hero {
        padding: 120px 0 90px;
    }

    .process-hero-label {
        margin-bottom: 50px;
    }

    .process-hero h1 {
        font-size: clamp(56px, 17vw, 88px);
        line-height: 0.9;
    }

    .process-intro-section,
    .process-steps-section,
    .process-collaboration-section,
    .process-principles-section {
        padding: 90px 0;
    }

    .process-intro-content h2,
    .process-collaboration-content h2 {
        font-size: clamp(48px, 14vw, 72px);
    }

    .process-step {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 0;
    }

    .process-step-content {
        gap: 25px;
    }

    .process-principles-grid {
        grid-template-columns: 1fr;
    }

    .process-principle,
    .process-principle:nth-child(2) {
        border-right: none;
    }

    .process-principle:not(:last-child) {
        border-bottom: 1px solid var(--border);
    }

    .process-page-cta {
        padding: 120px 0;
    }

    .process-page-cta h2 {
        font-size: clamp(48px, 14vw, 74px);
    }
}

/* ========================================
   SERVICE DETAIL PAGE
======================================== */

.service-detail-hero {
    padding: 170px 0 130px;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.service-detail-label {
    display: flex;
    gap: 24px;
    margin-bottom: 70px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.service-detail-hero-content {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 100px;
    align-items: end;
}

.service-detail-eyebrow {
    margin-bottom: 24px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.service-detail-hero h1 {
    margin: 0;
    font-size: clamp(48px, 6.2vw, 96px);
    line-height: 0.94;
    font-weight: 400;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.service-detail-hero h1 span {
    display: block;
    color: var(--gold);
}

.service-detail-hero-copy {
    max-width: 500px;
}

.service-detail-hero-copy p {
    margin-bottom: 35px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}


/* INTRO */

.service-detail-intro {
    padding: 140px 0;
    border-bottom: 1px solid var(--border);
}

.service-detail-intro-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: start;
    margin-top: 70px;
}

.service-detail-intro-content h2 {
    margin: 0;
    font-size: clamp(55px, 7vw, 105px);
    line-height: 0.9;
    font-weight: 400;
    letter-spacing: -0.05em;
}

.service-detail-intro-content h2 span {
    display: block;
    color: var(--gold);
}

.service-detail-intro-content > div {
    max-width: 520px;
}

.service-detail-intro-content p {
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
}


/* CAPABILITIES */

.service-detail-capabilities {
    padding: 150px 0;
}

.service-detail-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 75px;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.service-detail-card {
    min-height: 310px;
    padding: 30px 26px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.01);
}

.service-detail-card > span {
    color: var(--gold);
    font-size: 9px;
    letter-spacing: 0.14em;
}

.service-detail-card h3 {
    margin: 80px 0 20px;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.service-detail-card p {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.75;
}


/* VALUE */

.service-detail-value {
    padding: 150px 0;
    background: var(--soft-black);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.service-detail-value-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: end;
    margin-top: 70px;
}

.service-detail-value-content h2 {
    margin: 0;
    font-size: clamp(55px, 7vw, 105px);
    line-height: 0.9;
    font-weight: 400;
    letter-spacing: -0.05em;
}

.service-detail-value-content h2 span {
    display: block;
    color: var(--gold);
}

.service-detail-value-copy {
    max-width: 520px;
}

.service-detail-value-copy p {
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
}

.service-detail-value-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 80px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.service-detail-value-item {
    min-height: 230px;
    padding: 28px 24px;
    border-right: 1px solid var(--border);
}

.service-detail-value-item:last-child {
    border-right: none;
}

.service-detail-value-item > span {
    color: var(--gold);
    font-size: 9px;
    letter-spacing: 0.14em;
}

.service-detail-value-item strong {
    display: block;
    margin: 65px 0 18px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.service-detail-value-item p {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.7;
}


/* PROCESS */

.service-detail-process {
    padding: 150px 0;
}

.service-detail-process-header {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: end;
    margin: 70px 0 80px;
}

.service-detail-process-header h2 {
    margin: 0;
    font-size: clamp(55px, 7vw, 105px);
    line-height: 0.9;
    font-weight: 400;
    letter-spacing: -0.05em;
}

.service-detail-process-header h2 span {
    display: block;
    color: var(--gold);
}

.service-detail-process-header > p {
    max-width: 500px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
}

.service-detail-process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.service-detail-process-item {
    min-height: 230px;
    padding: 28px 22px;
    border-right: 1px solid var(--border);
}

.service-detail-process-item:last-child {
    border-right: none;
}

.service-detail-process-item > span {
    color: var(--gold);
    font-size: 9px;
    letter-spacing: 0.14em;
}

.service-detail-process-item strong {
    display: block;
    margin: 62px 0 18px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.service-detail-process-item p {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.7;
}

.service-detail-process-link {
    display: inline-flex;
    margin-top: 35px;
}


/* TECHNOLOGY */

.service-detail-tech {
    padding: 150px 0;
    background: var(--soft-black);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.service-detail-tech-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: end;
    margin-top: 70px;
}

.service-detail-tech-content h2 {
    margin: 0;
    font-size: clamp(55px, 7vw, 105px);
    line-height: 0.9;
    font-weight: 400;
    letter-spacing: -0.05em;
}

.service-detail-tech-content h2 span {
    display: block;
    color: var(--gold);
}

.service-detail-tech-copy {
    max-width: 520px;
}

.service-detail-tech-copy > p {
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
}

.service-detail-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.service-detail-tech-tags span {
    padding: 9px 12px;
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* SEO */

.service-detail-seo {
    padding: 150px 0;
}

.service-detail-seo-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: start;
    margin-top: 70px;
}

.service-detail-seo-content h2 {
    margin: 0;
    font-size: clamp(55px, 7vw, 105px);
    line-height: 0.98;
    font-weight: 400;
    letter-spacing: -0.025em;
}

.service-detail-seo-content h2 span {
    display: block;
    color: var(--gold);
}

.service-detail-seo-content > div {
    max-width: 520px;
}

.service-detail-seo-content p {
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
}

.service-detail-seo-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--border);
}

.service-detail-seo-content li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    color: var(--ivory);
    font-size: 11px;
    letter-spacing: 0.05em;
}


/* FAQ */

.service-detail-faq {
    padding: 150px 0;
    background: var(--soft-black);
    border-top: 1px solid var(--border);
}

.service-detail-faq-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: start;
    margin-top: 70px;
}

.service-detail-faq-content h2 {
    margin: 0;
    font-size: clamp(48px, 6vw, 90px);
    line-height: 0.92;
    font-weight: 400;
    letter-spacing: -0.05em;
}

.service-detail-faq-content h2 span {
    display: block;
    color: var(--gold);
}

.service-detail-faq-list {
    border-top: 1px solid var(--border);
}

.service-detail-faq-list details {
    border-bottom: 1px solid var(--border);
}

.service-detail-faq-list summary {
    padding: 22px 0;
    color: var(--ivory);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

.service-detail-faq-list details p {
    max-width: 600px;
    padding: 0 0 22px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
}


/* CTA */

.service-detail-cta {
    padding: 170px 0;
    text-align: center;
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(58, 38, 56, 0.42),
            transparent 45%
        ),
        var(--black);
    border-top: 1px solid var(--border);
}

.service-detail-cta .section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-detail-cta h2 {
    margin: 0;
    font-size: clamp(55px, 8vw, 115px);
    line-height: 0.9;
    font-weight: 400;
    letter-spacing: -0.05em;
}

.service-detail-cta h2 span {
    display: block;
    color: var(--gold);
}

.service-detail-cta > .section-inner > p:not(.service-detail-eyebrow) {
    max-width: 560px;
    margin: 35px auto 40px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}


/* ========================================
   SERVICE DETAIL RESPONSIVE
======================================== */

@media (max-width: 1000px) {

    .service-detail-hero-content,
    .service-detail-intro-content,
    .service-detail-value-content,
    .service-detail-process-header,
    .service-detail-tech-content,
    .service-detail-seo-content,
    .service-detail-faq-content {
        grid-template-columns: 1fr;
        gap: 55px;
    }

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

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

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

    .service-detail-process-item {
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 600px) {

    .service-detail-hero {
        padding: 120px 0 90px;
    }

    .service-detail-label {
        margin-bottom: 50px;
    }

    .service-detail-hero h1 {
        font-size: clamp(54px, 16vw, 86px);
        line-height: 0.9;
    }

    .service-detail-intro,
    .service-detail-capabilities,
    .service-detail-value,
    .service-detail-process,
    .service-detail-tech,
    .service-detail-seo,
    .service-detail-faq {
        padding: 90px 0;
    }

    .service-detail-intro-content h2,
    .service-detail-value-content h2,
    .service-detail-process-header h2,
    .service-detail-tech-content h2,
    .service-detail-seo-content h2 {
        font-size: clamp(46px, 14vw, 72px);
    }

    .service-detail-capabilities-grid,
    .service-detail-value-grid,
    .service-detail-process-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card,
    .service-detail-value-item,
    .service-detail-process-item {
        min-height: auto;
    }

    .service-detail-value-item,
    .service-detail-process-item {
        border-right: none;
    }

    .service-detail-faq-content h2 {
        font-size: clamp(44px, 13vw, 68px);
    }

    .service-detail-cta {
        padding: 120px 0;
    }

    .service-detail-cta h2 {
        font-size: clamp(48px, 14vw, 74px);
    }
}

/* ========================================
   CASE STUDY PAGES
======================================== */

.case-study-hero,
.case-study-section,
.case-study-disclaimer,
.case-study-cta {
    position: relative;
}

.case-study-hero {
    padding: 160px 0 120px;
}

.case-study-label,
.case-study-section .section-intro {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 72px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.case-study-label span:first-child {
    color: var(--muted);
}

.case-study-hero-content {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 100px;
    align-items: end;
}

.case-study-eyebrow {
    margin: 0 0 24px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.case-study-hero h1 {
    margin: 0;
    font-size: clamp(48px, 6.2vw, 96px);
    line-height: 0.94;
    font-weight: 400;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.case-study-hero h1 span,
.case-study-two-column h2 span,
.case-study-cta h2 span {
    color: var(--gold);
}

.case-study-hero-copy > p {
    margin: 0 0 42px;
    max-width: 520px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.case-study-meta {
    display: grid;
    gap: 22px;
}

.case-study-meta div {
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.case-study-meta span {
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.case-study-meta strong {
    color: var(--ivory);
    font-size: 13px;
    font-weight: 500;
}


/* ========================================
   CASE STUDY SECTIONS
======================================== */

.case-study-section {
    padding: 130px 0;
    border-top: 1px solid var(--border);
}

.case-study-two-column {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 120px;
    align-items: start;
}

.case-study-two-column h2 {
    margin: 0;
    font-size: clamp(48px, 6vw, 90px);
    line-height: 0.96;
    font-weight: 400;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.case-study-copy {
    max-width: 580px;
}

.case-study-copy p {
    margin: 0 0 26px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.85;
}

.case-study-copy p:last-child {
    margin-bottom: 0;
}


/* ========================================
   DARK / ACCENT VARIATIONS
======================================== */

.case-study-dark {
    background: var(--soft-black);
}

.case-study-accent {
    background:
        linear-gradient(
            135deg,
            rgba(142, 113, 133, 0.08),
            rgba(200, 179, 138, 0.04)
        );
}


/* ========================================
   FEATURES
======================================== */

.case-study-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.case-study-feature-grid article {
    min-height: 260px;
    padding: 34px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.case-study-feature-grid article > span {
    display: block;
    margin-bottom: 54px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.case-study-feature-grid h3 {
    margin: 0 0 18px;
    color: var(--ivory);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.case-study-feature-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}


/* ========================================
   TECHNOLOGY TAGS
======================================== */

.case-study-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 38px;
}

.case-study-tags span {
    padding: 10px 14px;
    border: 1px solid var(--border);
    color: var(--ivory);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* ========================================
   DISCLAIMER
======================================== */

.case-study-disclaimer {
    padding: 42px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(200, 179, 138, 0.04);
}

.case-study-disclaimer .section-inner {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 50px;
    align-items: start;
}

.case-study-disclaimer span {
    color: var(--gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.case-study-disclaimer p {
    margin: 0;
    max-width: 760px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}


/* ========================================
   FINAL CTA
======================================== */

.case-study-cta {
    padding: 150px 0;
    text-align: center;
}

.case-study-cta .section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.case-study-cta h2 {
    margin: 0 0 34px;
    font-size: clamp(52px, 7vw, 104px);
    line-height: 0.94;
    font-weight: 400;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.case-study-cta > .section-inner > p:not(.case-study-eyebrow) {
    max-width: 620px;
    margin: 0 0 34px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1000px) {

    .case-study-hero {
        padding: 140px 0 100px;
    }

    .case-study-hero-content,
    .case-study-two-column {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .case-study-hero-copy {
        max-width: 680px;
    }

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

    .case-study-disclaimer .section-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


@media (max-width: 600px) {

    .case-study-hero {
        padding: 120px 0 80px;
    }

    .case-study-section {
        padding: 90px 0;
    }

    .case-study-label,
    .case-study-section .section-intro {
        margin-bottom: 48px;
    }

    .case-study-hero-content,
    .case-study-two-column {
        gap: 42px;
    }

    .case-study-hero h1 {
        font-size: clamp(42px, 13vw, 64px);
        line-height: 0.98;
        letter-spacing: -0.025em;
    }

    .case-study-two-column h2 {
        font-size: clamp(40px, 12vw, 58px);
        line-height: 1;
        letter-spacing: -0.025em;
    }

    .case-study-feature-grid {
        grid-template-columns: 1fr;
    }

    .case-study-feature-grid article {
        min-height: auto;
        padding: 28px;
    }

    .case-study-feature-grid article > span {
        margin-bottom: 34px;
    }

    .case-study-cta {
        padding: 110px 0;
    }

    .case-study-cta h2 {
        font-size: clamp(42px, 12vw, 64px);
        line-height: 0.98;
        letter-spacing: -0.025em;
    }
}

.work-project-anchor {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.work-project-link {
    cursor: pointer;
}

.work-project-footer span:last-child {
    transition: transform 0.25s ease;
}

.work-project-link:hover .work-project-footer span:last-child {
    transform: translate(3px, -3px);
}

/* ========================================
   CASE STUDY MAIN VISUAL
======================================== */

.case-study-visual {
    padding: 0 0 130px;
}

.case-study-main-image {
    width: min(100%, 1100px);
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid var(--border);
}

.case-study-main-image img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 600px) {
    .case-study-visual {
        padding-bottom: 90px;
    }
}

.case-study-visual-secondary {
    padding: 20px 0 130px;
}

@media (max-width: 600px) {
    .case-study-visual-secondary {
        padding: 10px 0 90px;
    }
}

/* ========================================
   LEGAL PAGES
======================================== */

.legal-hero {
    padding: 160px 0 110px;
}

.legal-eyebrow {
    margin: 0 0 30px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.legal-hero h1 {
    margin: 0;
    font-size: clamp(52px, 7vw, 105px);
    line-height: 0.94;
    font-weight: 400;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.legal-hero h1 span {
    color: var(--gold);
}

.legal-intro {
    max-width: 700px;
    margin: 46px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.legal-content {
    padding: 40px 0 140px;
    border-top: 1px solid var(--border);
}

.legal-section {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 50px;
    padding: 55px 0;
    border-bottom: 1px solid var(--border);
}

.legal-section > span {
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.legal-section > div {
    max-width: 850px;
}

.legal-section h2 {
    margin: 0 0 24px;
    color: var(--ivory);
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 400;
    letter-spacing: -0.02em;
}

.legal-section p {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.85;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .legal-hero {
        padding: 120px 0 80px;
    }

    .legal-content {
        padding-bottom: 100px;
    }

    .legal-section {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 0;
    }

    .legal-hero h1 {
        font-size: clamp(44px, 13vw, 64px);
    }
}

.form-success-message {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
    padding: 20px 22px;
    border: 1px solid rgba(200, 179, 138, 0.35);
    background: rgba(200, 179, 138, 0.06);
}

.form-success-message > span {
    flex-shrink: 0;
    color: var(--gold);
    font-size: 18px;
}

.form-success-message strong {
    display: block;
    margin-bottom: 6px;
    color: var(--ivory);
    font-size: 11px;
    letter-spacing: 0.14em;
}

.form-success-message p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.language-switch a,
.mobile-language-switch a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.language-switch a:hover,
.mobile-language-switch a:hover {
    color: var(--ivory);
}

.language-switch a.language-active,
.mobile-language-switch a.language-active {
    color: var(--gold);
}
@media (max-width: 768px) {
    .section-container {
        width: 100%;
        padding-left: 24px;
        padding-right: 24px;
        box-sizing: border-box;
    }
}

/* ========================================
   MOBILE PAGE WIDTH FIX
======================================== */

@media (max-width: 600px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: clip;
    }

    /* Pages that already have mobile section padding
       should not lose another 48px inside section-inner */
    .about-hero .section-inner,
    .about-positioning .section-inner,
    .about-capabilities .section-inner,
    .about-approach .section-inner,

    .services-hero .section-inner,
    .services-intro-section .section-inner,
    .services-list-section .section-inner,
    .services-system-section .section-inner,

    .service-detail-hero .section-inner,
    .service-detail-intro .section-inner,
    .service-detail-capabilities .section-inner,
    .service-detail-value .section-inner,
    .service-detail-process .section-inner,
    .service-detail-tech .section-inner,
    .service-detail-seo .section-inner,
    .service-detail-faq .section-inner {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    /* Allow grid/flex children to actually shrink */
    .about-hero-content,
    .about-positioning-grid,
    .about-capabilities-header,
    .about-approach-content,

    .services-hero-content,
    .services-intro-content,
    .services-system-header,

    .service-detail-hero-content,
    .service-detail-intro-content,
    .service-detail-value-content,
    .service-detail-process-header,
    .service-detail-tech-content,
    .service-detail-seo-content,
    .service-detail-faq-content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .about-hero-content > *,
    .about-positioning-grid > *,
    .about-capabilities-header > *,
    .about-approach-content > *,

    .services-hero-content > *,
    .services-intro-content > *,
    .services-system-header > *,

    .service-detail-hero-content > *,
    .service-detail-intro-content > *,
    .service-detail-value-content > *,
    .service-detail-process-header > *,
    .service-detail-tech-content > *,
    .service-detail-seo-content > *,
    .service-detail-faq-content > * {
        min-width: 0;
        max-width: 100%;
    }

    /* Bulgarian words need slightly safer mobile typography */
    .services-intro-content h2,
    .services-system-header h2,
    .about-big-statement h2,
    .about-capabilities-header h2,
    .about-approach-heading h2 {
        max-width: 100%;
        font-size: clamp(40px, 11.5vw, 54px);
        line-height: 0.95;
        letter-spacing: -0.035em;
        overflow-wrap: break-word;
    }

    .service-list-card,
    .service-list-content,
    .service-list-content h2,
    .service-list-content p {
        min-width: 0;
        max-width: 100%;
    }

    .service-list-content h2 {
        overflow-wrap: break-word;
    }
}
/* ========================================
   MOBILE INNER PAGES FIX
======================================== */

@media (max-width: 600px) {

    /* ------------------------------------
       GLOBAL INNER PAGE SAFETY
    ------------------------------------ */

    .about-hero,
    .work-hero,
    .service-detail-hero,
    .case-study-hero,
    .legal-hero {
        max-width: 100%;
        overflow: hidden;
    }

    .about-hero .section-inner,
    .work-hero .section-inner,
    .service-detail-hero .section-inner,
    .case-study-hero .section-inner,
    .legal-hero .section-inner,
    .legal-section .section-inner {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }


    /* ------------------------------------
       ABOUT / THE LAB
    ------------------------------------ */

    .about-hero-content,
    .about-positioning-grid,
    .about-capabilities-header,
    .about-approach-content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .about-hero-content > *,
    .about-positioning-grid > *,
    .about-capabilities-header > *,
    .about-approach-content > * {
        min-width: 0;
        max-width: 100%;
    }

    .about-hero h1 {
        max-width: 100%;
        font-size: clamp(44px, 12vw, 62px);
        line-height: 0.94;
        letter-spacing: -0.04em;
        overflow-wrap: break-word;
    }

    .about-big-statement h2,
    .about-capabilities-header h2,
    .about-approach-heading h2 {
        max-width: 100%;
        font-size: clamp(40px, 11vw, 56px);
        line-height: 0.96;
        letter-spacing: -0.035em;
        overflow-wrap: break-word;
    }


    /* ------------------------------------
       SERVICE DETAIL
    ------------------------------------ */

    .service-detail-hero-content,
    .service-detail-intro-content,
    .service-detail-value-content,
    .service-detail-process-header,
    .service-detail-tech-content,
    .service-detail-seo-content,
    .service-detail-faq-content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .service-detail-hero-content > *,
    .service-detail-intro-content > *,
    .service-detail-value-content > *,
    .service-detail-process-header > *,
    .service-detail-tech-content > *,
    .service-detail-seo-content > *,
    .service-detail-faq-content > * {
        min-width: 0;
        max-width: 100%;
    }

    .service-detail-hero h1 {
        max-width: 100%;
        font-size: clamp(42px, 11vw, 58px);
        line-height: 0.94;
        letter-spacing: -0.025em;
        overflow-wrap: break-word;
    }

    .service-detail-intro-content h2,
    .service-detail-value-content h2,
    .service-detail-process-header h2,
    .service-detail-tech-content h2,
    .service-detail-seo-content h2,
    .service-detail-faq-content h2 {
        max-width: 100%;
        font-size: clamp(38px, 10.5vw, 54px);
        line-height: 0.96;
        overflow-wrap: break-word;
    }


    /* ------------------------------------
       WORK / PROJECTS PAGE
    ------------------------------------ */

    .work-hero-content,
    .work-intro-content,
    .work-approach-header,
    .work-future-content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .work-hero-content > *,
    .work-intro-content > *,
    .work-approach-header > *,
    .work-future-content > * {
        min-width: 0;
        max-width: 100%;
    }

    .work-hero h1 {
        max-width: 100%;
        font-size: clamp(44px, 12vw, 62px);
        line-height: 0.94;
        letter-spacing: -0.04em;
        overflow-wrap: break-word;
    }


    /* ------------------------------------
       CASE STUDIES / PROJECT DETAIL
    ------------------------------------ */

    .case-study-hero,
    .case-study-copy,
    .case-study-hero-content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .case-study-hero-content > * {
        min-width: 0;
        max-width: 100%;
    }

    .case-study-hero h1 {
        max-width: 100%;
        font-size: clamp(42px, 11vw, 58px);
        line-height: 0.95;
        letter-spacing: -0.025em;
        overflow-wrap: break-word;
    }

    .case-study-hero h2,
    .case-study-section h2 {
        max-width: 100%;
        font-size: clamp(38px, 10.5vw, 54px);
        line-height: 0.96;
        overflow-wrap: break-word;
    }


    /* ------------------------------------
       LEGAL PAGES
    ------------------------------------ */

    .legal-hero,
    .legal-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .legal-hero h1 {
        max-width: 100%;
        font-size: clamp(42px, 11vw, 58px);
        line-height: 0.96;
        overflow-wrap: break-word;
    }

    .legal-intro,
    .legal-section > div {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .legal-section h2 {
        font-size: clamp(26px, 7vw, 34px);
        line-height: 1.15;
    }

    .legal-section p,
    .legal-section li {
        overflow-wrap: anywhere;
    }
}

/* ========================================
   FINAL MOBILE INNER PAGE TUNING
======================================== */

@media (max-width: 600px) {

    /* WORK / PROJECTS */
    .work-hero .section-inner,
    .work-intro-section .section-inner,
    .work-projects-section .section-inner,
    .work-approach-section .section-inner,
    .work-future-section .section-inner,

    /* SERVICE DETAILS */
    .service-detail-hero .section-inner,
    .service-detail-intro .section-inner,
    .service-detail-capabilities .section-inner,
    .service-detail-value .section-inner,
    .service-detail-process .section-inner,
    .service-detail-tech .section-inner,
    .service-detail-seo .section-inner,
    .service-detail-faq .section-inner,

    /* CASE STUDIES */
    .case-study-hero .section-inner,
    .case-study-section .section-inner,
    .case-study-cta .section-inner {
        width: calc(100% - 40px);
        max-width: calc(100% - 40px);
        margin-left: auto;
        margin-right: auto;
        min-width: 0;
    }


    /* WORK PAGE */
    .work-hero h1 {
        font-size: clamp(38px, 10.5vw, 52px);
        line-height: 0.95;
        letter-spacing: -0.035em;
        max-width: 100%;
    }


    /* SERVICE DETAIL */
    .service-detail-hero h1 {
        font-size: clamp(36px, 10vw, 50px);
        line-height: 0.94;
        letter-spacing: -0.025em;
        max-width: 100%;
    }

    .service-detail-intro-content h2,
    .service-detail-value-content h2,
    .service-detail-process-header h2,
    .service-detail-tech-content h2,
    .service-detail-seo-content h2,
    .service-detail-faq-content h2 {
        font-size: clamp(34px, 9.5vw, 48px);
        line-height: 0.96;
        max-width: 100%;
    }


    /* PROJECT / CASE STUDY */
    .case-study-hero h1 {
        font-size: clamp(36px, 10vw, 50px);
        line-height: 0.95;
        max-width: 100%;
    }

    .case-study-section h2,
    .case-study-hero h2 {
        font-size: clamp(34px, 9.5vw, 48px);
        line-height: 0.96;
        max-width: 100%;
    }


    /* Prevent text children from forcing width */
    .work-hero *,
    .service-detail-hero *,
    .case-study-hero * {
        min-width: 0;
    }
}
@media (max-width: 600px) {
    .services-hero h1 {
        font-size: clamp(40px, 10.5vw, 50px);
        letter-spacing: -0.05em;
    }
}