:root {
    --gold: #b8960c;
    --gold-light: #d4af37;
    --gold-pale: #f5e9c0;
    --charcoal: #1a1a1a;
    --off-white: #fafaf8;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Jost', sans-serif;
    background: #ffffff;
    color: var(--charcoal);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ── PAGE SYSTEM ── */
.page {
    display: none;
    width: 100%;
    overflow-x: hidden;
}

.page.active {
    display: block;
}

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184, 150, 12, 0.15);
    height: 72px;
    display: flex;
    align-items: center;
    transition: box-shadow 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    flex-shrink: 0;
}

.logo-img {
    height: 62px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.82rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 400;
    position: relative;
    padding-bottom: 2px;
    cursor: pointer;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s;
}

/* ── MOBILE OVERLAY ── */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1099;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-overlay.open {
    display: block;
    opacity: 1;
}

/* ── MOBILE PANEL ── */
.mobile-panel {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    width: 75%;
    max-width: 300px;
    background: #ffffff;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.12);
}

.mobile-panel.open {
    left: 0;
}

.mobile-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(184, 150, 12, 0.15);
    min-height: 72px;
}

.mobile-panel-header .menu-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: var(--charcoal);
}

.mobile-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.3rem;
    color: #888;
    border: none;
    background: none;
    flex-shrink: 0;
}

.mobile-nav-links {
    flex: 1;
    padding: 1rem 0;
    overflow-y: auto;
}

.mobile-nav-links a {
    display: block;
    padding: 1rem 1.75rem;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 400;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: color 0.2s, background 0.2s;
}

.mobile-nav-links a.active,
.mobile-nav-links a:hover {
    color: var(--gold);
    background: rgba(184, 150, 12, 0.04);
}

.mobile-panel-footer {
    padding: 1.25rem 1.75rem;
    border-top: 1px solid rgba(184, 150, 12, 0.15);
    font-size: 0.72rem;
    letter-spacing: 2px;
    color: #aaa;
    text-transform: uppercase;
}

/* ── GOLD LINE ── */
.gold-line {
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin: 0 10px;
    flex-shrink: 0;
}

.section-tag {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: #fff;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 72px;
    width: 100%;
}

.hero-bg-text {
    position: absolute;
    right: -2%;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(6rem, 15vw, 18rem);
    font-weight: 700;
    color: rgba(184, 150, 12, 0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    letter-spacing: -4px;
}

.hero-shape {
    position: absolute;
    right: 0;
    top: 0;
    width: 42%;
    height: 100%;
    background: linear-gradient(135deg, #fdf8ec 0%, #f9f2d8 100%);
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-shape2 {
    position: absolute;
    right: 38%;
    bottom: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
}

.hero-image-wrap {
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    width: 36%;
    max-width: 480px;
}

.hero-image-wrap img {
    width: 100%;
    border-radius: 2px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.hero-badge {
    position: absolute;
    left: -20px;
    bottom: 40px;
    width: 100px;
    height: 100px;
    background: var(--charcoal);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.hero-badge span:first-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1;
    color: var(--gold-light);
}

.hero-badge span:last-child {
    font-size: 0.5rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ccc;
    padding: 0 6px;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 2rem 4rem clamp(1.5rem, 5vw, 6rem);
    max-width: 55%;
    width: 100%;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 4.5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.hero-content h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.9;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--charcoal);
    color: #fff;
    padding: 0.9rem 2rem;
    letter-spacing: 2px;
    font-size: 0.72rem;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--gold);
    transform: translateY(-1px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--charcoal);
    padding: 0.9rem 2rem;
    letter-spacing: 2px;
    font-size: 0.72rem;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid var(--charcoal);
    transition: all 0.3s;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    white-space: nowrap;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-stat .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1;
}

.hero-stat .label {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: #999;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ── MARQUEE ── */
.marquee-wrap {
    background: var(--charcoal);
    color: var(--gold-light);
    padding: 0.9rem 0;
    overflow: hidden;
    width: 100%;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 22s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0 2rem;
    flex-shrink: 0;
}

.marquee-track span.dot {
    color: #fff;
    padding: 0;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ── SECTION COMMON ── */
section {
    padding: 4rem 0;
    width: 100%;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 300;
    margin-top: 0.75rem;
    color: var(--charcoal);
}

.section-header h2 em {
    font-style: italic;
    color: var(--gold);
}

/* ── CATEGORIES ── */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.cat-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
    background: #f5f0e8;
}

.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cat-card:hover img {
    transform: scale(1.06);
}

.cat-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
}

.cat-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    color: #fff;
}

.cat-card-content h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.2rem;
}

