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

:root {
    --plum-50: #faf5f8;
    --plum-100: #f3e8f0;
    --plum-200: #e8d0e0;
    --plum-300: #d4a8c4;
    --plum-400: #b87aa8;
    --plum-500: #9b5987;
    --plum-600: #7d3f6a;
    --plum-700: #6b2d5b;
    --plum-800: #4a1e3f;
    --plum-900: #2d1226;
    --plum-950: #1a0a1e;
    
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #D4911A;
    --amber-700: #b47a14;
    --amber-800: #92600f;
    --amber-900: #744c0c;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-accent: 'Playfair Display', serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

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

body {
    font-family: var(--font-body);
    color: var(--plum-900);
    background: var(--plum-950);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── NAVIGATION ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
    background: rgba(26, 10, 30, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-icon {
    color: var(--amber-400);
}

.logo-text {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-accent {
    color: var(--amber-400);
    font-weight: 800;
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber-400);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--amber-500) !important;
    color: var(--plum-950) !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    transition: all 0.3s !important;
    box-shadow: 0 4px 15px rgba(212, 145, 26, 0.3);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--amber-400) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 145, 26, 0.4);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #fff;
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--plum-950) 0%, #3d1545 30%, var(--plum-700) 60%, #5a2d4a 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--plum-500) 0%, transparent 70%);
    top: -10%;
    right: -5%;
    animation: float 8s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--amber-500) 0%, transparent 70%);
    bottom: 10%;
    left: -5%;
    animation: float 10s ease-in-out infinite reverse;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #c4568a 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

.geometric-shape {
    position: absolute;
    opacity: 0.15;
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: var(--amber-400);
    top: 15%;
    left: 5%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: spin 20s linear infinite;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: var(--plum-300);
    border-radius: 50%;
    top: 20%;
    right: 15%;
    animation: float 7s ease-in-out infinite;
}

.shape-3 {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86px solid var(--amber-300);
    bottom: 25%;
    right: 8%;
    opacity: 0.1;
    animation: spin 15s linear infinite reverse;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 145, 26, 0.15);
    border: 1px solid rgba(212, 145, 26, 0.3);
    color: var(--amber-300);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--amber-400);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--amber-300) 0%, var(--amber-500) 50%, var(--plum-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--amber-500);
    color: var(--plum-950);
    box-shadow: 0 4px 20px rgba(212, 145, 26, 0.4);
}

.btn-primary:hover {
    background: var(--amber-400);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 145, 26, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-stats {
    display: flex;
    gap: 32px;
    align-items: center;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--amber-400);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-image-col {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    width: 340px;
}

.hero-image-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-accent {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(212, 145, 26, 0.3);
    pointer-events: none;
}

.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--plum-900);
    animation: floatCard 4s ease-in-out infinite;
}

.hero-floating-card.card-wine {
    bottom: 60px;
    left: -30px;
    animation-delay: 0s;
}

.hero-floating-card.card-spirits {
    top: 40px;
    right: -20px;
    animation-delay: 2s;
}

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

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ─── SECTION COMMON ─── */
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--amber-600);
    background: rgba(212, 145, 26, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-tag.light {
    color: var(--amber-300);
    background: rgba(212, 145, 26, 0.15);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.section-title.light {
    color: #fff;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-desc {
    font-size: 1.1rem;
    color: rgba(26, 10, 30, 0.65);
    line-height: 1.7;
}

.section-desc.light {
    color: rgba(255, 255, 255, 0.6);
}

/* ─── PRODUCTS ─── */
.products {
    background: var(--plum-50);
    padding: 100px 0;
}

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

.product-card {
    text-decoration: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(107, 45, 91, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(107, 45, 91, 0.15);
}

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

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 10, 30, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-cta {
    background: var(--amber-500);
    color: var(--plum-950);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
}

.product-info {
    padding: 20px 24px 24px;
}

.product-cat {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber-600);
    margin-bottom: 6px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--plum-900);
    margin-bottom: 8px;
}

.product-desc {
    font-size: 0.9rem;
    color: rgba(26, 10, 30, 0.55);
    line-height: 1.6;
}

/* ─── ABOUT ─── */
.about {
    background: var(--plum-950);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(196, 86, 138, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.about-img-main img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    z-index: 3;
    border: 4px solid var(--plum-950);
}

.about-img-secondary img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
    color: var(--plum-950);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    z-index: 4;
    box-shadow: 0 10px 30px rgba(212, 145, 26, 0.4);
}

.about-experience-badge .exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}

