/* ============================================================
   RESET & TOKENS
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }

:root {
    --orange:  #9C6B3F;
    --orange-dark: #7A5230;
    --orange-light: #F3EBE1;
    --cream:   #FAF6F1;
    --dark:    #211A14;
    --mid:     #4A4038;
    --light:   #F0EAE1;
    --white:   #ffffff;
    --nav-h:   64px;
    --radius:  12px;
    --shadow:  0 4px 24px rgba(122,82,48,0.14);
    --max-w:   1170px;
    --font-serif: "Fraunces", serif;
}

/* ============================================================
   BASE
   ============================================================ */
body {
    font-family: "Inter Tight", sans-serif;
    color: var(--dark);
    background-color: var(--cream);
    padding-top: var(--nav-h);
    line-height: 1.6;
}
/* Pages with a fullscreen hero (currently just the homepage) let the
   hero run edge-to-edge behind the transparent nav, instead of being
   pushed down by the nav's reserved height. */
body.home-hero { padding-top: 0; }

a { text-decoration: none; color: inherit; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.6rem;
    border-radius: 8px;
    font-family: "Inter Tight", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background 0.18s, transform 0.1s, box-shadow 0.18s;
    min-height: 44px;
    white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 2px 12px rgba(238,111,75,0.35);
}
.btn-primary:hover {
    background: var(--orange-dark);
    box-shadow: 0 4px 20px rgba(238,111,75,0.45);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--orange);
    border-color: var(--orange);
}
.btn-outline:hover {
    background: var(--orange-light);
}

.btn-white {
    background: var(--white);
    color: var(--orange);
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.btn-white:hover {
    background: var(--orange-light);
}

.btn-lg {
    padding: 1rem 2.2rem;
    font-size: 1rem;
    letter-spacing: 0.2px;
    min-height: 52px;
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.65);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.14);
    border-color: var(--white);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   BADGES
   ============================================================ */
.badge {
    display: inline-block;
    background: var(--orange-light);
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 14px;
}
.badge-dark {
    background: #2a2a2a;
    color: var(--white);
}

/* ============================================================
   NAV
   ============================================================ */
nav {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: var(--nav-h);
    background: var(--dark);
    box-shadow: 0 4px 24px rgba(0,0,0,0.22);
    z-index: 1000;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}
/* Applied by script.js only on pages with a #homeHero, while the
   viewport is still over the hero image — lets it show through. */
nav.nav--transparent {
    background: transparent;
    box-shadow: none;
}

.nav-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.navlogo {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.3px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-links li a {
    color: rgba(255,255,255,0.88);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
}
.nav-links li a:hover {
    background: rgba(255,255,255,0.18);
    color: var(--white);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.28s, opacity 0.28s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   FULLSCREEN HERO (home page)
   ============================================================ */
.hero-fullscreen {
    position: relative;
    height: 100vh;
    min-height: 580px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--dark);
}
.hero-fullscreen-media {
    position: absolute;
    inset: 0;
}
.hero-fullscreen-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-fullscreen-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,11,8,0.58) 0%, rgba(15,11,8,0.22) 40%, rgba(15,11,8,0.6) 100%);
}
.hero-fullscreen-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    color: var(--white);
}
.hero-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}
.hero-fullscreen-content h1 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 1.06;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}
.hero-fullscreen-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.86);
    margin: 0 auto 36px;
    max-width: 560px;
}
.hero-fullscreen-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-scroll-cue {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background: none;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 20px;
    width: 30px;
    height: 48px;
    cursor: pointer;
    transition: border-color 0.2s;
}
.hero-scroll-cue:hover { border-color: rgba(255,255,255,0.95); }
.hero-scroll-cue span {
    display: block;
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    margin: 8px auto 0;
    animation: scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue {
    0%   { transform: translateY(0);    opacity: 1; }
    70%  { transform: translateY(14px); opacity: 0; }
    100% { transform: translateY(14px); opacity: 0; }
}

/* ============================================================
   LUX SECTION HEAD (shared by category + product showcase)
   ============================================================ */
.lux-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}
.lux-eyebrow {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px;
}
.lux-heading {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(1.9rem, 3.4vw, 2.8rem);
    line-height: 1.2;
    color: var(--dark);
}

