/* ============ PREMIUM TOKENS ============ */
:root {
    --ink: #0F0D09;
    --ink-2: #1A1610;
    --ink-3: #242019;
    --gold: #B8914A;
    --gold-light: #D4AF37;
    --gold-pale: #E8D5A3;
    --charcoal: #2A2620;
    --steel: #6B7280;
    --steel-light: #9CA3AF;
    --cream: #FAF7F0;
    --cream-2: #F0EBE0;
    --line: rgba(255, 255, 255, 0.08);
    --line-dark: rgba(15, 13, 9, 0.08);

    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'Space Grotesk', monospace;

    --maxw: 1240px;
    --transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--ink);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 36px;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.eyebrow {
    font-family: var(--font-mono);
    font-size: .7rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 40px;
    height: 1.5px;
    background: var(--gold);
    display: inline-block;
}

.section {
    padding: 110px 0;
}

@media (max-width:720px) {
    .section {
        padding: 70px 0;
    }
}

a:focus-visible,
button:focus-visible,
select:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ============ HEADER (FIXED HEIGHT + BADI LOGO) ============ */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(252, 252, 252, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgb(243, 170, 76);
}

.nav {
    max-width: var(--maxw);
    margin: 0 auto;
    height: 85px;
    /* FIXED navbar height */
    padding: 0 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    overflow: visible;
    /* Logo bahar nikal sake */
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
    overflow: visible;
    flex-shrink: 0;
}

.brand img {
    height: 80px;
    /* BADI LOGO */
    width: auto;
    object-fit: contain;
    margin-top: 0;
    flex-shrink: 0;
}

.navlinks {
    display: flex;
    align-items: center;
    gap: 2px;
}

.navlinks>li {
    position: relative;
}

.navlinks a.toplink {
    font-family: var(--font-mono);
    font-size: .9rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(0, 0, 0, 0.671);
    border-radius: 2px;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.navlinks a.toplink::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.navlinks a.toplink:hover {
    color: var(--gold);
}

.navlinks a.toplink:hover::after {
    width: 60%;
}

.caret {
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: var(--transition);
}

.has-dropdown:hover .caret {
    transform: rotate(225deg);
    margin-top: 2px;
}

.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 280px;
    background: var(--cream);
    border-radius: 4px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform-origin: top;
    scale: 0.95;
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 8px;
    z-index: 50;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    scale: 1;
}

.dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 3px;
    color: var(--ink);
    font-size: .85rem;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown a:hover {
    background: var(--cream-2);
    color: var(--gold);
    padding-left: 20px;
}

.dropdown .formula {
    font-family: var(--font-mono);
    font-size: .68rem;
    color: var(--gold);
    background: rgba(184, 145, 74, 0.1);
    padding: 2px 8px;
    border-radius: 20px;
    flex-shrink: 0;
    font-weight: 600;
}

/* Nav right side (CTA + Location Dropdown) */
.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-cta {
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--ink);
    padding: 10px 16px;
    border-radius: 2px;
    white-space: nowrap;
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(184, 145, 74, 0.3);
}

/* Location Dropdown */
.location-select-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.location-select-wrap svg {
    position: absolute;
    left: 10px;
    width: 14px;
    height: 14px;
    fill: none;
    stroke: var(--ink);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
    z-index: 1;
}

.location-select {
    font-family: var(--font-mono);
    font-size: .65rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: var(--cream);
    color: var(--ink);
    border: 1px solid var(--line-dark);
    border-radius: 2px;
    padding: 10px 12px 10px 30px;
    cursor: pointer;
    font-weight: 500;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: var(--transition);
    min-width: 110px;
}

.location-select:hover,
.location-select:focus {
    border-color: var(--gold);
    outline: none;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
}

.burger span {
    width: 22px;
    height: 2px;
    background: rgb(241, 153, 36);
    display: block;
    transition: var(--transition);
}

@media (max-width:1024px) {
    .navlinks {
        gap: 0;
    }

    .navlinks a.toplink {
        padding: 10px 10px;
        font-size: .65rem;
    }

    .location-select {
        min-width: 90px;
        font-size: .6rem;
        padding: 10px 8px 10px 28px;
    }
}

