@charset "UTF-8";

:root {
    --bg: #070707;
    --bg-soft: #0d0d0d;
    --panel: rgba(255, 255, 255, 0.035);
    --panel-strong: rgba(255, 255, 255, 0.055);
    --text: #f3efe7;
    --muted: #aaa49a;
    --gold: #d8ad58;
    --gold-light: #f5d88b;
    --gold-deep: #8b6121;
    --border: rgba(216, 173, 88, 0.22);
    --border-soft: rgba(255, 255, 255, 0.08);
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
    --radius: 22px;
    --container: 1320px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 75% 10%, rgba(160, 110, 25, 0.09), transparent 30%),
        radial-gradient(circle at 15% 55%, rgba(216, 173, 88, 0.045), transparent 26%),
        var(--bg);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

::selection {
    color: #090909;
    background: var(--gold);
}

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

button,
input,
textarea {
    font: inherit;
}

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

.noise {
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
    opacity: .035;
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding: 120px 0;
}

.section-tight {
    padding-top: 90px;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}

.site-header.scrolled {
    background: rgba(7, 7, 7, .82);
    border-color: var(--border-soft);
    backdrop-filter: blur(18px);
}

.nav-wrap {
    min-height: 86px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 36px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.38rem;
    letter-spacing: .22em;
    color: var(--gold-light);
    font-weight: 700;
}

.brand-mark {
    width: 42px;
    color: var(--gold);
}

.brand-mark svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.6;
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.main-nav a {
    position: relative;
    color: #d6d1c8;
    font-size: .92rem;
    font-weight: 650;
    transition: color .25s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -12px;
    height: 1px;
    background: var(--gold);
    transition: right .25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold-light);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    right: 0;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    background: rgba(255, 255, 255, .03);
}

.nav-toggle span {
    display: block;
    width: 21px;
    height: 1px;
    margin: 5px auto;
    background: var(--text);
    transition: transform .25s ease, opacity .25s ease;
}

