/* =========================================================
   RAJYOG DEVELOPERS
   PREMIUM REAL ESTATE WEBSITE
   BRAND SYSTEM
========================================================= */

:root {

    /* Brand colours */
    --blue: #09A7D1;
    --blue-light: #28C1E8;
    --blue-dark: #057B9C;

    --orange: #F36C0A;
    --orange-light: #FF8A2A;

    --gold: #D7B45A;
    --gold-light: #F0D58A;
    --gold-dark: #A9822E;

    /* Background */
    --ink: #120D0A;
    --ink-soft: #1B120D;
    --brown: #2A1810;
    --brown-light: #3A2115;

    /* Light sections */
    --ivory: #FFF8E8;
    --cream: #F6EBD2;
    --stone: #D8CCB5;

    /* Text */
    --text: #F8F1E2;
    --text-muted: #BEB3A2;
    --dark-text: #261A13;
    --dark-muted: #756A5D;

    /* Effects */
    --blue-glow: rgba(9, 167, 209, .22);
    --orange-glow: rgba(243, 108, 10, .18);
    --gold-glow: rgba(215, 180, 90, .18);

    --ease: cubic-bezier(.2, .75, .25, 1);
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;

    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(9,167,209,.08),
            transparent 30%
        ),
        var(--ink);

    color: var(--text);

    font-family: "Work Sans", sans-serif;

    font-weight: 400;

    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

::selection {
    background: var(--blue);
    color: white;
}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: var(--ink);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(
        var(--blue),
        var(--orange)
    );

    border-radius: 10px;
}


/* =========================================================
   LOADER
========================================================= */

.loader {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    background:
        radial-gradient(
            circle at center,
            rgba(9,167,209,.12),
            transparent 40%
        ),
        var(--ink);

    transition:
        opacity .8s var(--ease),
        visibility .8s;
}

.loader.done {
    opacity: 0;
    visibility: hidden;
}

.loader p {
    margin-top: 22px;

    font-family: "IBM Plex Mono", monospace;

    font-size: 10px;

    letter-spacing: .35em;

    color: var(--gold);
}

.loader-mark {
    width: 55px;
    height: 55px;

    position: relative;
}

.loader-mark span {
    position: absolute;

    inset: 0;

    border: 1px solid var(--blue);

    transform: rotate(45deg);

    animation: loaderSpin 2s infinite var(--ease);
}

.loader-mark span:nth-child(2) {
    border-color: var(--gold);
    transform: rotate(45deg) scale(.7);
}

.loader-mark span:nth-child(3) {
    border-color: var(--orange);
    transform: rotate(45deg) scale(.4);
}

@keyframes loaderSpin {
    0%,100% {
        transform: rotate(45deg) scale(1);
    }

    50% {
        transform: rotate(225deg) scale(.8);
    }
}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    height: 82px;

    display: flex;
    align-items: center;

    padding: 0 5vw;

    transition:
        height .5s var(--ease),
        background .5s,
        border-color .5s;

    border-bottom: 1px solid transparent;
}

.site-header.scrolled {

    height: 70px;

    background: rgba(18,13,10,.82);

    backdrop-filter: blur(18px);

    border-bottom-color: rgba(215,180,90,.16);

    box-shadow:
        0 15px 50px rgba(0,0,0,.18);
}


/* =========================================================
   BRAND
========================================================= */

.brand {

    display: flex;

    align-items: center;

    gap: 11px;

    width: auto;

    height: 62px;

    flex-shrink: 0;

    text-decoration: none;
}

.brand img {

    display: block;

    width: 46px;

    height: 46px;

    object-fit: contain;

    flex-shrink: 0;

    transition:
        transform .4s var(--ease);
}

.brand:hover img {
    transform: scale(1.05) rotate(1deg);
}

.brand-name {

    display: flex;

    flex-direction: column;

    line-height: 1;
}

.brand-name strong {

    font-family: "Cinzel", serif;

    font-size: 18px;

    font-weight: 700;

    letter-spacing: .08em;

    color: white;
}

.brand-name small {

    margin-top: 5px;

    font-family: "IBM Plex Mono", monospace;

    font-size: 7px;

    letter-spacing: .28em;

    color: var(--orange);
}


/* =========================================================
   DESKTOP NAV
========================================================= */