@media (max-width:920px) {
    .nav {
        padding: 0 20px;
    }

    .navlinks,
    .nav-right .location-select-wrap {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .burger {
        display: flex;
    }

    .brand img {
        height: 50px;
        /* Mobile pe thodi chhoti */
    }

    .nav.open .navlinks {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgb(207 164 78 / 97%);
        border-bottom: 1px solid var(--line);
        padding: 12px 22px 20px;
    }

    .nav.open .dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: var(--cream);
        box-shadow: none;
        margin: 4px 0 8px;
        display: none;
        min-width: 100%;
    }

    .nav.open .has-dropdown.open .dropdown {
        display: block;
    }

    .nav.open .dropdown a {
        color: var(--ink);
    }

    .nav.open .dropdown a:hover {
        background: var(--cream-2);
    }

    .nav.open .nav-cta {
        display: block;
        margin-top: 10px;
        text-align: center;
        background: var(--gold);
    }
}


/* ============ TOP BAR ============
   Sits ABOVE the sticky <header> as a normal (non-sticky) block.
   It scrolls away naturally; the header below keeps sticking at top:0
   exactly as it already does. Does not touch .nav / .brand / header{} rules. */

.topbar{
    background: var(--ink);
    color: var(--cream-2);
    padding: 9px 36px;
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .04em;
    border-bottom: 1px solid var(--line);
    position: relative;
    z-index: 1001; /* stays above header (1000) only while both are in flow; harmless once topbar scrolls off */
}

.topbar-inner{
    max-width: var(--maxw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.topbar-left,
.topbar-right{
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.topbar-item{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--cream-2);
    white-space: nowrap;
}

a.topbar-item:hover{
    color: var(--gold-light);
}

.topbar-ico{
    font-size: .85em;
    line-height: 1;
    opacity: .9;
}

.topbar-tag{
    color: var(--gold-light);
    opacity: .9;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px){
    .topbar{ padding: 9px 20px; font-size: .66rem; }
    .topbar-left,
    .topbar-right{ gap: 14px; }
}

@media (max-width: 780px){
    /* Drop the right-side tagline first — least critical info */
    .topbar-right .topbar-tag{ display: none; }
}

@media (max-width: 640px){
    /* Keep only phone on very small screens; email + location hide to save space */
    .topbar-left a.topbar-item:nth-child(2),
    .topbar-right{
        display: none;
    }
    .topbar-inner{ justify-content: center; }
}

/* ============ HERO SLIDER ============ */
.hero-slider {
    position: relative;
    height: 550px;
    min-height: 550px;
    max-height: 550px;
    overflow: hidden;
    background: var(--ink);
}

.slider-wrapper {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease, visibility 1.2s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 13, 9, 0.88) 0%, rgba(15, 13, 9, 0.55) 50%, rgba(15, 13, 9, 0.35) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 36px;
}

.slide-inner {
    max-width: 650px;
}

.slide-eyebrow {
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.slide-eyebrow::before {
    content: "";
    width: 50px;
    height: 1.5px;
    background: var(--gold);
    display: inline-block;
}

.slide h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    color: var(--cream);
    margin-bottom: 16px;
    font-weight: 800;
}

.slide h1 em {
    font-style: normal;
    color: var(--gold-light);
}

.slide p {
    font-size: .95rem;
    color: rgba(250, 247, 240, 0.8);
    max-width: 50ch;
    margin-bottom: 26px;
    font-weight: 300;
    line-height: 1.6;
}

.slide-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 14px 26px;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--gold);
    color: var(--ink);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(184, 145, 74, 0.35);
}

.btn-ghosts {
    border: 1px solid rgba(243, 210, 131, 0.4);
    color: black;
    background: #FAF7F0;
}

