/* ===================== VARIABLES ===================== */
:root {
    --navy: #050d1f;
    --navy-mid: #0b1a3a;
    --navy-light: #122150;
    --champ: #d4a843;
    --champ-l: #e8c97a;
    --champ-p: #f5e6b8;
    --white: #fff;
    --silver: #c8cdd8;
    --body: #8a96b0;
}

/* ===================== RESET ===================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Raleway', sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

/* ===================== TOPBAR ===================== */
.topbar {
    background: #020810;
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.tb-left {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.tb-left a {
    font-size: 11px;
    color: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color .3s;
    white-space: nowrap;
    font-family: sans-serif;
}

.tb-left a:hover {
    color: var(--champ-l);
}

.tb-right {
    display: flex;
    gap: 8px;
}

.tb-right a {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: rgba(255, 255, 255, .35);
    transition: all .3s;
}

.tb-right a:hover {
    border-color: var(--champ);
    color: var(--champ);
}

/* ===================== NAVBAR ===================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(5, 13, 31, .97);
    border-bottom: 1px solid rgba(212, 168, 67, .18);
    padding: 0 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    backdrop-filter: blur(20px);
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--champ) 30%, var(--champ-l) 50%, var(--champ) 70%, transparent);
}




/* LOGO IMAGE STYLE */
.logo {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;

}

.logo img {
    height: 60px;
    /* Adjust based on your logo */
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0px 5px;
}



.logo-text strong {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-dark);
    letter-spacing: 1.2;
}

.logo-text small {
    font-size: 9px;
    color: var(--champ);
    letter-spacing: 1px;
    text-transform: uppercase;
}


.nav-menu {
    display: flex;
    gap: 30px;
    margin: 0 auto;
}

.nav-menu a {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
    position: relative;
    transition: color .3s;
    padding: 4px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--champ);
    transform: scaleX(0);
    transition: transform .3s;
    transform-origin: left;
}

.nav-menu a:hover {
    color: var(--champ);
}

.nav-menu a:hover::after {
    transform: scaleX(1);
}

.nav-btn {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--navy);
    background: var(--champ);
    padding: 10px 18px;
    text-transform: uppercase;
    transition: all .3s;
    white-space: nowrap;
    font-weight: 700;
}

.nav-btn:hover {
    background: var(--champ-l);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.hamburger span {
    width: 22px;
    height: 1.5px;
    background: var(--champ);
    display: block;
    transition: all .3s;
}

/* Mobile Menu */
.mob-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--navy-mid);
    z-index: 10000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mob-overlay.open {
    display: flex;
}

.mob-close {
    position: absolute;
    top: 20px;
    right: 22px;
    font-size: 26px;
    color: var(--champ);
    font-family: 'Cinzel', serif;
}

.mob-overlay a {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white);
    transition: color .3s;
}

.mob-overlay a:hover {
    color: var(--champ);
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    height: calc(100vh - 110px);
    min-height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* ADD THIS */
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .35;
    filter: saturate(.75);
    transition: opacity .8s;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(5, 13, 31, .3) 40%, rgba(5, 13, 31, .1) 100%);
}

.hero-grid-ov {
    position: absolute;
    inset: 0;
    opacity: .04;
    background-image: linear-gradient(rgba(212, 168, 67, 1) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 67, 1) 1px, transparent 1px);
    background-size: 55px 55px;
    pointer-events: none;
}

.hero-ring {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: min(380px, 45vw);
    height: min(380px, 45vw);
    border-radius: 50%;
    border: 1px solid rgba(212, 168, 67, .12);
    pointer-events: none;
}

.hero-ring::before {
    content: '';
    position: absolute;
    inset: 28px;
    border-radius: 50%;
    border: 1px solid rgba(212, 168, 67, .08);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5%;
    /* max-width: min(640px, 90vw); */
    max-width: 900px;
    /* slightly wider for center layout */
    margin: 0 auto;
}

