﻿
/* ============================================================
   TOKENS & RESET
============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ink: #0d0a0b;
    --ink-2: #1a1518;
    --ink-3: #2e2830;
    --gold: #c9a97a;
    --gold-2: #e8cfa8;
    --rose: #9c5264;
    --rose-2: #c97a8e;
    --cream: #f5ede6;
    --mist: rgba(201,169,122,.08);
    --f-serif: 'Playfair Display', Georgia, serif;
    --f-sans: 'Jost', sans-serif;
    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--f-sans);
    background: var(--ink);
    color: var(--cream);
    overflow-x: hidden;
    cursor: none;
}

::selection {
    background: var(--rose);
    color: var(--cream);
}

/* ============================================================
   CUSTOM CURSOR
============================================================ */
#cursor {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.12s var(--ease-expo);
    mix-blend-mode: difference;
}

#cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201,169,122,.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.45s var(--ease-expo), width 0.3s, height 0.3s, border-color 0.3s;
}

body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring {
    width: 54px;
    height: 54px;
    border-color: var(--rose-2);
}

/* ============================================================
   NOISE OVERLAY
============================================================ */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.4;
}

/* ============================================================
   HERO
============================================================ */
.hero {
    min-height: 100svh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    position: relative;
    overflow: hidden;
}

    /* Ambient glow */
    .hero::after {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(156,82,100,.22) 0%, transparent 65%);
        top: -200px;
        right: -200px;
        pointer-events: none;
        animation: breathe 12s ease-in-out infinite;
    }

@keyframes breathe {
    0%,100% {
        transform: scale(1) translate(0,0);
        opacity: .7;
    }

    50% {
        transform: scale(1.15) translate(-40px, 40px);
        opacity: 1;
    }
}

/* Top bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: relative;
    z-index: 2;
}

.logo-mark {
    font-family: var(--f-serif);
    font-size: 1.05rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
}

    .logo-mark span {
        color: var(--cream);
        opacity: .5;
    }

.hero-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

    .hero-nav a {
        font-size: 0.7rem;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: rgba(245,237,230,.55);
        text-decoration: none;
        transition: color 0.3s;
        font-weight: 400;
    }

        .hero-nav a:hover {
            color: var(--gold);
        }

        .hero-nav a.active {
            color: var(--gold-2);
        }

/* Centre stage */
.hero-stage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 5%;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero-text {
}

.eyebrow {
    font-size: 0.65rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .eyebrow::before {
        content: '';
        display: block;
        width: 40px;
        height: 1px;
        background: var(--gold);
    }

.hero-h1 {
    font-family: var(--f-serif);
    font-size: clamp(3.5rem, 6vw, 7rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--cream);
    margin-bottom: 2.5rem;
}

    .hero-h1 em {
        font-style: italic;
        color: var(--rose-2);
    }

.hero-sub {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: rgba(245,237,230,.45);
    text-transform: uppercase;
    line-height: 2;
    max-width: 380px;
}

.hero-ctas {
    margin-top: 3.5rem;
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.btn {
    font-family: var(--f-sans);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2.2rem;
    border-radius: 100px;
    cursor: none;
    transition: all 0.4s var(--ease-expo);
    display: inline-block;
}

.btn-outline {
    border: 1px solid rgba(201,169,122,.4);
    color: var(--gold-2);
    background: transparent;
}

    .btn-outline:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--ink);
        transform: translateY(-2px);
    }

.btn-ghost {
    border: 1px solid rgba(245,237,230,.15);
    color: rgba(245,237,230,.6);
    background: transparent;
}

    .btn-ghost:hover {
        border-color: rgba(245,237,230,.4);
        color: var(--cream);
    }

.btn-gold {
    background: var(--gold);
    color: var(--ink);
    border: 1px solid var(--gold);
    font-weight: 500;
}

    .btn-gold:hover {
        background: var(--gold-2);
        border-color: var(--gold-2);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(201,169,122,.3);
    }

.btn-ghost-dark {
    border: 1px solid rgba(201,169,122,.25);
    color: var(--gold);
    background: transparent;
}

    .btn-ghost-dark:hover {
        border-color: var(--gold);
        color: var(--gold-2);
    }
/* Hero image collage */
.hero-visual {
    height: 520px;
    display: flex;
    padding-bottom: 40px;
    justify-content: center;
    align-items: center;
}

.hero-img-main {
    width: 100%;
    height: 90%;
    object-fit: cover;
    filter: brightness(0.75) contrast(1.02) saturate(0.65) opacity(0.85);
    animation: img-reveal 1.4s var(--ease-expo) 0.3s both;
}

.hero-img-accent {
    position: absolute;
    left: 0;
    bottom: -30px;
    width: 44%;
    height: 58%;
    object-fit: cover;
    border-radius: 4px 80px 4px 4px;
    filter: brightness(.78) contrast(1.08) saturate(0.9);
    animation: img-reveal 1.4s var(--ease-expo) 0.6s both;
    border: 4px solid var(--ink);
}

