/* ============================================
   TUTUN PREMIUM — style.css
   Theme: Dark Editorial Magazine · Navy · Steel · Gold
   ============================================ */

/* ----------------------
   1. CSS Variables
   ---------------------- */
:root {
    --navy:          #0D1B2A;
    --navy-light:    #152338;
    --navy-mid:      #1E3250;
    --navy-border:   #243d5c;
    --white:         #F0EEE9;
    --white-dim:     rgba(240, 238, 233, 0.55);
    --white-faint:   rgba(240, 238, 233, 0.08);
    --steel:         #4A90B8;
    --steel-light:   #6AAFD4;
    --steel-dark:    #357A9E;
    --gold:          #C9A84C;

    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Inter', sans-serif;

    --nav-height:   80px;
    --promo-height: 36px;
    --transition:   0.3s ease;

    --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.4);
}

/* ----------------------
   2. Reset & Base
   ---------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    background-color: var(--navy);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ----------------------
   3. Promo Bar
   ---------------------- */
.promo-bar {
    height: var(--promo-height);
    background-color: var(--steel-dark);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.promo-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 28s linear infinite;
}

.promo-text {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding-right: 2rem;
    flex-shrink: 0;
    color: rgba(240, 238, 233, 0.9);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ----------------------
   4. Header & Nav
   ---------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--navy);
    border-bottom: 1px solid var(--navy-border);
    transition: box-shadow var(--transition);
}

.site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.5); }

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: var(--nav-height);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.nav-links { display: flex; gap: 2.5rem; }
.nav-links--left { justify-content: flex-end; }
.nav-links--right { justify-content: flex-start; }

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white-dim);
    position: relative;
    padding-bottom: 2px;
    transition: color var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background-color: var(--steel);
    transition: width var(--transition);
}

.nav-links a:hover { color: var(--steel-light); }
.nav-links a:hover::after { width: 100%; }

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    gap: 3px;
    padding: 0 2rem;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--white);
    transition: color var(--transition);
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
}

.nav-logo:hover .logo-main { color: var(--steel-light); }

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    grid-column: 3;
    justify-self: end;
}

.hamburger span {
    display: block;
    width: 22px; height: 1.5px;
    background-color: var(--white);
    transition: transform var(--transition), opacity var(--transition);
}

.mobile-menu {
    display: none;
    background-color: var(--navy-light);
    border-top: 1px solid var(--navy-border);
    padding: 1.5rem 2rem;
}

.mobile-menu ul { display: flex; flex-direction: column; gap: 1.25rem; }

.mobile-menu a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white-dim);
    transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--steel-light); }
.mobile-menu.open { display: block; }

/* ----------------------
   5. Hero — Editorial
   ---------------------- */
.hero {
    position: relative;
    height: calc(100vh - var(--nav-height) - var(--promo-height));
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

#hero-video {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Dark gradient — heavier at bottom for text readability */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(13,27,42,0.2) 0%,
        rgba(13,27,42,0.5) 50%,
        rgba(13,27,42,0.92) 100%
    );
    z-index: 1;
}

/* Giant background typographic element */
.hero-bg-text {
    position: absolute;
    right: -0.05em;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-heading);
    font-size: clamp(200px, 30vw, 380px);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(201, 168, 76, 0.12);
    line-height: 1;
    z-index: 1;
    user-select: none;
    pointer-events: none;
    letter-spacing: -0.02em;
}

/* Main content — sits at the bottom */
.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem 4rem;
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 1.5rem;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    animation: fadeUp 0.8s ease both;
}

.hero-tag-line {
    display: block;
    width: 32px;
    height: 1px;
    background-color: var(--gold);
    flex-shrink: 0;
}

.hero-title {
    display: flex;
    flex-direction: column;
    line-height: 0.9;
    animation: fadeUp 0.8s 0.15s ease both;
}

.hero-title-sm {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    font-style: italic;
    color: var(--white-dim);
    letter-spacing: 0.06em;
}

.hero-title-lg {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 12vw, 11rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
    line-height: 0.9;
}

.hero-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(240,238,233,0.12);
    animation: fadeUp 0.8s 0.3s ease both;
}

.hero-desc {
    font-size: 0.82rem;
    color: var(--white-dim);
    line-height: 1.7;
    letter-spacing: 0.03em;
}

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 2rem;
    border: 1px solid var(--steel);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background-color var(--transition), gap var(--transition);
}

.btn-hero-cta:hover {
    background-color: var(--steel);
    gap: 1.1rem;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    right: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.hero-scroll-line {
    display: block;
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    animation: scrollPulse 2s ease infinite;
}

.hero-scroll-label {
    font-family: var(--font-body);
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    writing-mode: vertical-rl;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

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

/* ----------------------
   6. Marquee Strip
   ---------------------- */
.strip-marquee {
    background-color: var(--gold);
    overflow: hidden;
    padding: 0.65rem 0;
}

.strip-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    gap: 1.5rem;
    align-items: center;
}

.strip-track span {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--navy);
    flex-shrink: 0;
}