.about-experience-badge .exp-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-geometric {
    position: absolute;
    top: -30px;
    right: 40px;
    width: 100px;
    height: 100px;
    background: var(--amber-400);
    opacity: 0.2;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-body {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.value-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(212, 145, 26, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-item strong {
    display: block;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 2px;
}

.value-item span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
}

/* ─── WHY KSN ─── */
.why-ksn {
    background: linear-gradient(135deg, var(--plum-800) 0%, var(--plum-900) 50%, #3d1545 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.why-shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(196, 86, 138, 0.2);
    top: -100px;
    left: -100px;
}

.why-shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(212, 145, 26, 0.12);
    bottom: -50px;
    right: -50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(212, 145, 26, 0.3);
    transform: translateY(-5px);
}

.feature-icon-wrap {
    margin-bottom: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.feature-icon-1 {
    background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
}

.feature-icon-2 {
    background: linear-gradient(135deg, var(--plum-500), var(--plum-600));
}

.feature-icon-3 {
    background: linear-gradient(135deg, #c4568a, var(--plum-600));
}

.feature-icon-4 {
    background: linear-gradient(135deg, var(--amber-400), var(--plum-500));
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ─── VISIT ─── */
.visit {
    background: var(--plum-50);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.visit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--plum-600), var(--amber-500), var(--plum-600));
}

.visit-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.visit-shape-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(212, 145, 26, 0.06);
    border-radius: 50%;
    top: -100px;
    right: -50px;
}

.visit-shape-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(107, 45, 91, 0.06);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.visit-desc {
    font-size: 1.1rem;
    color: rgba(26, 10, 30, 0.65);
    line-height: 1.7;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 12px rgba(107, 45, 91, 0.06);
    transition: all 0.3s;
    border: 1px solid transparent;
}

.contact-card:hover {
    border-color: var(--amber-400);
    transform: translateX(6px);
    box-shadow: 0 8px 25px rgba(107, 45, 91, 0.12);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(212, 145, 26, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card strong {
    display: block;
    font-size: 0.95rem;
    color: var(--plum-900);
    margin-bottom: 4px;
}

.contact-card span {
    font-size: 0.9rem;
    color: rgba(26, 10, 30, 0.6);
    line-height: 1.5;
}

.contact-card a {
    color: rgba(26, 10, 30, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: var(--amber-600);
}

.visit-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(107, 45, 91, 0.12);
    min-height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* ─── FOOTER ─── */
.footer {
    background: var(--plum-950);
    padding: 60px 0 0;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.footer-logo-icon {
    color: var(--amber-400);
}

.footer-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 12px;
    max-width: 320px;
}

.footer-resp {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    font-style: italic;
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber-400);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 6px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--amber-400);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 10, 30, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.mobile-menu.open {
    display: flex;
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--amber-400);
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    padding: 8px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image-col {
        display: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
    }
    
    .visit-map {
        min-height: 300px;
    }
    
    .map-placeholder {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .about-img-secondary {
        right: -10px;
        bottom: -20px;
    }
    
    .about-experience-badge {
        left: -10px;
        bottom: -10px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.7rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .product-info {
        padding: 16px 20px 20px;
    }
}

/* ─── ACCESSIBILITY ─── */
@media (prefers-reduced-motion: no-preference) {
    .product-card {
        will-change: transform;
    }
}

/* ─── SCROLL REVEAL (progressive enhancement) ─── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
    
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
}