/* ============================================================
   CATEGORY SHOWCASE — asymmetrical editorial grid
   ============================================================ */
.lux-categories {
    padding: 120px 0;
    background: var(--white);
}
.category-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: repeat(2, 260px);
    gap: 20px;
}
.category-card {
    position: relative;
    display: block;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
}
.category-card--large { grid-row: 1 / 3; }
.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s cubic-bezier(0.16,1,0.3,1);
}
.category-card:hover img { transform: scale(1.08); }
.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 42%, rgba(15,11,8,0.78) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}
.category-card-label {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    color: #fff;
    margin-bottom: 8px;
}
.category-card-cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.category-card:hover .category-card-cta,
.category-card:focus-visible .category-card-cta {
    opacity: 1;
    transform: none;
}

/* ============================================================
   PRODUCT SHOWCASE — clean, spacious editorial grid
   ============================================================ */
.lux-products {
    padding: 120px 0;
    background: var(--cream);
}
.lux-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 28px;
}
.lux-product-card {
    display: block;
}
.lux-product-img {
    aspect-ratio: 4 / 3;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 18px;
    background: var(--orange-light);
}
.lux-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.lux-product-card:hover .lux-product-img img { transform: scale(1.06); }
.lux-product-info { padding: 0 2px; }
.lux-product-cat {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 6px;
}
.lux-product-info h3 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.3;
}
.lux-product-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--mid);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    padding: 80px 0 60px;
    background: var(--cream);
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
    min-width: 0;
}

.hero-text h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: var(--dark);
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--mid);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-image {
    flex-shrink: 0;
    width: 480px;
}
.hero-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Trust row */
.trust-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--mid);
}
.trust-payments {
    display: flex;
    align-items: center;
    gap: 6px;
}
.trust-payments img {
    height: 24px;
    width: auto;
    border-radius: 3px;
}

/* ============================================================
   FEATURES STRIP
   ============================================================ */
.features-strip {
    background: var(--white);
    padding: 48px 0;
    box-shadow: 0 1px 0 #eee;
}

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

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    border-radius: var(--radius);
    transition: box-shadow 0.2s;
}
.feature-card:hover {
    box-shadow: var(--shadow);
}
.feature-card img {
    flex-shrink: 0;
    border-radius: 8px;
}
.feature-card .icon-wrap {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
}
.feature-card p {
    font-size: 0.88rem;
    color: var(--mid);
    line-height: 1.55;
}

/* ============================================================
   BENEFITS / STATS
   ============================================================ */
.benefits {
    padding: 100px 0;
    background: var(--dark);
}

.benefits-inner {
    display: flex;
    align-items: center;
    gap: 80px;
}

.benefits-text {
    flex: 1;
    min-width: 0;
}
.benefits-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 18px;
}
.benefits-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 32px;
}

.benefits-stats {
    flex-shrink: 0;
    width: 460px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 24px 20px;
    transition: background 0.2s;
}
.stat-card:hover {
    background: rgba(238,111,75,0.12);
    border-color: rgba(238,111,75,0.3);
}
.stat-number {
    display: block;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 10px;
}
.stat-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.55;
}

/* ============================================================
   SPLIT SECTIONS
   ============================================================ */
.split-section {
    padding: 100px 0;
    background: var(--cream);
}
.split-section:nth-child(even) {
    background: var(--white);
}

.split-inner {
    display: flex;
    align-items: center;
    gap: 70px;
}

.split-section--reverse .split-inner {
    flex-direction: row-reverse;
}