.h-tag {
    /* display: inline-flex; */
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cinzel', serif;
    font-size: 9.5px;
    letter-spacing: 5px;
    color: var(--champ);
    text-transform: uppercase;
    margin-bottom: 22px;
    opacity: 0;
    animation: fup .8s ease .3s forwards;
    justify-content: center;
}

.h-tag::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--champ);
    flex-shrink: 0;
}

.h-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 6vw, 86px);
    font-weight: 300;
    line-height: 1.0;
    color: var(--white);
    opacity: 0;
    animation: fup .9s ease .5s forwards;
}

.h-h1 strong {
    font-weight: 700;
    font-style: italic;
    color: var(--champ-p);
    display: block;
}

.h-h1 em {
    font-style: italic;
    display: block;
}

.h-rule {
    width: 70px;
    height: 1px;
    background: linear-gradient(to right, var(--champ), transparent);
    margin: 24px 0;
    opacity: 0;
    animation: fup .8s ease .7s forwards;
}

.h-p {
    font-size: clamp(13px, 1.5vw, 15px);
    color: rgba(255, 255, 255, .68);
    line-height: 1.85;
    font-weight: 300;
    max-width: 460px;
    /* margin-bottom: 40px; */
    opacity: 0;
    animation: fup .8s ease .9s forwards;
    max-width: 900px;
    /* slightly wider for center layout */
    margin: 0 auto;
}

.h-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fup .8s ease 1.1s forwards;
    justify-content: center;
    /* ADD THIS */
}

.btn-r {
    position: relative;
    padding: 14px 36px;
    border: 1px solid var(--champ);
    color: var(--champ);
    font-family: 'Cinzel', serif;
    font-size: 9.5px;
    letter-spacing: 3px;
    text-transform: uppercase;
    overflow: hidden;
    transition: color .4s;
    display: inline-flex;
    align-items: center;
    font-weight: 700;
}

.btn-r::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--champ);
    transform: translateX(-101%);
    transition: transform .4s cubic-bezier(.65, 0, .35, 1);
}

.btn-r:hover {
    color: var(--navy);
}

.btn-r:hover::before {
    transform: translateX(0);
}

.btn-r span {
    position: relative;
    z-index: 1;
}

.btn-g {
    padding: 13px 34px;
    border: 1px solid rgba(255, 255, 255, .25);
    color: rgba(255, 255, 255, .7);
    font-family: 'Cinzel', serif;
    font-size: 9.5px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
}

.btn-g:hover {
    border-color: var(--champ);
    color: var(--champ);
}

/* Slide ticks */
.hero-ticks {
    position: absolute;
    bottom: 36px;
    left: 5%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.stk {
    width: 2px;
    height: 20px;
    background: rgba(255, 255, 255, .15);
    border: none;
    transition: all .3s;
    position: relative;
}

.stk.on {
    background: var(--champ);
    height: 38px;
}

.stk::after {
    content: attr(data-l);
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Cinzel', serif;
    font-size: 8.5px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .28);
    white-space: nowrap;
}

.stk.on::after {
    color: var(--champ);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    right: 5%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: 'Cinzel', serif;
    font-size: 8px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, .26);
    writing-mode: vertical-rl;
    animation: spulse 2s infinite;
}

.hero-scroll-hint::before {
    content: '';
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--champ), transparent);
}