.btn-ghosts:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.slider-nav {
    position: absolute;
    bottom: 24px;
    right: 36px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 35px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border: 0;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dot.active {
    background: var(--gold);
    width: 50px;
}

.slider-arrows {
    position: absolute;
    bottom: 16px;
    left: 36px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.slider-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: var(--cream);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    transition: var(--transition);
    border-radius: 2px;
}

.slider-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
}

.scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: .6rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        transform: scaleY(0.3);
        opacity: 0.3;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

@media (max-width:720px) {
    .hero-slider {
        height: 480px;
        min-height: 480px;
        max-height: 480px;
    }

    .slider-arrows {
        display: none;
    }

    .slider-nav {
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
    }

    .scroll-indicator {
        display: none;
    }
}

/* ============ STATS BAR ============ */
.stats-bar {
    background: var(--ink);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

@media (max-width:720px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 28px;
    }
}

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: var(--line);
}

@media (max-width:720px) {
    .stat-item:nth-child(2)::after {
        display: none;
    }
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: .65rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--steel-light);
    margin-top: 6px;
}

/* ============ ABOUT SECTION ============ */
.about-section {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

@media (max-width:920px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.about-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 22px;
    color: var(--ink);
}

.about-content h2 em {
    font-style: normal;
    color: var(--gold);
}

.about-content p {
    color: #3D382E;
    margin-bottom: 18px;
    font-size: 1rem;
    max-width: 60ch;
}

.about-content p:last-of-type {
    margin-bottom: 0;
}

.about-visual {
    position: relative;
}

.about-img-wrappers {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 13, 9, 0.15);
}

.about-img-wrappers img {
    width: 100%;
    height: 420px!important;
    object-fit: cover;
}

.about-img-wrappers::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15, 13, 9, 0.4));
}

.about-badge {
    position: absolute;
    bottom: -22px;
    right: -22px;
    background: var(--gold);
    color: var(--ink);
    padding: 20px 24px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(184, 145, 74, 0.3);
}

.about-badge .badge-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
}

.about-badge .badge-label {
    font-family: var(--font-mono);
    font-size: .6rem;
    letter-spacing: .15em;
    text-transform: uppercase;
}

/* ============ PILLARS ============ */
.pillars-section {
    background: var(--cream-2);
}

.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width:820px) {
    .pillars {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

.pillar {
    background: var(--cream);
    border-radius: 6px;
    padding: 40px 34px;
    border: 1px solid var(--line-dark);
    transition: var(--transition);
}

.pillar:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 13, 9, 0.08);
}

.pillar .mark {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: var(--font-mono);
    font-size: .8rem;
    margin-bottom: 22px;
}

.pillar h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
    color: var(--ink);
}

.pillar p {
    color: #555042;
    font-size: .94rem;
    line-height: 1.7;
}

/* ============ WHY US ============ */
.why-section {
    background: var(--ink);
    color: var(--cream);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width:920px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

.why-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 18px;
}

.why-content h2 em {
    font-style: normal;
    color: var(--gold);
}

.why-content p {
    color: var(--steel-light);
    max-width: 48ch;
}

.why-list {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: var(--ink-2);
    border-radius: 4px;
    border-left: 3px solid var(--gold);
    font-size: .92rem;
    color: var(--cream-2);
}

.why-item .tick {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .6rem;
    flex-shrink: 0;
    font-weight: 700;
}

.why-visual {
    display: grid;
    gap: 16px;
}

.why-visual-card {
    background: var(--ink-2);
    border-radius: 6px;
    padding: 28px 24px;
    text-align: center;
    border: 1px solid var(--line);
    transition: var(--transition);
}

.why-visual-card:hover {
    border-color: var(--gold);
}

.why-visual-card .icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.why-visual-card h4 {
    font-size: 1rem;
    color: var(--cream);
    margin-bottom: 6px;
}

.why-visual-card p {
    font-size: .82rem;
    color: var(--steel-light);
}

/* ============ PRODUCTS SECTION ============ */
.products-section {
    background: var(--cream);
}

.products-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.products-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 16px;
}

.products-header h2 em {
    font-style: normal;
    color: var(--gold);
}

.products-header p {
    color: #555042;
    font-size: 1rem;
}

