*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --navy: #0d1f35; --navy-mid: #1a3050; --navy-dark: #070f1c;
    --gold: #b8996a; --gold-light: #d4b98a;
    --cream: #f5f1eb; --white: #ffffff; --gray: #8a8f97; --text: #2c3340;
    --T: 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
html { scroll-behavior: smooth; font-size: calc(100% + 1pt); }
body { font-family:'Jost',sans-serif; background:var(--cream); color:var(--text); overflow-x:hidden; cursor:none; }

/* CURSOR */
.cursor { position:fixed; top:0; left:0; width:10px; height:10px; background:var(--gold); border-radius:50%; pointer-events:none; z-index:9999; transform:translate(-50%,-50%); transition:width .3s,height .3s,background .3s; }
.cursor-ring { position:fixed; top:0; left:0; width:36px; height:36px; border:1px solid var(--gold); border-radius:50%; pointer-events:none; z-index:9998; transform:translate(-50%,-50%); transition:width .3s,height .3s; opacity:.6; }
.cursor.h { width:16px; height:16px; background:var(--gold-light); }
.cursor-ring.h { width:56px; height:56px; opacity:.3; }

/* LANG TOGGLE */
.lang-toggle { position:fixed; top:50%; right:28px; transform:translateY(-50%); z-index:200; display:flex; flex-direction:column; align-items:center; border:1px solid rgba(184,153,106,.4); overflow:hidden; }
.lang-btn { background:transparent; border:none; color:rgba(255,255,255,.4); font-family:'Jost',sans-serif; font-size:10px; font-weight:400; letter-spacing:.2em; padding:10px 14px; cursor:none; transition:background .3s,color .3s; line-height:1; }
.lang-btn.active { background:var(--gold); color:var(--navy); }
.lang-btn:not(.active):hover { color:var(--gold); }
.lang-div { width:100%; height:1px; background:rgba(184,153,106,.3); }
.is-hidden { display: none !important; }

/* NAV */
nav { position:fixed; top:0; left:0; right:0; z-index:100; padding:28px 60px; display:flex; align-items:center; justify-content:space-between; transition:background .5s, padding .4s, transform .35s ease-out; }
nav.scrolled { background:rgba(13,31,53,.97); backdrop-filter:blur(14px); padding:18px 60px; }
.nav-logo { display:flex; align-items:center; text-decoration:none; }
.logo-img { height:130px; width:auto; transition:opacity .3s; }
.logo-img:hover { opacity:.85; }
.nav-links { display:flex; gap:36px; list-style:none; }
.nav-links a { font-size:10px; font-weight:300; letter-spacing:.25em; text-transform:uppercase; color:rgba(255,255,255,.65); text-decoration:none; transition:color .3s; position:relative; }
.nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:1px; background:var(--gold); transition:width .4s; }
.nav-links a:hover { color:var(--gold); }
.nav-links a:hover::after { width:100%; }
.nav-cta { font-size:10px; font-weight:300; letter-spacing:.22em; text-transform:uppercase; color:var(--gold); border:1px solid var(--gold); padding:10px 24px; text-decoration:none; transition:background .3s,color .3s; }
.nav-cta:hover { background:var(--gold); color:var(--navy); }