@keyframes fup {
    from {
        opacity: 0;
        transform: translateY(26px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes spulse {

    0%,
    100% {
        opacity: .26
    }

    50% {
        opacity: .7
    }
}

/* ===================== MARQUEE ===================== */
.mq {
    background: var(--champ);
    padding: 13px 0;
    overflow: hidden;
}

.mq-t {
    display: flex;
    white-space: nowrap;
    animation: mqr 28s linear infinite;
}

.mq-t:hover {
    animation-play-state: paused;
}

.mq-t span {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 0 26px;
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--navy);
    font-weight: 600;
}

.mq-t span::after {
    content: '✦';
    font-size: 8px;
    opacity: .45;
}

@keyframes mqr {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ===================== STATS ===================== */
.stats {
    background: var(--navy-mid);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 3px solid var(--champ);
}

.st {
    padding: 36px 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .06);
}

.st:last-child {
    border-right: none;
}

.st-n {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    color: var(--champ);
    line-height: 1;
}

.st-n sup {
    font-size: .5em;
}

.st-l {
    font-family: 'Cinzel', serif;
    font-size: 8.5px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .38);
    margin-top: 7px;
}

/* ===================== SERVICES SHARED ===================== */
.eyebrow {
    font-family: 'Cinzel', serif;
    font-size: 9.5px;
    letter-spacing: 5px;
    color: var(--champ);
    text-transform: uppercase;
    margin-bottom: 13px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.eyebrow::before {
    content: '';
    width: 26px;
    height: 1px;
    background: var(--champ);
    flex-shrink: 0;
}

.sec-t {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 4vw, 56px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 13px;
}

.sec-t em {
    font-style: italic;
    color: var(--champ-l);
}

.g-rule {
    width: 48px;
    height: 1px;
    background: linear-gradient(to right, var(--champ), var(--champ-l));
    margin-bottom: 20px;
}

.bt {
    font-size: clamp(13px, 1.4vw, 15px);
    color: var(--body);
    line-height: 1.88;
    font-weight: 300;
}

.orn {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 16px;
}

.orn::before,
.orn::after {
    content: '';
    flex: 1;
    height: 1px;
}

.orn::before {
    background: linear-gradient(to right, transparent, var(--champ));
}

.orn::after {
    background: linear-gradient(to left, transparent, var(--champ));
}

.orn-d {
    width: 7px;
    height: 7px;
    background: var(--champ);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* reveal */
.rv {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .85s, transform .85s;
}

.rl {
    opacity: 0;
    transform: translateX(-44px);
    transition: opacity .85s, transform .85s;
}

.rr {
    opacity: 0;
    transform: translateX(44px);
    transition: opacity .85s, transform .85s;
}

.rv.on,
.rl.on,
.rr.on {
    opacity: 1;
    transform: translate(0);
}

.d1 {
    transition-delay: .1s !important;
}

.d2 {
    transition-delay: .2s !important;
}

.d3 {
    transition-delay: .3s !important;
}

.d4 {
    transition-delay: .4s !important;
}

/* ===================== SERVICES ===================== */
.services {
    padding: clamp(60px, 8vw, 120px) 5%;
    background: var(--navy);
    position: relative;
}

.services::before {
    content: 'EXPORTS';
    position: absolute;
    font-family: 'Cinzel', serif;
    font-size: clamp(60px, 12vw, 160px);
    font-weight: 700;
    color: rgba(212, 168, 67, .025);
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 20px;
    white-space: nowrap;
    pointer-events: none;
    overflow: hidden;
}

.sec-head {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 70px);
}

.sec-head .eyebrow {
    justify-content: center;
}

.sec-head .eyebrow::before {
    display: none;
}

.sec-head .g-rule {
    margin: 0 auto 20px;
}

.sec-head .bt {
    max-width: 800px;
    margin: 0 auto;
}

.svc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
}

.svc-card {
    position: relative;
    overflow: hidden;
    min-height: clamp(420px, 55vw, 640px);
    cursor: pointer;
}

.svc-img {
    position: absolute;
    inset: 0;
}



.svc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.58) saturate(.7);
    transition: all .7s;
}

.svc-card:hover .svc-img img {
    transform: scale(1.05);
    filter: brightness(.45) saturate(1);
}

.svc-bl {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, transparent, var(--champ), transparent);
}

.svc-bt {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(to right, var(--champ), transparent);
}

.svc-num {
    position: absolute;
    top: 32px;
    right: 32px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(60px, 8vw, 110px);
    font-weight: 700;
    color: rgba(212, 168, 67, .07);
    line-height: 1;
}

.svc-ic {
    position: absolute;
    top: 32px;
    left: 32px;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(212, 168, 67, .38);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: rgba(5, 13, 31, .5);
}

