/* ashadeep/assets/css/style.css */

:root {
    /* Base Variables (Shared) */
    --primary-gold: #d4af37;
    --primary-gold-rgb: 212, 175, 55;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --title-font: 'Poppins', sans-serif;
    --body-font: 'Poppins', sans-serif;

    /* Theme Variables - Dark Mode (Default) */
    --primary-black: #0a0a0a;
    --bg-darker: #050505;
    --text-white: #ffffff;
    --accent-grey: #a0a0a0;
    --header-bg: transparent;
    --header-sticky: rgba(10, 10, 10, 0.95);
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(212, 175, 55, 0.2);
    --input-bg: #151515;
    --shadow: 0 10px 30px rgba(0,0,0,0.8);
    --site-header-offset: 96px;
}

body.light-mode {
    --primary-black: #ffffff;
    --bg-darker: #f5f5f5;
    --text-white: #000000;
    --accent-grey: #222222; /* Extremely high contrast for maximum readability */
    --primary-gold: #917415; 
    --header-bg: transparent;
    --header-sticky: rgba(255, 255, 255, 0.98);
    --card-bg: #ffffff;
    --card-border: rgba(212, 175, 55, 0.2);
    --input-bg: #eeeeee;
    --shadow: 0 10px 50px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--primary-black);
    color: var(--text-white);
    font-family: var(--body-font);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
    width: 100%;
}

h1, h2, h3, h4 {
    font-family: var(--title-font);
    font-weight: 600;
}