/* HERO */
.hero { position:relative; height:100vh; min-height:700px; display:flex; align-items:flex-end; overflow:hidden; background:var(--navy); }
.hero-bg { position:absolute; inset:0; background:linear-gradient(135deg,rgba(7,15,28,.72) 0%,rgba(13,31,53,.15) 55%,rgba(7,15,28,.85) 100%), url('../hero.png') center/cover no-repeat; transform:scale(1.06); animation:heroZoom 14s ease-out forwards; filter:grayscale(20%) contrast(1.05); }
@keyframes heroZoom { to { transform:scale(1); } }
.hero-ov { position:absolute; inset:0; background:linear-gradient(to top,rgba(7,15,28,.92) 0%,rgba(7,15,28,.1) 55%,transparent 100%); }
.hero-lv { position:absolute; top:0; right:180px; width:1px; height:100%; background:linear-gradient(to bottom,transparent 10%,rgba(184,153,106,.18) 40%,rgba(184,153,106,.18) 60%,transparent 90%); }
.hero-content { position:relative; z-index:2; padding:0 60px 110px; max-width:820px; }
.hero-eyebrow { font-size:9px; font-weight:300; letter-spacing:.45em; text-transform:uppercase; color:var(--gold); margin-bottom:22px; opacity:0; animation:fadeUp 1s .4s forwards; display:flex; align-items:center; gap:16px; }
.hero-eyebrow::before { content:''; width:28px; height:1px; background:var(--gold); }
.hero-title { font-family:'Cormorant Garamond',serif; font-size:clamp(56px,7.5vw,104px); font-weight:300; line-height:1.03; color:var(--white); margin-bottom:28px; opacity:0; animation:fadeUp 1s .75s forwards; }
.hero-title em { font-style:italic; color:var(--gold-light); }
.hero-desc { font-size:14px; font-weight:300; line-height:1.85; color:rgba(255,255,255,.55); max-width:480px; margin-bottom:50px; opacity:0; animation:fadeUp 1s 1.05s forwards; }
.hero-acts { display:flex; gap:24px; align-items:center; opacity:0; animation:fadeUp 1s 1.35s forwards; }
.btn-p { background:var(--gold); color:var(--navy); padding:15px 42px; font-size:10px; font-weight:400; letter-spacing:.22em; text-transform:uppercase; text-decoration:none; transition:background .3s,transform .3s; display:inline-block; }
.btn-p:hover { background:var(--gold-light); transform:translateY(-2px); }
.btn-g { color:rgba(255,255,255,.6); font-size:10px; font-weight:300; letter-spacing:.22em; text-transform:uppercase; text-decoration:none; display:flex; align-items:center; gap:14px; transition:color .3s; }
.btn-g::before { content:''; width:30px; height:1px; background:var(--gold); transition:width .4s; }
.btn-g:hover { color:var(--gold); }
.btn-g:hover::before { width:48px; }
.hero-stats { position:absolute; right:68px; bottom:110px; display:flex; flex-direction:column; gap:36px; z-index:2; opacity:0; animation:fadeIn 1.2s 1.8s forwards; }
.stat-n { font-family:'Cormorant Garamond',serif; font-size:44px; font-weight:300; color:var(--gold); line-height:1; }
.stat-l { font-size:8px; letter-spacing:.3em; text-transform:uppercase; color:rgba(255,255,255,.38); margin-top:4px; text-align:right; }
.scroll-h { position:absolute; bottom:38px; left:60px; display:flex; align-items:center; gap:14px; z-index:2; opacity:0; animation:fadeIn 1s 2.2s forwards; }
.scroll-h span { font-size:8px; letter-spacing:.3em; text-transform:uppercase; color:rgba(255,255,255,.35); }
.scroll-bar { width:40px; height:1px; background:rgba(184,153,106,.4); position:relative; overflow:hidden; }
.scroll-bar::after { content:''; position:absolute; inset:0; background:var(--gold); animation:sbar 2s infinite; }
@keyframes sbar { 0%{transform:translateX(-100%)} 50%,100%{transform:translateX(100%)} }

/* SECTIONS */
section { position:relative; }
.si { max-width:1220px; margin:0 auto; padding:0 60px; }
.stag { font-size:9px; letter-spacing:.42em; text-transform:uppercase; color:var(--gold); margin-bottom:18px; display:flex; align-items:center; gap:16px; }
.stag::before { content:''; width:28px; height:1px; background:var(--gold); }
.stag-c { justify-content:center; }
.stag-c::before { display:none; }
.stag-light { color: var(--gold-light); }
.stit { font-family:'Cormorant Garamond',serif; font-size:clamp(38px,4.5vw,62px); font-weight:300; line-height:1.08; color:var(--navy); }
.stit.l { color:var(--white); }

