/* ══════════════════════════════════════════════════════════════
   SEANCE — Beauty Salon Website
   Design System & Styles
   ══════════════════════════════════════════════════════════════ */

/* ─── CUSTOM FONTS ─────────────────────────────────────────── */
@font-face {
    font-family: 'GoodTimes';
    src: url('../fonts/GoodTimes-Regular.woff2') format('woff2'),
         url('../fonts/GoodTimes-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
    /* Colors */
    --dark:          #1E0B1F;
    --dark-2:        #242321;
    --dark-3:        #2e2d2b;
    --cream:         #f2f2f2;
    --cream-2:       #f5f0e8;
    --cream-3:       #ede7da;
    --red:           #ff9545;
    --red-hover:     #d96e1d;
    --red-glow:      rgba(205, 139, 89, 0.25);
    --purple:        #4b1b7a;
    --purple-hover:  #3d1562;
    --warm-gray:     #8a7f74;
    --warm-gray-2:   #b0a89e;
    --border:        #e2ddd6;
    --border-dark:   rgba(255,255,255,0.08);
    --white:         #ffffff;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-accent:  'Cormorant Garamond', Georgia, serif;
    --font-body:    'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --space-xs:  4px;
    --space-sm:  8px;
    --space-md:  16px;
    --space-lg:  24px;
    --space-xl:  32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    --space-5xl: 128px;

    /* Sections */
    --section-padding: clamp(80px, 10vw, 140px);

    /* Border radius */
    --radius-sm:   4px;
    --radius-md:   8px;
    --radius-lg:   16px;
    --radius-full: 999px;

    /* Transitions */
    --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md:  0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
    --shadow-lg:  0 20px 60px rgba(0,0,0,0.14), 0 8px 24px rgba(0,0,0,0.08);
    --shadow-xl:  0 30px 80px rgba(0,0,0,0.2);
}

/* ─── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}

img { display: block; max-width: 100%; height: auto; }

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

ul { list-style: none; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

address { font-style: normal; }

/* ─── UTILITIES ──────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}

.text-center { text-align: center; }

.section {
    padding: var(--section-padding) 0;
}

.section--dark {
    background: var(--dark);
    color: var(--cream);
}

.section--cream {
    background: var(--cream-2);
}

/* ─── SECTION TYPOGRAPHY ─────────────────────────────────────── */
.section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-4xl);
}

.section__label {
    display: inline-block;
    font-family: 'GoodTimes', var(--font-accent);
    /* font-family: var(--font-body); */
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: var(--space-md);
}

/* .section__label--light { color: rgba(200, 57, 26, 0.8); } */

.section__title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    /* color: var(--dark); */
    margin-bottom: var(--space-lg);
}

.section__title em {
    font-style: italic;
    color: var(--red);
}

/* .section__title--light { color: var(--cream); } */
/* .section__title--light em { color: rgba(200, 57, 26, 0.9); } */

.section__subtitle {
    font-size: 17px;
    color: var(--warm-gray);
    line-height: 1.7;
}

.section__subtitle--light { color: var(--warm-gray-2); }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    box-sizing: border-box;
    line-height: 1;
    cursor: pointer;
    touch-action: manipulation;
    transition: background 0.3s var(--ease-out),
                color 0.3s var(--ease-out),
                transform 0.25s var(--ease-out),
                box-shadow 0.3s var(--ease-out),
                border-color 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.08);
    opacity: 0;
    transition: opacity 0.2s;
}

.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(200, 57, 26, 0.3);
}

.btn--primary:hover {
    background: var(--red-hover);
    box-shadow: 0 8px 32px rgba(200, 57, 26, 0.4);
}

.btn--ghost {
    background: transparent;
    color: var(--cream);
    border: 1.5px solid rgba(255,255,255,0.3);
}

.btn--ghost:hover {
    border-color: rgba(255,255,255,0.7);
    color: var(--white);
}

.btn--outline {
    background: transparent;
    color: var(--red);
    border: 1.5px solid var(--red);
}

.btn--outline:hover {
    background: var(--red);
    color: var(--white);
}

.btn--read-more {
    background: transparent;
    color: var(--red);
    border: 1.5px solid #f2f2f2;
    box-sizing: border-box;
}

.btn--read-more:hover {
    border-color: var(--red);
}

.btn--sm {
    padding: 10px 22px;
    font-size: 12px;
}