.split-image {
    flex-shrink: 0;
    width: 500px;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
}
.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-image--bg {
    background-image: url(https://images.unsplash.com/photo-1748679979601-dc9ec43d900d?auto=format&fit=crop&w=1000&q=80);
    background-size: cover;
    background-position: center;
}

.split-text {
    flex: 1;
    min-width: 0;
}
.split-text h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    color: var(--dark);
}
.split-text p {
    font-size: 1rem;
    color: var(--mid);
    line-height: 1.75;
    margin-bottom: 28px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
    padding: 100px 0;
    background: var(--orange-light);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--dark);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: 0 2px 20px rgba(238,111,75,0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(238,111,75,0.14);
}

.stars {
    color: var(--orange);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--mid);
    line-height: 1.7;
    flex: 1;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}
.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.reviewer strong {
    font-size: 0.9rem;
    display: block;
}
.reviewer small {
    font-size: 0.78rem;
    color: #888;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    background: var(--orange);
    padding: 70px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-inner h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}
.cta-inner p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin-top: 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 24px 24px;
    font-family: "Inter Tight", sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto 40px;
    gap: 32px;
}

.footer-logo {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
}

.footer-about,
.footer-links,
.footer-contact {
    flex: 1 1 220px;
}

.footer h3 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 18px;
}

.footer p,
.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.8;
    text-decoration: none;
}

.footer-links a:hover { color: var(--orange); }

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }

.footer-contact p { margin-bottom: 4px; }

.social-icons { display: flex; gap: 12px; margin-top: 16px; }
.social-icons a { opacity: 0.7; transition: opacity 0.2s; }
.social-icons a:hover { opacity: 1; }

.footer-bottom {
    max-width: var(--max-w);
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    text-align: center;
}

/* ============================================================
   FLOATING ACTION BUTTONS
   ============================================================ */
