/* ============================================================
   Ardina Commercial Services — Master Stylesheet (Light Theme)
   ============================================================ */

/* ---------- Custom Properties ---------- */
:root {
    --navy:       #1F3A59;
    --navy-dk:    #162B44;
    --navy-lt:    #2A4D6E;
    --bg:         #FAFAF7;
    --bg-alt:     #F2F1ED;
    --surface:    #FFFFFF;
    --surface-2:  #F7F6F3;
    --border:     rgba(31,58,89,0.08);
    --border-md:  rgba(31,58,89,0.12);
    --border-dk:  rgba(31,58,89,0.18);
    --text:       #4A5568;
    --text-light: #718096;
    --text-heading: #1F3A59;
    --gold:       #e8d58a;
    --gold-dk:    #c4b574;
    --gold-lt:    #f0e0a0;
    --gold-10:    rgba(232,213,138,0.10);
    --gold-15:    rgba(232,213,138,0.15);
    --gold-20:    rgba(232,213,138,0.20);
    --gold-30:    rgba(232,213,138,0.30);
    --navy-5:     rgba(31,58,89,0.05);
    --navy-8:     rgba(31,58,89,0.08);
    --navy-12:    rgba(31,58,89,0.12);
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans:  'Montserrat', system-ui, sans-serif;
    --sp: 120px;
    --cw: 1300px;
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; transition: color .3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ---------- Loader ---------- */
.page-loader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    transition: opacity .6s var(--ease-in-out), visibility .6s;
}
.page-loader.gone { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { display: flex; flex-direction: column; align-items: center; }
.loader-logo { margin-bottom: 30px; }
.loader-logo-svg { width: auto; height: 80px; opacity: .9; }
.loader-bar-track {
    width: 120px; height: 2px; background: rgba(255,255,255,0.08);
    border-radius: 2px; overflow: hidden;
}
.loader-bar-fill {
    height: 100%; width: 0; background: var(--gold); border-radius: 2px;
    animation: loaderFill 1.6s var(--ease-out) forwards;
}
@keyframes loaderFill { to { width: 100%; } }
.loader-text {
    margin-top: 16px; font-family: var(--sans); font-size: 10px;
    letter-spacing: 3px; text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

/* ---------- Utility ---------- */
.container { max-width: var(--cw); margin: 0 auto; padding: 0 40px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 38px; border-radius: 0; font-size: 11px;
    letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600;
    transition: all .4s var(--ease-out); position: relative; overflow: hidden;
}
.btn-gold {
    background: var(--navy); color: #fff;
}
.btn-gold:hover { background: var(--navy-lt); }
.btn-gold i { font-size: 12px; transition: transform .3s; }
.btn-gold:hover i { transform: translateX(3px); }
.btn-outline {
    border: 1px solid var(--navy-8); color: var(--navy);
    background: transparent;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-dk); }
.btn-full { width: 100%; justify-content: center; }

/* ---------- Section Atoms ---------- */
.sec-label {
    display: flex; align-items: center; gap: 16px;
    font-size: 10px; letter-spacing: 3.5px; text-transform: uppercase;
    color: var(--gold-dk); font-weight: 600; margin-bottom: 20px;
}
.sec-label::before {
    content: ''; width: 30px; height: 1px; background: var(--gold-dk);
}
.sec-head.centered .sec-label { justify-content: center; }
.sec-head.centered .sec-label::before { display: none; }
.sec-title {
    font-family: var(--serif); font-size: clamp(32px, 4vw, 52px);
    font-weight: 300; line-height: 1.15; color: var(--text-heading); margin-bottom: 20px;
}
.sec-title strong { font-weight: 600; }
.sec-sub {
    font-size: 15px; line-height: 1.8; color: var(--text-light); max-width: 520px;
}
.sec-head.centered { text-align: center; margin-bottom: 70px; }
.sec-head.centered .sec-sub { margin: 0 auto; }

/* ---------- Navbar ---------- */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 2px 0;
    background: transparent;
    overflow: hidden;
}
.nav-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(ellipse 60% 80% at 15% 60%, rgba(31,58,89,0.8) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 85% 20%, rgba(15,20,30,0.8) 0%, transparent 70%),
        var(--navy);
    opacity: 0; transition: opacity .6s var(--ease-out);
}
.nav-canvas {
    position: absolute; inset: 0; width: 100%; height: 100%;
    z-index: 1; pointer-events: none;
    opacity: 0; transition: opacity .6s var(--ease-out);
}
.nav-inner {
    max-width: var(--cw); margin: 0 auto; padding: 0 40px;
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-logo { width: auto; height: 80px; transition: height .25s ease-out, opacity .25s ease-out; }
.navbar.scrolled { background: var(--navy); }
.navbar.scrolled .nav-logo { height: 38px; }
.nav-logo-dark { display: none; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-link {
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.7); font-weight: 500; position: relative;
    transition: color .3s;
}
.nav-link::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: width .3s var(--ease-out);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }
.nav-cta {
    padding: 10px 24px; font-size: 10px; letter-spacing: 2px;
    text-transform: uppercase; font-weight: 600;
    background: var(--gold); color: var(--navy);
    transition: all .3s;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--gold-lt); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; width: 24px; cursor: pointer; }