a {
    transition: var(--transition-smooth);
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section-padding {
    padding: 100px 0;
}

/* Header & Nav */
header {
    background: var(--header-bg);
    backdrop-filter: none;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1100;
    padding: 25px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.sticky, 
header.header-solid {
    background: var(--header-sticky);
    backdrop-filter: blur(15px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 28px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    white-space: nowrap;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 5px 10px;
    /* box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15); */
    flex-shrink: 0;
}

.logo-mark img {
    height: 50px;
    width: auto;
    display: block;
    filter: none;
}

header.sticky .logo-mark,
header.header-solid .logo-mark {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

body.light-mode header.sticky .logo-mark,
body.light-mode header.header-solid .logo-mark {
    background: #ffffff;
}

.logo-text {
    font-family: var(--title-font);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    color: #ffffff !important;
    text-transform: none;
    letter-spacing: 0.12em;
}

header.sticky .logo-text,
header.header-solid .logo-text {
    color: var(--text-white) !important;
}

body.light-mode header.sticky .logo-text,
body.light-mode header.header-solid .logo-text {
    color: #000000 !important;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--primary-gold);
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 1200;
    position: relative;
}

.mobile-only {
    display: none;
}

.logo img {
    height: 60px;
    width: auto;
}

.theme-toggle {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--primary-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    margin-right: 0;
}

.theme-toggle:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
    transform: rotate(360deg);
}

header.sticky .theme-toggle,
header.header-solid .theme-toggle,
header.sticky .menu-toggle,
header.header-solid .menu-toggle {
    color: var(--text-white) !important;
}

body.light-mode header.sticky .theme-toggle,
body.light-mode header.header-solid .theme-toggle,
body.light-mode header.sticky .menu-toggle,
body.light-mode header.header-solid .menu-toggle {
    color: #000000 !important;
}

body.home-page header:not(.sticky):not(.header-solid) .theme-toggle,
body.home-page header:not(.sticky):not(.header-solid) .menu-toggle {
    /* color: #ffffff !important; */
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.theme-toggle .fa-cog {
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-links li a {
    text-decoration: none;
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

header.sticky .nav-links li a,
header.header-solid .nav-links li a {
    color: var(--text-white) !important;
}

body.light-mode header.sticky {
    background: #ffffff;
}

body.light-mode header.sticky .nav-links li a,
body.light-mode header.sticky .logo-text {
    color: #000000 !important;
}

body.light-mode header.sticky .theme-toggle,
body.light-mode header.sticky .menu-toggle {
    color: #333333 !important;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-gold) !important;
}

.nav-links li a.active {
    position: relative;
}

.btn-premium {
    background: var(--primary-gold);
    color: var(--primary-black);
    padding: 12px 30px;
    border: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-header {
    padding: 10px 20px !important;
    font-size: 10px !important;
    letter-spacing: 0.14em !important;
    color: #ffffff !important;
    background: var(--primary-gold) !important;
    border: 1px solid var(--primary-gold) !important;
}

.main-nav {
    display: flex;
    align-items: center;
}

.btn-header:hover {
    color: var(--primary-gold) !important;
    background: transparent !important;
}

.btn-premium:hover {
    background: transparent;
    color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Sitewide: same header style as home page */
header,
header.header--over-hero {
    background: var(--header-sticky);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    padding: 12px 0;
}

header .nav-links li a,
header .logo-text,
header .theme-toggle,
header .menu-toggle {
    color: var(--text-white) !important;
}

.hero-slider {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    opacity: 1;
    z-index: 10;
}

.hero-tag {
    color: var(--primary-gold);
    font-size: 1.1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
    animation: fadeInUp 0.8s ease backwards;
}

.hero-slide h1 {
    font-size: 4.8rem;
    margin-bottom: 30px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #ffffff !important;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-slide p {
    font-size: 1.35rem;
    color: #e0e0e0 !important;
    max-width: 700px;
    margin: 0 auto 45px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

/* Swiper Controls Styling */
.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: var(--primary-gold) !important;
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-gold) !important;
    transition: 0.3s;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px !important;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: scale(1.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-outline {
    background: transparent !important; 
    border: 1px solid var(--primary-gold) !important;
    color: var(--primary-gold) !important;
}

/* Stats Section Architecture */
.stats-container {
    background: var(--card-bg) !important; 
    backdrop-filter: blur(10px) !important; 
    padding: 50px 0 !important; 
    border: 1px solid var(--card-border) !important; 
    opacity: 1 !important;
}

/* Heritage Spotlight */
.heritage-container {
    max-width: 800px; 
    padding: 100px 40px; 
    position: relative; 
    z-index: 2; 
    margin: 0 auto; 
    text-align: center;
}

.heritage-title {
    font-size: 3.2rem; 
    margin-bottom: 25px;
}

.heritage-text {
    font-size: 1.25rem; 
    color: var(--accent-grey); 
    margin-bottom: 35px; 
    line-height: 1.8;
}

/* Global Utilities */
.text-center { text-align: center; }
.mb-30 { margin-bottom: 30px; }
.fs-12 { font-size: 1.2rem; }
.line-18 { line-height: 1.8; }
.max-800 { max-width: 800px; margin-left: auto; margin-right: auto; }
.fw-500 { font-weight: 500; }
.w-100 { width: 100%; }
.p-20 { padding: 20px; }
.mb-15 { margin-bottom: 15px; }
.ls-2 { letter-spacing: 2px; }
.fs-25 { font-size: 2.5rem; }
.fs-11 { font-size: 1.1rem; }

.gold-text {
    background: linear-gradient(45deg, #d4af37, #fcf6ba, #d4af37, #fcf6ba, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--primary-gold); /* Fallback */
}

body.light-mode .gold-text {
    background: linear-gradient(45deg, #917415, #d4af37, #917415, #d4af37, #917415);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Feature Grid */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-top: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    background: var(--card-bg);
    padding: 40px;
    border: 1px solid var(--card-border);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

/* Process Steps */
.process-step {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 80px;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    width: 38%;
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
}

.process-img:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.process-img img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.2, 1, 0.3, 1);
    display: block !important;
}

.process-img:hover img {
    transform: scale(1.1);
}

.process-step span {
    color: var(--primary-gold);
    font-size: 3rem;
    font-family: var(--title-font);
    opacity: 0.3;
}

.process-text {
    width: 50%;
}

/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-card {
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.2);
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
    text-align: center;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(rgba(15,15,15,0.9), rgba(15,15,15,0.9)), url('../images/home-page/img-14.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.stat-item h2 {
    font-size: 3.5rem;
    color: var(--primary-gold);
}

/* Footer */
/* Footer Premium Overhaul */
footer {
    background: var(--primary-black);
    padding: 100px 0 0;
    border-top: 1px solid var(--card-border);
    transition: background-color 0.5s ease;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-col h4 {
    color: var(--primary-gold);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-gold);
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--accent-grey);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--primary-gold);
    transform: translateX(10px);
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: var(--transition-smooth);
    color: var(--primary-gold);
}

.footer-links a:hover::before {
    left: -15px;
    opacity: 1;
}

/* Footer Layout Polish */
.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 60px;
    filter: drop-shadow(0 0 10px rgba(212,175,55,0.4));
}

.brand-description {
    color: var(--accent-grey);
    line-height: 1.8;
    font-size: 0.95rem;
}

.connect-item {
    color: var(--accent-grey);
    font-size: 0.95rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.connect-item i {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.support-link {
    color: var(--primary-gold);
    font-size: 0.9rem;
    text-decoration: underline;
    font-weight: 600;
}

.support-link:hover {
    color: var(--text-white);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0 60px; /* Added 60px bottom padding for prestigious spacing */
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--accent-grey);
    letter-spacing: 1px;
}

.footer-bottom a.dev-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    display: inline-block;
}

.footer-bottom a.dev-link:hover {
    transform: translateY(-2px);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    letter-spacing: 2px;
}

.tagline-footer {
    font-family: var(--title-font);
    font-size: 1.1rem;
    color: var(--primary-gold);
    font-style: italic;
    opacity: 0.8;
}

.dev-credit {
    font-size: 0.8rem;
    color: var(--accent-grey);
    letter-spacing: 1px;
}

.dev-credit a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
}

.dev-credit a:hover {
    text-decoration: underline;
}


/* Contact Page Premium Architecture */
.contact-section {
    padding: 150px 0;
    background: var(--bg-dark);
}

.contact-header {
    margin-bottom: 80px;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.contact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 60px;
    backdrop-filter: blur(10px);
}

.info-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
}

.info-item i {
    font-size: 1.8rem;
    color: var(--primary-gold);
}

.info-item h4 {
    font-size: 1.2rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.info-item p {
    color: var(--accent-grey);
    font-size: 1rem;
    line-height: 1.6;
}

/* Premium Form Styling */
.contact-form-box {
    background: #0d0d0d;
    padding: 50px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.premium-input-group {
    position: relative;
    margin-bottom: 30px;
}

.premium-input-group label {
    display: block;
    color: var(--primary-gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.premium-input {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 18px 20px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition-smooth);
}

.premium-input:focus {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.05);
}

textarea.premium-input {
    height: 150px;
    resize: none;
}
.tagline-footer {
    font-family: var(--title-font);
    font-style: italic;
    color: var(--primary-gold) !important;
    font-size: 1.1rem !important;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    backdrop-filter: blur(5px);
}

.social-icons a:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
    transform: translateY(-8px) rotate(360deg);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.jd-letter {
    font-size: 0.95rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
}

/* Animations - Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal.active, .reveal-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.nav-links li a {
    color: var(--text-white);
}

.hero-content h1, .hero-content p, .hero-content span {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Newsletter & Tagline Polish */
.newsletter {
    background: var(--bg-darker);
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid var(--card-border);
}

.newsletter-box {
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.form-box input, .form-box textarea, .newsletter-form input {
    background: var(--input-bg);
    border: 1px solid var(--card-border);
    color: var(--text-white);
    padding: 15px 25px;
    border-radius: 5px;
    width: 100%;
    font-family: inherit;
    transition: var(--transition-smooth);
}

::placeholder {
    color: var(--accent-grey) !important;
    opacity: 0.7 !important;
}

.form-box input:focus, .form-box textarea:focus, .newsletter-form input:focus {
    border-color: var(--primary-gold);
    outline: none;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.newsletter-form .btn-premium {
    padding: 15px 35px;
}

.brand-tagline {
    padding: 80px 0;
    text-align: center;
    background: var(--primary-black);
}

.tagline-text {
    font-family: var(--title-font);
    font-size: 2.2rem;
    font-style: italic;
    color: var(--text-white);
    margin-bottom: 15px;
}

.tagline-subtext {
    color: var(--primary-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
}

/* About & Philosophy Desktop Grid Architecture */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Page Headers & General Backgrounds */
.page-header {
    background-size: cover; 
    background-position: center; 
    border-bottom: 2px solid var(--primary-gold);
    padding: calc(var(--site-header-offset) + 74px) 0 80px;
}

.about-header {
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('../images/about-page/img-11.jpeg'); 
}

.collection-header {
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('../images/about-page/img-10.jpeg'); 
}

.privacy-header, .terms-header {
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('../images/hero-section/img-1.jpeg'); 
}

.page-header h1 {
    color: #ffffff !important;
}

.page-header p {
    color: #e0e0e0 !important;
}

.bg-darker {
    background: var(--bg-darker);
}

.story-content h2 {
    font-size: 2.5rem; 
    margin-bottom: 30px;
}

.story-content p {
    margin-bottom: 20px; 
    color: var(--accent-grey); 
    font-size: 1.1rem; 
    line-height: 1.8;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%; 
    border: 1px solid var(--primary-gold); 
    filter: contrast(1.1);
}

.story-image::after {
    content: '';
    position: absolute; 
    bottom: -20px; 
    right: -20px; 
    width: 100%; 
    height: 100%; 
    border: 1px solid var(--primary-gold); 
    z-index: -1;
}

.phil-num {
    font-family: var(--title-font); 
    font-size: 4rem; 
    color: rgba(212, 175, 55, 0.2); 
    display: block; 
    margin-bottom: -20px;
}

.highlight-box {
    background: var(--bg-darker); 
    padding: 60px; 
    border: 1px solid var(--card-border); 
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.heritage-feature {
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('../images/home-page/img-9.jpeg'); 
    background-size: cover; 
    background-position: center; 
    border-radius: 5px;
}

.heritage-feature h2 {
    color: #ffffff !important;
}

.heritage-feature p {
    color: #e0e0e0 !important;
}

.highlight-box h2 {
    color: #ffffff !important;
}

.highlight-box p {
    color: #e0e0e0 !important;
}

/* Why Choose List Architecture */
.choose-box {
    background: var(--bg-darker); 
    padding: 60px; 
    border: 1px solid var(--card-border); 
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.choose-list {
    list-style: none; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 30px; 
    max-width: 900px; 
    margin: 0 auto;
}

.choose-list li {
    display: flex; 
    align-items: center; 
    gap: 15px;
    font-size: 1.1rem;
    color: var(--text-white);
}

.choose-list li i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

/* RESPONSIVE OVERHAUL */
@media (max-width: 1024px) {
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        width: 320px;
        height: 100vh;
        background: var(--header-sticky);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 1000;
        transition: 0.5s cubic-bezier(0.2, 1, 0.3, 1);
        border-left: 1px solid var(--card-border);
    }

    body.light-mode .nav-links,
    body.light-mode nav .nav-links {
        background: #ffffff !important;
        background-color: #ffffff !important;
        backdrop-filter: none !important;
        border-left: 1px solid rgba(var(--primary-gold-rgb), 0.2) !important;
    }

    .nav-links li a {
        color: var(--text-white) !important;
        font-size: 1.2rem !important;
        letter-spacing: 4px !important;
    }

    body.light-mode .nav-links li a {
        color: #000000 !important;
    }

    .nav-links li a:hover {
        color: var(--primary-gold) !important;
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: block;
    }

    .header-actions .btn-premium {
        display: none;
    }

    .mobile-only {
        display: block !important;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .process-step {
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    :root {
        --site-header-offset: 84px;
    }

    .logo-mark {
        padding: 4px 8px;
    }

    .logo-mark img {
        height: 34px;
    }

    .logo-text {
        font-size: 1.15rem;
    }

    .hero-slide h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .hero-slide p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .hero-btns {
        gap: 12px;
    }

    .hero-btns .btn-premium {
        padding: 12px 15px;
        font-size: 11px;
        min-width: 140px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .page-header, .contact-hero {
        padding-top: calc(var(--site-header-offset) + 52px) !important;
        padding-bottom: 60px !important;
        text-align: center;
    }

    .page-header h1, .contact-hero h1 {
        font-size: 2.2rem !important;
    }

    .page-header p, .contact-hero p {
        font-size: 0.95rem;
    }

    .features-grid, .products-grid, .stats-grid {
        grid-template-columns: 1fr;
    }

    .process-step, .process-step:nth-child(even) {
        flex-direction: column !important;
        text-align: center;
    }

    .process-img, .process-text {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-card-box, .form-box {
        padding: 40px 20px !important;
    }

    .info-box {
        gap: 20px;
        margin-bottom: 35px;
    }

    .info-icon {
        font-size: 1.8rem;
    }

    .info-content p {
        font-size: 1.05rem;
    }

    .operating-hours {
        margin-top: 40px;
    }

    .choose-box {
        padding: 40px 20px;
    }

    .choose-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-grid, .philosophy-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .about-grid .story-image {
        order: -1;
    }

    .features-grid, .about-features-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .logo-mark {
        padding: 3px 7px;
    }

    .logo-mark img {
        height: 30px;
    }
}

/* Page Spacing Fix */
body {
    padding-top: 0;
}

/* Contact Page Architecture */
.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('../images/img-2.jpg'); 
    background-size: cover; 
    background-position: center; 
    border-bottom: 2px solid var(--primary-gold);
    padding: calc(var(--site-header-offset) + 74px) 0 80px;
}

.contact-hero h1 {
    color: #ffffff !important;
}

.contact-hero p {
    color: #e0e0e0 !important;
}

.contact-card-box {
    background: rgba(255, 255, 255, 0.03); 
    backdrop-filter: blur(15px); 
    padding: 50px; 
    border: 1px solid rgba(212, 175, 55, 0.2); 
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-box {
    display: flex; 
    align-items: flex-start; 
    gap: 25px; 
    margin-bottom: 40px;
    width: 100%;
}

.info-icon {
    font-size: 2.5rem; 
    color: var(--primary-gold); 
    opacity: 0.8;
}

.info-con.stat-item p {
    color: var(--accent-grey);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}
.info-content h3 {
    color: var(--primary-gold); 
    font-size: 0.9rem; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    margin-bottom: 10px;
}

.info-content p {
    font-size: 1.25rem; 
    color: var(--text-white); 
    line-height: 1.6;
}

.operating-hours {
    margin-top: 60px; 
    padding-top: 40px; 
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.operating-hours h4 {
    color: var(--primary-gold); 
    font-size: 0.8rem; 
    letter-spacing: 3px; 
    text-transform: uppercase; 
    margin-bottom: 20px;
}

.operating-hours p {
    color: var(--accent-grey); 
    font-size: 1.1rem; 
    margin-bottom: 8px;
}

.form-box {
    padding: 60px; 
    border: 1px solid var(--card-border); 
    border-radius: 5px; 
    background: var(--bg-darker);
    text-align: left;
}

.premium-input-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-box p {
    margin-bottom: 40px; 
    color: var(--accent-grey); 
    letter-spacing: 1px;
}

.premium-label {
    color: var(--primary-gold); 
    font-size: 0.75rem; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    font-weight: 600; 
    display: block; 
    margin-bottom: 15px;
}

.consent-box {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px;
    margin-bottom: 40px;
    margin-top: 10px;
    width: 100%;
    align-items: flex-start;
}

.consent-checkbox {
    accent-color: var(--primary-gold); 
    width: 18px; 
    height: 18px; 
    cursor: pointer; 
    margin: 0;
    margin-top: 4px;
}

.consent-label {
    margin: 0; 
    font-size: 0.9rem; 
    color: var(--accent-grey); 
    text-transform: none; 
    letter-spacing: normal; 
    cursor: pointer; 
    line-height: 1.6;
    display: block;
}

.consent-link {
    color: var(--primary-gold); 
    text-decoration: underline;
}

.contact-tagline-wrap {
    text-align: center; 
    margin-top: 80px; 
    padding: 60px 0; 
    background: var(--bg-darker); 
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
}

.tagline-text {
    font-family: var(--title-font);
    font-size: 2.2rem;
    font-style: italic;
    color: var(--text-white);
    margin-bottom: 15px;
}

/* Products & Collection Filter Architecture */
.filter-container {
    text-align: center; 
    margin-bottom: 50px;
}

.filter-btn {
    background: transparent !important; 
    border: 1px solid var(--primary-gold) !important; 
    color: var(--primary-gold) !important; 
    margin: 5px !important;
    transition: all 0.3s ease !important;
}

.filter-btn.active {
    background: var(--primary-gold) !important;
    color: var(--primary-black) !important;
}

.product-card-container {
    transition: all 0.5s ease;
}

/* Delay Utils */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* WhatsApp Floating Button Styling */
.whatsapp-chat-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    font-family: 'Poppins', sans-serif;
}

.whatsapp-button {
    background-color: #25d366;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-button i {
    color: #fff;
    font-size: 35px;
}

/* Chat Popup */
.whatsapp-popup {
    position: absolute;
    bottom: 85px;
    left: 0;
    width: 320px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-popup.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* Popup Header */
.whatsapp-popup-header {
    background-color: #128c7e;
    padding: 18px 20px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatsapp-popup-header-info h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
}

.whatsapp-close {
    cursor: pointer;
    font-size: 16px;
    opacity: 0.8;
}

.whatsapp-close:hover {
    opacity: 1;
}

/* Popup Body */
.whatsapp-popup-body {
    padding: 25px 20px;
    background-color: #e5ddd5;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    max-height: 280px;
    overflow-y: auto;
}

.whatsapp-message {
    background-color: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 14px;
    color: #444;
    max-width: 90%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    line-height: 1.5;
}

/* Popup Footer */
.whatsapp-popup-footer {
    padding: 20px;
    background-color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-input {
    flex: 1;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    font-size: 14px;
    outline: none;
    resize: none;
    box-shadow: none;
    transition: border-color 0.3s;
}

.whatsapp-input:focus {
    border-color: #128c7e;
}

.whatsapp-send {
    background-color: transparent;
    border: none;
    color: #333; /* Dark icon like in image */
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-send:hover {
    color: #128c7e;
    transform: translateX(3px);
}

/* Animations */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsiveness */
@media (max-width: 480px) {
    .whatsapp-chat-container {
        bottom: 20px;
        left: 20px;
    }
    
    .whatsapp-popup {
        width: 280px;
        bottom: 75px;
    }

    .hero-slide h1 {
        font-size: 2rem !important;
        margin-bottom: 15px;
    }

    .hero-slide p {
        font-size: 0.85rem !important;
        margin-bottom: 20px;
    }

    .section-header h2 {
        font-size: 1.8rem !important;
    }
}

/* Brand Showcase Slider */
.brands-showcase {
    padding-bottom: 0 !important;
    padding-top: 40px !important;
}

.brand-swiper {
    padding: 0 !important;
}

.showcase-slide {
    height: 320px;
    overflow: hidden;
}

.showcase-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.85);
}

.showcase-slide:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}

/* Footer UI refresh */
.site-footer {
    position: relative;
}

.site-footer .footer-grid {
    grid-template-columns: minmax(280px, 1.8fr) repeat(3, minmax(140px, 1fr));
    gap: 42px;
    margin-bottom: 54px;
}

.site-footer .footer-logo {
    margin-bottom: 22px;
}

.site-footer .footer-logo img {
    height: 56px;
    filter: none;
}

.site-footer .brand-description {
    max-width: 340px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--accent-grey);
}

.site-footer .footer-col h4 {
    font-size: 0.92rem;
    letter-spacing: 0.24em;
    margin-bottom: 18px;
}

.site-footer .footer-col h4::after {
    bottom: -8px;
    width: 26px;
    height: 1px;
}

.site-footer .footer-links li {
    margin-bottom: 10px;
}

.site-footer .footer-links a {
    font-size: 0.94rem;
}

.site-footer .footer-links a::before {
    content: '';
}

.site-footer .footer-links a:hover {
    transform: none;
}

.site-footer .connect-item {
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.site-footer .connect-item i {
    margin-top: 2px;
    font-size: 0.9rem;
}

.site-footer .connect-item a {
    color: inherit;
    text-decoration: none;
}

.site-footer .connect-item a:hover {
    color: var(--primary-gold);
}

.site-footer .support-link {
    display: inline-block;
    margin-top: 4px;
    text-underline-offset: 3px;
}

.site-footer .social-icons {
    gap: 10px;
}

.site-footer .social-icons a {
    width: 36px;
    height: 36px;
    font-size: 0.96rem;
    border-radius: 10px;
    background: transparent;
    border: 1px solid rgba(var(--primary-gold-rgb), 0.35);
    backdrop-filter: none;
}

.site-footer .social-icons a:hover {
    transform: translateY(-2px);
}

.site-footer .jd-letter {
    font-size: 0.78rem;
    letter-spacing: 0.02em;
}

.site-footer .footer-bottom {
    padding: 24px 0 34px;
}

.site-footer .footer-bottom p {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
}

body.light-mode .site-footer {
    background: #f6f6f6;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-mode .site-footer .footer-links a,
body.light-mode .site-footer .brand-description,
body.light-mode .site-footer .connect-item,
body.light-mode .site-footer .footer-bottom p {
    color: #1e1e1e;
}

body.light-mode .site-footer .footer-col h4 {
    color: #151515;
}

body.light-mode .site-footer .social-icons a {
    background: #ffffff;
    border-color: rgba(var(--primary-gold-rgb), 0.45);
}

@media (max-width: 1024px) {
    .site-footer .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px 28px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding-top: 68px;
    }

    .site-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 26px;
    }

    .site-footer .footer-col h4 {
        margin-bottom: 14px;
    }

    .site-footer .footer-bottom {
        padding: 18px 0 24px;
    }
}

/* ========== Home page — modern UI (body.home-page) ========== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body.home-page {
    scroll-behavior: smooth;
}

body.home-page .home-layout {
    position: relative;
    isolation: isolate;
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--bg-darker) 100%);
}

body.light-mode.home-page .home-layout {
    background: linear-gradient(180deg, #f6f6f6 0%, #f1f1f1 100%);
}

body.home-page .hero-slider.home-hero {
    margin-top: var(--site-header-offset);
    height: calc(100vh - var(--site-header-offset));
    height: calc(100dvh - var(--site-header-offset));
    min-height: 560px;
}

body.home-page .hero-slider.home-hero .hero-slide {
    height: 100vh;
    height: 100dvh;
}

body.home-page .home-hero__card {
    margin: 0 auto;
    max-width: 760px;
    padding: clamp(30px, 4vw, 50px) clamp(24px, 4.5vw, 48px);
    border-radius: 24px;
    background: rgba(10, 10, 12, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.17);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.46);
}

body.home-page .hero-slide h1 {
    font-size: clamp(2.15rem, 5.5vw, 4.1rem);
    margin-bottom: 18px;
    line-height: 1.08;
    text-wrap: balance;
}

body.home-page .hero-slide p {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    margin-bottom: 34px;
    text-wrap: pretty;
}

body.home-page .slider-controls.home-hero__nav {
    position: absolute;
    inset: 0;
    z-index: 8;
    pointer-events: none;
}

body.home-page .home-hero__nav .swiper-button-next,
body.home-page .home-hero__nav .swiper-button-prev {
    pointer-events: auto;
    top: 50%;
    margin-top: 0;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
}

body.home-page .home-hero__nav .swiper-button-prev {
    left: max(8px, 2vw);
}

body.home-page .home-hero__nav .swiper-button-next {
    right: max(8px, 2vw);
}

body.home-page .home-hero__pagination.swiper-pagination {
    bottom: 28px !important;
    z-index: 9;
}

body.home-page .home-scroll-hint {
    position: absolute;
    bottom: 96px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

body.home-page .home-scroll-hint:hover {
    color: var(--primary-gold);
    transform: translateX(-50%) translateY(4px);
}

body.home-page .home-scroll-hint__mouse {
    width: 22px;
    height: 34px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 12px;
    position: relative;
}

body.home-page .home-scroll-hint__mouse::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 7px;
    width: 4px;
    height: 8px;
    margin-left: -2px;
    border-radius: 4px;
    background: var(--primary-gold);
    animation: home-scroll-dot 1.8s ease-in-out infinite;
}

@keyframes home-scroll-dot {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.4; transform: translateY(8px); }
}

body.home-page .btn-modern {
    border-radius: 999px;
    padding: 14px 30px !important;
    min-width: 168px;
    text-align: center;
    font-size: 0.72rem !important;
    letter-spacing: 0.16em !important;
}

body.home-page .btn-modern-outline {
    border-radius: 999px;
    padding: 14px 30px !important;
    min-width: 168px;
    text-align: center;
    font-size: 0.72rem !important;
    letter-spacing: 0.16em !important;
}

/* Stats */
body.home-page .home-stats.stats-section {
    position: relative;
    padding: 92px 0 100px;
    background:
        radial-gradient(ellipse 90% 70% at 50% -20%, rgba(var(--primary-gold-rgb), 0.18), transparent 55%),
        linear-gradient(180deg, var(--bg-darker) 0%, var(--primary-black) 100%);
    background-attachment: scroll;
    overflow: hidden;
}

body.home-page .home-stats__glow {
    position: absolute;
    inset: -40% -20% auto;
    height: 70%;
    background: radial-gradient(circle at 30% 40%, rgba(var(--primary-gold-rgb), 0.12), transparent 50%);
    pointer-events: none;
}

body.home-page .home-stats .stats-container {
    background: transparent !important;
    border: none !important;
    backdrop-filter: none !important;
    padding: 0 !important;
}

body.home-page .home-stats__head {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 48px;
}

body.home-page .home-stats__title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-family: var(--title-font);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
}

body.home-page .home-stats__grid.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    text-align: left;
}

body.home-page .home-stat {
    position: relative;
    padding: 28px 26px 32px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

body.light-mode.home-page .home-stat {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

body.home-page .home-stat:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--primary-gold-rgb), 0.45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

body.home-page .home-stat__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(var(--primary-gold-rgb), 0.15);
    color: var(--primary-gold);
    font-size: 1.15rem;
    margin-bottom: 20px;
}

body.home-page .home-stat .home-stat__num {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-family: var(--title-font);
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 10px;
}

body.home-page .home-stat__label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-grey);
    letter-spacing: 0.04em;
    text-transform: none;
}

/* Section headings */
body.home-page .home-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 52px;
}

body.home-page .home-section-head h2 {
    font-size: clamp(1.85rem, 4vw, 2.85rem);
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.15;
}

body.home-page .home-section-head--row {
    max-width: none;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
    margin-bottom: 48px;
}

body.home-page .home-section-head--row .home-section-lead {
    margin-left: 0;
    margin-right: 0;
}

body.home-page .home-collections__link {
    flex-shrink: 0;
}

body.home-page .home-eyebrow {
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 12px;
}

body.home-page .home-section-lead {
    margin-top: 16px;
    font-size: 1.05rem;
    color: var(--accent-grey);
    line-height: 1.65;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

body.home-page .home-section-lead--tight {
    margin-top: 10px;
}

/* Feature bento */
body.home-page .home-feature-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

body.home-page .home-feature-tile {
    position: relative;
    padding: 32px 28px 40px;
    border-radius: 20px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
}

body.home-page .home-feature-tile--accent {
    background:
        linear-gradient(135deg, rgba(var(--primary-gold-rgb), 0.12) 0%, transparent 52%),
        var(--card-bg);
    border-color: rgba(var(--primary-gold-rgb), 0.35);
}

body.home-page .home-feature-tile:hover {
    transform: translateY(-6px);
    border-color: var(--primary-gold);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

body.home-page .home-feature-tile__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(var(--primary-gold-rgb), 0.12);
    color: var(--primary-gold);
    font-size: 1.35rem;
    margin-bottom: 22px;
}

body.home-page .home-feature-tile h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--text-white);
}

body.light-mode.home-page .home-feature-tile h3 {
    color: #141414;
}

body.home-page .home-feature-tile p {
    font-size: 0.95rem;
    color: var(--accent-grey);
    line-height: 1.7;
    margin: 0;
}

body.home-page .home-feature-tile__corner {
    position: absolute;
    top: 18px;
    right: 20px;
    font-family: var(--title-font);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-white);
    opacity: 0.06;
    pointer-events: none;
}

/* Process */
body.home-page .home-process {
    background: var(--bg-darker);
}

body.home-page .home-process__timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

body.home-page .home-process-card {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

body.home-page .home-process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

body.home-page .home-process-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

body.home-page .home-process-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1);
}

body.home-page .home-process-card:hover .home-process-card__media img {
    transform: scale(1.06);
}

body.home-page .home-process-card__step {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    background: rgba(10, 10, 10, 0.75);
    color: var(--primary-gold);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

body.home-page .home-process-card__body {
    padding: 24px 24px 28px;
}

body.home-page .home-process-card__body h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-transform: capitalize;
    letter-spacing: 0.02em;
}

body.home-page .home-process-card__body p {
    font-size: 0.92rem;
    color: var(--accent-grey);
    line-height: 1.65;
    margin: 0;
}

/* Heritage split */
body.home-page .home-heritage__wrap {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(32px, 5vw, 56px);
    align-items: center;
}

body.home-page .home-heritage__visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 5 / 4;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
}

body.home-page .home-heritage__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

body.home-page .home-heritage__badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    color: #111;
    display: flex;
    flex-direction: column;
    gap: 2px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

body.home-page .home-heritage__badge-year {
    font-family: var(--title-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
}

body.home-page .home-heritage__badge-text {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #444;
}

body.home-page .home-heritage__panel {
    padding: clamp(28px, 4vw, 44px);
    border-radius: 22px;
    border: 1px solid var(--card-border);
    background: var(--card-bg);
}

body.home-page .home-heritage__panel h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 16px;
    line-height: 1.2;
}

body.home-page .home-heritage__text {
    font-size: 1.05rem;
    color: var(--accent-grey);
    line-height: 1.75;
    margin-bottom: 28px;
}

/* Collections grid */
body.home-page .home-collections {
    background: var(--primary-black);
}

body.light-mode.home-page .home-collections {
    background: var(--bg-darker);
}

body.home-page .home-gallery-grid {
    display: grid;
    grid-template-columns: 1.12fr 1fr;
    grid-template-rows: repeat(2, minmax(220px, 1fr));
    gap: 20px;
    min-height: 520px;
}

body.home-page .home-gallery-card {
    position: relative;
    display: block;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

body.home-page .home-gallery-card__link {
    position: relative;
    display: block;
    height: 100%;
    min-height: inherit;
    text-decoration: none;
    color: inherit;
}

body.home-page .home-gallery-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--primary-gold-rgb), 0.5);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

body.home-page .home-gallery-card--tall {
    grid-row: 1 / -1;
    grid-column: 1;
}

body.home-page .home-gallery-card__img {
    position: absolute;
    inset: 0;
}

body.home-page .home-gallery-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1);
}

body.home-page .home-gallery-card:hover .home-gallery-card__img img {
    transform: scale(1.05);
}

body.home-page .home-gallery-card__meta {
    position: absolute;
    inset: auto 0 0 0;
    padding: 28px 24px 24px;
    background: linear-gradient(180deg, transparent 8%, rgba(0, 0, 0, 0.92));
    display: flex;
    flex-direction: column;
    gap: 10px;
}

body.home-page .home-gallery-card__tag {
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0f0f0f;
    background: rgba(255, 255, 255, 0.9);
}

body.home-page .home-gallery-card__meta h3 {
    font-size: 1.25rem;
    color: #fff;
    margin: 0;
    font-weight: 600;
}

body.home-page .home-gallery-card__meta p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    max-width: 94%;
}

body.home-page .home-gallery-card__cta {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

body.home-page .home-gallery-card__cta i {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

body.home-page .home-gallery-card:hover .home-gallery-card__cta i {
    transform: translateX(4px);
}

/* Newsletter card */
body.home-page .home-newsletter.newsletter {
    background: transparent;
    padding-top: 80px;
    padding-bottom: 80px;
    border-top: 1px solid var(--card-border);
}

body.home-page .home-newsletter__card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: clamp(26px, 4vw, 44px);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(var(--primary-gold-rgb), 0.1) 0%, transparent 45%),
        var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

body.home-page .home-newsletter__copy {
    flex: 1;
    min-width: 260px;
}

body.home-page .home-newsletter__copy h2 {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    margin-bottom: 10px;
}

body.home-page .home-newsletter__copy p {
    color: var(--accent-grey);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 480px;
}

body.home-page .home-newsletter__form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex: 1;
    min-width: 280px;
    justify-content: flex-end;
    margin-top: 0;
}

body.home-page .home-newsletter__form input[type="email"] {
    flex: 1;
    min-width: 200px;
    padding: 16px 20px;
    border-radius: 14px;
    border: 1px solid var(--card-border);
    background: var(--input-bg);
    color: var(--text-white);
    font-family: inherit;
}

body.home-page .home-newsletter__form .btn-modern {
    flex-shrink: 0;
}

/* Marquee strip */
body.home-page .home-marquee.brands-showcase {
    padding-top: 56px;
    padding-bottom: 72px;
}

body.home-page .home-marquee__head {
    text-align: center;
    margin-bottom: 40px;
}

body.home-page .home-marquee__head h2 {
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    margin: 0;
}

body.home-page .home-marquee__viewport {
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

body.home-page .home-marquee__swiper .showcase-slide {
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    margin: 0 6px;
}

body.home-page .home-marquee__swiper .showcase-slide img {
    border-radius: 16px;
}

/* Closing quote */
body.home-page .home-quote.brand-tagline {
    padding: 88px 0 100px;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--primary-black) 100%);
    text-align: center;
}