@keyframes img-reveal {
    from {
        opacity: 0;
        transform: translateY(30px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-badge {
    position: absolute;
    bottom: 30px;
    right: 5%;
    background: var(--mist);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201,169,122,.2);
    border-radius: 100px;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: img-reveal 1.4s var(--ease-expo) 0.9s both;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rose-2);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%,100% {
        box-shadow: 0 0 0 0 rgba(201,122,142,.6);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(201,122,142,0);
    }
}

.hero-badge span {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: rgba(245,237,230,.7);
    text-transform: uppercase;
}

/* Hero bottom strip */
.hero-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 2.5rem 5%;
    border-top: 1px solid rgba(201,169,122,.1);
    position: relative;
    z-index: 2;
}

.strip-stat {
    text-align: center;
}

.strip-stat-num {
    font-family: var(--f-serif);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--gold);
    display: block;
}

.strip-stat-label {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(245,237,230,.4);
    margin-top: 0.2rem;
    display: block;
}

.strip-divider {
    width: 1px;
    height: 40px;
    background: rgba(201,169,122,.15);
}

/* ============================================================
           NAV BAR (sticky)
        ============================================================ */
.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13,10,11,.92);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(201,169,122,.12);
    display: flex;
    justify-content: center;
}

.sticky-nav-inner {
    display: flex;
    gap: 0;
}

.nav-btn {
    background: none;
    border: none;
    font-family: var(--f-sans);
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(245,237,230,.5);
    padding: 1.2rem 2.8rem;
    cursor: none;
    transition: color 0.3s;
    position: relative;
}

    .nav-btn a {
        color: inherit;
        text-decoration: none;
    }

    .nav-btn::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: var(--gold);
        transition: width 0.3s var(--ease-expo);
    }

    .nav-btn:hover {
        color: var(--cream);
    }

        .nav-btn:hover::after, .nav-btn.current::after {
            width: 60%;
        }

    .nav-btn.current {
        color: var(--gold);
    }


/* ============================================================
   MARQUEE
============================================================ */
.marquee-section {
    padding: 4rem 0;
    border-top: 1px solid rgba(201,169,122,.1);
    border-bottom: 1px solid rgba(201,169,122,.1);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 4rem;
    white-space: nowrap;
    animation: marquee 28s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-item {
    font-family: var(--f-serif);
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(201,169,122,.35);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

    .marquee-item::after {
        content: '✦';
        color: var(--rose-2);
        font-style: normal;
        font-size: 0.6rem;
    }

/* ============================================================
   SECTION HELPERS
============================================================ */
.section {
    padding: 8rem 5%;
}

.section-label {
    font-size: 0.6rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .section-label::before {
        content: '';
        display: block;
        width: 30px;
        height: 1px;
        background: var(--gold);
    }

.section-title {
    font-family: var(--f-serif);
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

    .section-title em {
        font-style: italic;
        color: var(--rose-2);
    }

.section-body {
    font-size: 0.9rem;
    line-height: 1.9;
    color: rgba(245,237,230,.5);
    max-width: 560px;
    margin-top: 1.5rem;
    letter-spacing: 0.3px;
}

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo);
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}

/* ============================================================
   SERVICES INTRO
============================================================ */
.services-intro {
    padding-bottom: 0;
}

/* ============================================================
   SERVICE CARDS GRID
============================================================ */
.services-grid-section {
    padding-top: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--ink-3);
    border-radius: 12px;
    overflow: hidden;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    background: var(--ink-2);
    display: grid;
    grid-template-rows: 1fr auto;
    transition: background 0.4s;
}

    .service-card:hover {
        background: #1f1820;
    }

.service-card-img {
    position: relative;
    overflow: hidden;
    height: 340px;
}

.service-card-img--featured {
    height: 380px;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(.75) saturate(.85);
    transition: transform 0.8s var(--ease-expo), filter 0.5s;
}

.service-card:hover .service-card-img img {
    transform: scale(1.06);
    filter: brightness(.88) saturate(1);
}

.service-card-tag {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    font-family: var(--f-serif);
    font-size: 0.7rem;
    font-style: italic;
    color: rgba(201,169,122,.6);
    letter-spacing: 2px;
    background: rgba(13,10,11,.6);
    backdrop-filter: blur(8px);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    border: 1px solid rgba(201,169,122,.15);
}

.service-featured-label {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    font-size: 0.55rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--gold);
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
    font-weight: 500;
}

.service-card-body {
    padding: 2rem 2rem 2.5rem;
    border-top: 1px solid rgba(201,169,122,.08);
}

.service-card-title {
    font-family: var(--f-serif);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 0.4rem;
}

.service-card-sub {
    font-size: 0.58rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.service-card-desc {
    font-size: 17px;
    line-height: 1.85;
    color: rgba(245,237,230,.5);
    margin-bottom: 1.8rem;
}

.service-card-ctas {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

/* ============================================================
   PROMO STRIP
============================================================ */
.promo-strip {
    background: linear-gradient(135deg, #110c0d 0%, #1a0e11 50%, #110c0d 100%);
    position: relative;
    overflow: hidden;
    margin-top: 2px;
}

    .promo-strip::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(156,82,100,.15) 0%, transparent 65%);
        top: -200px;
        left: -100px;
        pointer-events: none;
    }

.promo-strip-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 4rem;
    padding: 6rem 5%;
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
}