.btn {
    min-height: 50px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border: 1px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .78rem;
    font-weight: 800;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-gold {
    color: #0a0804;
    background: linear-gradient(135deg, var(--gold-light), var(--gold) 52%, #a8792c);
    box-shadow: 0 12px 30px rgba(216, 173, 88, .18), inset 0 1px 0 rgba(255, 255, 255, .45);
}

.btn-gold:hover {
    box-shadow: 0 18px 44px rgba(216, 173, 88, .28), inset 0 1px 0 rgba(255, 255, 255, .45);
}

.btn-ghost {
    color: var(--text);
    border-color: var(--border);
    background: rgba(255, 255, 255, .015);
}

.btn-ghost:hover {
    border-color: rgba(216, 173, 88, .55);
    background: rgba(216, 173, 88, .05);
}

.play {
    font-size: .72rem;
    color: var(--gold);
}

.hero {
    min-height: 850px;
    display: flex;
    align-items: center;
    padding-top: 150px;
    overflow: hidden;
    border-bottom: 1px solid var(--border-soft);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, transparent 0 57%, rgba(216, 173, 88, .03) 57.2% 57.35%, transparent 57.55%),
        linear-gradient(145deg, transparent 0 67%, rgba(216, 173, 88, .04) 67.2% 67.35%, transparent 67.55%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    align-items: center;
    gap: 50px;
}

.hero-copy {
    position: relative;
    z-index: 3;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;
    margin: 0 0 23px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: .72rem;
    font-weight: 800;
}

.eyebrow span {
    width: 34px;
    height: 1px;
    background: var(--gold);
}

.eyebrow.centered {
    justify-content: center;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.contact-copy h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(3.25rem, 5.45vw, 6.55rem);
}

.hero h1 em,
.contact-copy h2 em {
    color: var(--gold);
    font-style: normal;
}

.lead {
    max-width: 650px;
    margin: 30px 0 0;
    color: #beb8ae;
    font-size: clamp(1.02rem, 1.5vw, 1.22rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 38px;
}

.trust-row {
    margin-top: 42px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 24px;
    color: #8f8a81;
    font-size: .82rem;
}

.trust-row span:not(.trust-dot) {
    position: relative;
}

.trust-row span:not(.trust-dot):not(:last-child)::after {
    content: "•";
    position: absolute;
    right: -15px;
    color: var(--gold-deep);
}

.trust-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 18px rgba(216, 173, 88, .7);
}

.hero-art {
    position: relative;
    min-height: 570px;
    perspective: 1000px;
}

.halo {
    position: absolute;
    border: 2px solid rgba(216, 173, 88, .72);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(216, 173, 88, .16), inset 0 0 20px rgba(216, 173, 88, .08);
}

.halo-one {
    width: 360px;
    height: 360px;
    top: 88px;
    left: 120px;
    transform: rotateX(67deg) rotateZ(-15deg);
}

.halo-two {
    width: 470px;
    height: 470px;
    top: 28px;
    left: 35px;
    border-color: rgba(216, 173, 88, .22);
}

.gold-line {
    position: absolute;
    width: 470px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(216, 173, 88, .75), transparent);
    transform-origin: left center;
}

.line-one {
    top: 145px;
    left: 24px;
    transform: rotate(-22deg);
}

.line-two {
    top: 325px;
    left: 50px;
    transform: rotate(16deg);
}

.marble {
    position: absolute;
    bottom: 94px;
    border: 1px solid rgba(216, 173, 88, .26);
    background:
        linear-gradient(125deg, transparent 0 42%, rgba(216, 173, 88, .2) 42.5% 43%, transparent 43.5% 66%, rgba(216, 173, 88, .12) 66.5% 67%, transparent 67.5%),
        linear-gradient(145deg, #101010, #171717 45%, #050505);
    box-shadow: var(--shadow);
    transform: skewY(-5deg);
}

.slab-left {
    left: 72px;
    width: 240px;
    height: 230px;
}

.slab-middle {
    left: 230px;
    width: 230px;
    height: 315px;
}

.tower {
    position: absolute;
    right: 45px;
    bottom: 94px;
    width: 168px;
    height: 430px;
    border: 1px solid rgba(245, 216, 139, .64);
    background: linear-gradient(105deg, #202020 0%, #0f0f0f 68%, #090909 69%);
    clip-path: polygon(0 8%, 76% 0, 100% 7%, 100% 100%, 0 100%);
    box-shadow: 30px 12px 45px rgba(0, 0, 0, .52);
}

.tower::after {
    content: "";
    position: absolute;
    inset: 0 0 0 auto;
    width: 28px;
    background:
        repeating-linear-gradient(90deg, #5a3c10 0 3px, #f1cf79 3px 6px, #7a5115 6px 9px);
    box-shadow: 0 0 28px rgba(216, 173, 88, .5);
}

.tower-edge {
    position: absolute;
    inset: 0 auto 0 0;
    width: 2px;
    background: linear-gradient(transparent, var(--gold-light), transparent);
}

.tower-logo {
    position: absolute;
    width: 64px;
    left: 44px;
    top: 175px;
    fill: none;
    stroke: var(--gold-light);
    stroke-width: 2.6;
    filter: drop-shadow(0 0 12px rgba(216, 173, 88, .35));
}

.platform {
    position: absolute;
    left: 22px;
    right: 8px;
    bottom: 65px;
    height: 46px;
    border: 1px solid rgba(216, 173, 88, .42);
    border-radius: 50%;
    background: linear-gradient(180deg, #1a1a1a, #050505);
    box-shadow: 0 0 28px rgba(216, 173, 88, .18), 0 30px 55px rgba(0, 0, 0, .55);
}

.spark {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold-light);
    box-shadow: 0 0 18px 6px rgba(216, 173, 88, .35);
    animation: float 4s ease-in-out infinite;
}

.s1 { right: 15px; top: 120px; }
.s2 { left: 85px; top: 190px; animation-delay: -1.3s; }
.s3 { right: 130px; top: 58px; animation-delay: -2.1s; }

@keyframes float {
    50% { transform: translateY(-13px); opacity: .45; }
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 52px;
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(2.45rem, 4vw, 4.2rem);
}

.section-heading > p:last-child {
    margin: 17px auto 0;
    color: var(--muted);
    max-width: 650px;
}

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

.glass-card {
    border: 1px solid var(--border-soft);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .015));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035), var(--shadow);
    backdrop-filter: blur(14px);
}

.service-card {
    min-height: 290px;
    padding: 30px;
    border-radius: var(--radius);
    transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(216, 173, 88, .42);
    background:
        linear-gradient(145deg, rgba(216, 173, 88, .09), rgba(255, 255, 255, .02));
}

.icon-box {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--gold-light);
    background: rgba(216, 173, 88, .045);
    font-size: 1.55rem;
}