.cat-card-content p {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--gold-light);
    text-transform: uppercase;
}

.cat-card-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s, background 0.3s;
}

.cat-card:hover .cat-card-arrow {
    opacity: 1;
    background: var(--gold);
    border-color: var(--gold);
}

/* ── FEATURED ── */
.featured-section {
    background: var(--off-white);
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-img-wrap {
    position: relative;
}

.featured-img-wrap img {
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.featured-img-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(184, 150, 12, 0.3);
    z-index: -1;
}

.featured-img-label {
    position: absolute;
    top: 1.5rem;
    left: -1rem;
    background: var(--charcoal);
    color: var(--gold-light);
    padding: 0.5rem 1rem;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.featured-content {
    padding: 1rem 0;
}

.featured-content h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
    margin: 0.75rem 0 1.25rem;
}

.featured-content p {
    color: #666;
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 2rem;
}

.features-list {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.feature-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.95rem;
    margin-top: 2px;
}

.feature-text h4 {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 2px;
    color: var(--charcoal);
}

.feature-text p {
    font-size: 0.82rem;
    color: #888;
    margin: 0;
}

/* ── WHY GRID ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* ── COLLECTION GRID ── */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: #fff;
    cursor: pointer;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.product-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.product-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 5/4;
    background: #f8f5ee;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.05);
}

/* ── TESTIMONIALS ── */
.testimonials-section {
    background: var(--charcoal);
    color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(184, 150, 12, 0.2);
    padding: 2rem;
}