.prod-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width:760px) {
    .prod-grid {
        grid-template-columns: 1fr;
    }

    .about-img-wrapper img{
        height: 320px!important;
    }
}

.prod-card {
    background: var(--cream-2);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--line-dark);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.prod-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(15, 13, 9, 0.12);
}

.prod-card-img {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.prod-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.prod-card:hover .prod-card-img img {
    transform: scale(1.05);
}

.prod-card-img .prod-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--ink);
    font-family: var(--font-mono);
    font-size: .65rem;
    letter-spacing: .1em;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.prod-card-body {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-grow: 1;
}

.prod-card-body h3 {
    font-size: 1.3rem;
    color: var(--ink);
}

.prod-card-body p {
    color: #555042;
    font-size: .9rem;
    flex-grow: 1;
}

.prod-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.prod-specs span {
    font-family: var(--font-mono);
    font-size: .65rem;
    letter-spacing: .05em;
    background: rgba(184, 145, 74, 0.12);
    color: var(--ink);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.prod-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-top: 6px;
}

.prod-link .arrow {
    transition: var(--transition);
}

.prod-card:hover .prod-link .arrow {
    transform: translateX(6px);
}

/* ============ GALLERY SECTION ============ */
.gallery-section {
    background: var(--ink);
    color: var(--cream);
}

.gallery-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.gallery-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 14px;
}

.gallery-header h2 em {
    font-style: normal;
    color: var(--gold);
}

.gallery-header p {
    color: var(--steel-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

@media (max-width:920px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:520px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    aspect-ratio: 1/1.1;
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 13, 9, 0.85));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: var(--font-mono);
    font-size: .65rem;
    letter-spacing: .12em;
    color: var(--gold-light);
}

/* ============ CONTACT SECTION ============ */
.contact-section {
    background: var(--cream-2);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 13, 9, 0.1);
}

@media (max-width:860px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info {
    background: var(--ink);
    color: var(--cream);
    padding: 50px 42px;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 14px;
}

.contact-info>p {
    color: var(--steel-light);
    margin-bottom: 32px;
    font-size: .92rem;
}

.contact-row {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    align-items: flex-start;
}

.contact-row:first-of-type {
    border-top: 0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(184, 145, 74, 0.15);
    border: 1px solid rgba(184, 145, 74, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-row .label {
    font-family: var(--font-mono);
    font-size: .62rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.contact-row .value {
    font-size: .95rem;
    color: var(--cream);
}

.contact-row .value a:hover {
    color: var(--gold);
}

.contact-map {
    position: relative;
    min-height: 380px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
    display: block;
    filter: grayscale(0.2) contrast(1.05);
}

/* ============ FOOTER ============ */
footer {
    background: var(--ink);
    color: var(--steel-light);
    padding: 70px 0 24px;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width:820px) {
    .foot-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 36px;
    }
}

@media (max-width:520px) {
    .foot-grid {
        grid-template-columns: 1fr;
    }
}

.foot-brand img {
    height: 70px;
    width: 120px;
    margin-bottom: 16px;
    background: #fafafa;
    padding: 3px;
    border-radius: 2px;
}

.foot-brand p {
    font-size: .84rem;
    max-width: 32ch;
    line-height: 1.7;
}

footer h5 {
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    font-weight: 600;
}

footer ul li {
    margin-bottom: 10px;
    font-size: .86rem;
}

footer ul a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.foot-bottom {
    border-top: 1px solid var(--line);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: .68rem;
    color: var(--steel);
}


/* ============ PAGE HERO ============ */
.page-hero {
    background: var(--ink);
    color: var(--cream);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(600px 400px at 85% 15%, rgba(184, 145, 74, 0.15), transparent 60%);
    pointer-events: none;
}

.page-hero .wrap {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 12px;
}

.page-hero h1 em {
    font-style: normal;

    color: var(--gold-light);
}

.page-hero p {
    color: var(--steel-light);
    max-width: 60ch;
    font-size: .95rem;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    align-items: center;
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--steel-light);
    margin-bottom: 18px;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb .sep {
    color: var(--gold);
}

.breadcrumb .current {
    color: var(--gold);
}

/* ============ ABOUT MAIN SECTION ============ */
.about-main-section {
    background: var(--cream);
}

.about-main-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

@media (max-width:920px) {
    .about-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.about-main-content h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    margin-bottom: 18px;
}

.about-main-content h2 em {
    font-style: normal;
    color: var(--gold);
}

.about-main-content p {
    color: #3D382E;
    margin-bottom: 14px;
    font-size: .95rem;
    max-width: 60ch;
}

.about-main-content strong {
    color: var(--ink);
    font-weight: 600;
}

.about-visual {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 13, 9, 0.15);
}

.about-img-wrapper img {
    width: 100%;
    height: 680px;
    object-fit: cover;
}

.about-img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15, 13, 9, 0.4));
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--ink);
    padding: 16px 20px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(184, 145, 74, 0.3);
}