.service-card h3 {
    margin: 25px 0 11px;
    font-size: 1.14rem;
}

.service-card p {
    min-height: 92px;
    margin: 0;
    color: var(--muted);
    font-size: .93rem;
}

.service-card a,
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    color: var(--gold);
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.service-card a span,
.text-link span {
    transition: transform .25s ease;
}

.service-card a:hover span,
.text-link:hover span {
    transform: translateX(5px);
}

.about-section {
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    align-items: center;
    gap: 90px;
}

.about-visual {
    min-height: 520px;
    display: grid;
    place-items: center;
}

.about-frame {
    position: relative;
    width: min(100%, 480px);
    aspect-ratio: 1;
    border: 1px solid var(--border);
    background:
        radial-gradient(circle at 50% 50%, rgba(216, 173, 88, .08), transparent 48%),
        linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.005));
    clip-path: polygon(12% 0, 100% 0, 100% 88%, 88% 100%, 0 100%, 0 12%);
}

.about-frame::before,
.about-frame::after {
    content: "";
    position: absolute;
    inset: 11%;
    border: 1px solid rgba(216, 173, 88, .18);
    transform: rotate(45deg);
}

.about-frame::after {
    inset: 23%;
    border-color: rgba(216, 173, 88, .38);
}

.about-number {
    position: absolute;
    top: 24px;
    right: 30px;
    color: var(--gold);
    letter-spacing: .15em;
}

.about-orbit {
    position: absolute;
    inset: 19%;
    border: 2px solid rgba(216, 173, 88, .3);
    border-radius: 50%;
    transform: rotateX(65deg) rotateZ(-18deg);
}

.about-monogram {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-family: Georgia, serif;
    font-size: 10rem;
    color: transparent;
    -webkit-text-stroke: 1px rgba(245, 216, 139, .72);
    text-shadow: 0 0 45px rgba(216, 173, 88, .14);
}

.about-copy h2,
.contact-copy h2 {
    font-size: clamp(2.4rem, 4.2vw, 4.5rem);
}

.about-copy > p:not(.eyebrow),
.contact-copy > p:not(.eyebrow) {
    margin: 26px 0 0;
    color: var(--muted);
    font-size: 1.04rem;
}

.check-list {
    display: grid;
    gap: 14px;
    margin: 31px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 13px;
}

.check-list span {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--gold);
    font-size: .76rem;
}

.section-dark {
    border-block: 1px solid var(--border-soft);
    background:
        linear-gradient(180deg, rgba(255,255,255,.012), rgba(255,255,255,0)),
        #090909;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.project-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #0d0d0d;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(216, 173, 88, .58);
    box-shadow: 0 25px 70px rgba(0,0,0,.45);
}

.project-visual {
    position: relative;
    height: 280px;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 30%, rgba(216, 173, 88, .15), transparent 30%),
        linear-gradient(145deg, #111, #050505);
}

.project-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.42));
}

.mock-window {
    position: absolute;
    inset: 45px 36px 26px;
    padding: 15px;
    border: 1px solid rgba(216, 173, 88, .22);
    border-radius: 12px 12px 0 0;
    background: rgba(8,8,8,.85);
    transform: perspective(800px) rotateY(-12deg) rotateX(5deg);
    box-shadow: 24px 28px 45px rgba(0,0,0,.45);
}

.mock-window > span {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 5px;
    border-radius: 50%;
    background: rgba(216, 173, 88, .42);
}

.mock-content {
    height: 150px;
    margin-top: 18px;
    border-radius: 6px;
    background:
        linear-gradient(90deg, rgba(216,173,88,.18) 0 32%, transparent 32% 100%),
        repeating-linear-gradient(180deg, rgba(255,255,255,.08) 0 3px, transparent 3px 18px);
}

.watch-shape {
    position: absolute;
    width: 118px;
    height: 118px;
    top: 80px;
    left: 50%;
    margin-left: -59px;
    border: 12px solid #1d1d1d;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(216,173,88,.5), 0 0 45px rgba(216,173,88,.16);
}

