/* =======================================================
   BELMONT — Main Stylesheet
   style.css
======================================================= */

/* -------------------------------------------------------
   TOKENS & RESET
------------------------------------------------------- */
:root {
    --black:          #08070A;
    --dark:           #110F15;
    --dark-mid:       #1A1720;
    --dark-card:      #1E1B25;
    --gold:           #C2A35C;
    --gold-light:     #D9BC7E;
    --gold-pale:      #EDD9A3;
    --ivory:          #F2EDE2;
    --ivory-muted:    #E2D9C8;
    --stone:          #7A6B56;
    --stone-light:    #A89372;
    --muted:          #35303D;
    --text-primary:   #EDE8DC;
    --text-secondary: #A09080;
    --text-muted:     #5C5550;

    --ff-display: 'DM Serif Display', Georgia, serif;
    --ff-refined: 'Manrope', system-ui, sans-serif;
    --ff-body:    'Manrope', system-ui, sans-serif;

    --ease-smooth:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-luxury:    cubic-bezier(0.16, 1, 0.3, 1);
    --ease-editorial: cubic-bezier(0.77, 0, 0.175, 1);
    --ease-out-expo:  cubic-bezier(0.19, 1, 0.22, 1);
}

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

html {
    font-size: 16px;
    scroll-behavior: auto;
    overflow-x: hidden;
}

body {
    background: var(--black);
    color: var(--text-primary);
    font-family: var(--ff-body);
    overflow-x: hidden;
    /* cursor: none only on desktop — see media query below */
}

/* body.is-loading removed — loader eliminated */

::selection { background: rgba(194,163,92,.25); color: var(--ivory); }

/* .nav-logo span rule removed — logo image contains the brand name */

/* Desktop cursor — standard pointer restored for usability */
@media (hover: hover) and (pointer: fine) {
    body { cursor: auto; }
}

/* -------------------------------------------------------
   GRAIN OVERLAY
------------------------------------------------------- */
.grain {
    position: fixed; inset: 0; z-index: 9995; pointer-events: none;
    opacity: .032;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 220px 220px;
}

/* -------------------------------------------------------
   CUSTOM CURSOR (desktop only)
------------------------------------------------------- */
#cur-dot {
    position: fixed; top: 0; left: 0;
    width: 7px; height: 7px;
    background: var(--gold-light);
    border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%,-50%);
    transition: transform .08s;
    mix-blend-mode: screen;
    display: none;
}

#cur-ring {
    position: fixed; top: 0; left: 0;
    width: 38px; height: 38px;
    border: 1px solid rgba(194,163,92,.5);
    border-radius: 50%;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%,-50%);
    transition: width .35s var(--ease-luxury), height .35s var(--ease-luxury),
                border-color .35s, background .35s;
    display: none;
}

/* Custom cursor disabled — standard cursor used for accessibility */

#cur-ring.hov {
    width: 58px; height: 58px;
    border-color: var(--gold);
    background: rgba(194,163,92,.04);
}

/* Loader removed */

/* -------------------------------------------------------
   NAVIGATION
------------------------------------------------------- */
#nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 900;
    padding: 28px 64px;
    display: flex; align-items: center; justify-content: space-between;
    transition: padding .6s var(--ease-smooth), background .6s, border-color .6s;
}

#nav.scrolled {
    padding: 16px 64px;
    background: rgba(8,7,10,.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(194,163,92,.25);
}

.nav-logo {
    text-decoration: none;
    flex-shrink: 0;
    display: flex; align-items: center;
    line-height: 1;
}

.nav-logo-img {
    height: 52px;
    width: auto;
    display: block;
    flex-shrink: 0;
    /* Logo are culori închise — filtrul îl face alb/ivory pe fond negru */
    filter: brightness(0) invert(1);
    transition: opacity .3s, filter .3s;
}

.nav-logo:hover .nav-logo-img {
    opacity: .8;
    filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(5deg);
}

@media (max-width: 768px) {
    .nav-logo-img { height: 44px; }
}

@media (max-width: 540px) {
    .nav-logo-img { height: 36px; }
}

.nav-links {
    display: flex; align-items: center; gap: 44px; list-style: none;
}

.nav-links a {
    font-family: var(--ff-body);
    font-size: .75rem; font-weight: 500;
    letter-spacing: .12em; text-transform: uppercase;
    color: rgba(242,237,226,.85);
    text-decoration: none; position: relative;
    transition: color .3s;
    white-space: nowrap;
}

.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: width .4s var(--ease-smooth);
}

.nav-links a:hover               { color: var(--gold-light); }
.nav-links a:hover::after        { width: 100%; }

.nav-btn {
    font-family: var(--ff-body);
    font-size: .75rem; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase;
    text-decoration: none; color: var(--black);
    background: var(--gold); padding: 13px 30px;
    white-space: nowrap; flex-shrink: 0;
    transition: background .3s;
}

.nav-btn:hover { background: var(--gold-light); }

.nav-right {
    display: flex; align-items: center; gap: 20px; flex-shrink: 0;
}

.lang-toggle {
    display: flex; align-items: center; gap: 5px;
    font-family: var(--ff-body);
    font-size: .7rem; font-weight: 600; letter-spacing: .1em;
}
.lang-toggle .lt-link {
    color: rgba(242,237,226,.5);
    text-decoration: none;
    transition: color .3s;
}
.lang-toggle .lt-link:hover { color: rgba(242,237,226,.85); }
.lang-toggle .lt-on  { color: var(--gold); }
.lang-toggle .lt-sep { color: rgba(242,237,226,.25); font-weight: 300; }

.lang-toggle-mob {
    margin-top: 16px;
    font-size: .8rem; font-weight: 500;
    color: rgba(242,237,226,.6);
    text-decoration: none;
    letter-spacing: .06em;
}
.lang-toggle-mob:hover { color: var(--gold); }

.nav-hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 6px;
    -webkit-tap-highlight-color: transparent;
}

.nav-hamburger span {
    display: block; width: 26px; height: 1px;
    background: var(--ivory);
    transition: all .4s var(--ease-editorial);
}

/* Mobile menu overlay */
#mob-menu {
    position: fixed; inset: 0; z-index: 890;
    background: var(--black);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform .75s var(--ease-editorial);
}

#mob-menu.open { transform: translateX(0); }

#mob-menu a {
    font-family: var(--ff-display);
    font-size: clamp(1.8rem, 7vw, 3.5rem);
    font-weight: 400; color: var(--ivory);
    text-decoration: none; letter-spacing: .08em;
    transition: color .3s;
    -webkit-tap-highlight-color: transparent;
}

#mob-menu a:hover { color: var(--gold); }

/* -------------------------------------------------------
   HERO
------------------------------------------------------- */
.hero {
    position: relative;
    height: 100vh; min-height: 600px;
    display: flex; align-items: flex-end;
    padding-bottom: 90px;
    overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; }

.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
}

.hero-ov1 {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(8,7,10,.20) 0%,
        rgba(8,7,10,.12) 35%,
        rgba(8,7,10,.60) 70%,
        rgba(8,7,10,.97) 100%
    );
}

.hero-ov2 {
    position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(8,7,10,.55) 0%, transparent 55%);
}

.hero-content {
    position: relative; z-index: 2;
    padding: 0 64px;
    max-width: 1440px; margin: 0 auto; width: 100%;
}

.hero-eyebrow {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 24px;
}