.hamburger span {
    display: block; height: 1.5px; background: #fff;
    transition: all .3s var(--ease-out); transform-origin: center;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    z-index: 999; opacity: 0; visibility: hidden;
    transition: all .5s var(--ease-in-out);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu ul { list-style: none; text-align: center; }
.mob-link {
    display: block; font-size: 14px; letter-spacing: 3px; padding: 16px 0;
    color: rgba(255,255,255,0.7); text-transform: uppercase; transition: color .3s;
}
.mob-link:hover { color: #fff; }

/* ---------- Hero ---------- */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    padding: 160px 0 120px; overflow: hidden;
    background:
        radial-gradient(ellipse 60% 80% at 15% 60%, rgba(31,58,89,0.8) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 85% 20%, rgba(15,20,30,0.8) 0%, transparent 70%),
        var(--navy);
}
#heroCanvas {
    position: absolute; inset: 0; width: 100%; height: 100%;
    z-index: 1; pointer-events: none;
}
.hero-noise {
    position: absolute; inset: 0; z-index: 1;
    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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
    pointer-events: none;
}
.hero-inner {
    position: relative; z-index: 2;
    max-width: var(--cw); margin: 0 auto; padding: 0 40px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

/* Hero Left — Content */
.hero-left { position: relative; z-index: 2; }
.hero-title {
    font-family: var(--serif); font-size: clamp(40px, 5vw, 70px);
    font-weight: 300; line-height: 1.08; margin-bottom: 30px;
}
.ht-line { display: block; color: #fff; }
.ht-line.gold { color: var(--gold); font-weight: 600; }
.ht-line.italic { font-style: italic; }
.hero-sub {
    font-size: 15px; line-height: 1.9; color: rgba(255,255,255,0.6);
    max-width: 440px; margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .btn-gold { background: var(--gold); color: var(--navy); }
.hero .btn-gold:hover { background: var(--gold-lt); }
.hero .btn-outline { color: #fff; border-color: rgba(255,255,255,0.25); }
.hero .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* Hero Right — Visual Element */
.hero-right { position: relative; z-index: 2; }
.hero-visual {
    position: relative; width: 100%; aspect-ratio: 1; max-width: 480px;
    margin: 0 auto;
}

/* Concentric rings */
.hv-ring {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(232,213,138,0.08);
    top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.hv-ring-outer { width: 100%; height: 100%; border-color: rgba(232,213,138,0.06); }
.hv-ring-mid   { width: 70%;  height: 70%;  border-color: rgba(232,213,138,0.08); }
.hv-ring-inner { width: 40%;  height: 40%;  border-color: rgba(232,213,138,0.12); }

/* Cross-hair lines */
.hv-cross { position: absolute; background: rgba(232,213,138,0.06); }
.hv-cross-h { width: 100%; height: 1px; top: 50%; left: 0; }
.hv-cross-v { width: 1px; height: 100%; left: 50%; top: 0; }

/* Corner ticks */
.hv-tick { position: absolute; width: 16px; height: 16px; }
.hv-tick::before, .hv-tick::after {
    content: ''; position: absolute; background: rgba(232,213,138,0.15);
}
.hv-tick-tl { top: 0; left: 0; }
.hv-tick-tl::before { width: 16px; height: 1px; top: 0; left: 0; }
.hv-tick-tl::after  { width: 1px; height: 16px; top: 0; left: 0; }
.hv-tick-tr { top: 0; right: 0; }
.hv-tick-tr::before { width: 16px; height: 1px; top: 0; right: 0; }
.hv-tick-tr::after  { width: 1px; height: 16px; top: 0; right: 0; }
.hv-tick-bl { bottom: 0; left: 0; }
.hv-tick-bl::before { width: 16px; height: 1px; bottom: 0; left: 0; }
.hv-tick-bl::after  { width: 1px; height: 16px; bottom: 0; left: 0; }
.hv-tick-br { bottom: 0; right: 0; }
.hv-tick-br::before { width: 16px; height: 1px; bottom: 0; right: 0; }
.hv-tick-br::after  { width: 1px; height: 16px; bottom: 0; right: 0; }

/* Centre monogram */
.hv-center {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    text-align: center; z-index: 2;
}
.hv-mono {
    display: block; font-family: var(--serif); font-size: 80px;
    font-weight: 700; color: var(--gold); line-height: 1; opacity: .8;
}
.hv-mono-sub {
    display: block; font-size: 9px; letter-spacing: 6px;
    text-transform: uppercase; color: rgba(255,255,255,0.3); margin-top: 4px;
}

/* Floating stat cards */
.hv-stat {
    position: absolute; display: flex; align-items: center; gap: 12px;
    padding: 14px 20px; background: rgba(31,58,89,0.6);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(232,213,138,0.15);
    transition: all .4s var(--ease-out); z-index: 3;
}
.hv-stat:hover { border-color: rgba(232,213,138,0.3); transform: translateY(-2px); }
.hv-stat-top    { top: 5%;  left: 50%; transform: translateX(-50%); }
.hv-stat-right  { right: -10%; top: 50%; transform: translateY(-50%); }
.hv-stat-bottom { bottom: 5%; left: 50%; transform: translateX(-50%); }
.hv-stat-top:hover    { transform: translateX(-50%) translateY(-2px); }
.hv-stat-right:hover  { transform: translateY(-50%) translateX(-2px); }
.hv-stat-bottom:hover { transform: translateX(-50%) translateY(2px); }
.hv-snum {
    font-family: var(--serif); font-size: 22px; font-weight: 700;
    color: var(--gold); line-height: 1; white-space: nowrap;
}
.hv-slabel {
    font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase;
    color: rgba(255,255,255,0.5); white-space: nowrap;
}

/* Radial accent lines */
.hv-accent {
    position: absolute; width: 1px; background: rgba(232,213,138,0.06);
    transform-origin: center center;
}
.hv-accent-1 { height: 60px; top: 10%; left: 25%; transform: rotate(30deg); }
.hv-accent-2 { height: 80px; bottom: 15%; right: 20%; transform: rotate(-20deg); }
.hv-accent-3 { height: 50px; top: 30%; right: 10%; transform: rotate(60deg); }

/* Hero scroll indicator */
.hero-scroll {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    z-index: 3;
}
.hero-scroll span {
    font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}
.scroll-track {
    width: 1px; height: 40px; background: rgba(232,213,138,0.15);
    position: relative; overflow: hidden;
}
.scroll-thumb {
    position: absolute; top: -100%; left: 0;
    width: 100%; height: 50%; background: var(--gold);
    animation: scrollLine 2s var(--ease-in-out) infinite;
}
@keyframes scrollLine {
    0% { top: -50%; }
    100% { top: 150%; }
}

/* Hero deco line */
.hero-deco-line {
    position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-30), transparent);
    z-index: 3;
}

/* ---------- Services ---------- */
.services { padding: var(--sp) 0; background: var(--bg); position: relative; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.svc-card {
    position: relative; padding: 44px 36px 40px; overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: all .5s var(--ease-out);
}
.svc-card:hover {
    border-color: var(--gold-dk);
    box-shadow: 0 20px 60px rgba(31,58,89,0.12);
    transform: translateY(-10px);
}

.svc-card-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    opacity: 0; transition: opacity .6s;
    pointer-events: none;
}
.svc-number {
    position: absolute; top: -10px; right: 16px;
    font-family: var(--serif); font-size: 100px; font-weight: 700;
    color: rgba(31,58,89,0.04); line-height: 1; transition: color .5s;
    pointer-events: none;
}
.svc-card:hover .svc-number { color: rgba(232,213,138,0.08); }

.svc-icon {
    width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
    background: var(--navy-5); border: 1px solid var(--navy-8);
    margin-bottom: 24px; transition: all .4s;
}
.svc-card:hover .svc-icon { background: var(--navy); border-color: var(--navy); }
.svc-icon i { font-size: 20px; color: var(--navy); transition: color .4s; }
.svc-card:hover .svc-icon i { color: #fff; }

.svc-title {
    font-family: var(--serif); font-size: 22px; font-weight: 600;
    color: var(--text-heading); margin-bottom: 12px;
}
.svc-desc { font-size: 13px; line-height: 1.8; color: var(--text-light); margin-bottom: 20px; }
.svc-list { margin-bottom: 24px; }
.svc-list li {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0; font-size: 12px; color: var(--text);
    border-bottom: 1px solid var(--border);
}
.svc-list li:last-child { border-bottom: none; }
.svc-list li i { font-size: 8px; color: var(--gold-dk); }
.svc-link {
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--navy); font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px; transition: all .3s;
}
.svc-link i { font-size: 10px; transition: transform .3s; }
.svc-link:hover i { transform: translateX(4px); }
.svc-link:hover { color: var(--gold-dk); }

/* Make the entire service card clickable (stretched link) */
.svc-card { cursor: pointer; }
.svc-link::after { content: ""; position: absolute; inset: 0; z-index: 1; }

/* Featured card */
.svc-featured { border-color: var(--gold-dk); border-left: 3px solid var(--gold); }

/* ---------- About ---------- */
.about {
    padding: var(--sp) 0; background: var(--bg-alt); position: relative; overflow: hidden;
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

/* About Visual */
.about-visual { position: relative; height: 520px; }
.av-main {
    position: absolute; top: 30px; left: 30px; right: 50px; bottom: 0;
    background: linear-gradient(140deg, rgba(31,58,89,0.7) 0%, rgba(42,77,110,0.6) 40%, rgba(22,43,68,0.8) 100%),
                url('../images/Shirt Logo.jpg') center/cover no-repeat;
    border: 1px solid rgba(232,213,138,0.15);
    overflow: hidden;
}
.av-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(232,213,138,0.05) 100%);
}
.av-label {
    position: absolute; bottom: 30px; left: 30px;
    display: flex; flex-direction: column; gap: 4px;
}
.av-est {
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}
.av-name {
    font-family: var(--serif); font-size: 18px; font-weight: 600;
    color: rgba(255,255,255,0.8);
}
.av-pattern {
    position: absolute; inset: 0; opacity: .03;
    background-image: radial-gradient(rgba(232,213,138,0.5) 1px, transparent 1px);
    background-size: 24px 24px;
}
.av-accent {
    position: absolute; top: -10px; left: -10px; width: 100px; height: 100px;
    background: var(--surface); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
}

/* Badge */
.av-badge {
    position: absolute; bottom: 40px; right: -30px;
    background: var(--surface); border: 1px solid var(--border-md);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    padding: 24px 28px; text-align: center; z-index: 2;
}
.av-badge-num {
    font-family: var(--serif); font-size: 42px; font-weight: 700;
    color: var(--navy); line-height: 1;
}
.av-badge > span:nth-child(2) {
    font-family: var(--serif); font-size: 18px; font-weight: 600;
    color: var(--navy);
}
.av-badge-label {
    display: block; font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--text-light); margin-top: 4px;
}
.av-line-v {
    position: absolute; top: -20px; right: -1px; bottom: -20px; width: 1px;
    background: linear-gradient(to bottom, transparent, var(--navy-8), transparent);
}

/* About Content */
.about-content .sec-title { color: var(--text-heading); }
.about-body {
    font-size: 15px; line-height: 1.9; color: var(--text); margin-bottom: 20px;
}
.about-body:last-of-type { margin-bottom: 40px; }
.values-list { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.value { display: flex; gap: 16px; }
.value-icon {
    width: 40px; height: 40px; min-width: 40px;
    display: flex; align-items: center; justify-content: center;
    background: var(--navy-5); border: 1px solid var(--navy-8);
}
.value-icon i { font-size: 14px; color: var(--navy); }
.value h4 {
    font-size: 13px; font-weight: 600; color: var(--text-heading);
    margin-bottom: 4px; letter-spacing: .5px;
}
.value p { font-size: 12px; color: var(--text-light); line-height: 1.6; }

/* ---------- Trusted By (Logo Ticker) ---------- */
.trusted-by { padding: 60px 0 40px; background: var(--bg); overflow: hidden; }
.trusted-label {
    display: block; text-align: center; margin-bottom: 36px;
    font-family: var(--sans); font-size: 11px; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
}
.logo-ticker {
    position: relative; width: 100%; overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.logo-track {
    display: flex; align-items: center; gap: 70px;
    width: max-content;
    animation: ticker 50s linear infinite;
}
.client-logo-img {
    width: auto; object-fit: contain;
    opacity: 0.45;
    filter: grayscale(100%);
    transition: opacity .3s, filter .3s;
    flex-shrink: 0;
}
/* Individual sizing for visual balance */
.cl-lskd    { height: 28px; }
.cl-qbuild  { height: 40px; }
.cl-tmr     { height: 55px; }
.cl-ethos   { height: 42px; }
.cl-bothar  { height: 28px; }
.cl-kids    { height: 34px; }
.cl-bce     { height: 44px; }
.cl-ford    { height: 38px; }
.cl-bunzl   { height: 44px; }
.cl-cricks  { height: 34px; }
.cl-ellis   { height: 40px; }
.cl-djr     { height: 32px; }
.cl-sq      { height: 36px; }
.client-logo-img:hover { opacity: 0.8; filter: grayscale(0%); }

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

/* ---------- Clients (Who We Serve) ---------- */
.clients {
    padding: var(--sp) 0; background: var(--bg); position: relative;
}
.clients-top-line, .clients-bot-line {
    position: absolute; left: 0; right: 0; height: 1px;
    background: linear-gradient(to right, transparent, var(--border-md), transparent);
}
.clients-top-line { top: 0; }
.clients-bot-line { bottom: 0; }
.clients-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.client-card {
    position: relative; padding: 40px 28px 36px; text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: all .5s var(--ease-out); overflow: hidden;
}
.client-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(232,213,138,0.03) 100%);
    opacity: 0; transition: opacity .4s;
}
.client-card:hover::before { opacity: 1; }
.client-card:hover {
    border-color: var(--gold-dk);
    box-shadow: 0 16px 50px rgba(31,58,89,0.1);
    transform: translateY(-6px);
}

.cc-icon {
    width: 56px; height: 56px; margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center; position: relative;
}
.cc-icon i { font-size: 26px; color: var(--navy); transition: color .4s; }
.client-card:hover .cc-icon i { color: var(--gold-dk); }

.client-card h4 {
    font-family: var(--serif); font-size: 18px; font-weight: 600;
    color: var(--text-heading); margin-bottom: 10px;
}
.client-card p { font-size: 12px; line-height: 1.7; color: var(--text-light); }
.cc-arrow {
    display: block; margin-top: 18px; font-size: 14px;
    color: var(--navy-8); transition: all .3s;
}
.client-card:hover .cc-arrow { color: var(--navy); transform: translateX(4px); }

/* ---------- Process ---------- */
.process {
    padding: var(--sp) 0; background: var(--bg-alt); position: relative; overflow: hidden;
}
.process-track {
    position: relative; z-index: 2; display: flex; flex-direction: column; gap: 0;
}
.process-connector {
    width: 1px; height: 50px; margin: 0 auto;
    background: linear-gradient(to bottom, var(--border-md), transparent);
}
.proc-step {
    display: grid; grid-template-columns: 100px 40px 1fr; align-items: center;
    gap: 24px; position: relative;
    border: 1px solid var(--border);
    background: var(--surface);
    padding: 40px;
    transition: all .5s var(--ease-out);
}
.proc-step:hover {
    border-color: var(--gold-dk);
    box-shadow: 0 8px 30px rgba(31,58,89,0.06);
}

.ps-num {
    font-family: var(--serif); font-size: 64px; font-weight: 700;
    color: rgba(31,58,89,0.08); line-height: 1; transition: color .5s;
}
.proc-step:hover .ps-num { color: rgba(31,58,89,0.15); }

.ps-dot {
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--navy-8); border: 1.5px solid var(--navy);
    transition: all .4s; justify-self: center;
}
.proc-step:hover .ps-dot { background: var(--navy); }