.stars {
    color: var(--gold-light);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    color: #e0d8c8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

/* ── CTA BAND ── */
.cta-band {
    background: linear-gradient(135deg, #f9f2d8 0%, #fdf8ec 100%);
    padding: 4rem 0;
    text-align: center;
}

.cta-band h2 {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 1rem;
}

.cta-band h2 em {
    font-style: italic;
    color: var(--gold);
}

.cta-band p {
    color: #666;
    font-weight: 300;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── ABOUT PAGE ── */
.about-hero {
    background: var(--charcoal);
    min-height: 38vh;
    display: flex;
    align-items: flex-end;
    padding: 8rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.about-hero-bg-text {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(5rem, 14vw, 14rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.about-hero h1 {
    font-size: clamp(2rem, 4.5vw, 5rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.1;
}

.about-hero h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.about-hero p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
    font-weight: 300;
    font-size: 1rem;
    max-width: 500px;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* ── TIMELINE ── */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(184, 150, 12, 0.3);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-dot {
    position: absolute;
    left: -2rem;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--gold);
}

.timeline-year {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 4px;
}

.timeline-item h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 6px;
}

.timeline-item p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.7;
    font-weight: 300;
}

/* ── VALUES GRID ── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border: 1px solid rgba(184, 150, 12, 0.2);
    transition: border-color 0.3s, background 0.3s;
}

.value-card:hover {
    border-color: var(--gold);
    background: rgba(184, 150, 12, 0.02);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(184, 150, 12, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.6rem;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.value-card p {
    font-size: 0.88rem;
    color: #777;
    line-height: 1.7;
    font-weight: 300;
}

/* ── CONTACT PAGE ── */
.contact-hero {
    background: #f9f5ea;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    align-items: flex-start;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
}

.contact-info-text h4 {
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-info-text p {
    color: #888;
    font-size: 0.88rem;
    line-height: 1.6;
    font-weight: 300;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
}

.form-group input,
.form-group textarea,
.form-group select {
    border: 1px solid #e0e0e0;
    padding: 0.9rem 1rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    color: var(--charcoal);
    background: #fff;
    outline: none;
    transition: border-color 0.3s;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.map-placeholder {
    background: #f0ebe0;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(184, 150, 12, 0.2);
    margin-top: 2rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #aaa;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        rgba(184, 150, 12, 0.03) 0px,
        rgba(184, 150, 12, 0.03) 1px,
        transparent 1px,
        transparent 20px
    );
}

/* ── FOOTER ── */
footer {
    background: var(--charcoal);
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.8;
    font-weight: 300;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 0.85rem;
    transition: border-color 0.3s, color 0.3s;
    text-decoration: none;
    cursor: pointer;
}

.social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-col h4 {
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.footer-col a {
    display: block;
    color: #888;
    text-decoration: none;
    font-size: 0.88rem;
    margin-bottom: 0.65rem;
    cursor: pointer;
    transition: color 0.3s;
    font-weight: 300;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: #555;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
}

/* ── ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ── COLLECTION FILTER ── */
.filter-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    justify-content: center;
}

.filter-tab {
    padding: 0.55rem 1.5rem;
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    color: #888;
    background: #fff;
    border: 1px solid #e0d8c8;
    transition: background 0.2s, color 0.2s;
    font-family: 'Jost', sans-serif;
}

.filter-tab.active,
.filter-tab:hover {
    background: var(--charcoal);
    color: var(--gold-light);
    border-color: var(--charcoal);
}

/* ── DIVIDER ── */
.gold-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 3rem 0;
}

.gold-divider::before,
.gold-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(184, 150, 12, 0.2);
}

.gold-divider-icon {
    color: var(--gold);
    font-size: 1rem;
}

/* ═══════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════ */

/* ── Tablet (max 1024px) ── */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.76rem;
        letter-spacing: 1.8px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .about-story-grid {
        gap: 2.5rem;
    }
}

/* ── Mobile (max 768px) ── */
@media (max-width: 768px) {
    /* Navbar */
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .logo-img {
        height: 52px;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 72px 0 3rem;
        display: block;
    }

    .hero-shape,
    .hero-shape2,
    .hero-image-wrap {
        display: none;
    }

    .hero-bg-text {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        padding: 2.5rem 1.5rem;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-stats {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    /* Buttons */
    .btn-primary,
    .btn-outline {
        padding: 0.8rem 1.6rem;
        font-size: 0.68rem;
    }

    /* Categories */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    /* Featured */
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .featured-img-accent {
        display: none;
    }

    .featured-img-label {
        left: 0;
    }

    /* Why grid */
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Collection */
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* About */
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-story-grid > div:last-child img {
        width: 100% !important;
        height: auto !important;
        max-height: 400px;
        object-fit: cover;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.4rem;
    }

    /* CTA band */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Timeline */
    .timeline {
        padding-left: 1.75rem;
    }

    /* Sections */
    section {
        padding: 3rem 0;
    }
}

/* ── Small Mobile (max 480px) ── */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .navbar {
        height: 64px;
    }

    .hero {
        padding-top: 64px;
    }

    .logo-img {
        height: 46px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 1.25rem;
    }

    .gold-line {
        width: 28px;
        margin: 0 6px;
    }

    .about-hero {
        padding: 5rem 0 2rem;
    }

    .filter-tabs {
        gap: 0.4rem;
    }

    .filter-tab {
        padding: 0.5rem 1rem;
        font-size: 0.62rem;
    }
}

/* ── Prevent any element from causing horizontal overflow ── */
section,
header,
footer,
.hero,
.marquee-wrap,
.about-hero,
.cta-band,
.featured-section,
.testimonials-section {
    max-width: 100vw;
    overflow-x: hidden;
}