.hero-eye-line { width: 40px; height: 1px; background: var(--gold); flex-shrink: 0; }

.hero-eye-text {
    font-family: var(--ff-body);
    font-size: .6rem; font-weight: 600;
    letter-spacing: .32em; text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
}

.hero-h1 {
    font-family: var(--ff-display);
    font-size: clamp(2.6rem, 7vw, 8rem);
    font-weight: 400; line-height: 1.05;
    color: var(--ivory);
    max-width: 820px; margin-bottom: 24px;
}

.hero-h1 em { font-style: italic; color: var(--gold-light); }

.hero-sub {
    font-family: var(--ff-refined);
    font-size: clamp(1rem, 1.8vw, 1.28rem);
    font-weight: 300; line-height: 1.72;
    color: rgba(242,237,226,.82);
    max-width: 440px; margin-bottom: 42px;
}

.hero-ctas {
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}

/* Buttons */
.btn-gold {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--ff-body);
    font-size: .78rem; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase;
    text-decoration: none; color: var(--black);
    background: var(--gold);
    padding: 17px 38px;
    position: relative; overflow: hidden;
    transition: color .4s;
    -webkit-tap-highlight-color: transparent;
    white-space: nowrap;
}

.btn-gold::before {
    content: ''; position: absolute; inset: 0;
    background: var(--gold-light);
    transform: translateX(-101%);
    transition: transform .5s var(--ease-editorial);
}

.btn-gold:hover::before { transform: translateX(0); }

.btn-gold span,
.btn-gold svg { position: relative; z-index: 1; }

.btn-gold svg { transition: transform .3s; flex-shrink: 0; }
.btn-gold:hover svg { transform: translateX(4px); }

.btn-ghost {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--ff-body);
    font-size: .78rem; font-weight: 500;
    letter-spacing: .12em; text-transform: uppercase;
    text-decoration: none; color: var(--ivory);
    border: 1px solid rgba(242,237,226,.45);
    padding: 16px 38px;
    transition: border-color .4s, color .4s;
    -webkit-tap-highlight-color: transparent;
    white-space: nowrap;
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* Hero coords (desktop only) */
.hero-coords {
    position: absolute; right: 64px; bottom: 90px;
    display: flex; flex-direction: column; align-items: flex-end; gap: 7px;
}

.hero-coords span {
    font-family: var(--ff-body);
    font-size: .56rem; letter-spacing: .28em;
    color: var(--stone-light); text-transform: uppercase;
}

.hero-coords hr {
    width: 42px; height: 1px; background: rgba(194,163,92,.35);
    border: none; align-self: flex-end;
}

/* Scroll cue */
.hero-scroll {
    position: absolute; bottom: 28px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}

.hero-scroll span {
    font-family: var(--ff-body);
    font-size: .54rem; letter-spacing: .3em;
    color: var(--stone-light); text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%,100% { opacity: .35; transform: scaleY(1); }
    50%      { opacity: 1;   transform: scaleY(1.15); }
}

/* -------------------------------------------------------
   MARQUEE
------------------------------------------------------- */
.marquee-band { background: var(--gold); padding: 12px 0; overflow: hidden; }

.marquee-track {
    display: flex; gap: 52px;
    animation: marqueeRoll 28s linear infinite;
    white-space: nowrap;
}

.marquee-item { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

.marquee-item span {
    font-family: var(--ff-body);
    font-size: .6rem; font-weight: 700;
    letter-spacing: .24em; text-transform: uppercase;
    color: var(--black);
}

.marquee-item i {
    display: block; width: 4px; height: 4px;
    background: rgba(8,7,10,.35); border-radius: 50%;
    font-style: normal;
}

@keyframes marqueeRoll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* -------------------------------------------------------
   SHARED SECTION UTILS
------------------------------------------------------- */
section { position: relative; }

.wrap {
    max-width: 1440px; margin: 0 auto; padding: 0 64px;
}

.sec-label { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }

.sec-label hr { width: 34px; height: 1px; background: var(--gold); border: none; flex-shrink: 0; }

.sec-label span {
    font-family: var(--ff-body);
    font-size: .7rem; font-weight: 600;
    letter-spacing: .18em; text-transform: uppercase;
    color: var(--gold);
}

.sec-h2 {
    font-family: var(--ff-display);
    font-size: clamp(2.2rem, 4.5vw, 5rem);
    font-weight: 400; line-height: 1.08;
    color: var(--ivory);
}

.sec-h2 em { font-style: italic; color: var(--gold-light); }

/* Scroll reveal — hidden only when JS is active (js-ready class on body) */
.rv { opacity: 1; transform: none; }

.js-ready .rv {
    opacity: 0; transform: translateY(18px);
    transition: opacity .4s ease, transform .4s ease;
}
.js-ready .rv.on { opacity: 1; transform: translateY(0); }
.js-ready .rv.d1 { transition-delay: .06s; }
.js-ready .rv.d2 { transition-delay: .11s; }
.js-ready .rv.d3 { transition-delay: .16s; }
.js-ready .rv.d4 { transition-delay: .20s; }
.js-ready .rv.d5 { transition-delay: .24s; }
.js-ready .rv.d6 { transition-delay: .28s; }

/* Ambient glow blobs */
.blob {
    position: absolute; border-radius: 50%;
    filter: blur(130px); pointer-events: none;
    /* Blobs stay within their section via overflow:hidden on parent sections */
}

/* -------------------------------------------------------
   WHO WE BUILD FOR
------------------------------------------------------- */
.who-we-build { background: var(--black); padding: 90px 0 100px; overflow: hidden; }

.who-hd { text-align: center; margin-bottom: 52px; }
.who-hd .sec-label { justify-content: center; }

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

.who-card {
    background: var(--dark-mid);
    padding: 40px 32px 36px;
    position: relative; overflow: hidden;
    text-decoration: none;
    display: flex; flex-direction: column;
    transition: background .35s;
}

.who-card::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; width: 100%; height: 2px;
    background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform .45s var(--ease-smooth);
}

.who-card:hover { background: var(--dark-card); }
.who-card:hover::after { transform: scaleX(1); }

.who-icon {
    width: 38px; height: 38px;
    color: var(--gold); margin-bottom: 22px; flex-shrink: 0;
}

.who-title {
    font-family: var(--ff-display);
    font-size: 1.12rem; font-weight: 500;
    color: var(--ivory); margin-bottom: 12px; line-height: 1.3;
}

.who-desc {
    font-family: var(--ff-body);
    font-size: .83rem; line-height: 1.8;
    color: rgba(242,237,226,.62);
    flex: 1; margin-bottom: 24px;
}

.who-link {
    display: inline-flex; align-items: center; gap: 7px;
    font-family: var(--ff-body);
    font-size: .68rem; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--gold); text-decoration: none;
    opacity: .7; transition: opacity .3s;
}

.who-card:hover .who-link { opacity: 1; }

@media (max-width: 1100px) {
    .who-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .who-grid { grid-template-columns: 1fr; }
    .who-card  { padding: 32px 24px; }
}

/* -------------------------------------------------------
   ABOUT
------------------------------------------------------- */
.about { background: var(--dark); padding: 140px 0 160px; overflow: hidden; }

.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 100px;
    align-items: center;
}

.about-media { position: relative; }

.about-accent-box {
    position: absolute; top: 36px; left: -28px;
    width: 68px; height: 68px;
    border: 1px solid var(--gold);
    pointer-events: none;
}