.ps-icon {
    width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
    background: var(--navy-5); border: 1px solid var(--navy-8);
    margin-bottom: 16px; transition: all .4s;
}
.proc-step:hover .ps-icon { background: var(--navy); border-color: var(--navy); }
.ps-icon i { font-size: 16px; color: var(--navy); transition: color .4s; }
.proc-step:hover .ps-icon i { color: #fff; }

.ps-body h3 {
    font-family: var(--serif); font-size: 20px; font-weight: 600;
    color: var(--text-heading); margin-bottom: 8px;
}
.ps-body p { font-size: 13px; color: var(--text-light); line-height: 1.7; }

/* ---------- Contact ---------- */
.contact { padding: var(--sp) 0; background: var(--bg); position: relative; }
.contact-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(31,58,89,0.03) 0%, transparent 70%);
    pointer-events: none;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }

/* Contact Info */
.contact-info .sec-title { color: var(--text-heading); }
.contact-intro {
    font-size: 14px; line-height: 1.8; color: var(--text); margin-bottom: 36px;
}
.contact-items { display: flex; flex-direction: column; gap: 0; margin-bottom: 36px; }
.contact-item {
    display: flex; align-items: center; gap: 18px;
    padding: 20px; transition: all .3s;
}
.contact-item:hover { background: var(--navy-5); }
.ci-icon {
    width: 44px; height: 44px; min-width: 44px;
    display: flex; align-items: center; justify-content: center;
    background: var(--navy-5); border: 1px solid var(--navy-8);
}
.ci-icon i { font-size: 16px; color: var(--navy); }
.ci-label {
    font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--text-light); margin-bottom: 4px; display: block;
}
.ci-val {
    font-size: 14px; font-weight: 500; color: var(--text-heading);
    transition: color .3s; display: block;
}
.contact-item:hover .ci-val { color: var(--gold-dk); }

