/* ============================================
   K&M Shop — Vibrant Modern Retail Website
   Color Palette: Plum (#6B2F5B) + Amber (#F5A623)
   Fonts: Bebas Neue + Inter
   ============================================ */

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

:root {
    --plum: #6B2F5B;
    --plum-dark: #4A1D3F;
    --plum-light: #8B4575;
    --plum-deep: #3D1A33;
    --amber: #F5A623;
    --amber-light: #F7BC5A;
    --amber-dark: #D4891A;
    --cream: #FFF8F0;
    --white: #FFFFFF;
    --off-white: #FAF5F0;
    --text-dark: #1A0A14;
    --text-mid: #4A3040;
    --text-light: #7A6070;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(107, 47, 91, 0.08);
    --shadow-md: 0 8px 32px rgba(107, 47, 91, 0.12);
    --shadow-lg: 0 16px 64px rgba(107, 47, 91, 0.16);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

/* ========== GEOMETRIC BACKGROUND ========== */
.geometric-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.geo-shape {
    position: absolute;
    opacity: 0.04;
}

.geo-circle-1 {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--plum);
    top: -200px;
    right: -150px;
}

.geo-circle-2 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--amber);
    bottom: 20%;
    left: -100px;
}

.geo-triangle {
    width: 0;
    height: 0;
    border-left: 200px solid transparent;
    border-right: 200px solid transparent;
    border-bottom: 346px solid var(--plum);
    top: 40%;
    right: -50px;
    opacity: 0.03;
}

.geo-rect {
    width: 300px;
    height: 150px;
    background: var(--amber);
    border-radius: var(--radius-lg);
    top: 60%;
    left: 10%;
    transform: rotate(-15deg);
}

.geo-dots {
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, var(--plum) 2px, transparent 2px);
    background-size: 20px 20px;
    top: 75%;
    right: 15%;
    opacity: 0.06;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 248, 240, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 2px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.02em;
    z-index: 1001;
}

.logo-k {
    color: var(--plum);
}

.logo-amp, .logo-amp {
    color: var(--amber);
    font-size: 1.6rem;
    margin: 0 2px;
}

.logo-m {
    color: var(--plum);
}

.logo-word {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin-left: 4px;
}

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

.nav-link {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-mid);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: var(--plum);
    background: rgba(107, 47, 91, 0.06);
}

.nav-phone {
    color: var(--amber-dark);
    font-weight: 600;
    background: var(--amber);
    color: var(--text-dark);
    border-radius: var(--radius-sm);
}

.nav-phone:hover {
    background: var(--amber-light);
    color: var(--text-dark);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(61, 26, 51, 0.88) 0%,
        rgba(107, 47, 91, 0.75) 40%,
        rgba(245, 166, 35, 0.3) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 120px 24px 80px;
    margin-left: 8%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.4);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--amber-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--amber);
    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: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.05;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 24px;
}

.hero-headline br {
    display: none;
}

@media (min-width: 768px) {
    .hero-headline br {
        display: block;
    }
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--amber);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: var(--amber-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(245, 166, 35, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--plum);
}

.btn-light:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========== SECTION COMMON ========== */
.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 16px;
}

.label-line {
    width: 32px;
    height: 3px;
    background: var(--amber);
    border-radius: 2px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    line-height: 1.1;
    color: var(--text-dark);
    letter-spacing: 0.01em;
    margin-bottom: 20px;
}

.text-accent {
    color: var(--plum);
}

.section-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 16px;
}

.section-desc-wide {
    max-width: 600px;
}

.section-header {
    margin-bottom: 64px;
}

/* ========== ABOUT ========== */
.about {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

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

@media (min-width: 900px) {
    .about-grid {
        grid-template-columns: 1.1fr 1fr;
        gap: 80px;
    }
}

.about-image-wrap {
    position: relative;
}

.about-image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--amber);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-image-accent::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: -12px;
    bottom: -12px;
    border: 2px solid var(--plum);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-image-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about-stat-card {
    position: absolute;
    bottom: -24px;
    right: -16px;
    background: var(--plum);
    color: var(--white);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber);
    margin-bottom: 4px;
}

.stat-number {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.02em;
}

.stat-sub {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.about-content .section-desc {
    margin-bottom: 24px;
}

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

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

.value-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--amber), var(--amber-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.value-item strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.value-item span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ========== DIVIDER BLOCK ========== */
.divider-block {
    position: relative;
    z-index: 1;
    padding: 0 24px;
    margin-bottom: -40px;
}

.divider-inner {
    background: var(--plum);
    border-radius: var(--radius-xl);
    padding: 48px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.divider-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--white);
    letter-spacing: 0.02em;
}

.divider-shapes {
    display: flex;
    gap: 16px;
    align-items: center;
}

.d-shape {
    transition: var(--transition);
}

.d-shape:hover {
    transform: rotate(15deg) scale(1.1);
}

.d-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--amber);
}

.d-square {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: var(--radius-sm);
}

.d-triangle {
    width: 0;
    height: 0;
    border-left: 22px solid transparent;
    border-right: 22px solid transparent;
    border-bottom: 38px solid var(--plum-light);
}