.about-img-main {
    width: 100%; aspect-ratio: 3/4;
    object-fit: cover; display: block;
}

.about-img-side {
    position: absolute;
    bottom: -48px; right: -46px;
    width: 54%; aspect-ratio: 4/3;
    object-fit: cover;
    border: 6px solid var(--dark);
}

.about-text { padding-right: 8px; }

.about-pull {
    font-family: var(--ff-refined);
    font-size: clamp(1rem, 1.8vw, 1.32rem);
    font-weight: 300; line-height: 1.85;
    color: rgba(242,237,226,.72);
    margin: 26px 0;
    padding-left: 24px;
    border-left: 1px solid rgba(194,163,92,.3);
}

.about-body {
    font-family: var(--ff-body);
    font-size: .88rem; line-height: 1.95;
    color: rgba(242,237,226,.72);
    margin-bottom: 50px;
}

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.stat-card {
    padding: 24px 26px;
    border: 1px solid rgba(194,163,92,.14);
    position: relative; overflow: hidden;
    transition: border-color .4s;
}

.stat-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 26px; height: 1px; background: var(--gold);
}

.stat-card:hover { border-color: rgba(194,163,92,.32); }

.stat-num {
    font-family: var(--ff-display);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 400; color: var(--gold);
    line-height: 1; margin-bottom: 8px;
}

.stat-lbl {
    font-family: var(--ff-body);
    font-size: .7rem; font-weight: 500;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--stone-light);
}

/* -------------------------------------------------------
   SERVICES
------------------------------------------------------- */
.services { background: var(--black); padding: 140px 0 160px; overflow: hidden; }

.services-hd { text-align: center; margin-bottom: 64px; }
.services-hd .sec-label { justify-content: center; }

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

.srv-card {
    background: var(--dark-mid);
    padding: 48px 36px;
    position: relative; overflow: hidden;
    transition: background .4s;
    -webkit-tap-highlight-color: transparent;
}

.srv-card::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; width: 100%; height: 2px;
    background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform .55s var(--ease-smooth);
}

.srv-card:hover::after { transform: scaleX(1); }
.srv-card:hover        { background: rgba(30,27,37,.95); }

.srv-num {
    position: absolute; top: 26px; right: 26px;
    font-family: var(--ff-display);
    font-size: 5rem; font-weight: 700;
    color: rgba(194,163,92,.04); line-height: 1;
    transition: color .5s, transform .5s;
    user-select: none;
}

.srv-card:hover .srv-num { color: rgba(194,163,92,.08); transform: scale(1.08); }

.srv-icon {
    width: 44px; height: 44px; color: var(--gold); margin-bottom: 24px;
    transition: transform .4s var(--ease-smooth);
}

.srv-card:hover .srv-icon { transform: scale(1.1); }

.srv-title {
    font-family: var(--ff-display);
    font-size: 1.3rem; font-weight: 500;
    color: var(--ivory); margin-bottom: 12px;
    transition: color .3s;
}

.srv-card:hover .srv-title { color: var(--gold-light); }

.srv-desc {
    font-family: var(--ff-body);
    font-size: .83rem; line-height: 1.85;
    color: rgba(242,237,226,.68);
    transition: color .3s;
}

.srv-card:hover .srv-desc { color: rgba(242,237,226,.85); }

.srv-link {
    display: inline-flex; align-items: center; gap: 7px;
    font-family: var(--ff-body);
    font-size: .72rem; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--gold); text-decoration: none;
    margin-top: 24px;
    opacity: .75;
    transition: opacity .3s, color .3s;
}

.srv-card:hover .srv-link { opacity: 1; }

/* -------------------------------------------------------
   PROJECTS
------------------------------------------------------- */
.projects { background: var(--dark); padding: 140px 0 0; overflow: hidden; }

.projects-hd {
    display: flex; align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 44px; gap: 24px;
}

.proj-nav { display: flex; gap: 8px; flex-shrink: 0; }

.proj-nav button {
    width: 46px; height: 46px;
    background: transparent;
    border: 1px solid rgba(194,163,92,.28);
    color: var(--gold);
    cursor: pointer; display: flex;
    align-items: center; justify-content: center;
    transition: all .3s;
    -webkit-tap-highlight-color: transparent;
}

.proj-nav button:hover {
    background: var(--gold); color: var(--black);
    border-color: var(--gold);
}

.proj-filter { display: flex; gap: 4px; margin-bottom: 42px; flex-wrap: wrap; }

.pf-btn {
    font-family: var(--ff-body);
    font-size: .72rem; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase;
    color: rgba(242,237,226,.62);
    background: transparent;
    border: 1px solid transparent;
    padding: 8px 18px;
    cursor: pointer;
    transition: all .3s;
    -webkit-tap-highlight-color: transparent;
}

.pf-btn.on,
.pf-btn:hover { color: var(--gold); border-color: rgba(194,163,92,.3); }

/* -------------------------------------------------------
   SWIPER CRITICAL CSS — ensures layout even if CDN fails
------------------------------------------------------- */
.swiper { overflow: hidden; list-style: none; padding: 0; z-index: 1; }
.swiper-wrapper {
    display: flex;
    width: 100%; height: 100%;
    box-sizing: content-box;
    transition-property: transform;
    transition-timing-function: var(--ease-smooth);
}
.swiper-slide {
    flex-shrink: 0;
    width: 100%; height: 100%;
    position: relative;
    transition-property: transform;
}
.swiper-button-prev,
.swiper-button-next { position: absolute; top: 50%; z-index: 10; cursor: pointer; }
.swiper-pagination { position: absolute; text-align: center; z-index: 10; }
.swiper-pagination-bullet {
    display: inline-block; width: 6px; height: 6px;
    border-radius: 50%; background: var(--stone-light);
    opacity: .35; margin: 0 3px; cursor: pointer;
}
.swiper-pagination-bullet-active {
    background: var(--gold); opacity: 1;
    width: 22px; height: 2px; border-radius: 0;
}

/* The swiper overflow:visible shows partial next slides —
   clipped by parent .projects overflow:hidden */
.swiper-projects {
    overflow: visible !important;
    padding-bottom: 72px !important;
}

.proj-card { -webkit-tap-highlight-color: transparent; }

.proj-card-in {
    position: relative; aspect-ratio: 3/4; overflow: hidden;
}

.proj-card-in img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .85s var(--ease-smooth);
}

.proj-card:hover .proj-card-in img { transform: scale(1.09); }

.proj-ov {
    position: absolute; inset: 0;
    background: linear-gradient(
        to top,
        rgba(8,7,10,.92) 0%,
        rgba(8,7,10,.3) 50%,
        transparent 100%
    );
    transition: background .5s;
}

.proj-card:hover .proj-ov {
    background: linear-gradient(
        to top,
        rgba(8,7,10,.97) 0%,
        rgba(8,7,10,.52) 55%,
        rgba(8,7,10,.18) 100%
    );
}

.proj-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 36px 24px 24px;
}

.proj-cat {
    font-family: var(--ff-body);
    font-size: .68rem; font-weight: 600;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 8px;
}

.proj-name {
    font-family: var(--ff-display);
    font-size: 1.45rem; font-weight: 500;
    color: var(--ivory); line-height: 1.2; margin-bottom: 6px;
}

.proj-loc {
    font-family: var(--ff-refined);
    font-size: .9rem; color: rgba(242,237,226,.72); margin-bottom: 16px;
}