.strip-dot {
    font-size: 0.4rem !important;
    color: var(--navy) !important;
    opacity: 0.5;
}

/* ----------------------
   7. Editorial Label
   ---------------------- */
.editorial-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--steel-light);
}

/* ----------------------
   8. Products — Carousel
   ---------------------- */
.products-carousel-section {
    padding: 6rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.products-carousel-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--navy-border);
}

.products-carousel-title-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.editorial-title {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 3vw, 2.2rem);
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Custom nav arrows */
.carousel-nav {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--navy-border);
    background: transparent;
    color: var(--white-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color var(--transition), color var(--transition), background-color var(--transition);
}

.carousel-btn:hover {
    border-color: var(--steel);
    color: var(--steel-light);
    background-color: var(--navy-light);
}

/* Swiper slide cards */
.products-swiper {
    overflow: visible !important;
}

.product-slide-card {
    display: block;
    border: 1px solid var(--navy-border);
    background-color: var(--navy-light);
    overflow: hidden;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}

.product-slide-card:hover {
    border-color: var(--steel-dark);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.product-slide-img {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: var(--navy-mid);
}

.product-slide-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-slide-info {
    padding: 1.25rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.product-slide-num {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--gold);
    opacity: 0.7;
    letter-spacing: 0.1em;
}

.product-slide-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-top: 0.1rem;
}

.product-slide-price {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.product-slide-cta {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--steel);
    opacity: 0;
    transform: translateY(4px);
    transition: opacity var(--transition), transform var(--transition);
    display: block;
}

.product-slide-card:hover .product-slide-cta {
    opacity: 1;
    transform: translateY(0);
}

/* ----------------------
   9. Stats Bleed
   ---------------------- */
.stats-bleed {
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
    border-top: 1px solid var(--navy-border);
    border-bottom: 1px solid var(--navy-border);
    padding: 4rem 3rem;
}

.stats-bleed-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.stats-bleed-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.stats-bleed-num {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stats-bleed-num sup {
    font-size: 0.45em;
    color: var(--gold);
    vertical-align: super;
}

.stats-bleed-label {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white-dim);
}

.stats-bleed-divider {
    width: 1px;
    height: 60px;
    background-color: var(--navy-border);
    flex-shrink: 0;
}

/* ----------------------
   10. About — Split Layout
   ---------------------- */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 100%;
    border-bottom: 1px solid var(--navy-border);
}

.about-split-left {
    padding: 6rem 4rem 6rem 3rem;
    border-right: 1px solid var(--navy-border);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

.about-split-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.about-split-title em {
    font-style: italic;
    color: var(--gold);
}

.about-split-right {
    padding: 6rem 3rem 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    background-color: var(--navy-light);
}

.about-split-right p {
    font-size: 0.9rem;
    color: var(--white-dim);
    line-height: 1.85;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--navy-border);
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--white-dim);
}

.about-feature i {
    color: var(--steel);
    font-size: 0.85rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

/* ----------------------
   11. Section Titles (shared)
   ---------------------- */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600;
    color: var(--white);
    text-align: center;
    margin-bottom: 0.6rem;
    letter-spacing: 0.04em;
}

.section-divider {
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--gold);
    margin: 0.75rem auto 3rem;
}

/* ----------------------
   12. Testimonials
   ---------------------- */
.testimonials-section {
    padding: 5rem 2rem;
    max-width: 860px;
    margin: 0 auto;
}

.testimonial-slider { padding-bottom: 3rem !important; }

.testimonial-card {
    background-color: var(--navy-light);
    border: 1px solid var(--navy-border);
    padding: 2.5rem 2rem;
    text-align: center;
}

.stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.15em; margin-bottom: 1rem; }

.testimonial-card .quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.testimonial-card footer {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--steel-light);
}

.swiper-pagination-bullet { background-color: var(--navy-border) !important; opacity: 1 !important; }
.swiper-pagination-bullet-active { background-color: var(--steel) !important; }

/* ----------------------
   13. Newsletter
   ---------------------- */
.newsletter-section {
    background-color: var(--navy-mid);
    border-top: 1px solid var(--navy-border);
    padding: 4.5rem 2rem;
    text-align: center;
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--white);
    margin-bottom: 0.6rem;
    letter-spacing: 0.04em;
}

.newsletter-section > p {
    font-size: 0.8rem;
    color: var(--white-dim);
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    max-width: 440px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.85rem 1.2rem;
    border: 1px solid var(--navy-border);
    background-color: var(--navy-light);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    transition: border-color var(--transition);
}

.newsletter-form input::placeholder { color: var(--white-dim); }
.newsletter-form input:focus { border-color: var(--steel); }

.btn-subscribe {
    padding: 0.85rem 1.6rem;
    background-color: var(--steel);
    color: var(--white);
    border: 1px solid var(--steel);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color var(--transition);
    white-space: nowrap;
}

.btn-subscribe:hover { background-color: var(--steel-dark); }

/* ----------------------
   14. Product Pages (galeata/punga)
   ---------------------- */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 2rem 5rem;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.04em;
}