.svc-ic i {
    font-size: 30px;
    color: #D4A843;
}

/* 
.svc-ic i {
    font-size: 32px;
    background: linear-gradient(135deg, #D4A843, #F5E1A4);
    -webkit-text-fill-color: transparent;
} */

.svc-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(24px, 4vw, 46px) clamp(20px, 4vw, 40px);
    background: linear-gradient(to top, rgba(5, 13, 31, .98) 55%, transparent);
    transform: translateY(80px);
    transition: transform .5s cubic-bezier(.25, .46, .45, .94);
}

.svc-card:hover .svc-body {
    transform: translateY(0);
}

.svc-tag {
    font-family: 'Cinzel', serif;
    font-size: 8.5px;
    letter-spacing: 4px;
    color: var(--champ);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.svc-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 14px;
}

.svc-body h3 em {
    font-style: italic;
    color: var(--champ-p);
}

.svc-p {
    font-size: 13px;
    color: rgba(255, 255, 255, .58);
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0;
    transition: opacity .4s .1s;
}

.svc-card:hover .svc-p {
    opacity: 1;
}

.svc-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 22px;
    opacity: 0;
    transition: opacity .4s .15s;
}

.svc-card:hover .svc-chips {
    opacity: 1;
}

.chip {
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--champ);
    border: 1px solid rgba(212, 168, 67, .26);
    padding: 4px 10px;
}

.svc-lnk {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transition: opacity .4s .2s;
    border-bottom: 1px solid var(--champ);
    padding-bottom: 2px;
}

.svc-lnk::after {
    content: '→';
    color: var(--champ);
}

.svc-card:hover .svc-lnk {
    opacity: 1;
}

/* pillars */
.pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(212, 168, 67, .1);
    margin-top: 3px;
}

.pl {
    padding: clamp(30px, 4vw, 50px) 20px;
    text-align: center;
    /* border-right: 1px solid rgba(212, 168, 67, .1); */
    transition: background .3s;
}

.pl:last-child {
    border-right: none;
}

.pl:hover {
    background: rgba(212, 168, 67, .04);
}

.pl-n {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 700;
    color: var(--champ);
    line-height: 1;
}

.pl-n sup {
    font-size: .5em;
}

.pl-l {
    font-family: 'Cinzel', serif;
    font-size: 8.5px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .36);
    margin-top: 7px;
}



/* ===================== PRODUCTS ===================== */
.products {
    padding: clamp(60px, 8vw, 110px) 5%;
    background: var(--navy-mid);
}

.prod-head {
    text-align: center;
    margin-bottom: clamp(30px, 4vw, 50px);
}

.prod-head .eyebrow {
    justify-content: center;
}

.prod-head .eyebrow::before {
    display: none;
}

.prod-head .g-rule {
    margin: 0 auto 0;
}

.prod-head .sec-t {
    color: var(--white);
}

.tabs {
    display: flex;
    justify-content: center;
    margin: clamp(20px, 3vw, 36px) 0;
    border: 1px solid rgba(212, 168, 67, .2);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    
}

.tab-btn {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 13px clamp(18px, 3vw, 34px);
    color: rgba(255, 255, 255, .38);
    transition: all .3s ease;
    position: relative;
    cursor: pointer;
    font-weight: 700;
}

.tab-btn:hover:not(.on) {
    animation: tabHover .3s ease forwards;
}

.tab-btn.on {
    background: var(--champ);
    color: var(--navy);
    animation: tabActivate .4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-weight: 700;
}

.prod-panel {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
}

.prod-panel.on {
    display: grid;
}

.p-item {
    position: relative;
    overflow: hidden;
    height: clamp(180px, 20vw, 300px);
}

.p-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.6);
    transition: all .5s;
}

.p-item:hover img {
    transform: scale(1.06);
    filter: brightness(.82);
}

.p-tl,
.p-br {
    position: absolute;
    width: 17px;
    height: 17px;
    opacity: 0;
    transition: opacity .4s;
    z-index: 2;
}