/* ABOUT */
#about { padding:150px 0; background:var(--cream); }
.ag { display:grid; grid-template-columns:1fr 1fr; gap:110px; align-items:center; }
.abody { font-size:15px; font-weight:300; line-height:1.95; color:#636873; margin-top:32px; }
.abody p+p { margin-top:20px; }
.aright { position:relative; }
.aiwrap { position:relative; overflow:hidden; }
.aiwrap img { width:100%; display:block; filter:grayscale(25%) contrast(1.08); transition:transform .8s var(--T); }
.aiwrap:hover img { transform:scale(1.04); }
.act { position:absolute; width:60px; height:60px; opacity:.5; pointer-events:none; }
.act-tl { top:-18px; left:-18px; border-top:1px solid var(--gold); border-left:1px solid var(--gold); }
.act-br { bottom:-18px; right:-18px; border-bottom:1px solid var(--gold); border-right:1px solid var(--gold); }
.abadge { position:absolute; top:-22px; right:-22px; width:110px; height:110px; background:var(--navy); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:3px; }
.abadge .bn { font-family:'Cormorant Garamond',serif; font-size:34px; font-weight:300; color:var(--gold); line-height:1; }
.abadge .bl { font-size:7px; letter-spacing:.28em; text-transform:uppercase; color:rgba(255,255,255,.5); }

/* SERVICES */
#services { padding:150px 0; background:var(--navy); }
.svctop { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:70px; }
.svci { font-size:14px; font-weight:300; line-height:1.85; color:rgba(255,255,255,.42); max-width:380px; }
.svcg { display:grid; grid-template-columns:repeat(3,1fr); border:1px solid rgba(255,255,255,.06); }
.sc { padding:52px 42px 48px; border-right:1px solid rgba(255,255,255,.06); border-bottom:1px solid rgba(255,255,255,.06); position:relative; overflow:hidden; transition:background .4s; }
.sc:nth-child(3n) { border-right:none; }
.sc:nth-child(n+4) { border-bottom:none; }
.sc::after { content:''; position:absolute; top:0; left:0; right:0; height:1px; background:linear-gradient(to right,var(--gold),transparent); transform:scaleX(0); transform-origin:left; transition:transform .5s; }
.sc:hover { background:rgba(184,153,106,.05); }
.sc:hover::after { transform:scaleX(1); }
.scn { font-family:'Cormorant Garamond',serif; font-size:48px; font-weight:300; color:rgba(184,153,106,.3); margin-bottom:28px; transition:color .4s; }
.sc:hover .scn { color:rgba(184,153,106,.5); }
.scname { font-size:11px; font-weight:400; letter-spacing:.18em; text-transform:uppercase; color:var(--white); margin-bottom:16px; }
.scdesc { font-size:13px; font-weight:300; line-height:1.85; color:rgba(255,255,255,.42); }

/* PROCESS */
#process { padding:150px 0; background:var(--cream); }
.ph { max-width:560px; margin-bottom:90px; }
.pt { display:grid; grid-template-columns:repeat(5,1fr); position:relative; padding-top:20px; }
.pt::before { content:''; position:absolute; top:48px; left:10%; right:10%; height:1px; background:linear-gradient(to right,transparent,var(--gold) 20%,var(--gold) 80%,transparent); opacity:.3; }
.pstep { padding:0 16px; text-align:center; }
.pdot { width:54px; height:54px; border:1px solid rgba(184,153,106,.45); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 30px; background:var(--cream); position:relative; z-index:1; transition:background .4s,box-shadow .4s,border-color .4s; }
.pstep:hover .pdot { background:var(--gold); border-color:var(--gold); box-shadow:0 0 28px rgba(184,153,106,.28); }
.pdn { font-family:'Cormorant Garamond',serif; font-size:20px; font-weight:300; color:var(--gold); transition:color .4s; }
.pstep:hover .pdn { color:var(--navy); }
.pname { font-size:9px; font-weight:500; letter-spacing:.2em; text-transform:uppercase; color:var(--navy); margin-bottom:12px; }
.pdesc { font-size:12px; font-weight:300; line-height:1.75; color:var(--gray); }

/* PAINT SPLIT */
#paint { padding:0; background:var(--navy-dark); overflow:hidden; }
.psplit { display:grid; grid-template-columns:1fr 1fr; min-height:680px; }
.pimg { position:relative; overflow:hidden; }
.pimg img { width:100%; height:100%; object-fit:cover; filter:grayscale(30%) brightness(.75); transition:transform .8s var(--T); }
.pimg:hover img { transform:scale(1.04); }
.ptxt { padding:100px 70px; display:flex; flex-direction:column; justify-content:center; }
.pbody { font-size:14px; font-weight:300; line-height:1.95; color:rgba(255,255,255,.48); margin-top:28px; }
.pbody p+p { margin-top:20px; }

/* CRAFT SPLIT */
#craft { padding:0; background:var(--navy); overflow:hidden; }
.csplit { display:grid; grid-template-columns:1fr 1fr; min-height:680px; }
.ctxt { padding:100px 70px; display:flex; flex-direction:column; justify-content:center; order:1; }
.csub { font-size:10px; font-weight:400; letter-spacing:.2em; text-transform:uppercase; color:var(--gold); margin-top:12px; margin-bottom:28px; }
.cbody { font-size:14px; font-weight:300; line-height:1.95; color:rgba(255,255,255,.48); }
.cbody p+p { margin-top:20px; }
.cimg { position:relative; overflow:hidden; order:2; }
.cimg img { width:100%; height:100%; object-fit:cover; filter:grayscale(30%) brightness(.75); transition:transform .8s var(--T); }
.cimg:hover img { transform:scale(1.04); }

/* TECHNOLOGY */
#technology { padding:150px 0; background:var(--white); }
.tg { display:grid; grid-template-columns:1fr 1fr; gap:110px; align-items:center; }
.tbody {
    font-size:14px; font-weight:300; line-height:1.95; color:#636873; margin-top:28px;
    column-count:2; column-gap:36px;
}
.tbody p { break-inside:avoid; }
.tbody p+p { margin-top:20px; }
.tpills { margin-top:44px; display:flex; flex-wrap:wrap; gap:10px; }
.tpill { font-size:9px; letter-spacing:.2em; text-transform:uppercase; color:#636873; border:1px solid rgba(13,31,53,.12); padding:8px 18px; transition:border-color .3s,color .3s; }
.tpill:hover { border-color:var(--gold); color:var(--gold); }
.tfeats { margin-top:48px; display:flex; flex-direction:column; gap:18px; }
.tf { display:flex; align-items:flex-start; gap:18px; padding:20px 22px; border:1px solid rgba(13,31,53,.08); transition:border-color .3s,background .3s; }
.tf:hover { border-color:rgba(184,153,106,.3); background:rgba(184,153,106,.04); }
.tfi { width:34px; height:34px; flex-shrink:0; border:1px solid var(--gold); display:flex; align-items:center; justify-content:center; color:var(--gold); font-size:13px; }
.tft { font-size:10px; font-weight:400; letter-spacing:.15em; text-transform:uppercase; color:var(--navy); margin-bottom:6px; }
.tfd { font-size:12px; font-weight:300; line-height:1.75; color:#636873; }
.tright { position:relative; }
.tvis { width:100%; aspect-ratio:4/5; object-fit:cover; filter:grayscale(25%) contrast(1.1); display:block; }
.tbadge { position:absolute; bottom:36px; left:-32px; background:var(--gold); padding:15px 28px; font-size:9px; font-weight:400; letter-spacing:.25em; text-transform:uppercase; color:var(--navy); }
#technology .stit.l { color:var(--navy); }

/* LOCATIONS */
#locations { padding:150px 0; background:var(--cream); }
.lh { text-align:center; margin-bottom:80px; }
.lg { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.lc { position:relative; overflow:hidden; aspect-ratio:4/5; }
.lc img { width:100%; height:100%; object-fit:cover; filter:grayscale(35%) brightness(.7); transition:transform .7s var(--T),filter .7s; }
.lc:hover img { transform:scale(1.06); filter:grayscale(10%) brightness(.82); }
.li { position:absolute; bottom:0; left:0; right:0; padding:44px 32px 36px; background:linear-gradient(to top,rgba(7,15,28,.95) 0%,transparent 100%); }
.lf { font-size:8px; letter-spacing:.38em; text-transform:uppercase; color:var(--gold); margin-bottom:10px; }
.lci { font-family:'Cormorant Garamond',serif; font-size:36px; font-weight:300; color:var(--white); line-height:1.05; }
.lpo { font-size:11px; font-weight:300; color:rgba(255,255,255,.45); margin-top:7px; }
.lpin { position:absolute; top:22px; right:22px; width:30px; height:30px; border:1px solid rgba(255,255,255,.25); border-radius:50%; display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.55); font-size:11px; }

/* CONTACT */
#contact { padding:150px 0; background:var(--navy); }
.cg { display:grid; grid-template-columns:1fr 1fr; gap:110px; align-items:start; }
.cbod { font-size:14px; font-weight:300; line-height:1.9; color:rgba(255,255,255,.45); margin-top:24px; margin-bottom:52px; }
.cis { display:flex; flex-direction:column; gap:30px; }
.cil { font-size:8px; letter-spacing:.32em; text-transform:uppercase; color:var(--gold); margin-bottom:7px; }
.civ { font-size:14px; font-weight:300; color:rgba(255,255,255,.62); }
.fg { margin-bottom:26px; }
.fg label { display:block; font-size:8px; letter-spacing:.3em; text-transform:uppercase; color:rgba(255,255,255,.35); margin-bottom:10px; }
.fg input,.fg textarea,.fg select { width:100%; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.1); color:var(--white); padding:14px 18px; font-family:'Jost',sans-serif; font-size:13px; font-weight:300; outline:none; transition:border-color .3s,background .3s; -webkit-appearance:none; appearance:none; }
.fg select option { background:var(--navy); color:#fff; }
.fg input:focus,.fg textarea:focus,.fg select:focus { border-color:var(--gold); background:rgba(184,153,106,.05); }
.fg textarea { resize:vertical; min-height:120px; }
.fg2 { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.fsub { width:100%; background:var(--gold); border:none; color:var(--navy); padding:15px; font-family:'Jost',sans-serif; font-size:10px; font-weight:400; letter-spacing:.25em; text-transform:uppercase; cursor:none; transition:background .3s,transform .3s; margin-top:8px; }
.fsub:hover { background:var(--gold-light); transform:translateY(-2px); }

/* FOOTER */
footer { background:var(--navy-dark); padding:50px 60px; display:flex; flex-wrap:wrap; justify-content:space-between; align-items:center; border-top:1px solid rgba(255,255,255,.05); gap:16px 28px; }
.fl { display:flex; align-items:center; }
.logo-img-ft { height:130px; width:auto; }
.fsl { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:19px; font-weight:300; color:rgba(255,255,255,.2); }
.fco { font-size:9px; font-weight:300; color:rgba(255,255,255,.18); text-align:right; line-height:1.8; }
.privacy-wrap { width:100%; max-width:980px; margin:0 auto; }
.privacy-panel { border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.03); border-radius:14px; padding:12px 16px; }
.privacy-panel summary { cursor:pointer; font-weight:600; color:var(--gold-light); letter-spacing:.08em; text-transform:uppercase; font-size:12px; }
.privacy-copy { margin-top:12px; color:rgba(255,255,255,.78); font-size:12px; line-height:1.6; }
.privacy-copy h4 { margin:14px 0 6px; font-size:13px; color:rgba(255,255,255,.9); }
.privacy-copy p { margin:0 0 8px; }
.privacy-copy ul { margin:0 0 8px 18px; padding:0; }
.privacy-copy li { margin:0 0 4px; }

/* ANIMATIONS */
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.reveal { opacity:0; transform:translateY(38px); transition:opacity .9s var(--T),transform .9s var(--T); }
.reveal.visible { opacity:1; transform:none; }
.d1{transition-delay:.12s} .d2{transition-delay:.24s} .d3{transition-delay:.36s} .d4{transition-delay:.48s} .d5{transition-delay:.60s}

body::after { content:''; position:fixed; inset:0; 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)'/%3E%3C/svg%3E"); opacity:.02; pointer-events:none; z-index:9990; }

/* HAMBURGER */
.hamburger {
    display:none; flex-direction:column; justify-content:center; gap:5px;
    width:40px; height:40px; background:none; border:none; cursor:none;
    padding:4px; z-index:110; position:relative;
}
.hamburger span {
    display:block; width:100%; height:1px;
    background:var(--gold);
    transition:transform .4s, opacity .3s, width .4s;
    transform-origin:center;
}
.hamburger.open span:nth-child(1) { transform:translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; width:0; }
.hamburger.open span:nth-child(3) { transform:translateY(-6px) rotate(-45deg); }

/* MOBILE DRAWER */
.mobile-drawer {
    position:fixed !important;
    top:0 !important; right:0 !important; bottom:0 !important; left:auto !important;
    width:280px !important;
    background:rgba(7,15,28,0.98) !important;
    backdrop-filter:blur(20px);
    z-index:105;
    transform:translateX(100%);
    transition:transform .5s cubic-bezier(0.25,0.46,0.45,0.94);
    display:flex !important;
    flex-direction:column !important;
    justify-content:flex-start !important;
    align-items:flex-start !important;
    padding:120px 40px 60px !important;
    border-left:1px solid rgba(184,153,106,.15) !important;
    border-top:none !important; border-right:none !important; border-bottom:none !important;
    box-sizing:border-box;
}
.mobile-drawer.open { transform:translateX(0) !important; }
.mobile-drawer ul { list-style:none !important; display:flex !important; flex-direction:column !important; gap:0 !important; width:100%; padding:0 !important; margin:0 !important; }
.mobile-drawer ul li { border-bottom:1px solid rgba(255,255,255,.06); }
.mobile-drawer ul a {
    display:block; padding:18px 0;
    font-size:11px; font-weight:300; letter-spacing:.28em; text-transform:uppercase;
    color:rgba(255,255,255,.65); text-decoration:none;
    transition:color .3s, padding-left .3s;
}
.mobile-drawer ul a:hover { color:var(--gold); padding-left:8px; }
.mobile-drawer .mob-cta {
    margin-top:36px;
    display:inline-block;
    font-size:10px; font-weight:300; letter-spacing:.22em; text-transform:uppercase;
    color:var(--gold); border:1px solid var(--gold);
    padding:14px 28px; text-decoration:none;
    transition:background .3s,color .3s; text-align:center;
}
.mobile-drawer .mob-cta:hover { background:var(--gold); color:var(--navy); }
.drawer-overlay {
    position:fixed; inset:0; background:rgba(0,0,0,.5);
    z-index:104; opacity:0; pointer-events:none;
    transition:opacity .4s;
}
.drawer-overlay.open { opacity:1; pointer-events:all; }
.drawer-close {
    position:absolute; top:28px; right:28px;
    width:40px; height:40px; background:none; border:none;
    cursor:pointer; padding:0; z-index:1;
    display:flex; align-items:center; justify-content:center;
    color:rgba(255,255,255,.7); font-size:24px; line-height:1;
    transition:color .3s;
}
.drawer-close:hover { color:var(--gold); }
.drawer-close::before,.drawer-close::after {
    content:''; position:absolute; width:20px; height:1px; background:currentColor;
    transform-origin:center;
}
.drawer-close::before { transform:rotate(45deg); }
.drawer-close::after { transform:rotate(-45deg); }

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: min(360px, calc(100vw - 32px));
    background: rgba(7,15,28,0.97);
    border: 1px solid rgba(184,153,106,.35);
    box-shadow: 0 14px 40px rgba(0,0,0,.35);
    border-radius: 12px;
    padding: 18px;
    z-index: 150;
}
.cookie-banner-title {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
}
.cookie-banner-text {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255,255,255,.72);
}
.cookie-banner-actions {
    margin-top: 14px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}
.cookie-btn {
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    font-family: 'Jost',sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 9px 14px;
    cursor: pointer;
    transition: background .3s, color .3s, transform .2s;
}
.cookie-btn:hover {
    transform: translateY(-1px);
}
.cookie-btn-primary {
    background: var(--gold);
    color: var(--navy);
}
.cookie-btn-primary:hover {
    background: var(--gold-light);
}
.cookie-btn-ghost:hover {
    background: rgba(184,153,106,.12);
}

@media(max-width:900px){
    body{cursor:auto;}
    .cursor,.cursor-ring{display:none !important;}
    .cookie-banner { right: 12px; bottom: 12px; width: calc(100vw - 24px); }
    .cookie-banner-actions { flex-direction: column-reverse; }
    .cookie-btn { width: 100%; }
}
@media(max-width:900px){
    nav{padding:20px 24px;} nav.scrolled{padding:0 24px;}
    nav.nav-hidden{transform:translateY(-100%);}
    .nav-links,.nav-cta{display:none;}
    .hamburger{display:flex;}
    .lang-toggle{right:14px;}
    .hero-content{padding:0 24px 80px;} .hero-stats,.hero-lv{display:none;}
    .tbody{column-count:1;}
    .si{padding:0 24px;}
    #about,#services,#process,#technology,#locations,#contact{padding:80px 0;}
    .ag,.tg,.cg{grid-template-columns:1fr;gap:48px;}
    .svctop{flex-direction:column;align-items:flex-start;gap:20px;}
    .svcg{display:flex;flex-direction:column;}
    .sc{border-right:none;}
    .pt{grid-template-columns:1fr 1fr;gap:44px;} .pt::before{display:none;}
    .psplit,.csplit{grid-template-columns:1fr;min-height:auto;}
    .pimg,.cimg{aspect-ratio:4/3;}
    .ptxt{padding:60px 24px;} .ctxt{order:1;padding:60px 24px;} .cimg{order:2;}
    .lg{grid-template-columns:1fr;}
    footer{flex-direction:column;gap:20px;text-align:center;} .fco{text-align:center;} .privacy-panel{text-align:left;}
    .fg2{grid-template-columns:1fr;}
}

.link {
    color: #d4b98a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.link:hover {
    color: #0056b3;
    border-bottom: 1px solid #0056b3;
    cursor: pointer;
}