.fab {
    position: fixed;
    bottom: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fab:hover { transform: scale(1.12); color: #fff; }

/* WhatsApp — bottom-left */
.fab-whatsapp {
    left: 28px;
    background: #25D366;
    box-shadow: 0 0 0 0 rgba(37,211,102,0.5), 0 4px 18px rgba(37,211,102,0.45);
    animation: pulse-wa 2.4s ease-in-out infinite;
}
.fab-whatsapp:hover {
    box-shadow: 0 0 0 10px rgba(37,211,102,0), 0 6px 24px rgba(37,211,102,0.7);
}
@keyframes pulse-wa {
    0%   { box-shadow: 0 0 0 0    rgba(37,211,102,0.55), 0 4px 18px rgba(37,211,102,0.4); }
    50%  { box-shadow: 0 0 0 14px rgba(37,211,102,0),    0 4px 22px rgba(37,211,102,0.6); }
    100% { box-shadow: 0 0 0 0    rgba(37,211,102,0.55), 0 4px 18px rgba(37,211,102,0.4); }
}

/* Phone — bottom-right */
.fab-phone {
    right: 28px;
    background: var(--orange);
    box-shadow: 0 0 0 0 rgba(238,111,75,0.55), 0 4px 18px rgba(238,111,75,0.4);
    animation: pulse-ph 2.4s ease-in-out infinite;
    animation-delay: 1.2s;
}
.fab-phone:hover {
    box-shadow: 0 0 0 10px rgba(238,111,75,0), 0 6px 24px rgba(238,111,75,0.75);
}
@keyframes pulse-ph {
    0%   { box-shadow: 0 0 0 0    rgba(238,111,75,0.6),  0 4px 18px rgba(238,111,75,0.4); }
    50%  { box-shadow: 0 0 0 14px rgba(238,111,75,0),    0 4px 22px rgba(238,111,75,0.6); }
    100% { box-shadow: 0 0 0 0    rgba(238,111,75,0.6),  0 4px 18px rgba(238,111,75,0.4); }
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }

    .benefits-inner { flex-direction: column; gap: 50px; }
    .benefits-stats { width: 100%; }

    .split-inner,
    .split-section--reverse .split-inner { flex-direction: column; gap: 40px; }
    .split-image { width: 100%; max-width: 560px; height: 320px; }

    /* Category + product showcase */
    .lux-categories, .lux-products { padding: 88px 0; }
    .lux-product-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
    /* Nav */
    .nav-toggle { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-h);
        left: 0; right: 0;
        background: var(--orange);
        flex-direction: column;
        align-items: stretch;
        padding: 12px 20px 20px;
        gap: 2px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }
    .nav-links.open { display: flex; }
    .nav-links li a {
        padding: 10px 12px;
        display: block;
    }

    /* Hero */
    .hero { padding: 48px 0 40px; }
    .hero-inner { flex-direction: column; gap: 32px; }
    .hero-image { width: 100%; max-width: 420px; margin: 0 auto; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .trust-row { flex-direction: column; align-items: flex-start; gap: 12px; }

    /* Fullscreen hero */
    .hero-fullscreen { height: 100svh; min-height: 520px; }
    .hero-fullscreen-actions { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
    .hero-fullscreen-actions .btn { width: 100%; }

    /* Category grid — stack, drop the tall asymmetry */
    .lux-categories, .lux-products { padding: 64px 0; }
    .lux-section-head { margin-bottom: 40px; }
    .category-grid { grid-template-columns: 1fr; grid-template-rows: none; }
    .category-card, .category-card--large { grid-row: auto; height: 300px; }
    .lux-product-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }

    /* Features */
    .features-grid { grid-template-columns: 1fr; }

    /* Benefits */
    .benefits { padding: 60px 0; }
    .benefits-stats { grid-template-columns: 1fr 1fr; }

    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr; }

    /* CTA */
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-inner .btn { width: 100%; max-width: 360px; }

    /* Footer */
    .footer-container { flex-direction: column; }

    /* FABs */
    .fab { width: 52px; height: 52px; bottom: 20px; }
    .fab-whatsapp { left: 16px; }
    .fab-phone    { right: 16px; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
    .benefits-stats { grid-template-columns: 1fr; }
    .split-image { height: 240px; }
    .lux-product-grid { grid-template-columns: 1fr; }
    .hero-fullscreen-content h1 { font-size: clamp(2.1rem, 9vw, 2.8rem); }
}

/* ============================================================
   SMOOTH SCROLL + REVEAL
   ============================================================ */
html { scroll-behavior: smooth; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .fab { animation: none !important; }
    .hero-scroll-cue span { animation: none !important; }
}

/* ============================================================
   NAV ACTIVE + SHOP CTA
   ============================================================ */
.nav-links li a.active {
    background: rgba(255,255,255,0.22);
    color: var(--white);
}
.nav-shop {
    background: var(--white) !important;
    color: var(--orange) !important;
    font-weight: 700 !important;
    border-radius: 7px !important;
    padding: 6px 16px !important;
    transition: background 0.15s !important;
}
.nav-shop:hover { background: var(--orange-light) !important; }

/* nav shadow is now baked into the base `nav` rule above, and
   suppressed by .nav--transparent while over the fullscreen hero */

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    background: var(--dark);
    padding: 72px 24px 60px;
    text-align: center;
}
.page-hero .breadcrumb {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 14px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.65); }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 14px;
}
.page-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.78);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section { padding: 96px 0; }
.section-sm { padding: 60px 0; }

.section-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 18px;
}
.section-sub {
    font-size: 1rem;
    color: var(--mid);
    line-height: 1.7;
    max-width: 560px;
}
.section-sub--center { margin: 0 auto; text-align: center; }
.text-center { text-align: center; }

/* ============================================================
   PRODUCT GRID — shop page
   ============================================================ */
.shop-section { padding: 80px 0 100px; }

.product-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    justify-content: center;
}
.filter-btn {
    padding: 8px 20px;
    border-radius: 100px;
    font-family: "Inter Tight", sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    border: 2px solid #e0e0e0;
    background: var(--white);
    color: var(--mid);
    cursor: pointer;
    transition: all 0.18s;
}
.filter-btn:hover, .filter-btn.active {
    border-color: var(--orange);
    background: var(--orange);
    color: var(--white);
}

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

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 18px rgba(0,0,0,0.07);
    border: 1.5px solid transparent;
    display: flex;
    flex-direction: column;
    transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(238,111,75,0.15);
    border-color: var(--orange);
}