.btn--full { width: 100%; }

.btn__loader {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

.btn.loading .btn__text { display: none; }
.btn.loading .btn__loader { display: block; }

/* ─── NAVIGATION ─────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.4s var(--ease-out),
                backdrop-filter 0.4s var(--ease-out),
                box-shadow 0.4s var(--ease-out);
    padding: 0;
}

.nav.scrolled {
    background: rgba(30, 11, 31, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
    height: clamp(64px, 8vw, 80px);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.25s;
}

.nav__logo-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.nav__logo:hover { opacity: 0.85; }

.nav__logo-img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 1.5px rgba(255,255,255,0.18);
    transition: box-shadow 0.4s;
}

.nav.scrolled .nav__logo-img { box-shadow: 0 0 0 1.5px rgba(0,0,0,0.10); }

.nav__logo-text {
    font-family: 'GoodTimes', var(--font-accent);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.22em;
    color: var(--red);
    transition: color 0.4s;
}

.nav__logo-text-small {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: #fff;
    text-transform: uppercase;
    transition: color 0.4s;
    margin-top: -6px;   
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: clamp(24px, 3vw, 40px);
}

.nav__link {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    transition: color 0.25s;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--red);
    transition: width 0.3s var(--ease-out);
}

.nav__link:hover { color: var(--white); }
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }
.nav__link.active { color: var(--white); }

.nav__link--cta {
    padding: 9px 22px;
    background: var(--red);
    color: var(--white) !important;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 16px rgba(200, 57, 26, 0.35);
    transition: background 0.3s, box-shadow 0.3s, transform 0.25s;
}

.nav__link--cta::after { display: none; }

.nav__link--cta:hover {
    background: var(--red-hover);
    box-shadow: 0 6px 24px rgba(200, 57, 26, 0.45);
    transform: translateY(-1px);
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1010;
}

.nav__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.35s var(--ease-out), opacity 0.35s;
}

.nav__hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav__hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 990;
    opacity: 0;
    transition: opacity 0.35s;
}

.nav__overlay.visible {
    opacity: 1;
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
    position: relative;
    height: 100dvh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark);
}

/* Animated gradient background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 70% at 50% 60%, rgba(75, 27, 122, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(200, 57, 26, 0.10) 0%, transparent 50%);
    animation: heroGradient 12s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes heroGradient {
    0%   { opacity: 0.6; transform: scale(1); }
    50%  { opacity: 1; transform: scale(1.05); }
    100% { opacity: 0.7; transform: scale(1) rotate(-1deg); }
}

.hero__bg-watermark {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    overflow: hidden;
}

.hero__bg-watermark img {
    width: min(70%, 600px);
    opacity: 0.035;
    filter: invert(1);
    animation: watermarkFloat 20s ease-in-out infinite;
}

@keyframes watermarkFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-20px) scale(1.02); }
}

.hero__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 clamp(20px, 5vw, 60px);
    max-width: 800px;
}

.hero__eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: var(--space-lg);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(60px, 11vw, 110px);
    font-weight: 500;
    line-height: 1.0;
    letter-spacing: -0.03em;
    color: var(--cream);
    margin-bottom: var(--space-xl);
}

.hero__line {
    display: block;
}

.hero__line--accent em {
    font-style: italic;
    color: var(--red);
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 300;
    line-height: 1.7;
    color: var(--warm-gray-2);
    margin-bottom: var(--space-2xl);
}

.hero__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

/* Hero entrance animations */
.hero-anim {
    opacity: 0;
    transform: translateY(28px);
    animation: heroFadeUp 0.9s var(--ease-out) both;
    animation-delay: calc(var(--i) * 0.15s + 0.2s);
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.35);
    z-index: 2;
    transition: color 0.3s;
}

.hero__scroll-indicator:hover { color: rgba(255,255,255,0.7); }

.hero__scroll-line {
    display: block;
    width: 1px;
    height: 52px;
    background: currentColor;
    transform-origin: top;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.4; }
    50%       { transform: scaleY(0.6); opacity: 1; }
}