.page-title-rule {
    display: block;
    width: 48px;
    height: 1px;
    background-color: var(--gold);
    margin-bottom: 2.5rem;
}

.filter-section {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1.75rem 2rem;
    background-color: var(--navy-light);
    border: 1px solid var(--navy-border);
    margin-bottom: 2.5rem;
}

.price-filter, .brand-filter { flex: 1; min-width: 220px; }

.price-filter h3, .brand-filter h3 {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white-dim);
    margin-bottom: 1rem;
}

#price-slider { margin: 0.75rem 0.5rem 1rem; }
.noUi-connect { background: var(--steel) !important; }
.noUi-handle {
    border-radius: 0 !important; box-shadow: none !important;
    border: 2px solid var(--steel) !important;
    background: var(--navy) !important; cursor: pointer;
}
.noUi-handle::before, .noUi-handle::after { display: none !important; }
.noUi-target {
    background: var(--navy-border) !important;
    border: none !important; box-shadow: none !important;
    border-radius: 0 !important; height: 3px !important;
}

#slider-values { font-size: 0.78rem; color: var(--white-dim); margin-top: 0.5rem; }
#slider-values #min-value, #slider-values #max-value { font-weight: 600; color: var(--steel-light); }

.brand-buttons { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.brand-btn {
    padding: 0.4rem 1rem;
    border: 1px solid var(--navy-border);
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-dim);
    cursor: pointer;
    transition: border-color var(--transition), color var(--transition), background-color var(--transition);
}

.brand-btn:hover { border-color: var(--steel); color: var(--steel-light); }
.brand-btn.active { background-color: var(--steel); border-color: var(--steel); color: var(--white); }

/* Product grid for product pages */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background-color: var(--navy-light);
    border: 1px solid var(--navy-border);
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--steel-dark);
}

.product-image-container {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: var(--navy-mid);
}

.product-image-container img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-container img { transform: scale(1.05); }

.product-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    padding: 1rem 1.2rem 0.25rem;
}

.product-price {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--gold);
    padding: 0 1.2rem 0.4rem;
}

.product-description {
    font-size: 0.78rem;
    color: var(--white-dim);
    padding: 0 1.2rem 0.75rem;
    flex-grow: 1;
}

.btn-call {
    display: block;
    margin: 0 1.2rem 1.2rem;
    padding: 0.7rem;
    background-color: transparent;
    color: var(--steel-light);
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    border: 1px solid var(--steel-dark);
    transition: background-color var(--transition), color var(--transition);
}

.btn-call:hover { background-color: var(--steel); border-color: var(--steel); color: var(--white); }

/* ----------------------
   15. Footer
   ---------------------- */
.site-footer {
    background-color: var(--navy-light);
    border-top: 1px solid var(--navy-border);
    color: var(--white-dim);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem 2.5rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand .logo-main { color: var(--white); font-size: 1.4rem; }
.footer-brand .logo-sub { color: var(--gold); }
.footer-brand p { margin-top: 0.75rem; font-size: 0.78rem; line-height: 1.7; }

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-col p { font-size: 0.8rem; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.footer-col i { color: var(--steel); width: 14px; flex-shrink: 0; }

.footer-bottom {
    border-top: 1px solid var(--navy-border);
    padding: 1.25rem 2rem;
    text-align: center;
    font-size: 0.7rem;
    color: rgba(240,238,233,0.2);
    letter-spacing: 0.06em;
}

/* ----------------------
   16. Responsive
   ---------------------- */
@media (max-width: 900px) {
    .about-split { grid-template-columns: 1fr; }
    .about-split-left { border-right: none; border-bottom: 1px solid var(--navy-border); padding: 4rem 2rem 3rem; }
    .about-split-right { padding: 3rem 2rem 4rem; }
}

@media (max-width: 768px) {
    :root { --nav-height: 64px; }

    .nav-links { display: none; }
    .hamburger { display: flex; }

    .hero { height: 85vh; min-height: 500px; align-items: flex-end; }
    .hero-inner { padding: 0 1.5rem 3rem; }
    .hero-bg-text { display: none; }
    .hero-scroll { display: none; }
    .hero-bottom { flex-direction: column; align-items: flex-start; gap: 1.25rem; }

    .products-editorial { padding: 4rem 1.5rem; }

    .editorial-card {
        grid-template-columns: 32px 100px 1fr;
        gap: 1rem;
    }

    .editorial-card-img { width: 100px; height: 80px; }
    .editorial-card-info h3 { font-size: 1.2rem; }
    .editorial-card-cta { display: none; }

    .stats-bleed { padding: 3rem 1.5rem; }
    .stats-bleed-inner { gap: 0; }
    .stats-bleed-num { font-size: 2.5rem; }

    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .filter-section { flex-direction: column; gap: 1.5rem; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .newsletter-form { flex-direction: column; }
    .btn-subscribe { width: 100%; }
}

@media (max-width: 480px) {
    .product-grid { grid-template-columns: 1fr; }
    .editorial-card { grid-template-columns: 1fr; }
    .editorial-card-num { display: none; }
    .editorial-card-img { width: 100%; height: 160px; }
}