.about-badge .badge-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
}

.about-badge .badge-label {
    font-family: var(--font-mono);
    font-size: .5rem;
    letter-spacing: .15em;
    text-transform: uppercase;
}

/* ============ LOCATION SECTION ============ */
.location-section {
    background: var(--cream-2);
    padding: 50px 0;
    border-radius: 8px;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width:920px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
}

.location-content h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.location-content h3 em {
    font-style: normal;
    color: var(--gold);
}

.location-content p {
    color: #3D382E;
    font-size: .92rem;
    max-width: 50ch;
}

.location-highlights {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.location-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    background: var(--cream);
    border-radius: 4px;
    border-left: 3px solid var(--gold);
}

.location-highlight-item .icon {
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.location-highlight-item p {
    font-size: .85rem;
    color: #3D382E;
    max-width: none;
}

/* ============ CTA SECTION ============ */
.cta-section {
    background: var(--ink);
    color: var(--cream);
    text-align: center;
    padding: 60px 0;
    border-bottom: 2px solid #f3bb4b;
}

.cta-section h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    margin-bottom: 12px;
}

.cta-section h2 em {
    font-style: normal;
    color: var(--gold-light);
}

.cta-section p {
    color: var(--steel-light);
    max-width: 50ch;
    margin: 0 auto 24px;
    font-size: .9rem;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    font-family: var(--font-mono);
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 14px 26px;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--gold);
    color: var(--ink);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(184, 145, 74, 0.35);
}

.btn-ghost {
    border: 1px solid rgba(250, 247, 240, 0.4);
    color: var(--cream);
    background: transparent;
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}



/* ============ GALLERY FILTER ============ */
.gallery-filter-section {
    background: var(--cream);
    padding: 30px 0 0;
}

.filter-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 10px 20px;
    border: 1px solid var(--line-dark);
    background: var(--cream);
    color: var(--ink);
    cursor: pointer;
    border-radius: 2px;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
}


.gallery-main-section {
    background: var(--cream);
    padding: 40px 0 80px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width:920px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:520px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    aspect-ratio: 1/1;
    transition: var(--transition);
    background: var(--cream-2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 13, 9, 0.85));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay .gallery-category {
    font-family: var(--font-mono);
    font-size: .58rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.gallery-overlay .gallery-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--cream);
    font-weight: 600;
}

/* ============ LIGHTBOX ============ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 13, 9, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    cursor: pointer;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: var(--cream);
    cursor: pointer;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 2001;
}

.lightbox-close:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold-light);
    text-align: center;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: var(--cream);
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 2001;
}

.lightbox-nav:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}


/* ============ PAGE HERO ============ */
.page-hero {
    background: var(--ink);
    color: var(--cream);
    padding: 55px 0 45px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(600px 400px at 85% 15%, rgba(184, 145, 74, 0.15), transparent 60%);
    pointer-events: none;
}

.page-hero .wrap {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);

    margin-bottom: 10px;
}

.page-hero h1 em {
    font-style: normal;
    color: var(--gold-light);
}