.desktop-nav {

    display: flex;

    align-items: center;

    gap: 34px;

    margin-left: auto;

    margin-right: 38px;
}

.desktop-nav a {

    position: relative;

    font-family: "IBM Plex Mono", monospace;

    font-size: 10px;

    letter-spacing: .12em;

    text-transform: uppercase;

    color: rgba(255,255,255,.72);

    transition:
        color .3s;
}

.desktop-nav a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--orange)
        );

    transition: width .35s var(--ease);
}

.desktop-nav a:hover {
    color: white;
}

.desktop-nav a:hover::after {
    width: 100%;
}


/* =========================================================
   HEADER CTA
========================================================= */

.header-cta {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 18px;

    border: 1px solid rgba(215,180,90,.45);

    font-family: "IBM Plex Mono", monospace;

    font-size: 9px;

    letter-spacing: .14em;

    text-transform: uppercase;

    color: var(--gold-light);

    transition:
        background .3s,
        color .3s,
        transform .3s;
}

.header-cta span {
    color: var(--orange);
}

.header-cta:hover {

    background: var(--gold);

    color: var(--ink);

    transform: translateY(-2px);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {

    display: none;

    margin-left: auto;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(215,180,90,.35);

    background: transparent;

    cursor: pointer;
}

.menu-toggle i {

    display: block;

    width: 18px;
    height: 1px;

    margin: 5px auto;

    background: white;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {

    position: fixed;

    top: 70px;
    left: 0;
    right: 0;

    z-index: 900;

    display: flex;

    flex-direction: column;

    padding: 25px 7vw;

    background:
        linear-gradient(
            135deg,
            rgba(18,13,10,.98),
            rgba(42,24,16,.98)
        );

    border-bottom: 1px solid rgba(215,180,90,.2);

    transform: translateY(-120%);

    transition: transform .5s var(--ease);
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-menu a {

    padding: 17px 0;

    border-bottom: 1px solid rgba(255,255,255,.08);

    font-family: "Cinzel", serif;

    font-size: 17px;

    color: white;
}


/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding: 140px 8vw 100px;
}


/* Atmospheric gradients */

.hero::before {

    content: "";

    position: absolute;

    width: 800px;
    height: 800px;

    top: -350px;
    right: -250px;

    background:
        radial-gradient(
            circle,
            rgba(9,167,209,.17),
            transparent 65%
        );

    pointer-events: none;
}

.hero::after {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    bottom: -450px;
    left: -250px;

    background:
        radial-gradient(
            circle,
            rgba(243,108,10,.13),
            transparent 65%
        );

    pointer-events: none;
}


/* Hero glow */

.hero-glow {

    position: absolute;

    width: 500px;
    height: 500px;

    left: 20%;
    top: 25%;

    background:
        radial-gradient(
            circle,
            rgba(215,180,90,.07),
            transparent 70%
        );

    filter: blur(20px);
}


/* Grid */

.hero-grid {

    position: absolute;

    inset: 0;

    opacity: .16;

    background-image:
        linear-gradient(
            rgba(255,255,255,.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.05) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 85%
        );
}


/* =========================================================
   HERO COPY
========================================================= */

.hero-copy {

    position: relative;

    z-index: 5;

    max-width: 700px;
}

.eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 28px;

    font-family: "IBM Plex Mono", monospace;

    font-size: 9px;

    letter-spacing: .25em;

    color: var(--gold);
}

.eyebrow span {

    width: 32px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--orange)
        );
}


.hero h1 {

    margin: 0;

    font-family: "Cinzel", serif;

    font-size: clamp(
        55px,
        7.2vw,
        108px
    );

    line-height: .95;

    font-weight: 600;

    letter-spacing: -.045em;

    color: #fff;
}

.hero h1 em {

    font-style: normal;

    background:
        linear-gradient(
            100deg,
            var(--blue),
            #61D8F4 45%,
            var(--gold)
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}

.hero-copy > p {

    max-width: 500px;

    margin: 32px 0 35px;

    font-size: 16px;

    line-height: 1.8;

    color: var(--text-muted);
}


/* =========================================================
   BUTTONS
========================================================= */

.hero-actions {

    display: flex;

    align-items: center;

    gap: 28px;
}

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    min-height: 50px;

    padding: 0 22px;

    font-family: "IBM Plex Mono", monospace;

    font-size: 9px;

    letter-spacing: .13em;

    text-transform: uppercase;

    transition:
        transform .35s var(--ease),
        background .35s,
        color .35s,
        border .35s;
}

