:root {
    --navy: #0a1628;
    --navy-mid: #112240;
    --navy-light: #1a3a5c;
    --gold: #c9a84c;
    --gold-light: #e8c87a;
    --cream: #f8f4ed;
    --slate: #8899aa;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--cream);
    color: var(--navy);
    overflow-x: hidden;
}

h1,
h2,
h3,
.serif {
    font-family: 'Playfair Display', serif;
}

/* ── NAV ── */
nav {
    background: var(--navy);
    border-bottom: 1px solid rgba(201, 168, 76, .2);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    letter-spacing: .04em;
}

.logo-dot {
    color: var(--gold);
}

.nav-link {
    color: rgba(255, 255, 255, .75);
    font-size: .875rem;
    font-weight: 500;
    transition: color .2s;
}

.nav-link:hover {
    color: var(--gold-light);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    font-weight: 600;
    letter-spacing: .03em;
    border-radius: 4px;
    transition: opacity .2s, transform .15s;
}

.btn-primary:hover {
    opacity: .9;
    transform: translateY(-1px);
}

/* ── HERO ── */
.hero-bg {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(201, 168, 76, .08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(17, 34, 64, .9) 0%, transparent 60%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, .04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(201, 168, 76, .12);
    border: 1px solid rgba(201, 168, 76, .3);
    border-radius: 100px;
    padding: .35rem 1rem;
    font-size: .75rem;
    color: var(--gold-light);
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.15;
    color: #fff;
}

.hero-title span {
    color: var(--gold);
}

.divider-gold {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
}

/* ── SECTION LABELS ── */
.section-label {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--navy);
    line-height: 1.2;
}

/* ── PRODUCT CARDS ── */
.product-card {
    background: var(--navy);
    border-radius: 12px;
    border: 1px solid rgba(201, 168, 76, .18);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    position: relative;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(10, 22, 40, .4), 0 0 0 1px rgba(201, 168, 76, .25);
}

.product-icon-wrap {
    width: 52px;
    height: 52px;
    background: rgba(201, 168, 76, .12);
    border: 1px solid rgba(201, 168, 76, .25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-tag {
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: rgba(201, 168, 76, .12);
    border: 1px solid rgba(201, 168, 76, .25);
    color: var(--gold-light);
    border-radius: 100px;
    padding: .2rem .65rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    color: rgba(255, 255, 255, .7);
    font-size: .875rem;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--gold-light);
    font-size: .875rem;
    font-weight: 600;
    transition: gap .2s;
}

.product-link:hover {
    gap: .7rem;
}

/* ── VALUES / WHY ── */
.value-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(10, 22, 40, .08);
    transition: box-shadow .2s;
}

.value-card:hover {
    box-shadow: 0 8px 32px rgba(10, 22, 40, .08);
}

.value-icon-wrap {
    width: 44px;
    height: 44px;
    background: rgba(201, 168, 76, .1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── STATS ── */
.stats-bg {
    background: var(--navy);
    border-top: 1px solid rgba(201, 168, 76, .15);
    border-bottom: 1px solid rgba(201, 168, 76, .15);
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold-light);
    line-height: 1;
}

/* ── COMPLIANCE BAND ── */
.compliance-bg {
    background: linear-gradient(135deg, var(--navy-mid), var(--navy));
    border-top: 1px solid rgba(201, 168, 76, .15);
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(201, 168, 76, .08);
    border: 1px solid rgba(201, 168, 76, .2);
    border-radius: 6px;
    padding: .5rem 1rem;
    color: rgba(255, 255, 255, .85);
    font-size: .8rem;
    font-weight: 500;
}

/* ── CONTACT ── */
.contact-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(10, 22, 40, .1);
    box-shadow: 0 4px 24px rgba(10, 22, 40, .06);
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(10, 22, 40, .07);
}

.info-row:last-child {
    border-bottom: none;
}

.info-icon {
    width: 36px;
    height: 36px;
    background: rgba(201, 168, 76, .1);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

footer {
    background: var(--navy);
    border-top: 1px solid rgba(201, 168, 76, .12);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp .7s ease both;
}

.delay-1 {
    animation-delay: .15s;
}

.delay-2 {
    animation-delay: .3s;
}

.delay-3 {
    animation-delay: .45s;
}

.delay-4 {
    animation-delay: .6s;
}