.page-hero p {
    color: var(--steel-light);
    max-width: 60ch;
    font-size: .92rem;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    align-items: center;
    font-family: var(--font-mono);
    font-size: .65rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--steel-light);
    margin-bottom: 16px;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb .sep {
    color: var(--gold);
}

.breadcrumb .current {
    color: var(--gold);
}

/* ============ CONTACT INFO CARDS ============ */
.contact-cards-section {
    background: var(--cream);
    padding: 50px 0 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width:920px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:520px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

.contact-card {
    background: var(--cream-2);
    border-radius: 6px;
    padding: 28px 22px;
    text-align: center;
    border: 1px solid var(--line-dark);
    border-top: 3px solid var(--gold);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(15, 13, 9, 0.08);
}

.contact-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 14px;
}

.contact-card .icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: var(--gold-light);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-card h3 {
    font-size: .85rem;
    font-family: var(--font-mono);
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-card p,
.contact-card a {
    font-size: .9rem;
    color: var(--ink);
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--gold);
}

/* ============ MAIN CONTACT SECTION ============ */
.contact-main-section {
    background: var(--cream);
    padding: 40px 0 70px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 13, 9, 0.1);
}

@media (max-width:860px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form */
.contact-form-wrap {
    background: var(--cream-2);
    padding: 40px 36px;
}

.contact-form-wrap h2 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.contact-form-wrap>p {
    color: #555042;
    font-size: .88rem;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: .62rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 6px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line-dark);
    border-radius: 3px;
    background: var(--cream);
    font-family: var(--font-body);
    font-size: .88rem;
    color: var(--ink);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(184, 145, 74, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width:520px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.btn-submit {
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--ink);
    padding: 14px 30px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(184, 145, 74, 0.35);
}

.btn-submit svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--ink);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.form-success {
    display: none;
    background: rgba(122, 155, 118, 0.15);
    border: 1px solid #7A9B76;
    color: #4A6B46;
    padding: 14px 18px;
    border-radius: 4px;
    font-size: .88rem;
    margin-top: 16px;
    text-align: center;
}

.form-success.show {
    display: block;
}

/* Map */
.contact-map-wrap {
    background: var(--ink);
    position: relative;
    min-height: 500px;
}

.contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: 0;
    display: block;
    filter: grayscale(0.15) contrast(1.05);
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--ink);
    color: var(--cream);
    padding: 16px 20px;
    border-radius: 4px;
    border-left: 3px solid var(--gold);
    max-width: 260px;
    z-index: 10;
}

.map-overlay h3 {
    font-size: .9rem;
    color: var(--gold-light);
    margin-bottom: 6px;
    font-family: var(--font-mono);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.map-overlay p {
    font-size: .78rem;
    color: var(--steel-light);
    line-height: 1.5;
}

/* ============ CTA SECTION ============ */
.cta-section {
    background: var(--ink);
    color: var(--cream);
    text-align: center;
    padding: 55px 0;
}

.cta-section h2 {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    margin-bottom: 10px;
}

.cta-section h2 em {
    font-style: normal;
    color: var(--gold-light);
}

.cta-section p {
    color: var(--steel-light);
    max-width: 50ch;
    margin: 0 auto 22px;
    font-size: .88rem;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    font-family: var(--font-mono);
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 14px 26px;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--gold);
    color: var(--ink);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(184, 145, 74, 0.35);
}

.btn-ghost {
    border: 1px solid rgba(250, 247, 240, 0.4);
    color: var(--cream);
    background: transparent;
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}





/* ============================================================
   PRODUCT DETAIL PAGE STYLES
   Reuses the same design tokens as the main site
   (Playfair Display / Inter / Space Grotesk, gold+ink+cream theme)
   If :root tokens are already defined globally via your main
   stylesheet, this block is harmless (same values, safe to keep
   or remove).
   ============================================================ */


.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 36px;
}

.section {
    padding: 90px 0;
}

@media (max-width:720px) {
    .section {
        padding: 56px 0;
    }
}