/* Emergency card */
.emergency-card {
    display: flex; align-items: center; gap: 16px;
    padding: 20px 24px;
    background: rgba(31,58,89,0.04);
    border: 1px solid var(--navy-8);
    border-left: 3px solid var(--navy);
}
.ec-pulse {
    width: 10px; height: 10px; min-width: 10px; border-radius: 50%;
    background: var(--navy);
    animation: ecPulse 2s ease-in-out infinite;
}
@keyframes ecPulse {
    0%, 100% { opacity: .4; }
    50% { opacity: 1; }
}
.emergency-card i { font-size: 18px; color: var(--navy); }
.emergency-card div { display: flex; flex-direction: column; }
.emergency-card strong { font-size: 12px; color: var(--text-heading); letter-spacing: .5px; }
.emergency-card span { font-size: 12px; color: var(--text-light); }

/* Contact Form */
.form-wrapper { position: relative; }
.cform {
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    padding: 0;
}
.cform-head {
    padding: 32px 36px; border-bottom: 1px solid var(--border);
}
.cform-head h3 {
    font-family: var(--serif); font-size: 22px; font-weight: 600;
    color: var(--text-heading); margin-bottom: 6px;
}
.cform-head p { font-size: 12px; color: var(--text-light); }
.cform-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    padding: 0 36px; margin-top: 24px;
}
.cform-row:first-of-type { margin-top: 32px; }
.cform-group { padding: 0 36px; margin-top: 16px; }
.cform-row .cform-group { padding: 0; margin-top: 0; }
.cform-group label {
    display: block; font-size: 10px; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--text-light);
    margin-bottom: 8px; font-weight: 500;
}
.cform-group input,
.cform-group select,
.cform-group textarea {
    width: 100%; padding: 14px 16px; font-family: var(--sans); font-size: 13px;
    background: var(--bg);
    border: 1px solid var(--border-md);
    color: var(--text-heading);
    transition: all .3s; border-radius: 0;
}
.cform-group input::placeholder,
.cform-group textarea::placeholder { color: var(--text-light); }
.cform-group input:focus,
.cform-group select:focus,
.cform-group textarea:focus {
    outline: none; border-color: var(--navy);
    background: #fff;
}
.cform-group select { cursor: pointer; appearance: none; }
.select-wrap { position: relative; }
.select-wrap select { padding-right: 40px; }
.select-wrap i {
    position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
    font-size: 12px; color: var(--text-light); pointer-events: none;
}
.cform-group textarea { resize: vertical; min-height: 120px; }
.cform .btn { margin: 24px 36px 0; width: calc(100% - 72px); justify-content: center; }
.form-note {
    font-size: 11px; color: var(--text-light); margin: 16px 36px 32px;
}