.proj-cta {
    display: inline-flex; align-items: center; gap: 7px;
    font-family: var(--ff-body);
    font-size: .72rem; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--gold); text-decoration: none;
    opacity: .85;
    transition: opacity .3s;
}

.proj-card:hover .proj-cta { opacity: 1; }

/* -------------------------------------------------------
   EXPERIENCE (Editorial)
------------------------------------------------------- */
.experience { background: var(--black); padding: 140px 0 160px; overflow: hidden; }

.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }

.exp-left {
    padding-right: 72px;
    display: flex; flex-direction: column; justify-content: center;
}

.exp-quote {
    font-family: var(--ff-display);
    font-size: clamp(1.5rem, 3vw, 2.8rem);
    font-weight: 400; font-style: italic;
    line-height: 1.32; color: var(--ivory);
    margin: 26px 0;
}

.exp-quote em { color: var(--gold-light); }

.exp-body {
    font-family: var(--ff-body);
    font-size: .87rem; line-height: 1.95;
    color: rgba(242,237,226,.72); margin-bottom: 34px;
}

.mat-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 46px; }

.mat-tag {
    font-family: var(--ff-body);
    font-size: .58rem; font-weight: 500;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--stone-light);
    border: 1px solid rgba(122,107,86,.3);
    padding: 6px 14px;
    transition: border-color .3s, color .3s;
}

.mat-tag:hover { border-color: var(--gold); color: var(--gold); }

.exp-right { position: relative; }

.exp-img-main {
    width: 80%; aspect-ratio: 2/3;
    object-fit: cover; display: block;
    margin-left: auto;
}

.exp-img-side {
    position: absolute; bottom: -38px; left: 0;
    width: 54%; aspect-ratio: 3/2;
    object-fit: cover;
    border: 6px solid var(--black);
}

.exp-roman {
    position: absolute; top: 44px; right: -16px;
    font-family: var(--ff-display);
    font-size: 8rem; font-weight: 700;
    color: rgba(194,163,92,.045);
    line-height: 1; writing-mode: vertical-rl;
    user-select: none; pointer-events: none;
}

/* -------------------------------------------------------
   WHY BELMONT
------------------------------------------------------- */
.why { background: var(--dark); padding: 140px 0 160px; overflow: hidden; }

.why-hd { text-align: center; margin-bottom: 72px; }
.why-hd .sec-label { justify-content: center; }

.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }

.why-card {
    padding: 38px 34px;
    background: rgba(30,27,37,.45);
    border: 1px solid rgba(194,163,92,.08);
    display: flex; flex-direction: column; gap: 16px;
    transition: border-color .5s, transform .5s var(--ease-luxury);
}

.why-card:hover {
    border-color: rgba(194,163,92,.26);
    transform: translateY(-5px);
}

.why-n {
    font-family: var(--ff-display);
    font-size: 3.2rem; font-weight: 400;
    color: rgba(194,163,92,.14); line-height: 1;
}

.why-title {
    font-family: var(--ff-display);
    font-size: 1.22rem; font-weight: 500; color: var(--ivory);
}

.why-desc {
    font-family: var(--ff-body);
    font-size: .83rem; line-height: 1.85;
    color: rgba(242,237,226,.70); flex: 1;
}

.why-line { width: 26px; height: 1px; background: var(--gold); margin-top: 4px; }

/* -------------------------------------------------------
   TESTIMONIALS
------------------------------------------------------- */
.testimonials { background: var(--black); padding: 140px 0 160px; overflow: hidden; }

.test-hd { text-align: center; margin-bottom: 64px; }
.test-hd .sec-label { justify-content: center; }

.swiper-testimonials .swiper-slide {
    opacity: .26; transform: scale(.94);
    transition: opacity .65s var(--ease-smooth), transform .65s var(--ease-smooth);
}

.swiper-testimonials .swiper-slide-active { opacity: 1; transform: scale(1); }

.test-card {
    max-width: 660px; margin: 0 auto;
    text-align: center; padding: 48px 28px 44px;
}

.test-q-mark {
    font-family: var(--ff-display);
    font-size: 7rem; line-height: .5;
    color: rgba(194,163,92,.14);
    display: block; margin-bottom: 32px;
}

.test-text {
    font-family: var(--ff-display);
    font-size: clamp(1.1rem, 2.2vw, 1.7rem);
    font-weight: 400; font-style: italic;
    line-height: 1.65; color: var(--ivory); margin-bottom: 34px;
}

.test-div { width: 42px; height: 1px; background: var(--gold); margin: 0 auto 20px; }

.test-name {
    font-family: var(--ff-body);
    font-size: .66rem; font-weight: 600;
    letter-spacing: .26em; text-transform: uppercase; color: var(--gold);
}

.test-role {
    font-family: var(--ff-refined);
    font-size: .9rem; color: rgba(242,237,226,.36); margin-top: 4px;
}

.swiper-pagination { bottom: 0 !important; }

.swiper-pagination-bullet {
    background: var(--stone-light) !important;
    width: 6px !important; height: 6px !important; opacity: .35 !important;
}

.swiper-pagination-bullet-active {
    background: var(--gold) !important;
    width: 22px !important; height: 2px !important;
    border-radius: 0 !important; opacity: 1 !important;
}

/* -------------------------------------------------------
   CONTACT
------------------------------------------------------- */
.contact { background: var(--dark); padding: 140px 0 160px; overflow: hidden; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 90px; }

.contact-left { display: flex; flex-direction: column; justify-content: space-between; }

.contact-sub {
    font-family: var(--ff-refined);
    font-size: 1.06rem; line-height: 1.82;
    color: rgba(242,237,226,.72); margin-top: 20px;
}

.contact-info { margin-top: 44px; display: flex; flex-direction: column; gap: 24px; }

.ci-lbl {
    font-family: var(--ff-body);
    font-size: .72rem; font-weight: 600;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 5px;
}

.ci-val {
    font-family: var(--ff-refined);
    font-size: 1rem; color: rgba(242,237,226,.85);
}

.contact-social { display: flex; gap: 10px; margin-top: 44px; }

.cs-link {
    width: 44px; height: 44px;
    border: 1px solid rgba(194,163,92,.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--stone-light); text-decoration: none;
    transition: all .3s;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
}

.cs-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(194,163,92,.05); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.fg label {
    display: block;
    font-family: var(--ff-body);
    font-size: .76rem; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase;
    color: rgba(242,237,226,.78); margin-bottom: 8px;
}

.fg input,
.fg select,
.fg textarea {
    width: 100%;
    background: rgba(26,23,32,.85);
    border: 1px solid rgba(194,163,92,.22);
    color: var(--ivory);
    font-family: var(--ff-body);
    font-size: .92rem;
    padding: 15px 18px;
    outline: none;
    transition: border-color .3s;
    appearance: none;
    -webkit-appearance: none;
}

.fg select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C2A35C' stroke-width='1.4' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.fg select option { background: var(--dark); }

.fg input:focus,
.fg select:focus,
.fg textarea:focus { border-color: rgba(194,163,92,.48); }

.fg input::placeholder,
.fg textarea::placeholder { color: rgba(242,237,226,.32); }

.fg textarea { height: 120px; resize: none; }

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

.form-foot {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 8px; flex-wrap: wrap; gap: 14px;
}