.p-tl {
    top: 10px;
    left: 10px;
    border-top: 2px solid var(--champ);
    border-left: 2px solid var(--champ);
}

.p-br {
    bottom: 10px;
    right: 10px;
    border-bottom: 2px solid var(--champ);
    border-right: 2px solid var(--champ);
}

.p-item:hover .p-tl,
.p-item:hover .p-br {
    opacity: 1;
}

.p-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 13, 31, .88), transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
}

.p-name {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
}

.p-sub {
    font-size: 11px;
    color: var(--champ);
    margin-top: 3px;
}

/* ===================== ABOUT ===================== */
.about {
    padding: clamp(60px, 8vw, 120px) 5%;
    background: linear-gradient(to bottom, var(--navy-mid), var(--navy));
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    right: -150px;
    top: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(212, 168, 67, .05);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 6vw, 90px);
    align-items: center;
}

/* visual */
.ab-vis {
    position: relative;
    margin-bottom: 0;
}

.ab-frame {
    padding: 12px;
    border: 1px solid rgba(212, 168, 67, .18);
    position: relative;
}
/* Gold shimmer sweep pseudo on frame */
.ab-frame::after{
  content:'';
  position:absolute;inset:0;
  background:linear-gradient(
    115deg,
    transparent 20%,
    rgba(212,168,67,.14) 38%,
    rgba(255,240,180,.32) 50%,
    rgba(212,168,67,.14) 62%,
    transparent 80%
  );
  transform:translateX(-160%) skewX(-18deg);
  z-index:4;pointer-events:none;
  transition:none;
}

/* Shimmer triggered by JS class */
.ab-vis.shimmer .ab-frame::after{
  animation:abShimmer 1.2s ease 0.15s both;
}

.ab-frame::before {
    content: '';
    position: absolute;
    top: -7px;
    left: -7px;
    right: -7px;
    bottom: -7px;
    border: 1px solid rgba(212, 168, 67, .07);
}


/* Ken Burns on main image — slow continuous zoom+drift */
/* @keyframes kenBurns{
  0%  {transform:scale(1)    translate(0,0);}
  25% {transform:scale(1.06) translate(-1%,-1%);}
  50% {transform:scale(1.1)  translate(1.5%, 0.8%);}
  75% {transform:scale(1.06) translate(-0.5%, 1%);}
  100%{transform:scale(1)    translate(0,0);}
} */
.ab-main {
    width: 100%;
    height: clamp(280px, 35vw, 460px);
    overflow: hidden;
}

@keyframes imgBreathe {
  0%, 100% { transform: scale(1);    filter: brightness(.72) saturate(.85); }
  50%       { transform: scale(1.04); filter: brightness(.78) saturate(.95); }
}
.ab-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.72) saturate(.85);
     transform-origin:center center;
  animation:imgBreathe 10s ease-in-out infinite;
  will-change:transform;
}

.ab-inset {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: clamp(120px, 18vw, 190px);
    height: clamp(120px, 18vw, 190px);
    overflow: hidden;
    border: 4px solid var(--navy-mid);
}

.ab-inset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.78);
}

/* Gold shimmer on inset too */
.ab-inset::after{
  content:'';
  position:absolute;inset:0;
  background:linear-gradient(
    115deg,
    transparent 20%,
    rgba(212,168,67,.18) 40%,
    rgba(255,240,180,.38) 50%,
    rgba(212,168,67,.18) 60%,
    transparent 80%
  );
  transform:translateX(-160%) skewX(-18deg);
  z-index:4;pointer-events:none;
}
.ab-vis.shimmer .ab-inset::after{
  animation:abShimmer 1.2s ease 0.5s both;
}
/* Inset entry animation */
@keyframes insetEntry{
  from{opacity:0;transform:translate(14px,14px) scale(.88);}
  to  {opacity:1;transform:translate(0,0) scale(1);}
}
.ab-vis.shimmer .ab-inset{
  animation:insetEntry 0.75s cubic-bezier(0.34,1.36,0.64,1) 0.45s both;
}