.watch-shape::before,
.watch-shape::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 24px;
    height: 92px;
    margin-left: -12px;
    background: linear-gradient(90deg, #090909, #2a2a2a, #090909);
    border: 1px solid rgba(216,173,88,.2);
    z-index: -1;
}

.watch-shape::before { bottom: 100%; }
.watch-shape::after { top: 100%; }

.watch-ring {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 39px;
    left: 50%;
    margin-left: -100px;
    border: 1px solid rgba(216,173,88,.2);
    border-radius: 50%;
}

.wave {
    position: absolute;
    left: -10%;
    width: 120%;
    height: 90px;
    border: 1px solid rgba(216,173,88,.45);
    border-radius: 50%;
    transform: rotate(-7deg);
    filter: drop-shadow(0 0 9px rgba(216,173,88,.14));
}

.wave-a { top: 70px; }
.wave-b { top: 105px; transform: rotate(5deg); opacity: .62; }
.wave-c { top: 140px; transform: rotate(-2deg); opacity: .3; }

.project-status {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    padding: 7px 11px;
    border: 1px solid rgba(216, 173, 88, .35);
    border-radius: 999px;
    color: var(--gold-light);
    background: rgba(7, 7, 7, .76);
    backdrop-filter: blur(10px);
    font-size: .66rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.status-live {
    color: #c8f2d3;
    border-color: rgba(92, 197, 118, .34);
}

.status-concept {
    color: #ddd5ca;
    border-color: rgba(255, 255, 255, .18);
}

.status-sale {
    color: #f3dca0;
}

.case-folder {
    position: absolute;
    width: 210px;
    height: 145px;
    top: 73px;
    left: 50%;
    margin-left: -105px;
    display: grid;
    place-content: center;
    border: 1px solid rgba(216, 173, 88, .42);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(216,173,88,.08), transparent 60%),
        #101010;
    box-shadow: 18px 22px 45px rgba(0,0,0,.45);
    transform: rotate(-3deg);
}

.case-folder::before {
    content: "";
    position: absolute;
    width: 76px;
    height: 20px;
    top: -20px;
    left: 18px;
    border: 1px solid rgba(216, 173, 88, .42);
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    background: #101010;
}

.case-folder span {
    color: var(--gold-light);
    font-family: Georgia, serif;
    font-size: 3.8rem;
    line-height: 1;
    text-align: center;
}

.case-folder small {
    margin-top: 8px;
    color: var(--muted);
    letter-spacing: .22em;
    text-align: center;
}

.case-lines {
    position: absolute;
    width: 240px;
    height: 130px;
    right: 25px;
    bottom: 15px;
    border: 1px solid rgba(255,255,255,.06);
    transform: rotate(5deg);
    background:
        repeating-linear-gradient(180deg, rgba(216,173,88,.14) 0 1px, transparent 1px 22px);
}

.imrich-mark {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: transparent;
    -webkit-text-stroke: 1px rgba(245,216,139,.72);
    font-family: Georgia, serif;
    font-size: 9rem;
    text-shadow: 0 0 35px rgba(216,173,88,.2);
}

.imrich-orbit {
    position: absolute;
    width: 215px;
    height: 215px;
    top: 33px;
    left: 50%;
    margin-left: -107px;
    border: 1px solid rgba(216,173,88,.34);
    border-radius: 50%;
    transform: rotateX(65deg) rotateZ(-18deg);
    box-shadow: 0 0 28px rgba(216,173,88,.1);
}

.stream-screen {
    position: absolute;
    width: 240px;
    height: 145px;
    top: 68px;
    left: 50%;
    margin-left: -120px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(216,173,88,.42);
    border-radius: 12px;
    background:
        radial-gradient(circle at 50% 50%, rgba(216,173,88,.12), transparent 52%),
        #0d0d0d;
    box-shadow: 0 24px 55px rgba(0,0,0,.5);
}

.stream-screen::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 8px;
    left: 50%;
    bottom: -22px;
    margin-left: -45px;
    border-radius: 999px;
    background: linear-gradient(90deg, #3c2a0c, var(--gold-light), #3c2a0c);
}