.form-note {
    font-family: var(--ff-body);
    font-size: .76rem; color: rgba(242,237,226,.48); font-style: italic;
}

/* -------------------------------------------------------
   FOOTER
------------------------------------------------------- */
.footer { background: var(--black); border-top: 1px solid rgba(194,163,92,.08); }

.footer-orn {
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-top {
    padding: 72px 0 56px;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px;
}

.footer-brand-name {
    font-family: var(--ff-display);
    font-size: 1.9rem; font-weight: 400;
    letter-spacing: .36em; text-transform: uppercase;
    color: var(--ivory); margin-bottom: 5px;
}

.footer-brand-tag {
    font-family: var(--ff-refined);
    font-size: .84rem; color: var(--stone);
    letter-spacing: .1em; margin-bottom: 20px;
}

.footer-brand-p {
    font-family: var(--ff-body);
    font-size: .79rem; line-height: 1.85;
    color: rgba(242,237,226,.52); max-width: 270px;
}

.footer-col-title {
    font-family: var(--ff-body);
    font-size: .72rem; font-weight: 600;
    letter-spacing: .15em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 22px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
    font-family: var(--ff-body);
    font-size: .82rem; color: rgba(242,237,226,.58);
    text-decoration: none; transition: color .3s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(194,163,92,.06);
    display: flex; align-items: center; justify-content: space-between;
}

.footer-copy {
    font-family: var(--ff-body);
    font-size: .72rem; letter-spacing: .06em;
    color: rgba(242,237,226,.42);
}

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

.footer-legal a {
    font-family: var(--ff-body);
    font-size: .72rem; color: rgba(242,237,226,.42);
    text-decoration: none; transition: color .3s;
}

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

/* -------------------------------------------------------
   COOKIE CONSENT BANNER
------------------------------------------------------- */
#cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9990;
    background: var(--dark);
    border-top: 1px solid rgba(194,163,92,.28);
    padding: 20px 40px;
    display: flex; align-items: center;
    justify-content: space-between; gap: 20px;
    flex-wrap: wrap;
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.16,1,.3,1);
    box-shadow: 0 -8px 40px rgba(0,0,0,.35);
}

#cookie-banner.visible  { transform: translateY(0); }
#cookie-banner.hiding   { transform: translateY(110%); }

.cookie-text {
    font-family: var(--ff-body);
    font-size: .82rem; line-height: 1.7;
    color: rgba(242,237,226,.68);
    flex: 1; min-width: 260px;
}

.cookie-text strong { color: var(--ivory); font-weight: 600; }

.cookie-text a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .3s;
}
.cookie-text a:hover { color: var(--gold-light); }

.cookie-actions {
    display: flex; gap: 10px; flex-shrink: 0; align-items: center; flex-wrap: wrap;
}

.cookie-btn-accept {
    font-family: var(--ff-body); font-size: .72rem; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase;
    background: var(--gold); color: var(--black);
    border: none; padding: 12px 26px; cursor: pointer;
    transition: background .3s; white-space: nowrap;
}
.cookie-btn-accept:hover { background: var(--gold-light); }

.cookie-btn-necessary {
    font-family: var(--ff-body); font-size: .72rem; font-weight: 500;
    letter-spacing: .1em; text-transform: uppercase;
    background: transparent; color: rgba(242,237,226,.65);
    border: 1px solid rgba(242,237,226,.22);
    padding: 11px 26px; cursor: pointer;
    transition: border-color .3s, color .3s; white-space: nowrap;
}
.cookie-btn-necessary:hover { border-color: rgba(242,237,226,.48); color: var(--ivory); }

#cookie-preferences-btn {
    font-family: var(--ff-body); font-size: .7rem;
    color: rgba(242,237,226,.35); background: none;
    border: none; cursor: pointer; padding: 0;
    text-decoration: underline; text-underline-offset: 3px;
    transition: color .3s;
}
#cookie-preferences-btn:hover { color: var(--gold); }

@media (max-width: 768px) {
    #cookie-banner { padding: 18px 22px; gap: 16px; }
    .cookie-actions { width: 100%; }
    .cookie-btn-accept,
    .cookie-btn-necessary { flex: 1; justify-content: center; text-align: center; padding: 12px 16px; }
}

/* -------------------------------------------------------
   LEGAL PAGES (Privacy Policy, Mentions Légales)
------------------------------------------------------- */
.legal-hero {
    background: var(--dark); padding: 140px 0 80px;
    border-bottom: 1px solid rgba(194,163,92,.12);
}

.legal-hero h1 {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400; color: var(--ivory);
    margin-bottom: 12px;
}

.legal-hero .legal-date {
    font-family: var(--ff-body);
    font-size: .78rem; color: var(--gold);
    letter-spacing: .12em; text-transform: uppercase;
}

.legal-body {
    background: var(--black); padding: 80px 0 120px;
}

.legal-content {
    max-width: 820px; margin: 0 auto; padding: 0 40px;
}

.legal-content h2 {
    font-family: var(--ff-display);
    font-size: 1.5rem; font-weight: 400;
    color: var(--ivory); margin: 52px 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(194,163,92,.15);
}
.legal-content h2:first-child { margin-top: 0; }

.legal-content h3 {
    font-family: var(--ff-display);
    font-size: 1.1rem; color: var(--gold-light);
    margin: 28px 0 10px;
}

.legal-content p, .legal-content li {
    font-family: var(--ff-body);
    font-size: .9rem; line-height: 1.9;
    color: rgba(242,237,226,.72);
    margin-bottom: 14px;
}

.legal-content ul { padding-left: 20px; margin-bottom: 16px; }

.legal-content a {
    color: var(--gold); text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-content strong { color: var(--ivory); font-weight: 600; }

.legal-content .legal-table {
    width: 100%; border-collapse: collapse; margin: 20px 0 30px;
    font-size: .86rem;
}
.legal-content .legal-table th {
    font-family: var(--ff-body); font-weight: 600;
    font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
    color: var(--gold); padding: 10px 14px;
    border-bottom: 1px solid rgba(194,163,92,.25);
    text-align: left;
}
.legal-content .legal-table td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    color: rgba(242,237,226,.68); vertical-align: top;
    font-family: var(--ff-body); font-size: .84rem; line-height: 1.6;
}

/* -------------------------------------------------------
   GLASSMORPHISM UTILITY
------------------------------------------------------- */
.glass {
    background: rgba(26,23,32,.4);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(194,163,92,.1);
}


/* =======================================================
   RESPONSIVE BREAKPOINTS
   1100px → tablet landscape
   768px  → tablet portrait / large phone
   540px  → phone
   380px  → small phone
======================================================= */