.ab-seal {
    position: absolute;
    top: -18px;
    left: -18px;
    z-index: 2;
    width: 70px;
    height: 70px;
    background: var(--navy-mid);
    border: 1px solid var(--champ);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity:0;transform:rotate(-150deg) scale(.4);

}


/* Seal spin-in */
@keyframes sealSpin{
  from{opacity:0;transform:rotate(-150deg) scale(.4);}
  to  {opacity:1;transform:rotate(0deg) scale(1);}
}
.ab-vis.shimmer .ab-seal{
  animation:sealSpin 0.7s cubic-bezier(0.34,1.46,0.64,1) 0.85s both;
}
/* Gentle glow pulse on seal after entry */
@keyframes sealGlow{
  0%,100%{box-shadow:0 0 0 0 rgba(212,168,67,0);}
  50%    {box-shadow:0 0 0 6px rgba(212,168,67,.15);}
}
.ab-vis.shimmer .ab-seal{
  animation:sealSpin 0.7s cubic-bezier(0.34,1.46,0.64,1) 0.85s both,
            sealGlow 3.5s ease-in-out 2s infinite;
}

/* Gold border pulse on frame */
@keyframes framePulse{
  0%,100%{border-color:rgba(212,168,67,.18);}
  50%    {border-color:rgba(212,168,67,.42);}
}
.ab-vis.shimmer .ab-frame{
  animation:framePulse 4s ease-in-out 1.5s infinite;
}

/* Shimmer keyframe */
@keyframes abShimmer{
  from{transform:translateX(-160%) skewX(-18deg);}
  to  {transform:translateX(260%)  skewX(-18deg);}
}

.seal-y {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--champ);
    line-height: 1;
}

.seal-t {
    font-family: 'Cinzel', serif;
    font-size: 5.5px;
    letter-spacing: 1px;
    color: var(--champ-p);
    text-transform: uppercase;
}

/* text */
.ab-txt .sec-t {
    color: var(--white);
}

.ab-txt .bt {
    margin-bottom: 28px;
}

.ab-grid4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    border: 1px solid rgba(212, 168, 67, .1);
    margin-bottom: 34px;
}

.ab-f {
    padding: clamp(16px, 2.5vw, 24px) clamp(14px, 2vw, 20px);
    background: rgba(255, 255, 255, .01);
    border-right: 1px solid rgba(212, 168, 67, .1);
    border-bottom: 1px solid rgba(212, 168, 67, .1);
}

.ab-f:nth-child(even) {
    border-right: none;
}

.ab-f:nth-last-child(-n+2) {
    border-bottom: none;
}

.af-ic {
    font-size: 22px;
    margin-bottom: 8px;
}

.af-t {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--champ);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.af-p {
    font-size: 12px;
    color: rgba(255, 255, 255, .38);
    line-height: 1.65;
}

.ab-acts {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
}

/* ===================== WHY US ===================== */
.why {
    padding: clamp(60px, 8vw, 110px) 5%;
    background: var(--navy);
    position: relative;
}

.why::before {
    content: 'SUTHALI';
    position: absolute;
    font-family: 'Cinzel', serif;
    font-size: clamp(60px, 14vw, 180px);
    font-weight: 700;
    color: rgba(255, 255, 255, .016);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: 18px;
    white-space: nowrap;
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(30px, 6vw, 80px);
    align-items: center;
}

.why-left .sec-t {
    color: var(--white);
}

.why-left .g-rule {
    background: linear-gradient(to right, var(--champ), transparent);
}

.why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.wc {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .05);
    padding: clamp(20px, 3vw, 30px) clamp(16px, 2.5vw, 26px);
    transition: all .3s;
}

.wc:hover {
    background: rgba(212, 168, 67, .06);
    border-color: rgba(212, 168, 67, .2);
}

.wc-ic {
    font-size: 26px;
    margin-bottom: 12px;
}

.wc-t {
    font-family: 'Cinzel', serif;
    font-size: 9.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--champ-l);
    margin-bottom: 9px;
}