/* Form success */
.form-success {
    display: none; text-align: center; padding: 60px 40px;
    background: var(--surface); border: 1px solid var(--border);
}
.fs-icon { margin-bottom: 20px; }
.fs-icon i { font-size: 48px; color: var(--gold); }
.form-success h3 {
    font-family: var(--serif); font-size: 24px; font-weight: 600;
    color: var(--text-heading); margin-bottom: 10px;
}
.form-success p { font-size: 13px; color: var(--text); margin-bottom: 24px; }

/* ---------- Footer ---------- */
.footer {
    background: var(--navy); position: relative; padding: 80px 0 0;
}
.footer-top-line {
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-30), transparent);
}
.footer-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 60px;
    padding-bottom: 60px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo-svg { width: auto; height: 50px; }
.footer-tagline {
    font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.6); margin-bottom: 20px;
}
.footer-meta { font-size: 11px; color: rgba(255,255,255,0.4); line-height: 1.8; }
.footer-col h4 {
    font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 24px; font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col a {
    display: block; font-size: 13px; color: rgba(255,255,255,0.6);
    padding: 6px 0; transition: all .3s;
}
.footer-col a:hover { color: var(--gold); transform: translateX(4px); }
.footer-col li { color: rgba(255,255,255,0.6); font-size: 13px; padding: 6px 0; }
.footer-emergency {
    margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.6);
    display: flex; align-items: center; gap: 8px;
}
.footer-emergency .blink {
    color: var(--gold); animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: .3; }
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0; display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.4); }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
    font-size: 11px; color: rgba(255,255,255,0.4); transition: color .3s;
}
.footer-legal a:hover { color: var(--gold); }
.footer-legal span { font-size: 11px; color: rgba(255,255,255,0.2); }