/* ---- 1100px ---- */
@media (max-width: 1100px) {
    .wrap { padding: 0 40px; }

    #nav,
    #nav.scrolled { padding-left: 40px; padding-right: 40px; }

    .nav-links,
    .nav-right    { display: none; }
    .nav-hamburger { display: flex; }

    .about-grid   { grid-template-columns: 1fr; gap: 0; }
    .about-media  { margin-bottom: 100px; } /* space for side img */

    /* Tuck side image in more */
    .about-img-side { right: -20px; bottom: -30px; }

    .exp-grid     { grid-template-columns: 1fr; gap: 64px; }
    .exp-left     { padding-right: 0; }

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

    .srv-grid     { grid-template-columns: 1fr 1fr; }
    .why-grid     { grid-template-columns: 1fr 1fr; }
    .footer-top   { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ---- 768px ---- */
@media (max-width: 768px) {
    .wrap         { padding: 0 22px; }

    #nav,
    #nav.scrolled { padding: 16px 22px; }

    /* --- Hero --- */
    .hero         { min-height: 580px; padding-bottom: 72px; }
    .hero-content { padding: 0 22px; }
    .hero-h1      { font-size: clamp(2.2rem, 10vw, 3.4rem); margin-bottom: 16px; }
    .hero-sub     { font-size: 1rem; margin-bottom: 32px; max-width: 100%; }
    .hero-eyebrow { margin-bottom: 18px; }
    .hero-coords  { display: none; }
    .hero-scroll  { display: none; }

    /* --- About --- */
    .about        { padding: 80px 0 100px; }
    .about-grid   { gap: 0; }
    .about-media  { margin-bottom: 90px; }
    /* Hide the overlapping side image entirely — avoid off-screen overflow */
    .about-img-side   { display: none; }
    .about-accent-box { display: none; }

    /* --- Section paddings --- */
    .services,
    .projects,
    .experience,
    .why,
    .testimonials,
    .contact { padding-top: 88px; padding-bottom: 100px; }

    /* --- Services --- */
    .srv-grid  { grid-template-columns: 1fr; gap: 2px; }
    .srv-card  { padding: 36px 28px; }

    /* --- Projects --- */
    .projects-hd { flex-direction: column; align-items: flex-start; gap: 20px; }
    /* On mobile, clip swiper so it doesn't cause horizontal scroll */
    .swiper-projects {
        overflow: hidden !important;
        padding-bottom: 60px !important;
    }

    /* --- Experience --- */
    .exp-left     { padding-right: 0; }
    .exp-img-side { display: none; }
    .exp-img-main { width: 100%; }
    .exp-roman    { display: none; }

    /* --- Why --- */
    .why-grid  { grid-template-columns: 1fr; gap: 20px; }
    .why       { padding-top: 88px; padding-bottom: 100px; }

    /* --- Testimonials --- */
    .test-card { padding: 36px 20px 40px; }

    /* --- Contact form row → single column --- */
    .form-row  { grid-template-columns: 1fr; gap: 16px; }
    .form-foot { flex-direction: column; align-items: stretch; }
    .form-foot .btn-gold { justify-content: center; }

    /* --- Footer --- */
    .footer-top    { grid-template-columns: 1fr; gap: 36px; padding-top: 56px; padding-bottom: 44px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .footer-legal  { justify-content: center; flex-wrap: wrap; gap: 18px; }
    .footer-brand-p { max-width: 100%; }

    /* --- Stats — keep 2-col but scale down numbers --- */
    .stats-grid { gap: 14px; }
    .stat-card  { padding: 20px 18px; }
    .stat-num   { font-size: 2.2rem; }
}

/* ---- 540px ---- */
@media (max-width: 540px) {
    /* Hero CTA stack */
    .hero-ctas { flex-direction: column; align-items: stretch; gap: 14px; }
    .btn-gold,
    .btn-ghost { width: 100%; justify-content: center; padding: 16px 28px; }

    /* Tighter section gaps */
    .about { padding: 72px 0 88px; }
    .services,
    .projects,
    .experience,
    .why,
    .testimonials,
    .contact { padding-top: 72px; padding-bottom: 88px; }

    /* Nav logo — slightly smaller */
    .nav-logo { font-size: 1.1rem; letter-spacing: .28em; }

    /* Services cards */
    .srv-card { padding: 30px 22px; }
    .srv-title { font-size: 1.18rem; }

    /* Why cards */
    .why-card { padding: 28px 24px; }

    /* Stats grid keep 2 col */
    .stat-num { font-size: 2rem; }
    .stat-lbl { font-size: .58rem; }

    /* Project filter — tighter */
    .pf-btn { font-size: .56rem; padding: 6px 12px; }

    /* Marquee */
    .marquee-item span { font-size: .54rem; }

    /* Sec h2 */
    .sec-h2 { font-size: clamp(1.9rem, 8vw, 2.6rem); }

    /* Footer */
    .footer-brand-name { font-size: 1.5rem; }
}

/* ---- 380px ---- */
@media (max-width: 380px) {
    .wrap { padding: 0 18px; }

    #nav,
    #nav.scrolled { padding: 14px 18px; }

    .hero-h1  { font-size: clamp(1.9rem, 11vw, 2.8rem); }
    .sec-h2   { font-size: clamp(1.7rem, 9vw, 2.2rem); }

    .stat-num { font-size: 1.8rem; }

    .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .stat-card  { padding: 16px 14px; }
}


/* =======================================================
   INTERIOR PAGES — Shared & Page-Specific Styles
======================================================= */

/* -------------------------------------------------------
   PAGE HERO
------------------------------------------------------- */
.page-hero {
    position: relative;
    height: 74vh; min-height: 520px;
    display: flex; align-items: flex-end;
    padding-bottom: 80px;
    overflow: hidden;
}

.ph-bg { position: absolute; inset: 0; }

.ph-bg img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
}

.ph-ov {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(8,7,10,.28) 0%,
        rgba(8,7,10,.12) 30%,
        rgba(8,7,10,.62) 68%,
        rgba(8,7,10,.97) 100%
    );
}

.ph-ov2 {
    position: absolute; inset: 0;
    background: linear-gradient(110deg, rgba(8,7,10,.5) 0%, transparent 55%);
}

.phc {
    position: relative; z-index: 2;
    padding: 0 64px;
    max-width: 1440px; margin: 0 auto; width: 100%;
}

.phc h1 {
    font-family: var(--ff-display);
    font-size: clamp(2.4rem, 6vw, 6.5rem);
    font-weight: 400; line-height: 1.05;
    color: var(--ivory);
    max-width: 720px; margin-bottom: 20px;
}

.phc h1 em { font-style: italic; color: var(--gold-light); }

.ph-sub {
    font-family: var(--ff-refined);
    font-size: clamp(.92rem, 1.6vw, 1.18rem);
    font-weight: 300; line-height: 1.75;
    color: rgba(242,237,226,.62);
    max-width: 420px;
}

/* Active nav link */
.nav-links a.active { color: var(--gold-light); }
.nav-links a.active::after { width: 100%; }

/* -------------------------------------------------------
   STORY SECTION (About page)
------------------------------------------------------- */
.story { background: var(--dark); padding: 140px 0; overflow: hidden; }

.story-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 100px; align-items: center;
}

.story-media { position: relative; }

.story-img-main {
    width: 100%; aspect-ratio: 4/5;
    object-fit: cover; display: block;
}

.story-img-accent {
    position: absolute; bottom: -40px; right: -32px;
    width: 52%; aspect-ratio: 3/2;
    object-fit: cover;
    border: 5px solid var(--dark);
}

.story-accent-box {
    position: absolute; top: 28px; left: -22px;
    width: 56px; height: 56px;
    border: 1px solid var(--gold);
    pointer-events: none;
}

.story-text { padding-left: 10px; }

.story-pull {
    font-family: var(--ff-refined);
    font-size: clamp(1rem, 1.8vw, 1.32rem);
    font-weight: 300; line-height: 1.85;
    color: rgba(242,237,226,.72);
    margin: 26px 0;
    padding-left: 24px;
    border-left: 1px solid rgba(194,163,92,.3);
}