.wc-p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .38);
    line-height: 1.75;
}

/* ===================== GALLERY ===================== */
.gallery {
    padding: clamp(60px, 8vw, 120px) 5% clamp(50px, 6vw, 90px);
    background: var(--navy-mid);
}

.gal-hd {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: clamp(28px, 4vw, 50px);
    flex-wrap: wrap;
    gap: 20px;
}

.gal-hd-l .eyebrow {
    margin-bottom: 8px;
}

.gal-hd-l .sec-t {
    color: var(--white);
    margin-bottom: 0;
}

.gal-grid {
    display: grid;
    grid-template-columns: 3fr 2fr 2fr;
    grid-template-rows: clamp(180px, 22vw, 280px) clamp(180px, 22vw, 280px);
    gap: 4px;
}

.g-item {
    position: relative;
    overflow: hidden;
}

.g-item:first-child {
    grid-row: span 2;
}

.g-item:nth-child(4) {
    grid-column: span 2;
}

.g-img {
    position: absolute;
    inset: 0;
}

.g-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.55);
    transition: all .55s;
}

.g-item:hover .g-img img {
    transform: scale(1.06);
    filter: brightness(.78);
}

.g-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 13, 31, .88), transparent 55%);
    opacity: 0;
    transition: opacity .4s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(14px, 2vw, 22px);
}

.g-item:hover .g-ov {
    opacity: 1;
}

.g-lbl {
    font-family: 'Cinzel', serif;
    font-size: 10.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
}

.g-sub {
    font-size: 11px;
    color: var(--champ);
    margin-top: 3px;
}

.g-tl,
.g-br {
    position: absolute;
    width: 18px;
    height: 18px;
    opacity: 0;
    transition: opacity .4s;
    z-index: 2;
}

.g-tl {
    top: 11px;
    left: 11px;
    border-top: 2px solid var(--champ);
    border-left: 2px solid var(--champ);
}

.g-br {
    bottom: 11px;
    right: 11px;
    border-bottom: 2px solid var(--champ);
    border-right: 2px solid var(--champ);
}

.g-item:hover .g-tl,
.g-item:hover .g-br {
    opacity: 1;
}

/* ===================== TESTIMONIALS ===================== */
.testi {
    padding: clamp(60px, 8vw, 110px) 5%;
    background: var(--navy-light);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    margin-top: clamp(30px, 4vw, 55px);
}

.t-card {
    padding: clamp(24px, 3.5vw, 38px) clamp(20px, 3vw, 30px);
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .05);
    transition: all .3s;
}

.t-card:hover {
    background: rgba(212, 168, 67, .05);
    border-color: rgba(212, 168, 67, .18);
}

.t-q {
    font-family: 'Cormorant Garamond', serif;
    font-size: 50px;
    color: var(--champ);
    line-height: .8;
    margin-bottom: 12px;
    opacity: .38;
}

.t-stars {
    color: var(--champ);
    font-size: 11px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.t-txt {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.82;
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 300;
}

.t-name {
    font-family: 'Cinzel', serif;
    font-size: 9.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--champ-l);
}

.t-co {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .28);
    margin-top: 3px;
}

/* ===================== CONTACT ===================== */
.contact {
    padding: clamp(60px, 8vw, 120px) 5%;
    background: linear-gradient(135deg, #020810 0%, var(--navy) 60%, #0a1535 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: clamp(30px, 6vw, 76px);
    align-items: start;
}

.c-left .sec-t {
    color: var(--white);
}

.c-left .bt {
    margin-bottom: 30px;
}

.c-info {
    border-top: 1px solid rgba(212, 168, 67, .1);
    margin-bottom: 28px;
}

.c-row {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid rgba(212, 168, 67, .1);
}

.c-ic {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 168, 67, .26);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.c-lbl {
    font-family: 'Cinzel', serif;
    font-size: 8.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--champ);
    margin-bottom: 3px;
    line-height: 1.4;
}

.c-val {
    font-size: 13.5px;
    color: var(--silver);
    font-family: sans-serif
}