/* ---------- Inner Pages — Page Hero ---------- */
.page-hero {
    position: relative; padding: 160px 0 80px; overflow: hidden;
    background:
        radial-gradient(ellipse 60% 70% at 20% 50%, rgba(31,58,89,0.9) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 80% 30%, rgba(15,20,30,0.7) 0%, transparent 70%),
        var(--navy);
}
.page-hero .breadcrumb {
    display: flex; align-items: center; gap: 10px;
    font-size: 11px; color: rgba(255,255,255,0.5); margin-bottom: 40px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color .3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }

.page-hero-grid {
    display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
}
.page-hero h1 {
    font-family: var(--serif); font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 300; color: #fff; margin-bottom: 16px;
}
.page-hero h1 strong { font-weight: 600; }
.page-hero-sub {
    font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.7);
    max-width: 560px;
}
.page-hero-icon {
    width: 80px; height: 80px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(232,213,138,0.1);
    border: 1px solid rgba(232,213,138,0.2);
}
.page-hero-icon i { font-size: 28px; color: var(--gold); }

/* ---------- Inner Sections ---------- */
.inner-section { padding: var(--sp) 0; }
.inner-section:nth-of-type(odd) { background: var(--bg); }
.inner-section:nth-of-type(even) { background: var(--bg-alt); }