.hero__scroll-label {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

/* ─── STATS BAR ──────────────────────────────────────────────── */
.stats-bar {
    background: var(--cream-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: clamp(32px, 5vw, 56px) 0;
}

.stats-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    text-align: center;
}

.stat-item__value {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.stat-item__number {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 500;
    color: var(--dark);
    letter-spacing: -0.02em;
    line-height: 1;
}

.stat-item__suffix {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 400;
    color: var(--red);
    line-height: 1;
}

.stat-item__label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-top: var(--space-sm);
}

/* ─── ABOUT ──────────────────────────────────────────────────── */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 100px);
    align-items: center;
}

.about__visual {
    position: relative;
}

.about__image-wrap {
    position: relative;
}

.about__image-border {
    position: absolute;
    inset: -16px -16px 16px 16px;
    border: 1.5px solid var(--cream-3);
    border-radius: var(--radius-md);
    pointer-events: none;
    transition: transform 0.4s var(--ease-out);
}

.about__visual:hover .about__image-border {
    transform: translate(-4px, -4px);
}

.about__image {
    width: 100%;
    border-radius: var(--radius-md);
    object-fit: cover;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-lg);
    transition: transform 0.6s var(--ease-out);
}

.about__visual:hover .about__image {
    transform: scale(1.02);
}

.about__badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: badgeFloat 4s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}

.about__badge-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about__content { }

.about__text {
    font-size: 16px;
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin: var(--space-2xl) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: var(--space-xl) 0;
}

.about__value {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.about__value-icon {
    flex-shrink: 0;
    color: var(--red);
    font-size: 14px;
    margin-top: 4px;
    transition: transform 0.3s;
}

.about__value:hover .about__value-icon {
    transform: rotate(45deg);
}

.about__value-content strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.02em;
    margin-bottom: 2px;
}

.about__value-content p {
    font-size: 14px;
    color: var(--warm-gray);
    line-height: 1.5;
}

/* ─── SERVICES ───────────────────────────────────────────────── */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2.5vw, 24px);
}

.service-card {
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 40px);
    transition: background 0.35s var(--ease-out),
                border-color 0.35s var(--ease-out),
                transform 0.35s var(--ease-out),
                box-shadow 0.35s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--red);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s var(--ease-out);
}

.service-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.service-card:hover::before {
    transform: scaleY(1);
}

.service-card__icon-wrap {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-lg);
    color: var(--red);
    transition: transform 0.3s var(--ease-out), color 0.3s;
}

.service-card:hover .service-card__icon-wrap {
    transform: scale(1.1);
}

.service-card__icon {
    width: 100%;
    height: 100%;
}

.service-card__title {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 500;
    color: var(--cream);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.service-card__text {
    flex: 1;
    font-size: 14px;
    color: var(--warm-gray-2);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.service-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-dark);
}

.service-card__duration {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gray);
}

.service-card__price {
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 400;
    color: var(--cream);
}

/* ─── PRODUCTS ───────────────────────────────────────────────── */
.products__filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 9px 22px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--warm-gray);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    background: transparent;
    transition: all 0.3s var(--ease-out);
}

.filter-btn:hover {
    color: var(--dark);
    border-color: var(--dark);
}

.filter-btn.active {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2.5vw, 28px);
}

.product-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform 0.4s var(--ease-out),
                box-shadow 0.4s var(--ease-out),
                border-color 0.4s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--cream-3);
}

.product-card.hidden {
    display: none;
}

.product-card__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--cream-2);
}

.product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.product-card:hover .product-card__image {
    transform: scale(1.06);
}

.product-card__badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    background: var(--red);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(200, 57, 26, 0.35);
}

.product-card__badge--new { background: var(--purple); }
.product-card__badge--limited {
    background: var(--dark);
    color: var(--cream);
}

.product-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: clamp(20px, 3vw, 28px);
}

.product-card__category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: var(--space-sm);
}

.product-card__title {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 500;
    color: var(--dark);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.product-card__desc {
    flex: 1;
    font-size: 14px;
    color: var(--warm-gray);
    line-height: 1.65;
    margin-bottom: var(--space-lg);
}

.product-card__variants {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding: var(--space-md) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.variant-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gray);
    flex-shrink: 0;
}

.variant-options {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.variant-btn {
    padding: 5px 14px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--warm-gray);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    background: transparent;
    transition: all 0.25s var(--ease-out);
    cursor: pointer;
}

.variant-btn:hover {
    border-color: var(--dark);
    color: var(--dark);
}

.variant-btn.active {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}

.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.product-card__price {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    color: var(--dark);
    letter-spacing: -0.02em;
}