.c-socs {
    display: flex;
    gap: 9px;
    margin-top: 22px;
}

.c-soc {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(212, 168, 67, .16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: rgba(255, 255, 255, .32);
    transition: all .3s;
}

.c-soc:hover {
    background: var(--champ);
    border-color: var(--champ);
    color: var(--navy);
}

.c-form {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(212, 168, 67, .15);
    padding: clamp(26px, 4vw, 50px) clamp(22px, 4vw, 44px);
    position: relative;
}

.c-form::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 36px;
    right: 36px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--champ), transparent);
}

.cf-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

.cf-sub {
    font-size: 12.5px;
    color: var(--body);
    margin-bottom: 28px;
}

.f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.fg {
    margin-bottom: 18px;
}

.fg label {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 8.5px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--champ);
    margin-bottom: 8px;
}

.fg input,
.fg select,
.fg textarea {
    width: 100%;
    background: rgba(255, 255, 255, .03);
    border: none;
    border-bottom: 1px solid rgba(212, 168, 67, .28);
    color: var(--white);
    font-family: 'Raleway', sans-serif;
    font-size: 13.5px;
    font-weight: 300;
    padding: 11px 4px;
    outline: none;
    transition: border-color .3s;
}

.fg input::placeholder,
.fg textarea::placeholder {
    color: rgba(255, 255, 255, .16);
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--champ);
}

.fg select {
    appearance: none;
    cursor: pointer;
}

.fg select option {
    background: var(--navy-mid);
}

.fg textarea {
    height: 100px;
    resize: none;
}

.btn-sub {
    width: 100%;
    padding: 16px;
    background: transparent;
    border: 1px solid var(--champ);
    color: var(--champ);
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .4s;
    position: relative;
    overflow: hidden;
}

.btn-sub::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--champ), var(--champ-l));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}

.btn-sub span {
    position: relative;
    z-index: 1;
}

.btn-sub:hover {
    color: var(--navy);
}

.btn-sub:hover::before {
    transform: scaleX(1);
}

/* ===================== FOOTER ===================== */
footer {
    background: #020810;
    padding: clamp(44px, 6vw, 68px) 5% clamp(20px, 3vw, 28px);
    border-top: 1px solid rgba(212, 168, 67, .1);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--champ) 30%, var(--champ-l) 50%, var(--champ) 70%, transparent);
}

.ft-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: clamp(24px, 4vw, 50px);
    padding-bottom: clamp(30px, 4vw, 50px);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.ft-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 16px;
}

.ft-logo img {
    height: 60px;
    /* Adjust based on your logo */
    width: auto;
    object-fit: contain;
    display: block;
}

.ft-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, .32);
    line-height: 1.85;
    margin-bottom: 20px;
    max-width: 280px;
}

.ft-certs {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.cert {
    border: 1px solid rgba(212, 168, 67, .2);
    padding: 4px 10px;
    font-family: 'Cinzel', serif;
    font-size: 7.5px;
    letter-spacing: 2px;
    color: var(--champ);
    text-transform: uppercase;
}

.ft-col h5 {
    font-family: 'Cinzel', serif;
    font-size: 9.5px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--champ);
    margin-bottom: 20px;
    padding-bottom: 9px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.ft-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ft-col ul li a {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .3);
    transition: color .3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ft-col ul li a::before {
    content: '›';
    color: var(--champ);
    opacity: 0;
    transition: opacity .3s;
}

.ft-col ul li a:hover {
    color: var(--champ-p);
}

.ft-col ul li a:hover::before {
    opacity: 1;
}

.ft-bot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 22px;
    flex-wrap: wrap;
    gap: 12px;
}

.ft-bot p {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .18);
}

.ft-bot span {
    color: var(--champ);
}

.ft-socs {
    display: flex;
    gap: 8px;
}

.f-soc {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: rgba(255, 255, 255, .28);
    transition: all .3s;
}

.f-soc:hover {
    background: var(--champ);
    border-color: var(--champ);
    color: var(--navy);
}