.eyebrow {
    font-family: var(--font-mono);
    font-size: .7rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 40px;
    height: 1.5px;
    background: var(--gold);
    display: inline-block;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease, transform .8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.btn {
    font-family: var(--font-mono);
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 16px 28px;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 0;
}

.btn-primary {
    background: var(--gold);
    color: var(--ink);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(184, 145, 74, .35);
}

.btn-ghost {
    border: 1px solid rgba(15, 13, 9, .25);
    color: var(--ink);
    background: transparent;
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-ghost.on-dark {
    border-color: rgba(250, 247, 240, .4);
    color: var(--cream);
}

.btn-ghost.on-dark:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

/* ============ PAGE HERO / BREADCRUMB ============ */
.page-hero {
    background: var(--ink);
    color: var(--cream);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(600px 400px at 85% 15%, rgba(184, 145, 74, .15), transparent 60%);
    pointer-events: none;
}

.page-hero .wrap {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--steel-light);
    margin-bottom: 18px;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb .sep {
    color: var(--gold);
}

.breadcrumb .current {
    color: var(--gold);
}

.page-hero-grid {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.1;
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    margin-bottom: 10px;
}

.page-hero h1 .formula {
    color: var(--gold-light);
}

.page-hero p.tagline {
    color: var(--steel-light);
    max-width: 60ch;
    font-size: .98rem;
}

.hero-formula-chip {
    font-family: var(--font-mono);
    font-size: .8rem;
    letter-spacing: .06em;
    color: var(--gold);
    background: rgba(184, 145, 74, .12);
    border: 1px solid rgba(184, 145, 74, .35);
    padding: 9px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

/* ============ PRODUCT OVERVIEW ============ */
.product-overview {
    background: var(--cream);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: start;
}

@media (max-width:920px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

.overview-content h2 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -.01em;
    font-size: clamp(1.7rem, 2.8vw, 2.2rem);
    margin-bottom: 18px;
    color: var(--ink);
}

.overview-content p {
    color: #3D382E;
    font-size: 1rem;
    margin-bottom: 16px;
    max-width: 62ch;
}

.overview-content p:last-of-type {
    margin-bottom: 0;
}

.quick-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 26px 0 30px;
}

.quick-specs span {
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .04em;
    background: rgba(184, 145, 74, .12);
    color: var(--ink);
    padding: 8px 14px;
    border-radius: 20px;
    font-weight: 500;
}

.overview-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.overview-visual {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1/1.05;
    box-shadow: 0 30px 60px rgba(15, 13, 9, .15);
    background: var(--tile-grad, linear-gradient(160deg, #3a382f, #141310));
}

.overview-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    display: block;
}

.overview-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
    opacity: .25;
    pointer-events: none;
}

.overview-visual .visual-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .08em;
    background: rgba(15, 13, 9, .75);
    backdrop-filter: blur(6px);
    color: var(--gold-light);
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid rgba(184, 145, 74, .4);
}

/* Fallback text mark - only shown if you don't have a product photo yet */
.overview-visual .formula-mark {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--cream);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.overview-visual .formula-mark .sym {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(3rem, 7vw, 4.5rem);
    line-height: 1;
}

.overview-visual .formula-mark .lbl {
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-top: 10px;
}

/* ============ SPECIFICATIONS TABLE ============ */
.spec-section {
    background: var(--cream-2);
}

.spec-header {
    max-width: 640px;
    margin-bottom: 40px;
}

.spec-header h2 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -.01em;
    font-size: clamp(1.7rem, 2.8vw, 2.2rem);
    margin-bottom: 14px;
    color: var(--ink);
}

.spec-header p {
    color: #555042;
    font-size: .96rem;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--cream);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 13, 9, .05);
}

.spec-table th,
.spec-table td {
    text-align: left;
    padding: 16px 22px;
    font-size: .92rem;
    border-bottom: 1px solid var(--line-dark);
}

.spec-table th {
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .12em;
    color: var(--gold);
    background: var(--ink);
    color: var(--gold-light);
}

.spec-table tr:last-child td {
    border-bottom: 0;
}