/* ========== OFFERINGS ========== */
.offerings {
    position: relative;
    z-index: 1;
    padding: 120px 0 140px;
}

.offerings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 600px) {
    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .offerings-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.offering-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(107, 47, 91, 0.06);
}

.offering-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--plum), var(--amber));
    opacity: 0;
    transition: var(--transition);
}

.offering-card:hover .card-accent {
    opacity: 1;
}

.card-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: rgba(107, 47, 91, 0.06);
    line-height: 1;
    margin-bottom: 16px;
    transition: var(--transition);
}

.offering-card:hover .card-number {
    color: rgba(107, 47, 91, 0.12);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--plum), var(--plum-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 24px;
    transition: var(--transition);
}

.offering-card:hover .card-icon {
    background: linear-gradient(135deg, var(--amber), var(--amber-dark));
    color: var(--text-dark);
    transform: scale(1.05);
}

.offering-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

/* ========== WHY US ========== */
.why-us {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background: var(--plum-deep);
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.06);
}

.why-us::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(107, 47, 91, 0.3);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: start;
}

@media (min-width: 900px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.why-content .section-label {
    color: var(--amber);
}

.why-content .section-title {
    color: var(--white);
}

.why-content .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

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

.reason-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--amber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    margin-top: 2px;
}

.reason strong {
    display: block;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 2px;
}

.reason span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.why-visual {
    position: relative;
    min-height: 500px;
}

.visual-card {
    position: absolute;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-card-primary {
    width: 85%;
    top: 0;
    right: 0;
    height: 420px;
}

.visual-card-accent {
    width: 55%;
    bottom: 0;
    left: 0;
    background: var(--amber);
    padding: 32px;
    display: flex;
    align-items: center;
}

.visual-card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vc-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--plum-dark);
    font-weight: 600;
}

.vc-big {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--plum-dark);
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.vc-sub {
    font-size: 0.9rem;
    color: var(--plum);
}

/* ========== CTA STRIP ========== */
.cta-strip {
    position: relative;
    z-index: 1;
    padding: 100px 24px;
    background: var(--amber);
    overflow: hidden;
}

.cta-geo {
    position: absolute;
    opacity: 0.1;
}

.geo-cta-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--plum);
    top: -100px;
    left: -50px;
}

.geo-cta-square {
    width: 150px;
    height: 150px;
    background: var(--plum);
    border-radius: var(--radius-lg);
    bottom: -40px;
    right: 10%;
    transform: rotate(25deg);
}

.cta-inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-content {
    flex: 1;
    min-width: 280px;
}

.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: 12px;
}

.cta-text {
    font-size: 1.05rem;
    color: var(--plum);
    max-width: 480px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========== VISIT ========== */
.visit {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
}

@media (min-width: 900px) {
    .visit-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 80px;
    }
}

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

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(107, 47, 91, 0.08);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--amber);
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.cc-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--plum), var(--plum-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.cc-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 4px;
    font-weight: 600;
}

.cc-value {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.5;
}

.cc-arrow {
    margin-left: auto;
    color: var(--text-light);
    transition: var(--transition);
}

.contact-card:hover .cc-arrow {
    color: var(--amber-dark);
    transform: translateX(4px);
}

.map-placeholder {
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 280px;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--white);
}

.map-placeholder iframe {
    border-radius: calc(var(--radius-xl) - 4px);
}

/* ========== VISUAL STACK ========== */
.visual-stack {
    position: relative;
    height: 600px;
}

.vs-card {
    position: absolute;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.vs-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vs-card-1 {
    width: 75%;
    top: 0;
    right: 0;
    height: 380px;
}

.vs-card-2 {
    width: 55%;
    bottom: 80px;
    left: 0;
    height: 220px;
}

.vs-card-3 {
    width: 60%;
    bottom: 0;
    right: 10%;
    height: 200px;
}

.vs-accent-block {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--plum), var(--plum-dark));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    padding: 24px;
}

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

.vsab-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 0.03em;
    line-height: 1.2;
}

/* ========== FOOTER ========== */
.footer {
    position: relative;
    z-index: 1;
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 0 0;
}

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

@media (min-width: 700px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 320px;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-links a {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--amber);
    background: rgba(245, 166, 35, 0.08);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

@media (min-width: 600px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

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

/* ========== MOBILE NAV ========== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 40px;
        gap: 8px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -16px 0 64px rgba(0, 0, 0, 0.15);
    }

    .nav.open {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 12px 16px;
        width: 100%;
    }

    .nav-phone {
        margin-top: 16px;
        justify-content: center;
    }

    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(26, 10, 20, 0.5);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .mobile-overlay.active {
        opacity: 1;
        pointer-events: all;
    }

    .hero-content {
        margin-left: 0;
        padding: 120px 24px 100px;
    }

    .hero-headline br {
        display: none;
    }

    .divider-inner {
        padding: 32px 24px;
        flex-direction: column;
        text-align: center;
    }

    .about-image-accent {
        top: -12px;
        left: -12px;
        width: 80px;
        height: 80px;
    }

    .about-stat-card {
        right: 8px;
        bottom: -16px;
        padding: 16px 24px;
    }

    .visual-stack {
        height: 500px;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        justify-content: center;
    }
}

/* ========== ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    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; }