/* ─── PRODUCT MODAL ──────────────────────────────────────────── */
.product-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 16px;
}

.product-modal[hidden] { display: none; }

.product-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(30, 11, 31, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
    z-index: 0;
}

.product-modal__dialog {
    position: relative;
    z-index: 1;
    background: var(--cream-2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    max-width: 760px;
    width: 100%;
    max-height: 90vh;
    max-height: 90svh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: grid;
    grid-template-columns: 1fr 1fr;
    animation: productModalIn 0.32s var(--ease-out);
}

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

.product-modal__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cream-3);
    color: var(--dark);
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
    flex-shrink: 0;
}

.product-modal__close:hover { background: var(--border); }

.product-modal__image-wrap {
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.product-modal__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-modal__content {
    padding: clamp(24px, 4vw, 40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-md);
}

.product-modal__category {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
}

.product-modal__title {
    font-family: var(--font-display);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 500;
    color: var(--dark);
    line-height: 1.2;
}

.product-modal__desc {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.75;
    color: var(--warm-gray);
}

@media (max-width: 600px) {
    .product-modal {
        padding: 0;
        align-items: center;
        width: 100vw;
    }
    .product-modal__dialog {
        grid-template-columns: 1fr;
        width: 90vw;
        max-height: 88svh;
        max-height: 88vh;
        border-radius: var(--radius-lg);
    }
    .product-modal__image-wrap {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        aspect-ratio: 4 / 3;
    }
}

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2.5vw, 24px);
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 40px);
    transition: background 0.3s, transform 0.35s var(--ease-out);
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-4px);
}

.testimonial-card__stars {
    color: var(--red);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: var(--space-lg);
}

.testimonial-card__quote {
    flex: 1;
    font-family: var(--font-accent);
    font-size: clamp(16px, 2vw, 19px);
    font-style: italic;
    font-weight: 300;
    color: var(--cream-2);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    quotes: "\201C" "\201D";
}

.testimonial-card__quote::before {
    content: open-quote;
    color: var(--red);
    font-size: 1.4em;
    line-height: 0;
    vertical-align: -0.5em;
    margin-right: 6px;
}

.testimonial-card__quote::after {
    content: close-quote;
    color: var(--red);
    font-size: 1.4em;
    line-height: 0;
    vertical-align: -0.2em;
    margin-left: 2px;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-dark);
}

.testimonial-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-card__author strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 2px;
}

.testimonial-card__author span {
    font-size: 12px;
    color: var(--warm-gray);
    letter-spacing: 0.06em;
}

/* ─── CONTACT ────────────────────────────────────────────────── */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(40px, 8vw, 100px);
    align-items: flex-start;
}

.contact__text {
    font-size: 16px;
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact__detail-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: var(--cream-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
    color: var(--red);
    margin-top: 2px;
}

.contact__detail-icon svg { width: 100%; height: 100%; }

.contact__detail strong {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 3px;
}

.contact__detail p, .contact__detail a {
    font-size: 15px;
    color: var(--warm-gray);
}

.contact__detail a:hover { color: var(--red); }

.contact__social {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--cream-2);
    color: var(--dark);
    border: 1.5px solid var(--border);
    transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.25s;
}

.social-link svg { width: 18px; height: 18px; }

.social-link:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
    transform: translateY(-2px);
}

.social-link--sm {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
    color: var(--warm-gray-2);
}

.social-link--sm svg { width: 16px; height: 16px; }

.social-link--sm:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

/* ─── FORM ───────────────────────────────────────────────────── */
.contact__form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 5vw, 48px);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.form-row .form-group { margin-bottom: 0; }

.form-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--dark);
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
    appearance: none;
    -webkit-appearance: none;
}

.form-input::placeholder { color: var(--warm-gray-2); }

.form-input:focus {
    border-color: var(--red);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--red-glow);
}

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238a7f74' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 110px;
}

.form__note {
    text-align: center;
    font-size: 12px;
    color: var(--warm-gray);
    margin-top: var(--space-md);
}

.form__success {
    text-align: center;
    padding: var(--space-2xl);
}

.form__success-icon {
    font-size: 32px;
    color: var(--red);
    margin-bottom: var(--space-md);
    animation: spin 2s linear infinite;
}

.form__success h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: var(--space-md);
}