.btn span {
    font-size: 14px;
}

.btn-gold {

    background:
        linear-gradient(
            110deg,
            var(--gold),
            var(--gold-light)
        );

    color: var(--ink);

    box-shadow:
        0 10px 35px rgba(215,180,90,.15);
}

.btn-gold:hover {

    transform: translateY(-4px);

    box-shadow:
        0 18px 45px rgba(215,180,90,.25);
}

.btn-outline {

    border: 1px solid rgba(215,180,90,.4);

    color: var(--gold-light);
}

.btn-outline:hover {

    background: var(--gold);

    color: var(--ink);

    transform: translateY(-3px);
}

.text-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-family: "IBM Plex Mono", monospace;

    font-size: 9px;

    letter-spacing: .13em;

    text-transform: uppercase;

    color: rgba(255,255,255,.7);
}

.text-link span {
    color: var(--blue);
}

.text-link:hover {
    color: white;
}


/* =========================================================
   HERO ARCHITECTURE
========================================================= */

.hero-architecture {

    position: absolute;

    right: 0;
    bottom: 0;

    width: 55%;
    height: 78%;

    opacity: .72;

    pointer-events: none;
}


/* Buildings */

.building {

    position: absolute;

    bottom: 0;

    border:
        1px solid rgba(9,167,209,.35);

    background:
        linear-gradient(
            180deg,
            rgba(9,167,209,.06),
            rgba(243,108,10,.025)
        );

    box-shadow:
        inset 0 0 50px rgba(9,167,209,.025);

    animation:
        buildingFloat 8s ease-in-out infinite;
}

.building i {

    display: inline-block;

    width: 9px;
    height: 15px;

    margin: 16px 7px;

    border: 1px solid rgba(215,180,90,.3);
}

.building-a {

    width: 25%;
    height: 42%;

    right: 38%;
}

.building-b {

    width: 32%;
    height: 62%;

    right: 10%;

    animation-delay: -2s;
}

.building-c {

    width: 18%;
    height: 30%;

    right: 70%;

    animation-delay: -4s;
}

@keyframes buildingFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}


/* Temple spires */

.temple-spire {

    position: absolute;

    bottom: 40%;

    width: 0;
    height: 0;

    border-left: 30px solid transparent;
    border-right: 30px solid transparent;

    border-bottom: 110px solid rgba(215,180,90,.11);

    filter:
        drop-shadow(
            0 0 20px rgba(215,180,90,.08)
        );
}

.temple-spire::after {

    content: "";

    position: absolute;

    width: 4px;
    height: 25px;

    left: -2px;
    top: -135px;

    background: var(--gold);

    opacity: .55;
}

.spire-one {
    left: 22%;
}

.spire-two {
    left: 45%;

    transform: scale(1.35);

    opacity: .7;
}

.spire-three {
    left: 68%;

    transform: scale(.8);

    opacity: .5;
}

.ground-line {

    position: absolute;

    bottom: 0;
    left: 0;
    right: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--blue),
            var(--gold),
            var(--orange),
            transparent
        );
}


/* =========================================================
   HERO FOOT ELEMENTS
========================================================= */

.hero-scroll {

    position: absolute;

    bottom: 30px;
    left: 8vw;

    display: flex;

    align-items: center;

    gap: 14px;

    font-family: "IBM Plex Mono", monospace;

    font-size: 8px;

    letter-spacing: .25em;

    color: var(--text-muted);
}

.hero-scroll i {

    width: 45px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--gold),
            transparent
        );
}

.hero-number {

    position: absolute;

    right: 6vw;
    bottom: 32px;

    font-family: "IBM Plex Mono", monospace;

    font-size: 10px;

    color: var(--gold);
}

.hero-number span {
    color: rgba(255,255,255,.3);
}


/* =========================================================
   COMMON SECTION
========================================================= */

section {
    position: relative;
}

.section-kicker {

    margin-bottom: 25px;

    font-family: "IBM Plex Mono", monospace;

    font-size: 9px;

    letter-spacing: .22em;

    color: var(--blue);
}