.story-body {
    font-family: var(--ff-body);
    font-size: .88rem; line-height: 1.95;
    color: rgba(242,237,226,.72);
    margin-bottom: 40px;
}

/* -------------------------------------------------------
   ABOUT STATS BAND
------------------------------------------------------- */
.ab-stats { background: var(--black); padding: 0; overflow: hidden; }

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

.ab-stat {
    padding: 64px 40px;
    background: var(--dark-mid);
    border-right: 1px solid rgba(194,163,92,.06);
    text-align: center;
    transition: background .35s;
}

.ab-stat:last-child { border-right: none; }
.ab-stat:hover { background: var(--dark-card); }

.ab-stat .stat-num {
    font-size: clamp(2.8rem, 4.5vw, 4.8rem);
    margin-bottom: 10px;
}

.ab-stat .stat-lbl { font-size: .62rem; letter-spacing: .22em; }

/* -------------------------------------------------------
   PHILOSOPHY
------------------------------------------------------- */
.philosophy { background: var(--dark-mid); padding: 140px 0; overflow: hidden; }

.philosophy-inner { max-width: 860px; margin: 0 auto; text-align: center; }

.philosophy-quote {
    font-family: var(--ff-display);
    font-size: clamp(1.6rem, 3.4vw, 3rem);
    font-weight: 400; font-style: italic;
    line-height: 1.42; color: var(--ivory);
    margin: 32px 0 28px;
}

.philosophy-quote em { font-style: normal; color: var(--gold-light); }

.philosophy-body {
    font-family: var(--ff-refined);
    font-size: clamp(.94rem, 1.6vw, 1.14rem);
    line-height: 1.9; color: rgba(242,237,226,.5);
    max-width: 620px; margin: 0 auto 0;
}

.philosophy-values {
    display: flex; justify-content: center;
    gap: 56px; flex-wrap: wrap;
    margin-top: 60px;
    padding-top: 52px;
    border-top: 1px solid rgba(194,163,92,.1);
}

.philo-val {
    display: flex; flex-direction: column;
    align-items: center; gap: 10px;
    min-width: 100px;
}

.philo-val-n {
    font-family: var(--ff-display);
    font-size: 2.2rem; font-weight: 400;
    color: var(--gold); line-height: 1;
}

.philo-val-label {
    font-family: var(--ff-body);
    font-size: .62rem; font-weight: 600;
    letter-spacing: .22em; text-transform: uppercase;
    color: rgba(242,237,226,.45);
    text-align: center;
}

/* -------------------------------------------------------
   TEAM
------------------------------------------------------- */
.team { background: var(--dark); padding: 140px 0; overflow: hidden; }

.team-hd { margin-bottom: 64px; }

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

.team-card {
    position: relative; overflow: hidden;
    aspect-ratio: 3/4;
}

.team-card img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top center;
    transition: transform .9s var(--ease-luxury), filter .6s;
    filter: grayscale(.35) brightness(.9);
}

.team-card:hover img {
    transform: scale(1.06);
    filter: grayscale(0) brightness(.85);
}

.team-card-ov {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(8,7,10,.92) 0%, rgba(8,7,10,.15) 55%, transparent 80%);
}

.team-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 32px 28px;
}

.team-name {
    font-family: var(--ff-display);
    font-size: 1.3rem; font-weight: 500;
    color: var(--ivory); margin-bottom: 5px;
}

.team-role {
    font-family: var(--ff-body);
    font-size: .6rem; font-weight: 600;
    letter-spacing: .24em; text-transform: uppercase;
    color: var(--gold);
}

.team-bio {
    font-family: var(--ff-refined);
    font-size: .9rem; line-height: 1.7;
    color: rgba(242,237,226,.52);
    margin-top: 10px;
    opacity: 0; transform: translateY(10px);
    transition: opacity .4s var(--ease-smooth), transform .4s var(--ease-smooth);
}

.team-card:hover .team-bio { opacity: 1; transform: translateY(0); }

/* -------------------------------------------------------
   TIMELINE
------------------------------------------------------- */
.timeline { background: var(--black); padding: 140px 0; overflow: hidden; }

.timeline-hd { text-align: center; margin-bottom: 80px; }
.timeline-hd .sec-label { justify-content: center; }

.tl-track {
    position: relative;
    max-width: 740px; margin: 0 auto;
    padding-left: 64px;
}

.tl-track::before {
    content: ''; position: absolute;
    left: 18px; top: 6px; bottom: 6px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(194,163,92,.4) 10%, rgba(194,163,92,.4) 90%, transparent);
}

.tl-item {
    position: relative;
    margin-bottom: 52px;
    padding-left: 28px;
}

.tl-item:last-child { margin-bottom: 0; }

.tl-dot {
    position: absolute; left: -46px; top: 8px;
    width: 14px; height: 14px;
    border: 1px solid rgba(194,163,92,.5);
    border-radius: 50%;
    background: var(--black);
    transition: border-color .4s, box-shadow .4s;
}

.tl-item.rv.on .tl-dot {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(194,163,92,.1);
}

.tl-dot::after {
    content: ''; position: absolute; inset: 3px;
    background: var(--gold); border-radius: 50%;
    opacity: 0; transition: opacity .4s .2s;
}

.tl-item.rv.on .tl-dot::after { opacity: 1; }

.tl-year {
    font-family: var(--ff-display);
    font-size: 3.4rem; font-weight: 400;
    color: rgba(194,163,92,.12); line-height: 1;
    margin-bottom: 6px;
}

.tl-title {
    font-family: var(--ff-display);
    font-size: 1.2rem; font-weight: 500;
    color: var(--ivory); margin-bottom: 8px;
}

.tl-desc {
    font-family: var(--ff-body);
    font-size: .83rem; line-height: 1.85;
    color: rgba(242,237,226,.68);
}

/* -------------------------------------------------------
   PAGE CTA
------------------------------------------------------- */
.page-cta {
    background: var(--dark-mid);
    padding: 120px 0; overflow: hidden;
    text-align: center;
}

.page-cta-inner { max-width: 680px; margin: 0 auto; }

.page-cta .sec-label { justify-content: center; }
.page-cta .sec-h2 { margin: 20px 0 24px; }

.page-cta-body {
    font-family: var(--ff-refined);
    font-size: clamp(.94rem, 1.6vw, 1.12rem);
    line-height: 1.85; color: rgba(242,237,226,.48);
    margin-bottom: 44px;
}

.page-cta .hero-ctas { justify-content: center; }

/* -------------------------------------------------------
   SERVICES PAGE — alternating rows
------------------------------------------------------- */
.srv-rows { background: var(--black); }

.srv-row { padding: 100px 0; overflow: hidden; }
.srv-row:nth-child(odd)  { background: var(--dark); }
.srv-row:nth-child(even) { background: var(--black); }

.srv-row-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 90px; align-items: center;
}

.srv-row-img {
    position: relative; overflow: hidden;
    aspect-ratio: 4/3;
}

.srv-row-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .9s var(--ease-luxury);
}

.srv-row-img:hover img { transform: scale(1.05); }

.srv-row-img-badge {
    position: absolute; bottom: 20px; left: 20px;
    font-family: var(--ff-display);
    font-size: 5.5rem; font-weight: 700;
    color: rgba(194,163,92,.1); line-height: 1;
    user-select: none; pointer-events: none;
}

.srv-row-tag {
    font-family: var(--ff-body);
    font-size: .6rem; font-weight: 700;
    letter-spacing: .3em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 14px;
}