body.home-page .home-quote__text {
    font-family: var(--title-font);
    font-size: clamp(1.45rem, 3.8vw, 2.45rem);
    font-style: italic;
    font-weight: 500;
    color: var(--text-white);
    margin: 0 auto 18px;
    max-width: 880px;
    line-height: 1.38;
    border: none;
    padding: 0;
}

body.home-page .home-quote__cite {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-gold);
    font-weight: 600;
    margin: 0;
}

@media (max-width: 1024px) {
    body.home-page .home-feature-bento {
        grid-template-columns: 1fr;
    }

    body.home-page .home-process__timeline {
        grid-template-columns: 1fr;
    }

    body.home-page .home-stats__grid.stats-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    body.home-page .home-heritage__wrap {
        grid-template-columns: 1fr;
    }

    body.home-page .home-heritage__visual {
        aspect-ratio: 16 / 10;
    }

    body.home-page .home-gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        min-height: 0;
    }

    body.home-page .home-gallery-card--tall {
        grid-row: auto;
        grid-column: auto;
        min-height: 400px;
    }

    body.home-page .home-gallery-card:not(.home-gallery-card--tall) {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    body.home-page .hero-slider.home-hero {
        margin-top: var(--site-header-offset);
        height: calc(100vh - var(--site-header-offset));
        height: calc(100dvh - var(--site-header-offset));
        min-height: 74vh;
    }

    body.home-page .home-hero__card {
        border-radius: 18px;
        padding: 24px 18px 28px;
    }

    body.home-page .hero-slide h1 {
        font-size: clamp(1.85rem, 7.5vw, 2.5rem);
        line-height: 1.14;
    }

    body.home-page .hero-slide p {
        font-size: 0.95rem;
        line-height: 1.55;
        margin-bottom: 24px;
    }

    body.home-page .hero-btns {
        gap: 10px;
    }

    body.home-page .btn-modern,
    body.home-page .btn-modern-outline {
        min-width: 142px;
        padding: 12px 18px !important;
        font-size: 0.66rem !important;
    }

    body.home-page .home-scroll-hint {
        display: none;
    }

    body.home-page .home-section-head {
        margin-bottom: 34px;
    }

    body.home-page .home-section-head h2 {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    body.home-page .home-section-lead {
        font-size: 0.95rem;
        margin-top: 12px;
        line-height: 1.6;
    }

    body.home-page .home-section-head--row {
        flex-direction: column;
        align-items: flex-start;
    }

    body.home-page .home-gallery-card--tall {
        min-height: 320px;
    }

    body.home-page .home-gallery-card:not(.home-gallery-card--tall) {
        min-height: 240px;
    }

    body.home-page .home-newsletter.newsletter {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    body.home-page .home-newsletter__form {
        justify-content: stretch;
        flex-direction: column;
    }

    body.home-page .home-newsletter__form .btn-modern {
        width: 100%;
    }
}