/* Stats Bar */
.stats-bar {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    border: 1px solid var(--border-md);
}
.stat-item {
    text-align: center; padding: 36px 20px;
    background: var(--surface);
    border-right: 1px solid var(--border-md);
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-family: var(--serif); font-size: 36px; font-weight: 700;
    color: var(--navy); line-height: 1; margin-bottom: 6px;
}
.stat-label {
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--text-light);
}

/* Relevance Cards */
.relevance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.relevance-card {
    padding: 36px 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: all .5s var(--ease-out);
}
.relevance-card:hover {
    border-color: var(--navy);
    box-shadow: 0 12px 40px rgba(31,58,89,0.1);
    transform: translateY(-6px);
}
.rc-icon {
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    background: var(--navy-5); border: 1px solid var(--navy-8);
    margin-bottom: 20px; transition: all .4s;
}
.relevance-card:hover .rc-icon { background: var(--navy); border-color: var(--navy); }
.rc-icon i { font-size: 18px; color: var(--navy); transition: color .4s; }
.relevance-card:hover .rc-icon i { color: #fff; }
.relevance-card h3 {
    font-family: var(--serif); font-size: 20px; font-weight: 600;
    color: var(--text-heading); margin-bottom: 10px;
}
.relevance-card p { font-size: 13px; color: var(--text-light); line-height: 1.7; }
a.relevance-card { text-decoration: none; color: inherit; cursor: pointer; }
.rc-arrow { display: inline-flex; align-items: center; margin-top: 18px; color: var(--navy); opacity: .45; transition: all .4s var(--ease-out); }
.rc-arrow i { font-size: 14px; }
a.relevance-card:hover .rc-arrow { opacity: 1; transform: translateX(5px); }

/* Why Grid */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.why-points { display: flex; flex-direction: column; gap: 28px; }
.why-point { display: flex; gap: 18px; }
.wp-num {
    width: 36px; height: 36px; min-width: 36px;
    display: flex; align-items: center; justify-content: center;
    background: var(--navy-5); border: 1px solid var(--navy-8);
    font-size: 13px; font-weight: 700; color: var(--navy);
}
.why-point h4 {
    font-size: 14px; font-weight: 600; color: var(--text-heading);
    margin-bottom: 6px;
}
.why-point p { font-size: 13px; color: var(--text-light); line-height: 1.7; }

/* CTA Banner */
.cta-banner {
    padding: 80px 0; background: var(--navy); position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(232,213,138,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 2; text-align: center; }
.cta-banner h2 {
    font-family: var(--serif); font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 300; color: #fff; margin-bottom: 16px;
}
.cta-banner h2 strong { font-weight: 600; }
.cta-banner p {
    font-size: 15px; color: rgba(255,255,255,0.7);
    max-width: 500px; margin: 0 auto 36px;
}
.cta-banner .btn-gold { background: var(--gold); color: var(--navy); }
.cta-banner .btn-gold:hover { background: var(--gold-lt); }
.cta-banner .btn-outline { border-color: rgba(255,255,255,0.2); color: #fff; }
.cta-banner .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Legal Pages ---------- */
.legal-content { max-width: 780px; margin: 0 auto; }
.legal-updated {
    font-size: 12px; color: var(--text-light);
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px; margin-bottom: 36px;
}
.legal-content h2 {
    font-family: var(--serif); font-size: 24px; font-weight: 600;
    color: var(--text-heading); margin: 36px 0 16px;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p {
    font-size: 14px; line-height: 1.9; color: var(--text);
    margin-bottom: 16px;
}
.legal-content ul { margin: 16px 0 16px 20px; list-style: disc; }
.legal-content ul li {
    font-size: 14px; line-height: 1.8; color: var(--text);
    margin-bottom: 8px;
}
.legal-content a {
    color: var(--navy); text-decoration: underline;
    text-decoration-color: var(--navy-8); transition: all .3s;
}
.legal-content a:hover { color: var(--gold-dk); text-decoration-color: var(--gold-dk); }

/* ---------- Animations & Reveal ---------- */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }
.reveal-d5 { transition-delay: .5s; }
.reveal-d6 { transition-delay: .6s; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--navy-12); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--navy); }

/* ---------- Selection ---------- */
::selection { background: var(--gold-20); color: var(--navy); }

/* ============================================================
   Responsive
   ============================================================ */

/* Tablet landscape */
@media (max-width: 1200px) {
    :root { --sp: 100px; }
    .svc-grid { grid-template-columns: repeat(2, 1fr); }
    .clients-grid { grid-template-columns: repeat(2, 1fr); }
    .relevance-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; }
    .footer-grid > :last-child { grid-column: 1 / -1; }
}