.stream-play {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--gold-light);
    background: rgba(216,173,88,.06);
}

.stream-bars {
    position: absolute;
    right: 20px;
    bottom: 17px;
    height: 30px;
    display: flex;
    align-items: end;
    gap: 4px;
}

.stream-bars i {
    width: 4px;
    border-radius: 3px;
    background: var(--gold);
}

.stream-bars i:nth-child(1) { height: 9px; }
.stream-bars i:nth-child(2) { height: 18px; }
.stream-bars i:nth-child(3) { height: 26px; }
.stream-bars i:nth-child(4) { height: 14px; }

.stream-signal {
    position: absolute;
    border: 1px solid rgba(216,173,88,.24);
    border-radius: 50%;
}

.signal-one {
    width: 320px;
    height: 185px;
    top: 44px;
    left: 50%;
    margin-left: -160px;
}

.signal-two {
    width: 385px;
    height: 225px;
    top: 24px;
    left: 50%;
    margin-left: -192px;
    opacity: .48;
}

.project-info {
    min-height: 105px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.project-info h3 {
    margin: 0;
    font-size: 1.15rem;
}

.project-info p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: .88rem;
}

.project-arrow {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--gold);
    transition: background .25s ease, color .25s ease;
}

.project-card:hover .project-arrow {
    color: #080808;
    background: var(--gold);
}

.stats-section {
    padding: 36px 0;
    border-bottom: 1px solid var(--border-soft);
    background: linear-gradient(90deg, rgba(216,173,88,.03), transparent 35%, rgba(216,173,88,.03));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat {
    position: relative;
    padding: 18px 30px;
    text-align: center;
}

.stat:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 15%;
    right: 0;
    width: 1px;
    height: 70%;
    background: var(--border-soft);
}

.stat-icon {
    display: block;
    margin-bottom: 7px;
    color: var(--gold);
    font-size: 1.45rem;
}

.stat strong,
.stat b {
    color: var(--gold-light);
    font-family: Georgia, serif;
    font-size: 2.2rem;
    font-weight: 500;
}

.stat small {
    display: block;
    margin-top: -2px;
    color: var(--muted);
    font-size: .78rem;
}

.quote-section {
    padding-block: 95px;
}

.quote-card {
    position: relative;
    max-width: 1040px;
    margin: 0 auto;
    padding: 54px 70px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(216,173,88,.05), transparent 48%),
        rgba(255,255,255,.018);
    text-align: center;
}

.quote-card::before,
.quote-card::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 1px;
    top: 50%;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.quote-card::before {
    right: 100%;
}

.quote-card::after {
    left: 100%;
    transform: scaleX(-1);
}

.quote-mark {
    display: block;
    height: 48px;
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
}

.quote-card p {
    margin: 0;
    font-family: Georgia, serif;
    font-size: clamp(1.55rem, 2.5vw, 2.4rem);
    line-height: 1.35;
}

.quote-card footer {
    margin-top: 24px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .74rem;
}

.contact-section {
    overflow: hidden;
    border-top: 1px solid var(--border-soft);
    background:
        radial-gradient(circle at 10% 50%, rgba(216,173,88,.1), transparent 30%),
        #090909;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 80px;
    align-items: center;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 34px;
    margin-top: 34px;
}

.contact-details a,
.contact-details span {
    color: var(--gold-light);
    font-weight: 700;
}

.contact-form {
    padding: 34px;
    border-radius: var(--radius);
}

.field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-form label {
    display: grid;
    gap: 9px;
    margin-bottom: 18px;
}

.contact-form label > span {
    color: #d6d1c8;
    font-size: .8rem;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--border-soft);
    border-radius: 11px;
    outline: none;
    color: var(--text);
    background: rgba(0,0,0,.34);
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form input {
    height: 52px;
    padding: 0 15px;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
    padding: 14px 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(216,173,88,.62);
    background: rgba(0,0,0,.48);
    box-shadow: 0 0 0 4px rgba(216,173,88,.065);
}

.submit-btn {
    width: 100%;
}

.form-status {
    margin-bottom: 20px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: .9rem;
}

.form-status.success {
    color: #c8f2d3;
    border: 1px solid rgba(92, 197, 118, .3);
    background: rgba(92, 197, 118, .09);
}