h2 {

    margin: 0;

    font-family: "Cinzel", serif;

    font-size: clamp(
        40px,
        5vw,
        70px
    );

    line-height: 1.05;

    font-weight: 600;

    letter-spacing: -.035em;
}

h2 em {

    font-style: normal;

    color: var(--orange);
}


/* =========================================================
   ABOUT / INTRO
========================================================= */

.intro {

    padding: 140px 8vw;

    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(9,167,209,.08),
            transparent 35%
        ),
        var(--ivory);

    color: var(--dark-text);
}

.intro .section-kicker {
    color: var(--orange);
}

.intro-layout {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10vw;

    align-items: end;
}

.kalash-divider {

    display: inline-block;

    margin-bottom: 28px;

    font-size: 22px;

    color: var(--gold-dark);

    animation:
        goldPulse 3s ease-in-out infinite;
}

@keyframes goldPulse {

    0%,100% {
        opacity: .6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

.intro-text {
    max-width: 570px;
}

.intro-text .lead {

    font-size: 20px;

    line-height: 1.7;

    color: var(--dark-text);
}

.intro-text p {

    font-size: 15px;

    line-height: 1.8;

    color: var(--dark-muted);
}

.under-link {

    display: inline-flex;

    gap: 12px;

    margin-top: 18px;

    padding-bottom: 7px;

    border-bottom: 1px solid var(--orange);

    font-family: "IBM Plex Mono", monospace;

    font-size: 9px;

    letter-spacing: .12em;

    text-transform: uppercase;

    color: var(--dark-text);
}


/* =========================================================
   STATS
========================================================= */

.stats {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 0;

    margin-top: 100px;

    border-top:
        1px solid rgba(38,26,19,.15);
}

.stats > div {

    padding: 35px 20px;

    border-right:
        1px solid rgba(38,26,19,.15);
}

.stats > div:first-child {
    padding-left: 0;
}

.stats strong {

    display: block;

    font-family: "IBM Plex Mono", monospace;

    font-size: clamp(32px,4vw,55px);

    font-weight: 400;

    color: var(--blue);
}

.stats > div:nth-child(2) strong {
    color: var(--orange);
}

.stats > div:nth-child(3) strong {
    color: var(--gold-dark);
}

.stats span {

    display: block;

    margin-top: 10px;

    font-size: 11px;

    letter-spacing: .05em;

    color: var(--dark-muted);
}


/* =========================================================
   PROJECTS
========================================================= */

.projects-section {

    padding: 145px 8vw;

    background:
        radial-gradient(
            circle at 15% 30%,
            rgba(243,108,10,.07),
            transparent 28%
        ),
        var(--ink-soft);
}

.section-top {

    display: flex;

    align-items: end;

    justify-content: space-between;

    margin-bottom: 65px;
}

.circle-arrow {

    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(215,180,90,.35);

    border-radius: 50%;

    color: var(--gold);

    font-size: 18px;

    transition:
        background .35s,
        transform .35s;
}

.circle-arrow:hover {

    background: var(--gold);

    color: var(--ink);

    transform: rotate(45deg);
}

.project-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.project-card {

    min-width: 0;

    transition:
        transform .5s var(--ease);
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-image {

    position: relative;

    height: 390px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #2A1A12,
            #12252A
        );

    border:
        1px solid rgba(215,180,90,.12);
}

.project-image::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(9,167,209,.18),
            transparent 45%,
            rgba(243,108,10,.1)
        );

    opacity: .8;

    transition: opacity .5s;
}

.project-card:hover .project-image::before {
    opacity: 1;
}

.image-placeholder {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            rgba(9,167,209,.12),
            transparent 40%
        ),
        linear-gradient(
            315deg,
            rgba(243,108,10,.08),
            transparent 50%
        );
}

.image-placeholder::after {

    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    border:
        1px solid rgba(215,180,90,.3);

    transform: rotate(45deg);

    animation:
        projectShape 12s linear infinite;
}

@keyframes projectShape {

    to {
        transform: rotate(405deg);
    }
}

.image-placeholder span {

    position: relative;

    z-index: 2;

    font-family: "Cinzel", serif;

    font-size: 24px;

    letter-spacing: .1em;

    color: rgba(255,255,255,.12);
}