/* Tablet portrait */
@media (max-width: 992px) {
    :root { --sp: 80px; }
    .container { padding: 0 28px; }
    .nav-inner { padding: 0 28px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }

    /* Hero */
    .hero-inner { grid-template-columns: 1fr; gap: 50px; padding: 0 28px; }
    .hero-visual { max-width: 360px; }
    .hv-stat-right { right: 0; }

    /* About */
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-visual { height: 400px; }

    /* Process */
    .proc-step { grid-template-columns: 1fr; gap: 16px; text-align: center; }
    .ps-num { text-align: center; font-size: 48px; }
    .ps-dot { display: none; }
    .ps-body .ps-icon { margin: 0 auto 16px; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }

    /* Inner pages */
    .page-hero-grid { grid-template-columns: 1fr; gap: 24px; }
    .page-hero-icon { display: none; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3),
    .stat-item:nth-child(4) { border-top: 1px solid var(--border-md); }
    .why-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Mobile */
@media (max-width: 768px) {
    :root { --sp: 64px; }
    .container { padding: 0 20px; }
    .nav-inner { padding: 0 20px; }

    .hero { padding: 140px 0 100px; }
    .hero-inner { padding: 0 20px; }
    .hero-title { font-size: clamp(32px, 8vw, 48px); }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-visual { max-width: 300px; }
    .hv-stat { padding: 10px 14px; }
    .hv-snum { font-size: 18px; }
    .hv-slabel { font-size: 8px; }
    .hero-scroll { display: none; }

    .svc-grid { grid-template-columns: 1fr; }
    .clients-grid { grid-template-columns: 1fr; }
    .relevance-grid { grid-template-columns: 1fr; }

    .about-visual { height: 320px; }
    .av-badge { right: 10px; bottom: 20px; padding: 18px 22px; }
    .av-badge-num { font-size: 32px; }

    .cform-row { grid-template-columns: 1fr; padding: 0 24px; }
    .cform-row:first-of-type { margin-top: 24px; }
    .cform-group { padding: 0 24px; }
    .cform-head { padding: 24px; }
    .cform .btn { margin: 20px 24px 0; width: calc(100% - 48px); }
    .form-note { margin: 12px 24px 24px; }

    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    .page-hero { padding: 130px 0 60px; }
    .stats-bar { grid-template-columns: 1fr 1fr; }

    .sec-title { font-size: clamp(28px, 6vw, 40px); }
}

/* Small mobile */
@media (max-width: 480px) {
    :root { --sp: 52px; }
    .container { padding: 0 16px; }
    .nav-inner { padding: 0 16px; }

    .hero-inner { padding: 0 16px; }
    .svc-card { padding: 32px 24px 28px; }
    .client-card { padding: 28px 20px 24px; }
    .proc-step { padding: 28px 20px; }
    .cform-head { padding: 20px; }
    .cform-row { padding: 0 20px; }
    .cform-group { padding: 0 20px; }
    .cform .btn { margin: 20px 20px 0; width: calc(100% - 40px); }
    .form-note { margin: 12px 20px 20px; }

    .btn { padding: 14px 28px; font-size: 10px; letter-spacing: 2px; }
    .hv-stat { padding: 8px 12px; }
    .hv-snum { font-size: 16px; }

    .stats-bar { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border-md); }
    .stat-item:last-child { border-bottom: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}