.form__success p {
    font-size: 15px;
    color: var(--warm-gray);
    line-height: 1.7;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
    background: var(--dark);
    color: var(--cream);
    padding: var(--space-5xl) 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: clamp(32px, 5vw, 64px);
    padding-bottom: var(--space-4xl);
    border-bottom: 1px solid var(--border-dark);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--space-lg);
    transition: opacity 0.25s;
}

.footer__logo:hover { opacity: 0.8; }

.footer__logo-img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 50%;
    /* filter: invert(1); */
    opacity: 0.85;
}

.footer__logo-text {
    font-family: 'GoodTimes', var(--font-accent);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.22em;
    color: var(--red);
}

.footer__tagline {
    font-family: var(--font-accent);
    font-size: 17px;
    font-style: italic;
    color: var(--warm-gray);
    margin-bottom: var(--space-xl);
}

.footer__col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: var(--space-lg);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__links a {
    font-size: 14px;
    color: var(--warm-gray);
    transition: color 0.25s;
}

.footer__links a:hover { color: var(--red); }

.footer__address p,
.footer__address a {
    font-size: 14px;
    color: var(--warm-gray);
    margin-bottom: var(--space-sm);
    display: block;
    transition: color 0.25s;
}

.footer__address a:hover { color: var(--red); }

.footer__hours {
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer__hours p {
    font-size: 13px;
    color: var(--warm-gray);
}

.footer__hours strong {
    color: var(--warm-gray-2);
    font-weight: 500;
    min-width: 76px;
    display: inline-block;
}

.footer__social {
    display: flex;
    gap: var(--space-sm);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) 0;
    font-size: 12px;
    color: var(--warm-gray);
    gap: var(--space-md);
}

/* ─── MODAL ──────────────────────────────────────────────────── */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
}

.modal[hidden] { display: none; }

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.25s;
}

.modal__panel {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(32px, 5vw, 56px);
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-xl);
    animation: modalIn 0.35s var(--ease-out);
}

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

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--cream-2);
    color: var(--dark);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s;
}

.modal__close:hover { background: var(--cream-3); }

.modal__icon {
    font-size: 36px;
    color: var(--red);
    margin-bottom: var(--space-md);
}

.modal__title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: var(--space-md);
}

.modal__text {
    font-size: 15px;
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

/* ─── SCROLL REVEAL ANIMATIONS ───────────────────────────────── */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.85s var(--ease-out),
                transform 0.85s var(--ease-out);
    transition-delay: var(--delay, 0s);
}

.reveal-up    { transform: translateY(48px); }
.reveal-left  { transform: translateX(-56px); }
.reveal-right { transform: translateX(56px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* ─── MISC ANIMATIONS ────────────────────────────────────────── */
@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .products__grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials__grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .footer__grid { grid-template-columns: 1fr 1fr; row-gap: var(--space-3xl); }
}

@media (max-width: 768px) {
    /* Nav mobile */
    .nav__hamburger {
        display: flex;
    }

    .nav__overlay {
        display: none;
    }

    .nav__overlay.visible {
        display: block;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100dvh;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: var(--space-xl);
        background: var(--dark);
        padding: var(--space-5xl) var(--space-3xl);
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
        z-index: 1000;
    }

    .nav__menu.open {
        transform: translateX(0);
    }

    .nav__link {
        font-size: 18px;
        color: rgba(255,255,255,0.75);
    }

    .nav__link--cta {
        margin-top: var(--space-md);
        font-size: 14px;
    }

    /* Stats */
    .stats-bar__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }

    /* About */
    .about__grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .about__badge {
        bottom: -16px;
        right: var(--space-md);
        width: 70px;
        height: 70px;
    }

    /* Services */
    .services__grid { grid-template-columns: 1fr; }

    /* Products */
    .products__grid { grid-template-columns: 1fr; }

    /* Contact */
    .contact__grid { grid-template-columns: 1fr; }

    /* Footer */
    .footer__grid { grid-template-columns: 1fr; }
    .footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }

    /* Form */
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .stats-bar__grid { grid-template-columns: 1fr 1fr; }
    .hero__cta { flex-direction: column; align-items: center; }
    .hero__cta .btn { width: 100%; max-width: 280px; }

    .products__filters { gap: 6px; }
    .filter-btn { padding: 7px 16px; font-size: 11px; }
}

/* ─── REDUCED MOTION ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html { scroll-behavior: auto; }
}