.project-status {

    position: absolute;

    top: 18px;
    left: 18px;

    z-index: 4;

    padding: 7px 10px;

    background: rgba(18,13,10,.72);

    backdrop-filter: blur(10px);

    border:
        1px solid rgba(215,180,90,.3);

    font-family: "IBM Plex Mono", monospace;

    font-size: 7px;

    letter-spacing: .15em;

    color: var(--gold-light);

    text-transform: uppercase;
}

.project-meta {

    display: flex;

    justify-content: space-between;

    padding: 20px 0 0;
}

.project-meta h3 {

    margin: 0 0 6px;

    font-family: "Cinzel", serif;

    font-size: 17px;

    font-weight: 500;
}

.project-meta span {

    font-family: "IBM Plex Mono", monospace;

    font-size: 8px;

    letter-spacing: .08em;

    color: var(--text-muted);
}

.project-index {

    color: var(--gold) !important;

    font-size: 10px !important;
}

.center-link {

    margin-top: 65px;

    text-align: center;
}


/* =========================================================
   WHY RAJYOG
========================================================= */

.why-section {

    display: grid;

    grid-template-columns: 42% 58%;

    min-height: 850px;

    background: var(--ivory);

    color: var(--dark-text);
}

.why-visual {

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(9,167,209,.2),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #173039,
            #26170F
        );
}

.orb {

    position: absolute;

    width: 350px;
    height: 350px;

    top: 50%;
    left: 50%;

    transform: translate(-50%,-50%);

    border-radius: 50%;

    border:
        1px solid rgba(215,180,90,.5);

    box-shadow:
        0 0 0 30px rgba(215,180,90,.03),
        0 0 0 60px rgba(9,167,209,.025),
        inset 0 0 80px rgba(9,167,209,.1);

    animation:
        orbPulse 7s ease-in-out infinite;
}

.orb::before,
.orb::after {

    content: "";

    position: absolute;

    inset: 45px;

    border-radius: 50%;

    border:
        1px solid rgba(9,167,209,.35);
}

.orb::after {

    inset: 90px;

    border-color:
        rgba(243,108,10,.35);
}

@keyframes orbPulse {

    0%,100% {
        transform: translate(-50%,-50%) scale(1);
    }

    50% {
        transform: translate(-50%,-50%) scale(1.05);
    }
}

.vertical-label {

    position: absolute;

    left: 30px;
    bottom: 30px;

    writing-mode: vertical-rl;

    transform: rotate(180deg);

    font-family: "IBM Plex Mono", monospace;

    font-size: 8px;

    letter-spacing: .25em;

    color: rgba(255,255,255,.5);
}

.visual-number {

    position: absolute;

    top: 35px;
    right: 35px;

    font-family: "IBM Plex Mono", monospace;

    font-size: 11px;

    color: var(--gold);
}

.why-content {

    padding: 125px 8vw 100px;
}

.why-content h2 {

    margin-bottom: 65px;

    color: var(--dark-text);
}

.why-list {

    border-top:
        1px solid rgba(38,26,19,.15);
}

.why-item {

    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 20px;

    padding: 25px 0;

    border-bottom:
        1px solid rgba(38,26,19,.15);
}

.why-item > span {

    font-family: "IBM Plex Mono", monospace;

    font-size: 10px;

    color: var(--orange);
}

.why-item h3 {

    margin: 0 0 8px;

    font-family: "Cinzel", serif;

    font-size: 18px;

    font-weight: 600;
}

.why-item p {

    max-width: 480px;

    margin: 0;

    font-size: 13px;

    line-height: 1.7;

    color: var(--dark-muted);
}


/* =========================================================
   JOURNEY
========================================================= */

.journey {

    padding: 145px 8vw;

    background:
        linear-gradient(
            120deg,
            #130D0A,
            #21130D
        );
}

.journey-heading {
    margin-bottom: 100px;
}

.journey-line {

    position: absolute;

    top: 410px;
    left: 8vw;
    right: 8vw;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--gold),
            var(--orange)
        );

    opacity: .35;
}

.journey-steps {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 30px;
}

.journey-step {

    position: relative;

    padding-top: 35px;
}

.journey-step::before {

    content: "";

    position: absolute;

    top: -5px;
    left: 0;

    width: 11px;
    height: 11px;

    border-radius: 50%;

    background: var(--gold);

    box-shadow:
        0 0 0 7px rgba(215,180,90,.08),
        0 0 20px rgba(215,180,90,.25);
}