.spec-table tr:nth-child(even) td {
    background: rgba(184, 145, 74, .04);
}

.spec-table td:first-child {
    font-weight: 600;
    color: var(--ink);
    width: 38%;
}

.spec-table td {
    color: #3D382E;
}


@media (max-width:640px) {
    .spec-table {
        font-size: .85rem;
    }

    .spec-table th,
    .spec-table td {
        padding: 12px 14px;
    }
}

/* ============ APPLICATIONS ============ */
.applications-section {
    background: var(--cream);
}

.app-header {
    max-width: 640px;
    margin-bottom: 40px;
}

.app-header h2 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -.01em;
    font-size: clamp(1.7rem, 2.8vw, 2.2rem);
    margin-bottom: 14px;
    color: var(--ink);
}

.app-header p {
    color: #555042;
    font-size: .96rem;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

@media (max-width:920px) {
    .app-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:520px) {
    .app-grid {
        grid-template-columns: 1fr;
    }
}

.app-card {
    background: var(--cream-2);
    border: 1px solid var(--line-dark);
    border-radius: 6px;
    padding: 26px 22px;
    transition: var(--transition);
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 34px rgba(15, 13, 9, .08);
    border-color: var(--gold);
}

.app-card .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 16px;
}

.app-card h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--ink);
    margin-bottom: 8px;
}

.app-card p {
    font-size: .85rem;
    color: #555042;
    line-height: 1.6;
}

/* ============ PACKAGING & QUALITY ============ */
.package-section {
    background: var(--ink);
    color: var(--cream);
}

.package-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width:860px) {
    .package-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

.package-block h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--cream);
}

.package-block h3 em {
    font-style: normal;
    color: var(--gold);
}

.package-block p {
    color: var(--steel-light);
    font-size: .94rem;
    margin-bottom: 16px;
}

.package-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.package-list li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--ink-2);
    border-left: 3px solid var(--gold);
    border-radius: 4px;
    padding: 14px 16px;
    font-size: .88rem;
    color: var(--cream-2);
}

.package-list li .tick {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .58rem;
    flex-shrink: 0;
    font-weight: 700;
    margin-top: 1px;
}

/* ============ RELATED PRODUCTS ============ */
.related-section {
    background: var(--cream-2);
}

.related-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.related-header h2 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -.01em;
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    margin-bottom: 12px;
    color: var(--ink);
}

.related-header h2 em {
    font-style: normal;
    color: var(--gold);
}

.related-header p {
    color: #555042;
    font-size: .92rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width:820px) {
    .related-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

.related-card {
    background: var(--cream);
    border: 1px solid var(--line-dark);
    border-radius: 6px;
    padding: 26px 24px;
    transition: var(--transition);
    display: block;
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 13, 9, .1);
    border-color: var(--gold);
}

.related-card .formula-tag {
    font-family: var(--font-mono);
    font-size: .7rem;
    color: var(--gold);
    background: rgba(184, 145, 74, .12);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 14px;
    font-weight: 600;
}

.related-card h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--ink);
    margin-bottom: 8px;
}

.related-card p {
    font-size: .85rem;
    color: #555042;
    margin-bottom: 14px;
}

.related-card .link {
    font-family: var(--font-mono);
    font-size: .7rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

/* ============ CTA BANNER ============ */
.cta-banner {
    background: var(--ink);
    color: var(--cream);
    text-align: center;
    padding: 70px 0;
    border-bottom: 2px solid rgb(238, 167, 73);
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    margin-bottom: 12px;
}

.cta-banner h2 em {
    font-style: normal;
    color: var(--gold-light);
}

.cta-banner p {
    color: var(--steel-light);
    max-width: 52ch;
    margin: 0 auto 26px;
    font-size: .94rem;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ FOOTER SOCIAL ICONS ============ */
.social-links{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.social-links a{
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--steel-light);
    transition: var(--transition);
    flex-shrink: 0;
}

.social-links a svg{
    width: 16px;
    height: 16px;
}

.social-links a:hover{
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
    transform: translateY(-2px);
}