.form-status.error {
    color: #ffd1d1;
    border: 1px solid rgba(235, 91, 91, .3);
    background: rgba(235, 91, 91, .08);
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
}

.site-footer {
    padding: 28px 0;
    border-top: 1px solid var(--border-soft);
    background: #060606;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.footer-grid p {
    margin: 0;
    color: #77736c;
    font-size: .82rem;
    text-align: center;
}

.back-top {
    justify-self: end;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--gold);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1120px) {
    .main-nav {
        gap: 24px;
    }

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

    .hero {
        padding-top: 155px;
    }

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

    .hero-copy .eyebrow,
    .hero-actions,
    .trust-row {
        justify-content: center;
    }

    .lead {
        margin-inline: auto;
    }

    .hero-art {
        width: min(100%, 720px);
        margin: 0 auto;
    }

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

    .about-grid {
        gap: 55px;
    }

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

@media (max-width: 900px) {
    .nav-wrap {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .nav-toggle {
        display: block;
        z-index: 12;
    }

    .nav-cta {
        display: none;
    }

    .main-nav {
        position: fixed;
        inset: 0;
        z-index: 10;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        background: rgba(5,5,5,.97);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-nav a {
        font-family: Georgia, serif;
        font-size: 2rem;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

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

    .about-visual {
        order: 2;
    }

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

    .stat:nth-child(2)::after {
        display: none;
    }

    .quote-card::before,
    .quote-card::after {
        display: none;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 82px 0;
    }

    .hero {
        min-height: auto;
        padding-top: 125px;
    }

    .hero h1 {
        font-size: clamp(2.65rem, 13vw, 4.2rem);
    }

    .hero-art {
        min-height: 410px;
        transform: scale(.82);
        transform-origin: top center;
        margin-bottom: -75px;
    }

    .service-grid,
    .project-grid,
    .field-grid {
        grid-template-columns: 1fr;
    }



    .service-card p {
        min-height: auto;
    }

    .about-visual {
        min-height: 380px;
    }

    .about-monogram {
        font-size: 7rem;
    }

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

    .stat:not(:last-child)::after {
        top: auto;
        right: 15%;
        bottom: 0;
        width: 70%;
        height: 1px;
    }

    .quote-card {
        padding: 42px 24px;
    }

    .contact-form {
        padding: 24px;
    }

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

    .footer-grid p {
        grid-column: 1 / -1;
        grid-row: 2;
        text-align: left;
    }
}



.project-card[role="button"] {
    cursor: pointer;
    outline: none;
}

.project-card[role="button"]:focus-visible {
    border-color: var(--gold-light);
    box-shadow: 0 0 0 4px rgba(216, 173, 88, .12), 0 25px 70px rgba(0,0,0,.45);
}

.project-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease, visibility .28s ease;
}

.project-modal.open {
    opacity: 1;
    visibility: visible;
}

.project-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .82);
    backdrop-filter: blur(14px);
}

.project-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 1040px);
    max-height: min(88vh, 860px);
    overflow: auto;
    border: 1px solid rgba(216, 173, 88, .34);
    border-radius: 24px;
    background:
        radial-gradient(circle at 85% 12%, rgba(216, 173, 88, .11), transparent 28%),
        linear-gradient(145deg, #111, #080808 62%);
    box-shadow: 0 45px 140px rgba(0, 0, 0, .72);
    transform: translateY(22px) scale(.985);
    transition: transform .28s ease;
}

.project-modal.open .project-modal-dialog {
    transform: translateY(0) scale(1);
}

.project-modal-dialog::-webkit-scrollbar {
    width: 10px;
}

.project-modal-dialog::-webkit-scrollbar-track {
    background: #090909;
}

.project-modal-dialog::-webkit-scrollbar-thumb {
    border: 3px solid #090909;
    border-radius: 999px;
    background: rgba(216, 173, 88, .42);
}

.project-modal-close {
    position: sticky;
    top: 18px;
    float: right;
    z-index: 5;
    width: 44px;
    height: 44px;
    margin: 18px 18px 0 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--gold-light);
    background: rgba(8, 8, 8, .86);
    cursor: pointer;
    font-size: 1.7rem;
    line-height: 1;
    backdrop-filter: blur(12px);
    transition: transform .2s ease, background .2s ease;
}