.promo-strip-title {
    font-family: var(--f-serif);
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.2;
    margin-top: 0.5rem;
}

    .promo-strip-title em {
        font-style: italic;
        color: var(--rose-2);
    }

.promo-strip-sub {
    font-size: 0.8rem;
    color: rgba(245,237,230,.45);
    margin-top: 1rem;
    letter-spacing: 0.5px;
    line-height: 1.8;
}

.promo-strip-visual {
    position: relative;
}

.promo-strip-img {
    max-width: 280px;
    filter: drop-shadow(0 20px 50px rgba(156,82,100,.4));
    animation: float-img 8s ease-in-out infinite;
}

@keyframes float-img {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

/* ============================================================
   TECHNIQUES DETAILED LIST
============================================================ */
.techniques-section {
    background: var(--ink-2);
}

.techniques-list {
    display: flex;
    flex-direction: column;
}

.technique-row {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(201,169,122,.08);
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

    .technique-row:last-child {
        border-bottom: none;
    }

.technique-row-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.technique-num {
    font-family: var(--f-serif);
    font-size: 3rem;
    font-weight: 300;
    color: rgba(201,169,122,.15);
    line-height: 1;
    flex-shrink: 0;
    min-width: 60px;
}

.technique-name {
    font-family: var(--f-serif);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 300;
    color: var(--cream);
    flex-shrink: 0;
}

.technique-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(201,169,122,.2), transparent);
}

.technique-text {
    font-size: 18px;
    line-height: 2;
    color: rgba(245,237,230,.5);
    max-width: 720px;
    padding-left: calc(60px + 1.5rem);
}

.technique-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding-left: calc(60px + 1.5rem);
}

/* ============================================================
   FOOTER
============================================================ */
footer {
    background: var(--ink);
    border-top: 1px solid rgba(201,169,122,.1);
    padding: 5rem 5% 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.footer-brand {
}

.footer-logo {
    font-family: var(--f-serif);
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.footer-desc {
    font-size: 0.75rem;
    color: rgba(245,237,230,.4);
    line-height: 2;
    letter-spacing: 0.5px;
    max-width: 300px;
}

.footer-copy {
    margin-top: 2rem;
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: rgba(245,237,230,.2);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
    justify-content: space-between;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-end;
}

.footer-link {
    font-size: 0.65rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(245,237,230,.4);
    text-decoration: none;
    transition: color 0.3s;
}

    .footer-link:hover {
        color: var(--gold);
    }

.footer-dev {
    font-size: 0.55rem;
    letter-spacing: 2px;
    color: rgba(245,237,230,.2);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {

    .hero-stage {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-top: 2rem;
        text-align: center
    }

    .hero-ctas {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-visual {
        height: 360px;
    }

    .btn-outline {
        font-size: 0.7rem !important;
    }

    .btn-ghost {
        font-size: 0.7rem !important;
    }

    .hero-strip {
        gap: 2rem;
    }

    .hero-nav {
        display: none;
    }

    .hero-h1 {
        text-align: center;
        font-size: 60px !important;
    }

    .sticky-nav {
        max-width: 430px !important;
        padding: 0px !important;
        margin: 0px !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .sticky-nav-inner {
        margin: 0px !important;
        padding-right: 0px;
        max-width: 430px;
        min-width: 380px;
    }

    .nav-btn {
        min-width: 95px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        font-size: 0.7rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card-img, .service-card-img--featured {
        height: 300px;
    }
    .promo-strip-text {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .promo-strip-inner {
        grid-template-columns: 1fr;
    }

    .promo-strip-img {
        max-width: 200px;
        display: block;
        margin: 0 auto;
    }
    .techniques-section {
        padding-bottom:10px !important;
    }

    .technique-row {
        padding-top:0px;
        margin-top:20px;
    }
    .technique-text {
        font-size:18px;
    }

    footer {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        align-items: flex-start;
    }

    .footer-contact {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .sticky-nav-inner {
        overflow-x: auto;
        scrollbar-width: none;
    }

        .sticky-nav-inner::-webkit-scrollbar {
            display: none;
        }

    .nav-btn {
        padding: 1.2rem 1.8rem;
        white-space: nowrap;
    }

    .technique-text, .technique-ctas {
        padding-left: 0;
    }

    .technique-row-header {
        flex-wrap: wrap;
    }

    .technique-num {
        font-size: 2rem;
        min-width: 40px;
    }

    .hero-strip {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .top-bar {
        padding: 1.5rem;
    }

    .hero-nav {
        gap: 1.2rem;
    }

    .hero-h1 {
        font-size: 3rem;
    }

    .hero-stage {
        padding: 0 1.5rem;
    }

    .hero-visual {
        height: 280px;
    }

    .section {
        padding: 5rem 1.5rem;
    }

    .hero-strip {
        padding: 2rem 1.5rem;
    }

    footer {
        padding: 4rem 1.5rem 2rem;
    }

    .service-card-body {
        padding: 1.5rem;
    }

    body {
        cursor: auto;
    }

    #cursor, #cursor-ring {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}