.journey-step span {

    font-family: "IBM Plex Mono", monospace;

    font-size: 9px;

    color: var(--blue);
}

.journey-step h3 {

    margin: 17px 0 10px;

    font-family: "Cinzel", serif;

    font-size: 18px;
}

.journey-step p {

    margin: 0;

    max-width: 190px;

    font-size: 12px;

    line-height: 1.7;

    color: var(--text-muted);
}


/* =========================================================
   QUOTE
========================================================= */

.quote-section {

    padding: 160px 8vw;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(9,167,209,.09),
            transparent 45%
        ),
        var(--ivory);

    color: var(--dark-text);
}

.quote-mark {

    font-family: Georgia, serif;

    font-size: 110px;

    line-height: .5;

    color: var(--gold);
}

blockquote {

    max-width: 950px;

    margin: 30px auto 35px;

    font-family: "Cinzel", serif;

    font-size: clamp(
        27px,
        4vw,
        52px
    );

    line-height: 1.3;

    font-weight: 500;
}

blockquote em {

    font-style: normal;

    color: var(--blue);
}

.quote-line {

    width: 70px;
    height: 1px;

    margin: auto;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--orange)
        );
}

.quote-caption {

    display: block;

    margin-top: 20px;

    font-family: "IBM Plex Mono", monospace;

    font-size: 8px;

    letter-spacing: .25em;

    color: var(--dark-muted);
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {

    position: relative;

    overflow: hidden;

    padding: 150px 8vw;

    background:
        radial-gradient(
            circle at 75% 30%,
            rgba(9,167,209,.14),
            transparent 30%
        ),
        radial-gradient(
            circle at 15% 80%,
            rgba(243,108,10,.1),
            transparent 30%
        ),
        var(--ink);
}

.contact-glow {

    position: absolute;

    width: 400px;
    height: 400px;

    right: -150px;
    bottom: -150px;

    border-radius: 50%;

    border:
        1px solid rgba(215,180,90,.18);

    box-shadow:
        0 0 0 80px rgba(215,180,90,.025),
        0 0 0 160px rgba(9,167,209,.018);
}

.contact-layout {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10vw;

    align-items: end;
}

.contact-layout h2 {

    font-size: clamp(
        45px,
        5.5vw,
        78px
    );
}

.contact-layout h2 em {
    color: var(--gold);
}

.contact-layout > div:first-child p {

    max-width: 470px;

    margin-top: 30px;

    line-height: 1.8;

    color: var(--text-muted);
}

.contact-details {

    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

.contact-big {

    display: inline-block;

    margin-bottom: 22px;

    font-family: "IBM Plex Mono", monospace;

    font-size: clamp(
        20px,
        2.5vw,
        34px
    );

    color: white;

    transition: color .3s;
}

.contact-big span {
    color: var(--orange);
}

.contact-big:hover {
    color: var(--blue-light);
}

.contact-details > a:not(.contact-big) {

    font-family: "IBM Plex Mono", monospace;

    font-size: 12px;

    color: var(--gold);
}

.contact-details p {

    margin-top: 30px;

    font-size: 12px;

    line-height: 1.8;

    color: var(--text-muted);
}


/* =========================================================
   FOOTER
========================================================= */

footer {

    padding: 70px 8vw 30px;

    background: #0C0806;

    border-top:
        1px solid rgba(215,180,90,.12);
}


/* Full logo in footer */

.footer-brand {

    display: inline-flex;

    width: 145px;
    height: 145px;

    align-items: center;
    justify-content: center;

    margin-bottom: 60px;
}

.footer-brand img {

    width: 145px;
    height: 145px;

    object-fit: contain;

    transition:
        transform .5s var(--ease);
}

.footer-brand:hover img {
    transform: scale(1.03);
}

.footer-bottom {

    display: grid;

    grid-template-columns:
        1fr 1fr 1fr;

    gap: 20px;

    padding-top: 25px;

    border-top:
        1px solid rgba(255,255,255,.08);

    font-family: "IBM Plex Mono", monospace;

    font-size: 8px;

    letter-spacing: .12em;

    color: rgba(255,255,255,.4);
}

.footer-bottom span:nth-child(2) {
    text-align: center;
}

.footer-bottom span:last-child {
    text-align: right;

    color: var(--gold);
}


/* =========================================================
   REVEAL ANIMATIONS
========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity .9s var(--ease),
        transform .9s var(--ease);

    transition-delay:
        var(--delay, 0ms);
}

.reveal.visible {

    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   PROJECT CARD DELAY
========================================================= */

.project-card:nth-child(1) {
    --delay: 0ms;
}

.project-card:nth-child(2) {
    --delay: 100ms;
}

.project-card:nth-child(3) {
    --delay: 200ms;
}

.project-card:nth-child(4) {
    --delay: 300ms;
}


/* =========================================================
   HOVER IMAGE EFFECT
========================================================= */

.project-image {
    transition:
        transform .6s var(--ease);
}

.project-card:hover .project-image {
    transform: scale(1.015);
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1100px) {

    .desktop-nav {
        gap: 20px;
        margin-right: 20px;
    }

    .project-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .why-section {
        grid-template-columns: 1fr;
    }

    .why-visual {
        min-height: 500px;
    }

    .journey-steps {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .journey-line {
        display: none;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 750px) {

    html {
        scroll-padding-top: 70px;
    }

    .site-header {

        height: 70px;

        padding:
            0 5vw;
    }

    .site-header.scrolled {
        height: 64px;
    }


    /* Logo */

    .brand {
        gap: 9px;
        height: 55px;
    }

    .brand img {
        width: 40px;
        height: 40px;
    }

    .brand-name strong {
        font-size: 15px;
    }

    .brand-name small {
        font-size: 6px;
    }


    .desktop-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }


    /* Hero */

    .hero {

        min-height: 100svh;

        padding:
            120px 7vw 100px;
    }

    .hero h1 {
        font-size:
            clamp(
                45px,
                13vw,
                65px
            );
    }

    .hero-copy > p {
        font-size: 14px;
    }

    .hero-actions {

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }

    .hero-architecture {

        width: 100%;

        height: 48%;

        opacity: .45;
    }

    .hero-scroll {
        display: none;
    }


    /* Intro */

    .intro {

        padding:
            90px 7vw;
    }

    .intro-layout {

        grid-template-columns: 1fr;

        gap: 40px;
    }

    .intro-text .lead {
        font-size: 17px;
    }

    .stats {

        grid-template-columns:
            repeat(2,1fr);

        margin-top: 65px;
    }

    .stats > div {
        padding: 25px 10px;

        border-bottom:
            1px solid rgba(38,26,19,.15);
    }

    .stats > div:first-child {
        padding-left: 10px;
    }


    /* Projects */

    .projects-section {

        padding:
            90px 7vw;
    }

    .section-top {

        align-items: flex-start;

        gap: 25px;
    }

    .circle-arrow {

        width: 48px;
        height: 48px;
    }

    .project-grid {

        grid-template-columns: 1fr;

        gap: 45px;
    }

    .project-image {
        height: 430px;
    }


    /* Why */

    .why-visual {
        min-height: 400px;
    }

    .orb {

        width: 230px;
        height: 230px;
    }

    .why-content {

        padding:
            90px 7vw;
    }

    .why-content h2 {
        margin-bottom: 45px;
    }


    /* Journey */

    .journey {

        padding:
            90px 7vw;
    }

    .journey-heading {
        margin-bottom: 60px;
    }

    .journey-steps {

        grid-template-columns: 1fr;

        gap: 45px;
    }

    .journey-step {
        padding-top: 25px;
    }


    /* Quote */

    .quote-section {

        padding:
            100px 7vw;
    }

    .quote-mark {
        font-size: 80px;
    }


    /* Contact */

    .contact-section {

        padding:
            100px 7vw;
    }

    .contact-layout {

        grid-template-columns: 1fr;

        gap: 60px;
    }


    /* Footer */

    footer {

        padding:
            55px 7vw 25px;
    }

    .footer-brand {

        width: 115px;
        height: 115px;

        margin-bottom: 45px;
    }

    .footer-brand img {

        width: 115px;
        height: 115px;
    }

    .footer-bottom {

        grid-template-columns: 1fr;

        gap: 12px;
    }

    .footer-bottom span,
    .footer-bottom span:nth-child(2),
    .footer-bottom span:last-child {

        text-align: left;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

        transition-duration: .01ms !important;
    }
}