.product-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.product-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.product-card:hover .product-img img { transform: scale(1.04); }

.product-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--orange);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
}
.product-badge.badge-new { background: #27ae60; }
.product-badge.badge-sale { background: #e74c3c; }

.product-body {
    padding: 22px 22px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}

.product-category {
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--orange);
}

.product-name {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

.product-desc {
    font-size: 0.87rem;
    color: var(--mid);
    line-height: 1.6;
    flex: 1;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
    flex-wrap: wrap;
    gap: 8px;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
}
.product-price .original {
    font-size: 0.9rem;
    font-weight: 500;
    color: #aaa;
    text-decoration: line-through;
    margin-right: 6px;
}

.product-weight {
    font-size: 0.8rem;
    color: #999;
}

.product-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}
.product-actions .btn {
    flex: 1;
    font-size: 0.88rem;
    padding: 0.6rem 1rem;
}

/* Size selector */
.size-selector {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 4px;
}
.size-btn {
    padding: 4px 12px;
    border-radius: 6px;
    border: 1.5px solid #e0e0e0;
    background: transparent;
    font-family: "Inter Tight", sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
    color: var(--dark);
}
.size-btn:hover, .size-btn.selected {
    border-color: var(--orange);
    background: var(--orange-light);
    color: var(--orange);
}

/* Qty selector */
.qty-row {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
}
.qty-btn {
    width: 34px; height: 34px;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    cursor: pointer;
    font-family: "Inter Tight", sans-serif;
    color: var(--dark);
    transition: background 0.15s;
    display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: var(--orange-light); color: var(--orange); }
.qty-display {
    width: 40px;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    border-left: 1.5px solid #e0e0e0;
    border-right: 1.5px solid #e0e0e0;
    height: 34px;
    display: flex; align-items: center; justify-content: center;
}

/* WhatsApp order modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay.open { display: flex; }

.modal {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 36px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    position: relative;
    animation: modal-in 0.28s ease;
}
@keyframes modal-in {
    from { opacity: 0; transform: scale(0.93) translateY(16px); }
    to   { opacity: 1; transform: none; }
}

.modal-close {
    position: absolute;
    top: 16px; right: 18px;
    background: none; border: none;
    font-size: 1.5rem;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
    transition: color 0.15s;
}
.modal-close:hover { color: var(--dark); }

.modal-product {
    display: flex;
    gap: 16px;
    align-items: center;
    background: var(--orange-light);
    border-radius: 12px;
    padding: 16px;
    margin: 20px 0 24px;
}
.modal-product img {
    width: 70px; height: 70px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}
.modal-product-info h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.modal-product-info p  { font-size: 0.85rem; color: var(--mid); }
.modal-product-price   { font-size: 1.1rem; font-weight: 800; color: var(--orange); margin-top: 4px; }

.modal h3 { font-size: 1.25rem; font-weight: 800; color: var(--dark); }
.modal > p { font-size: 0.9rem; color: var(--mid); margin-top: 4px; }

.modal-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.modal-form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
}
.modal-form-group input,
.modal-form-group textarea,
.modal-form-group select {
    padding: 10px 13px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-family: "Inter Tight", sans-serif;
    font-size: 0.92rem;
    color: var(--dark);
    background: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.modal-form-group input:focus,
.modal-form-group textarea:focus,
.modal-form-group select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(238,111,75,0.12);
    background: #fff;
}
.modal-form-group textarea { resize: vertical; min-height: 80px; }

.modal-wa-btn {
    width: 100%;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    font-family: "Inter Tight", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.15s, transform 0.1s;
    margin-top: 8px;
}
.modal-wa-btn:hover { background: #1ebe5c; }
.modal-wa-btn:active { transform: scale(0.97); }
.modal-note {
    font-size: 0.77rem;
    color: #aaa;
    text-align: center;
    margin-top: 10px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
    display: flex;
    gap: 64px;
    align-items: center;
    padding: 96px 0;
}
.about-intro-text { flex: 1; min-width: 0; }
.about-intro-text p {
    font-size: 1rem;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-intro-img {
    flex-shrink: 0;
    width: 480px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}
.about-intro-img img { width: 100%; height: 100%; object-fit: cover; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.value-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: 0 2px 18px rgba(0,0,0,0.06);
    border-top: 4px solid var(--orange);
    transition: transform 0.2s, box-shadow 0.2s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-card .icon { font-size: 2rem; margin-bottom: 14px; }
.value-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.value-card p  { font-size: 0.88rem; color: var(--mid); line-height: 1.7; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.team-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 2px 18px rgba(0,0,0,0.06);
    transition: transform 0.2s;
}
.team-card:hover { transform: translateY(-4px); }
.team-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
}
.team-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.team-card .role { font-size: 0.8rem; color: var(--orange); font-weight: 600; margin-bottom: 10px; }
.team-card p { font-size: 0.83rem; color: var(--mid); line-height: 1.6; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 56px;
    padding: 96px 0;
}
.contact-info h2 { font-size: 1.7rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.contact-info > p { font-size: 0.97rem; color: var(--mid); line-height: 1.75; margin-bottom: 36px; }

.contact-detail {
    display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px;
}
.contact-icon {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--orange-light);
    color: var(--orange);
    font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-detail h4 { font-size: 0.9rem; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.contact-detail p  { font-size: 0.87rem; color: var(--mid); line-height: 1.6; }
.contact-detail a  { color: var(--orange); font-weight: 600; font-size: 0.87rem; }

.contact-form-wrap {
    background: var(--white);
    border-radius: 20px;
    padding: 44px 40px;
    box-shadow: 0 4px 32px rgba(238,111,75,0.1);
}
.contact-form-wrap h2 { font-size: 1.5rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.contact-form-wrap > p { font-size: 0.88rem; color: #999; margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
    padding: 11px 14px;
    border: 1.5px solid #e5e5e5;
    border-radius: 8px;
    font-family: "Inter Tight", sans-serif;
    font-size: 0.9rem; color: var(--dark);
    background: #fafafa; outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(238,111,75,0.12);
    background: #fff;
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit { width: 100%; font-size: 1rem; padding: 0.85rem; }
.form-note { font-size: 0.77rem; color: #bbb; text-align: center; margin-top: 10px; }

.form-success { display: none; text-align: center; padding: 40px 10px; }
.form-success .check { font-size: 3rem; margin-bottom: 14px; }
.form-success h3 { font-size: 1.3rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.form-success p { font-size: 0.9rem; color: var(--mid); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    background: var(--white);
    border-radius: 10px;
    border: 1.5px solid #ebebeb;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.open { border-color: var(--orange); box-shadow: 0 4px 20px rgba(238,111,75,0.1); }
.faq-question {
    width: 100%; background: none; border: none;
    padding: 18px 22px;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    font-family: "Inter Tight", sans-serif;
    font-size: 0.97rem; font-weight: 700; color: var(--dark);
    text-align: left; cursor: pointer; transition: background 0.15s;
}
.faq-question:hover { background: var(--orange-light); }
.faq-item.open .faq-question { background: var(--orange-light); }
.faq-icon { font-size: 1.4rem; color: var(--orange); flex-shrink: 0; transition: transform 0.28s; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; padding: 0 22px; }
.faq-item.open .faq-answer { max-height: 240px; padding: 0 22px 20px; }
.faq-answer p { font-size: 0.92rem; color: var(--mid); line-height: 1.78; border-top: 1px solid #f0f0f0; padding-top: 14px; }

/* ============================================================
   ADDITIONAL RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 1024px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .about-intro { flex-direction: column; }
    .about-intro-img { width: 100%; max-width: 560px; height: 320px; }
    .contact-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px 20px; }
    .modal { padding: 28px 20px; }
    .about-intro { padding: 60px 0; }
    .contact-grid { padding: 60px 0; }
}
@media (max-width: 480px) {
    .product-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
}