.project-modal-close:hover {
    transform: rotate(8deg);
    color: #080808;
    background: var(--gold);
}

.project-modal-hero {
    min-height: 290px;
    padding: 62px 72px 52px;
    display: grid;
    grid-template-columns: 1fr 220px;
    align-items: center;
    gap: 44px;
    border-bottom: 1px solid var(--border-soft);
    background:
        linear-gradient(125deg, rgba(216, 173, 88, .055), transparent 48%),
        repeating-linear-gradient(135deg, transparent 0 58px, rgba(216,173,88,.025) 58px 59px);
}

.project-modal-status {
    display: inline-flex;
    margin-bottom: 24px;
    padding: 7px 11px;
    border: 1px solid rgba(216, 173, 88, .38);
    border-radius: 999px;
    color: var(--gold-light);
    background: rgba(216, 173, 88, .05);
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.project-modal-hero h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.7rem, 5vw, 5.2rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -.04em;
}

.project-modal-intro {
    max-width: 650px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.project-modal-mark {
    width: 190px;
    height: 190px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(216, 173, 88, .32);
    border-radius: 50%;
    color: var(--gold-light);
    background:
        radial-gradient(circle, rgba(216,173,88,.12), transparent 62%);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 4.8rem;
    box-shadow: inset 0 0 45px rgba(216,173,88,.045), 0 0 50px rgba(216,173,88,.06);
}

.project-modal-content {
    padding: 48px 72px 66px;
    display: grid;
    grid-template-columns: 1fr 290px;
    gap: 58px;
}

.modal-section + .modal-section {
    margin-top: 42px;
}

.modal-section h3 {
    margin: 0 0 15px;
    color: var(--gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    font-weight: 500;
}

.modal-section p {
    margin: 0;
    color: #bbb5aa;
}

.modal-feature-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.modal-feature-list li {
    position: relative;
    padding: 15px 18px 15px 48px;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    color: #d5d0c7;
    background: rgba(255,255,255,.02);
}

.modal-feature-list li::before {
    content: "✓";
    position: absolute;
    left: 17px;
    top: 14px;
    width: 21px;
    height: 21px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--gold);
    font-size: .68rem;
}

.project-modal-side {
    display: grid;
    align-content: start;
    gap: 12px;
}

.modal-meta-card {
    padding: 19px;
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
}

.modal-meta-card span {
    display: block;
    margin-bottom: 7px;
    color: #777168;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.modal-meta-card strong {
    color: #e6dfd3;
    font-size: .93rem;
    line-height: 1.4;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 820px) {
    .project-modal {
        padding: 12px;
    }

    .project-modal-dialog {
        max-height: 92vh;
        border-radius: 18px;
    }

    .project-modal-hero {
        padding: 58px 28px 38px;
        grid-template-columns: 1fr;
    }

    .project-modal-mark {
        width: 120px;
        height: 120px;
        font-size: 3.2rem;
    }

    .project-modal-content {
        padding: 34px 28px 46px;
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .project-modal-close {
        top: 10px;
        margin: 10px 10px 0 0;
    }
}



/* Language switcher and small usability fixes */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    padding: 4px;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    background: rgba(255, 255, 255, .025);
}

.language-switcher button {
    min-width: 34px;
    height: 32px;
    padding: 0 8px;
    border: 0;
    border-radius: 7px;
    color: #8f8a81;
    background: transparent;
    cursor: pointer;
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .08em;
    transition: color .2s ease, background .2s ease;
}

.language-switcher button:hover {
    color: var(--text);
}

.language-switcher button.active {
    color: #080808;
    background: var(--gold);
}

.project-info p {
    max-width: 34rem;
}

.contact-form .field-error {
    border-color: rgba(235, 91, 91, .82);
    box-shadow: 0 0 0 4px rgba(235, 91, 91, .08);
}

@media (max-width: 900px) {
    .nav-actions {
        gap: 9px;
    }

    .language-switcher button {
        min-width: 31px;
        padding-inline: 6px;
    }
}

@media (max-width: 480px) {
    .language-switcher {
        padding: 3px;
    }

    .language-switcher button {
        min-width: 29px;
        height: 30px;
        font-size: .62rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation: none !important;
        transition-duration: .01ms !important;
    }

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