.srv-row-h2 {
    font-family: var(--ff-display);
    font-size: clamp(1.6rem, 2.8vw, 2.5rem);
    font-weight: 400; line-height: 1.1;
    color: var(--ivory); margin-bottom: 20px;
}

.srv-row-h2 em { font-style: italic; color: var(--gold-light); }

.srv-row-body {
    font-family: var(--ff-body);
    font-size: .86rem; line-height: 1.9;
    color: rgba(242,237,226,.72);
    margin-bottom: 30px;
}

.srv-benefits { display: flex; flex-direction: column; gap: 11px; margin-bottom: 36px; }

.srv-benefit {
    display: flex; align-items: flex-start; gap: 14px;
    font-family: var(--ff-body);
    font-size: .82rem; line-height: 1.6;
    color: rgba(242,237,226,.75);
}

.srv-benefit::before {
    content: ''; flex-shrink: 0;
    width: 16px; height: 1px;
    background: var(--gold);
    margin-top: .55em;
}

/* -------------------------------------------------------
   FAQ ACCORDION
------------------------------------------------------- */
.faq { background: var(--dark-mid); padding: 120px 0; overflow: hidden; }

.faq-hd { text-align: center; margin-bottom: 64px; }
.faq-hd .sec-label { justify-content: center; }

.faq-list {
    max-width: 800px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(194,163,92,.1);
}

.faq-item:first-child { border-top: 1px solid rgba(194,163,92,.1); }

.faq-q {
    width: 100%; background: none; border: none;
    padding: 26px 0;
    display: flex; align-items: center;
    justify-content: space-between; gap: 20px;
    cursor: pointer; text-align: left;
    -webkit-tap-highlight-color: transparent;
}

.faq-q-text {
    font-family: var(--ff-display);
    font-size: clamp(.95rem, 1.8vw, 1.18rem);
    font-weight: 400; color: var(--ivory);
    transition: color .3s;
}

.faq-q:hover .faq-q-text { color: var(--gold-light); }

.faq-icon {
    flex-shrink: 0; width: 30px; height: 30px;
    border: 1px solid rgba(194,163,92,.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    transition: transform .4s var(--ease-smooth), background .3s, border-color .3s;
}

.faq-item.open .faq-icon {
    background: var(--gold); color: var(--black);
    border-color: var(--gold);
    transform: rotate(45deg);
}

.faq-a {
    overflow: hidden;
    max-height: 0;
    transition: max-height .55s var(--ease-smooth);
}

.faq-item.open .faq-a { max-height: 320px; }

.faq-a-inner {
    font-family: var(--ff-refined);
    font-size: 1.02rem; line-height: 1.88;
    color: rgba(242,237,226,.5);
    padding-bottom: 26px;
}

/* -------------------------------------------------------
   PROJECTS PAGE
------------------------------------------------------- */
.projects-page { background: var(--black); padding: 80px 0 120px; overflow: hidden; }

.pf-bar {
    display: flex; align-items: center; gap: 8px;
    flex-wrap: wrap; margin-bottom: 52px;
}

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

.proj-card {
    position: relative; overflow: hidden;
    aspect-ratio: 3/4;
    display: block; text-decoration: none;
    cursor: pointer;
}

.proj-card.feat { grid-column: span 2; aspect-ratio: 16/9; }

.proj-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .9s var(--ease-luxury), filter .5s;
    filter: brightness(.85);
}

.proj-card:hover img { transform: scale(1.06); filter: brightness(.72); }

.proj-card-ov {
    position: absolute; inset: 0;
    background: linear-gradient(
        to top,
        rgba(8,7,10,.9) 0%,
        rgba(8,7,10,.1) 55%,
        transparent 80%
    );
    transition: background .4s;
}

.proj-card:hover .proj-card-ov {
    background: linear-gradient(
        to top,
        rgba(8,7,10,.95) 0%,
        rgba(8,7,10,.3) 55%,
        rgba(8,7,10,.05) 80%
    );
}

.proj-card-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 28px 26px;
}

.proj-cat {
    font-family: var(--ff-body);
    font-size: .58rem; font-weight: 600;
    letter-spacing: .28em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 6px;
}

.proj-title {
    font-family: var(--ff-display);
    font-size: 1.22rem; font-weight: 500;
    color: var(--ivory); line-height: 1.2;
    margin-bottom: 3px;
}

.proj-loc {
    font-family: var(--ff-refined);
    font-size: .88rem; color: rgba(242,237,226,.45);
    display: flex; align-items: center; gap: 8px;
    margin-top: 10px;
    opacity: 0; transform: translateY(8px);
    transition: opacity .4s var(--ease-luxury), transform .4s var(--ease-luxury);
}

.proj-card:hover .proj-loc { opacity: 1; transform: translateY(0); }

.proj-year {
    font-family: var(--ff-body);
    font-size: .58rem; font-weight: 600;
    letter-spacing: .2em; color: rgba(242,237,226,.28);
    text-transform: uppercase;
}

/* -------------------------------------------------------
   INTERIOR PAGE RESPONSIVE
------------------------------------------------------- */
@media (max-width: 1100px) {
    .phc { padding: 0 40px; }

    .story-grid { grid-template-columns: 1fr; gap: 0; }
    .story-media { margin-bottom: 90px; }
    .story-img-accent { right: -16px; bottom: -28px; }

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

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

    .srv-row-grid { grid-template-columns: 1fr; gap: 52px; }

    .proj-grid { grid-template-columns: repeat(2,1fr); }
    .proj-card.feat { grid-column: span 2; }

    .tl-track { max-width: 100%; }
}

@media (max-width: 768px) {
    .page-hero { height: 60vh; min-height: 460px; padding-bottom: 60px; }
    .phc { padding: 0 22px; }
    .phc h1 { font-size: clamp(2rem, 10vw, 3.2rem); }

    .story { padding: 88px 0; }
    .story-grid { gap: 0; }
    .story-img-accent,
    .story-accent-box { display: none; }
    .story-media { margin-bottom: 72px; }
    .story-text { padding-left: 0; }

    .ab-stat { padding: 44px 24px; }
    .ab-stat .stat-num { font-size: 2.6rem; }

    .philosophy { padding: 88px 0; }
    .philosophy-values { gap: 36px; }

    .team { padding: 88px 0; }
    .team-grid { grid-template-columns: 1fr 1fr; }

    .timeline { padding: 88px 0; }
    .tl-track { padding-left: 48px; }

    .page-cta { padding: 88px 0; }
    .page-cta .hero-ctas { flex-direction: column; align-items: stretch; }
    .page-cta .btn-gold,
    .page-cta .btn-ghost { width: 100%; justify-content: center; }

    .srv-row { padding: 72px 0; }
    .srv-row-grid { gap: 44px; }

    .faq { padding: 88px 0; }

    .projects-page { padding: 64px 0 100px; }
    .proj-grid { grid-template-columns: 1fr 1fr; }
    .proj-card.feat { grid-column: span 2; aspect-ratio: 4/3; }
}

@media (max-width: 540px) {
    .page-hero { height: 56vh; min-height: 400px; }

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

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

    .philosophy-values { gap: 28px; }
    .philo-val { min-width: 90px; }

    .proj-grid { grid-template-columns: 1fr; }
    .proj-card.feat { grid-column: span 1; aspect-ratio: 3/4; }

    .tl-track { padding-left: 40px; }
}
