/* ========================================
   CHONK - Big. Fat. Chunky. Cookies
   A Premium Cookie Brand from Sri Lanka
   ======================================== */

/* Custom Font */
@font-face {
    font-family: 'SS';
    src: url('ss.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables */
:root {
    /* Brand Colors */
    --color-primary: #005185;
    --color-primary-dark: #003d66;
    --color-primary-light: #0070b8;
    --color-accent: #D95204;
    --color-accent-light: #ff6b1a;
    
    /* Text Colors */
    --color-text: #333333;
    --color-text-muted: #666666;
    --color-text-light: #888888;
    --color-white: #ffffff;
    
    /* Backgrounds */
    --bg-cream: #F9F6F0;
    --bg-beige: #F0E9DD;
    --bg-white: #FFFFFF;
    
    /* Borders */
    --border-light: #E8E0D0;
    --border-hover: #D0C8B8;
    
    /* Typography */
    --font-display: 'SS', 'Poppins', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    --spacing-2xl: 8rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--bg-cream);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    transition: all var(--transition-normal);
}

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

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 50px;
    width: auto;
    transition: transform var(--transition-normal);
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: var(--spacing-lg);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-primary);
    position: relative;
    padding: 0.5rem 0;
}

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

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

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    border: none;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(0, 81, 133, 0.3);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 81, 133, 0.4);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px var(--spacing-md) var(--spacing-md);
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-beige) 100%);
}

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

.cookie-float {
    position: absolute;
    font-size: 4rem;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.cookie-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.cookie-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    font-size: 3rem;
}

.cookie-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
    font-size: 2.5rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--color-white);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-lg);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: normal;
    line-height: 0.9;
    margin-bottom: var(--spacing-lg);
    color: var(--color-primary);
    position: relative;
    z-index: 5;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: titleReveal 0.8s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-line.accent {
    color: var(--color-accent);
    position: relative;
}

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

.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.8;
}

.hero-cta {
    margin-bottom: var(--spacing-xl);
}

/* Hero Decorations */
.hero-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.hero-decor {
    position: absolute;
    opacity: 0.08;
    filter: grayscale(20%);
    animation: heroFloat 12s ease-in-out infinite;
}

.hero-decor-1 {
    width: 100px;
    left: 5%;
    top: 20%;
    transform: rotate(-15deg);
}

.hero-decor-2 {
    width: 90px;
    right: 5%;
    top: 30%;
    transform: rotate(20deg);
    animation-delay: -4s;
}

.hero-decor-3,
.hero-decor-4 {
    display: none;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(-15deg); }
    50% { transform: translateY(-15px) rotate(-10deg); }
}

.hero-decor-2 {
    animation-name: heroFloat2;
}

@keyframes heroFloat2 {
    0%, 100% { transform: translateY(0) rotate(20deg); }
    50% { transform: translateY(-15px) rotate(25deg); }
}

/* NYC Skyline Decoration */
.nyc-skyline {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.nyc-skyline img {
    width: 1400px;
    max-width: none;
    height: auto;
    opacity: 0.15;
    filter: brightness(0) saturate(100%) invert(20%) sepia(90%) saturate(1200%) hue-rotate(185deg);
}

@media (max-width: 1024px) {
    .nyc-skyline img {
        width: 1100px;
        opacity: 0.12;
    }
}

@media (max-width: 768px) {
    .nyc-skyline img {
        width: 100%;
        min-width: 600px;
        opacity: 0.12;
    }
}

/* ========================================
   TESTIMONIALS CAROUSEL
   ======================================== */
/* Testimonials Section */
.testimonials-section {
    background: var(--bg-beige);
    padding: var(--spacing-lg) var(--spacing-md) calc(var(--spacing-xl) + 60px);
    position: relative;
    overflow: visible;
    z-index: 2;
}

/* Cookie Decorations */
.testimonial-cookies {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.cookie-decor {
    position: absolute;
    opacity: 0.12;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.cookie-left-1 {
    width: 120px;
    left: 8%;
    top: 20%;
    transform: rotate(-15deg);
    animation: cookieFloat 6s ease-in-out infinite;
}

.cookie-left-2 {
    width: 80px;
    left: 15%;
    bottom: 15%;
    transform: rotate(20deg);
    animation: cookieFloat 7s ease-in-out infinite;
    animation-delay: -2s;
}

.cookie-right-1 {
    width: 100px;
    right: 10%;
    top: 25%;
    transform: rotate(10deg);
    animation: cookieFloat 5.5s ease-in-out infinite;
    animation-delay: -1s;
}

.cookie-right-2 {
    width: 70px;
    right: 18%;
    bottom: 20%;
    transform: rotate(-25deg);
    animation: cookieFloat 6.5s ease-in-out infinite;
    animation-delay: -3s;
}

@keyframes cookieFloat {
    0%, 100% {
        transform: translateY(0) rotate(var(--rotate, 0deg));
    }
    50% {
        transform: translateY(-15px) rotate(var(--rotate, 0deg));
    }
}

.cookie-left-1 { --rotate: -15deg; }
.cookie-left-2 { --rotate: 20deg; }
.cookie-right-1 { --rotate: 10deg; }
.cookie-right-2 { --rotate: -25deg; }

@media (max-width: 1024px) {
    .cookie-left-1, .cookie-right-1 {
        width: 90px;
    }
    .cookie-left-2, .cookie-right-2 {
        width: 60px;
    }
}

@media (max-width: 768px) {
    .cookie-decor {
        opacity: 0.08;
    }
    .cookie-left-1 { left: 2%; width: 70px; }
    .cookie-left-2 { left: 5%; width: 50px; }
    .cookie-right-1 { right: 2%; width: 65px; }
    .cookie-right-2 { right: 5%; width: 45px; }
}

.testimonials-carousel {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-container {
    position: relative;
    height: 200px;
    margin-bottom: var(--spacing-md);
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-md);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateX(-60px);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    z-index: 2;
}

.testimonial-card.prev {
    opacity: 0;
    transform: translateX(60px);
    z-index: 1;
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--color-primary);
    opacity: 0.08;
    position: absolute;
    top: 0;
    left: 15px;
    line-height: 1;
    pointer-events: none;
}

.testimonial-stars {
    display: none;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 600;
}

/* Carousel Navigation */
.carousel-navigation {
    position: relative;
    z-index: 10;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dot::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
    transition: all var(--transition-normal);
}

.dot:hover::before {
    background: var(--color-primary);
    opacity: 0.5;
    transform: scale(1.1);
}

.dot.active::before {
    background: var(--color-primary);
    transform: scale(1);
}

/* Progress Ring SVG */
.dot-progress {
    position: absolute;
    width: 36px;
    height: 36px;
    transform: rotate(-90deg);
    pointer-events: none;
}

.dot-bg {
    fill: none;
    stroke: var(--border-light);
    stroke-width: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dot.active .dot-bg {
    opacity: 0.5;
}

.dot-fill {
    fill: none;
    stroke: var(--color-primary);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 100.53;
    stroke-dashoffset: 100.53;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dot.active .dot-fill {
    opacity: 1;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--color-primary);
    border-radius: 20px;
    position: relative;
    background: rgba(255, 255, 255, 0.5);
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ========================================
   SECTION STYLES
   ======================================== */
.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: normal;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 600px;
}

/* ========================================
   STORY SECTION
   ======================================== */
.story {
    padding: calc(var(--spacing-2xl) + 30px) 0 var(--spacing-2xl);
    background: var(--bg-white);
    position: relative;
    overflow: visible;
    z-index: 1;
}

/* Story Decorations */
.story-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.story-decor {
    position: absolute;
    opacity: 0.16;
    filter: grayscale(20%);
    animation: storyFloat 8s ease-in-out infinite;
}

.story-decor-1 {
    width: 100px;
    right: 5%;
    top: 15%;
    animation-delay: 0s;
}

.story-decor-2 {
    width: 80px;
    left: 3%;
    top: 40%;
    animation-delay: -2s;
}

.story-decor-3 {
    width: 90px;
    right: 8%;
    bottom: 20%;
    animation-delay: -4s;
}

@keyframes storyFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.story-content {
    padding-right: var(--spacing-lg);
}

.story-text p {
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-text strong {
    color: var(--color-primary);
    font-weight: 600;
}

.story-text em {
    color: var(--color-accent);
    font-style: normal;
    font-weight: 500;
}

/* Founder Links Styling */
.founder-link {
    color: var(--color-primary);
    text-decoration: none;
    position: relative;
    transition: all var(--transition-normal);
    padding-bottom: 2px;
    animation: founderPulse 2s ease-in-out infinite;
}

@keyframes founderPulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(0, 81, 133, 0);
    }
    50% {
        transform: scale(1.05);
        text-shadow: 0 0 12px rgba(0, 81, 133, 0.6);
    }
}

.founder-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    opacity: 0.4;
    transition: all var(--transition-normal);
}

.founder-link:hover {
    color: var(--color-accent);
    animation: none;
    transform: scale(1.08);
    text-shadow: 0 0 15px rgba(0, 81, 133, 0.8);
}

.founder-link:hover::after {
    width: 100%;
    opacity: 1;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
}

.founder-link strong {
    color: inherit;
    font-weight: 600;
}

.story-visual {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: center;
}

/* NYC Graphics - Staggered Layout */
.nyc-graphics-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    position: relative;
    min-height: 340px;
}

.nyc-graphic {
    transition: transform var(--transition-normal);
    filter: drop-shadow(0 10px 30px rgba(0, 81, 133, 0.18));
}

.nyc-graphic:hover {
    transform: scale(1.1) rotate(3deg);
    z-index: 10;
}

.nyc-graphic img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.nyc-graphic img.cookie-graphic {
    filter: brightness(0) saturate(100%) invert(20%) sepia(90%) saturate(1200%) hue-rotate(185deg) brightness(90%);
}

/* Staggered positioning - stamp high, taxi/broadway lower */
.nyc-stamp {
    width: 190px;
    animation: float 6s ease-in-out infinite;
    transform: translateY(-35px);
}

.nyc-taxi {
    width: 136px; /* 20% smaller from 170px */
    animation: float 6s ease-in-out infinite;
    animation-delay: -2s;
    transform: translateY(45px);
}

.nyc-broadway {
    width: 216px; /* 20% larger from 180px */
    animation: float 6s ease-in-out infinite;
    animation-delay: -4s;
    transform: translateY(22px);
}

@keyframes float {
    0%, 100% {
        transform: translateY(var(--float-offset, 0));
    }
    50% {
        transform: translateY(calc(var(--float-offset, 0) - 12px));
    }
}

.nyc-stamp { --float-offset: -35px; }
.nyc-taxi { --float-offset: 45px; }
.nyc-broadway { --float-offset: 22px; }

/* Story decoration blob */
.story-decoration {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    pointer-events: none;
}

.blob {
    width: 100%;
    height: 100%;
    animation: blobMorph 10s ease-in-out infinite;
}

@keyframes blobMorph {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

/* ========================================
   MILESTONES SECTION
   ======================================== */
.milestones {
    padding: calc(var(--spacing-2xl) + 30px) 0 var(--spacing-2xl);
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-beige) 100%);
    position: relative;
    overflow: visible;
    z-index: 3;
}

/* Ingredient Background Decorations */
.ingredient-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.ingredient-decor {
    position: absolute;
    opacity: 0.08;
    filter: grayscale(30%);
}

.ingredient-1 {
    width: 100px;
    left: 3%;
    top: 15%;
    transform: rotate(-10deg);
    animation: ingredientFloat 8s ease-in-out infinite;
}

.ingredient-2 {
    width: 80px;
    left: 8%;
    bottom: 20%;
    transform: rotate(15deg);
    animation: ingredientFloat 7s ease-in-out infinite;
    animation-delay: -2s;
}

.ingredient-3 {
    width: 90px;
    right: 5%;
    top: 10%;
    transform: rotate(5deg);
    animation: ingredientFloat 9s ease-in-out infinite;
    animation-delay: -1s;
}

.ingredient-4 {
    width: 70px;
    right: 10%;
    top: 45%;
    transform: rotate(-20deg);
    animation: ingredientFloat 6s ease-in-out infinite;
    animation-delay: -3s;
}

.ingredient-5 {
    width: 85px;
    right: 3%;
    bottom: 15%;
    transform: rotate(12deg);
    animation: ingredientFloat 7.5s ease-in-out infinite;
    animation-delay: -4s;
}

.ingredient-6 {
    width: 75px;
    left: 5%;
    top: 55%;
    transform: rotate(-8deg);
    animation: ingredientFloat 8.5s ease-in-out infinite;
    animation-delay: -5s;
}

@keyframes ingredientFloat {
    0%, 100% { transform: translateY(0) rotate(var(--rotate, 0deg)); }
    50% { transform: translateY(-20px) rotate(var(--rotate, 0deg)); }
}

.ingredient-1 { --rotate: -10deg; }
.ingredient-2 { --rotate: 15deg; }
.ingredient-3 { --rotate: 5deg; }
.ingredient-4 { --rotate: -20deg; }
.ingredient-5 { --rotate: 12deg; }
.ingredient-6 { --rotate: -8deg; }

.milestones-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.milestones-header .section-subtitle {
    margin: 0 auto;
}

/* Hero Stats Highlight */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg) var(--spacing-xl);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.hero-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--color-primary);
    line-height: 1;
}

.hero-stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-accent);
    margin-left: 2px;
}

.hero-stat-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: var(--spacing-xs);
}

.hero-stat-divider {
    width: 1px;
    height: 60px;
    background: var(--border-light);
}

/* Bento Grid Layout */
.milestones-bento {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.milestone-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
}

.milestone-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.milestone-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.milestone-card:hover::before {
    transform: scaleX(1);
}

.milestone-card:hover .milestone-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: var(--color-primary);
}

.milestone-card:hover .milestone-icon-svg {
    stroke: var(--color-white);
}

/* Featured Card */
.milestone-featured {
    grid-row: span 2;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-xl);
}

.milestone-featured .milestone-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
}

.milestone-featured .milestone-icon-svg {
    width: 40px;
    height: 40px;
}

.milestone-featured h3 {
    font-size: 1.5rem;
}

.milestone-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    margin-top: var(--spacing-md);
}

/* Icon Wrapper */
.milestone-icon-wrapper {
    width: 56px;
    height: 56px;
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    transition: all var(--transition-normal);
}

.milestone-icon-svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-primary);
    transition: all var(--transition-normal);
}

.milestone-content h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.milestone-content p {
    color: var(--color-text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.milestone-content strong {
    color: var(--color-text);
}

/* Circular Progress Ring */
.circular-progress {
    position: relative;
    width: 100px;
    height: 100px;
    margin: var(--spacing-md) auto 0;
}

.circular-progress svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circular-progress .progress-bg {
    fill: none;
    stroke: var(--bg-cream);
    stroke-width: 8;
}

.circular-progress .progress-fill {
    fill: none;
    stroke: var(--color-primary);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 2s ease-out;
}

.circular-progress.animated .progress-fill {
    stroke-dashoffset: 45;
}

.progress-value {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-primary);
    line-height: 1;
}

.progress-symbol {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-accent);
}

.progress-label {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: var(--spacing-xs);
}

/* Star Rating */
.star-rating {
    margin-top: var(--spacing-md);
    text-align: center;
}

.stars-display {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--spacing-xs);
}

.star {
    font-size: 1.5rem;
    color: var(--border-light);
    transition: all var(--transition-normal);
}

.star.filled {
    color: #FFB800;
}

.star.partial {
    background: linear-gradient(90deg, #FFB800 70%, var(--border-light) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.rating-value {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-primary);
    line-height: 1;
}

.rating-max {
    font-size: 1rem;
    color: var(--color-text-muted);
}

/* Counter Pop Animation */
@keyframes counterPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.counter-complete {
    animation: counterPop 0.4s ease-out;
}

/* Responsive */
@media (max-width: 1024px) {
    .milestones-bento {
        grid-template-columns: 1fr 1fr;
    }
    
    .milestone-featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .hero-stats {
        gap: var(--spacing-lg);
        padding: var(--spacing-md) var(--spacing-lg);
    }
    
    .ingredient-decor {
        opacity: 0.06;
    }
}

@media (max-width: 768px) {
    .milestones-bento {
        grid-template-columns: 1fr;
    }
    
    .milestone-featured {
        grid-column: span 1;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .hero-stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .ingredient-1, .ingredient-3, .ingredient-5 {
        display: none;
    }
}

/* ========================================
   INSTAGRAM SECTION
   ======================================== */
.instagram-section {
    padding: calc(var(--spacing-2xl) + 30px) 0 var(--spacing-2xl);
    background: var(--bg-white);
    position: relative;
    overflow: visible;
    z-index: 4;
}

/* Instagram Decorations */
.instagram-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.insta-decor {
    position: absolute;
    opacity: 0.12;
    filter: grayscale(30%);
    animation: instaFloat 10s ease-in-out infinite;
}

.insta-decor-1 {
    width: 120px;
    right: 3%;
    top: 10%;
    animation-delay: 0s;
}

.insta-decor-2 {
    width: 90px;
    left: 5%;
    top: 30%;
    animation-delay: -3s;
}

.insta-decor-3 {
    width: 70px;
    right: 8%;
    bottom: 15%;
    animation-delay: -6s;
}

.insta-decor-4 {
    width: 80px;
    left: 3%;
    bottom: 20%;
    animation-delay: -2s;
}

.insta-decor-5 {
    width: 65px;
    left: 8%;
    top: 60%;
    animation-delay: -5s;
}

.insta-decor-6 {
    width: 75px;
    right: 4%;
    top: 50%;
    animation-delay: -8s;
}

@keyframes instaFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(5deg); }
}

.instagram-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.instagram-header .section-subtitle {
    margin: 0 auto;
}

.instagram-header .section-title {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCB045);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.instagram-post {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    display: block;
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.instagram-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-beige) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.instagram-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.8), rgba(253, 29, 29, 0.8), rgba(252, 176, 69, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-post:hover img {
    transform: scale(1.1);
}

.instagram-icon {
    width: 40px;
    height: 40px;
    color: white;
}

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

.instagram-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.instagram-cta .btn svg {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .instagram-header .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
}

/* ========================================
   WAVE DIVIDERS - SVG based
   ======================================== */
.wave-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -1px;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: 100%;
    height: 80px;
}

.wave-testimonials-story {
    background: var(--bg-beige);
}

.wave-story-milestones {
    background: var(--bg-white);
}

.wave-milestones-instagram {
    background: var(--bg-beige);
}

.wave-instagram-chapter {
    background: var(--bg-white);
}

.wave-chapter-inquiry {
    background: var(--color-primary);
}

@media (max-width: 768px) {
    .wave-divider svg {
        height: 50px;
    }
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 80vh;
    position: relative;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.2s ease;
    line-height: 1;
}

.lightbox-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev svg,
.lightbox-next svg {
    width: 24px;
    height: 24px;
}

.lightbox-instagram-link {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.lightbox-instagram-link:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.lightbox-hint {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.2s ease;
}

.lightbox-hint svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-primary);
}

.instagram-post:hover .lightbox-hint {
    opacity: 1;
}

.instagram-post {
    cursor: pointer;
}

/* ========================================
   A NEW CHAPTER SECTION
   ======================================== */
.chapter {
    padding: calc(var(--spacing-2xl) + 30px) 0 var(--spacing-2xl);
    background: var(--color-primary);
    color: var(--color-white);
    position: relative;
    overflow: visible;
    z-index: 5;
}

.chapter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
}

.chapter-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.chapter .section-label {
    color: rgba(255, 255, 255, 0.7);
}

.chapter .section-title {
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

/* Chapter Decoration - Floating SVGs */
.chapter-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.chapter-decor-img {
    position: absolute;
    opacity: 0.15;
    filter: brightness(0) invert(1);
    animation: floatFarewell 8s ease-in-out infinite;
}

.decor-1 {
    width: 80px;
    left: 8%;
    top: 20%;
    animation-delay: 0s;
}

.decor-2 {
    width: 70px;
    right: 10%;
    top: 25%;
    animation-delay: -2s;
}

.decor-3 {
    width: 60px;
    left: 15%;
    bottom: 20%;
    animation-delay: -4s;
}

.decor-4 {
    width: 70px;
    right: 15%;
    bottom: 25%;
    animation-delay: -1s;
}

.decor-5 {
    width: 55px;
    left: 8%;
    top: 40%;
    animation-delay: -3s;
}

.decor-6 {
    width: 65px;
    right: 5%;
    top: 50%;
    animation-delay: -5s;
}

@keyframes floatFarewell {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.15; }
    50% { transform: translateY(-20px) rotate(10deg); opacity: 0.25; }
}

/* Chapter Divider */
.chapter-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.chapter-divider span:not(.divider-icon) {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.divider-icon {
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.divider-icon-img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    animation: pulse 2s ease-in-out infinite;
}

/* Chapter Message */
.chapter-message {
    margin-bottom: var(--spacing-lg);
}

.chapter-message p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    opacity: 0.95;
}

.chapter-message .lead {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-white);
}

/* Gratitude Card */
.gratitude-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.gratitude-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    animation: heartbeat 1.5s ease-in-out infinite;
}

.gratitude-icon-img {
    width: 50px;
    height: 50px;
    margin: 0 auto var(--spacing-sm);
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    14% { transform: scale(1.15); }
    28% { transform: scale(1); }
    42% { transform: scale(1.15); }
    70% { transform: scale(1); }
}

.gratitude-text {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    opacity: 0.95;
    margin: 0;
}

/* Farewell Section */
.chapter-farewell {
    padding-top: var(--spacing-md);
}

.farewell-cookie {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    animation: gentleRotate 10s linear infinite;
}

.farewell-cookie-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

@keyframes gentleRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.farewell-message {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: var(--spacing-sm);
    color: var(--color-white);
}

.farewell-signature {
    font-family: var(--font-heading);
    font-size: 1rem;
    opacity: 0.7;
    font-style: italic;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--color-primary-dark);
    color: var(--color-white);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    text-align: left;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: var(--spacing-sm);
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 0.9;
}

.footer-info {
    display: flex;
    gap: var(--spacing-xl);
}

.footer-info h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-sm);
    opacity: 0.7;
}

.footer-contact a {
    color: var(--color-white);
    font-size: 1rem;
    transition: opacity var(--transition-fast);
}

.footer-contact a:hover {
    opacity: 0.8;
}

.footer-advisors p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-advisors strong {
    font-weight: 600;
}

/* Footer Social Links */
.footer-social h4,
.footer-instagram h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
    opacity: 0.9;
}

.founder-social-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.founder-social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-xs) 0;
}

.founder-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-white);
    opacity: 0.9;
}

.social-icons {
    display: flex;
    gap: var(--spacing-xs);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}

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

.social-link.linkedin:hover {
    background: #0077B5;
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #833AB4, #FD1D1D, #FCB045, #833AB4);
    box-shadow: 0 4px 12px rgba(131, 58, 180, 0.3);
}

.instagram-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-white);
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all var(--transition-normal);
}

.instagram-link:hover {
    opacity: 1;
    transform: translateX(4px);
}

.instagram-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }

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

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveals */
.scroll-reveal:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.2s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.3s; }

/* ========================================
   BUSINESS INQUIRY SECTION
   ======================================== */
.inquiry-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-cream);
    position: relative;
    z-index: 3;
    overflow: hidden;
}

/* Business Inquiry Decorations */
.inquiry-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.inquiry-decor {
    position: absolute;
    opacity: 0.12;
    filter: grayscale(30%);
    animation: instaFloat 10s ease-in-out infinite;
}

.inquiry-decor-1 {
    width: 120px;
    right: 3%;
    top: 10%;
    animation-delay: 0s;
}

.inquiry-decor-2 {
    width: 90px;
    left: 5%;
    top: 30%;
    animation-delay: -3s;
}

.inquiry-decor-3 {
    width: 70px;
    right: 8%;
    bottom: 15%;
    animation-delay: -6s;
}

.inquiry-decor-4 {
    width: 80px;
    left: 3%;
    bottom: 20%;
    animation-delay: -2s;
}

.inquiry-decor-5 {
    width: 65px;
    left: 8%;
    top: 60%;
    animation-delay: -5s;
}

.inquiry-decor-6 {
    width: 75px;
    right: 4%;
    top: 50%;
    animation-delay: -4s;
}

.inquiry-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.inquiry-content .section-subtitle {
    margin: 0 auto var(--spacing-xl);
}

.inquiry-form {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--spacing-md);
}

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

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
}

.form-group label .required {
    color: var(--color-accent);
    font-weight: 700;
}

.form-group label .optional {
    color: var(--color-text-light);
    font-weight: 400;
    font-size: 0.8rem;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    background: var(--bg-cream);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    outline: none;
}

.form-group input::placeholder {
    color: var(--color-text-light);
}

.form-group input:hover {
    border-color: var(--border-hover);
}

.form-group input:focus {
    border-color: var(--color-primary);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(0, 81, 133, 0.1);
}

.form-group input:invalid:not(:placeholder-shown) {
    border-color: var(--color-accent);
}

.btn-submit {
    min-width: 200px;
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
}

.btn-submit svg {
    stroke: currentColor;
    transition: transform var(--transition-normal);
}

.btn-submit:hover svg {
    transform: translateX(4px) translateY(-4px);
}

.form-note {
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-style: italic;
}

/* Button Loading State */
.btn-submit .btn-loading {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loading {
    display: flex;
}

.btn-submit.loading {
    pointer-events: none;
    opacity: 0.8;
}

/* Spinner Animation */
.spinner {
    animation: spin 1s linear infinite;
}

.spinner circle {
    stroke-dasharray: 60;
    stroke-dashoffset: 45;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Success Message */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    animation: successPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.form-success.show {
    display: flex;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    animation: successCheck 0.6s ease 0.2s forwards;
    transform: scale(0);
}

.success-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--color-white);
    stroke-width: 2.5;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.form-success p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 400px;
}

@keyframes successPop {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes successCheck {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--spacing-lg);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: var(--spacing-sm) 0;
    }
    
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .nav-overlay.active {
        display: block;
        opacity: 1;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .story-content {
        padding-right: 0;
        text-align: center;
    }
    
    .story-visual {
        justify-content: center;
        align-items: center;
    }
    
    .nyc-graphics-grid {
        min-height: 300px;
    }
    
    .nyc-stamp { width: 168px; }
    .nyc-taxi { width: 116px; /* 20% smaller from 145px */ }
    .nyc-broadway { width: 187px; /* 20% larger from 156px */ }
    
    .milestones-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-info {
        flex-direction: column;
        gap: var(--spacing-lg);
        width: 100%;
    }
    
    /* Inquiry Form Tablet */
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .inquiry-form {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 640px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-2xl: 5rem;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 15vw, 5rem);
    }
    
    .section-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }
    
    .story-visual {
        flex-direction: column;
        align-items: center;
    }
    
    .nyc-graphics-grid {
        min-height: 260px;
        gap: var(--spacing-xs);
    }
    
    .nyc-stamp { width: 130px; --float-offset: -25px; }
    .nyc-taxi { width: 92px; /* 20% smaller from 115px */ --float-offset: 35px; }
    .nyc-broadway { width: 150px; /* 20% larger from 125px */ --float-offset: 18px; }
    
    .scroll-indicator {
        bottom: 20px;
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.75rem;
    }
    
    /* Carousel mobile adjustments */
    .testimonials-carousel {
        max-width: 100%;
    }
    
    .carousel-container {
        height: 180px;
    }
    
    .testimonial-card {
        padding: var(--spacing-md);
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .carousel-dots {
        gap: 12px;
    }
    
    .dot {
        width: 32px;
        height: 32px;
    }
    
    .dot-progress {
        width: 32px;
        height: 32px;
    }
    
    /* Inquiry Form Mobile */
    .inquiry-form {
        padding: var(--spacing-md);
    }
    
    .form-group input {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .btn-submit {
        width: 100%;
        min-width: unset;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-accent { color: var(--color-accent); }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }

/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ======================================== */

/* Tablet Breakpoint */
@media (max-width: 1024px) {
    .hero-decorations {
        opacity: 0.5;
    }
    
    .hero-decor-1,
    .hero-decor-2 {
        width: 70px;
    }
    
    .story-decor {
        opacity: 0.1;
        width: 70px;
    }
    
    .chapter-decor-img {
        opacity: 0.1;
        width: 50px;
    }
}

/* Mobile Breakpoint */
@media (max-width: 768px) {
    /* Hero Section */
    .hero {
        min-height: 100svh;
        height: auto;
        padding: 150px var(--spacing-sm) 0;
        justify-content: flex-start;
    }
    
    .hero-content {
        padding: 0 var(--spacing-xs);
    }
    
    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
        margin-bottom: 3rem;
    }
    
    .hero-title {
        margin-bottom: var(--spacing-md);
    }
    
    .hero-tagline {
        font-size: 1rem;
        padding: 0 var(--spacing-sm);
        margin-bottom: var(--spacing-md);
    }
    
    .hero-cta {
        margin-bottom: var(--spacing-md);
    }
    
    /* Show decorations on mobile - spans hero below content */
    .hero-decorations {
        display: block;
        position: absolute;
        top: 55%;
        bottom: 80px;
        left: 0;
        right: 0;
        z-index: 2;
    }
    
    .hero-decor {
        opacity: 0.12;
    }
    
    .hero-decor-1 {
        width: 80px;
        left: 5%;
        bottom: 0;
        top: auto;
    }
    
    .hero-decor-2 {
        width: 70px;
        right: 5%;
        left: auto;
        bottom: 30px;
        top: auto;
    }
    
    .hero-decor-3 {
        display: block;
        width: 90px;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        bottom: auto;
    }
    
    .hero-decor-4 {
        display: block;
        width: 75px;
        right: 5%;
        left: auto;
        top: 70px;
        bottom: auto;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* Skyline responsive */
    .nyc-skyline {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }
    
    .nyc-skyline img {
        width: 100%;
        min-width: 500px;
        max-width: none;
        opacity: 0.15;
    }
    
    /* Testimonials */
    .testimonials-section {
        padding: var(--spacing-md) var(--spacing-sm) var(--spacing-lg);
    }
    
    .cookie-decor {
        display: none;
    }
    
    .carousel-container {
        height: 180px;
    }
    
    .testimonial-card {
        padding: var(--spacing-md);
    }
    
    .quote-mark {
        font-size: 3rem;
        top: -5px;
        left: 10px;
    }
    
    /* Story Section */
    .story {
        padding: var(--spacing-xl) 0;
    }
    
    .story-decorations {
        display: none;
    }
    
    .story-decoration {
        display: none;
    }
    
    .nyc-graphics-grid {
        flex-wrap: wrap;
        min-height: auto;
        gap: var(--spacing-sm);
    }
    
    .nyc-stamp,
    .nyc-taxi,
    .nyc-broadway {
        transform: none !important;
        animation: none;
    }
    
    .nyc-stamp { width: 120px; }
    .nyc-taxi { width: 80px; /* 20% smaller from 100px */ }
    .nyc-broadway { width: 132px; /* 20% larger from 110px */ }
    
    /* Milestones Section */
    .milestones {
        padding: var(--spacing-xl) 0;
    }
    
    .ingredient-decorations {
        display: none;
    }
    
    /* Business Inquiry Section */
    .inquiry-decorations {
        display: block;
        gap: var(--spacing-xs);
    }
    
    .inquiry-decor {
        border-radius: var(--radius-md);
    }
    
    .milestone-card {
        padding: var(--spacing-md);
    }
    
    .milestone-featured {
        padding: var(--spacing-lg);
    }
    
    /* Instagram Section */
    .instagram-section {
        padding: var(--spacing-xl) 0;
    }
    
    .instagram-decorations {
        display: none;
    }
    
    /* Chapter Section */
    .chapter {
        padding: var(--spacing-xl) 0;
    }
    
    .chapter-decoration {
        display: none;
    }
    
    .chapter-content {
        padding: 0 var(--spacing-sm);
    }
    
    .chapter-message .lead {
        font-size: 1.15rem;
    }
    
    .gratitude-card {
        padding: var(--spacing-md);
    }
    
    /* Footer */
    .footer {
        padding: var(--spacing-lg) 0 var(--spacing-md);
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--spacing-lg);
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-info {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
        width: 100%;
    }
    
    .founder-social {
        justify-content: center;
        gap: var(--spacing-sm);
    }
    
    .footer-logo {
        height: 50px;
    }
}

/* Small Mobile Breakpoint */
@media (max-width: 480px) {
    :root {
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    /* Hero adjustments for small screens */
    .hero {
        padding-top: 100px;
    }
    
    .hero-decorations {
        bottom: 100px;
        height: 120px;
    }
    
    .hero-decor-1 {
        width: 70px;
    }
    
    .hero-decor-2 {
        width: 60px;
    }
    
    .hero-decor-3 {
        width: 75px;
        top: 70px;
    }
    
    .hero-decor-4 {
        width: 60px;
        top: 110px;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 16vw, 4rem);
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-cta {
        margin-bottom: var(--spacing-sm);
    }
    
    .nyc-skyline img {
        min-width: 450px;
        opacity: 0.18;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Hero Stats */
    .hero-stats {
        padding: var(--spacing-md);
        gap: var(--spacing-sm);
    }
    
    .hero-stat-number {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    
    .hero-stat-suffix {
        font-size: clamp(1rem, 5vw, 1.5rem);
    }
    
    .hero-stat-label {
        font-size: 0.75rem;
    }
    
    /* NYC Graphics */
    .nyc-graphics-grid {
        justify-content: center;
    }
    
    .nyc-stamp { width: 100px; }
    .nyc-taxi { width: 68px; /* 20% smaller from 85px */ }
    .nyc-broadway { width: 114px; /* 20% larger from 95px */ }
    
    /* Business Inquiry Section */
    .inquiry-decorations {
        display: none;
    }
    
    /* Testimonials */
    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .testimonial-author {
        font-size: 0.8rem;
    }
    
    /* Milestones */
    .milestone-content h3 {
        font-size: 1rem;
    }
    
    .milestone-content p {
        font-size: 0.9rem;
    }
    
    .circular-progress {
        width: 80px;
        height: 80px;
    }
    
    .progress-number {
        font-size: 1.4rem;
    }
    
    /* Instagram */
    .instagram-grid {
        gap: var(--spacing-xs);
    }
    
    .instagram-post {
        border-radius: var(--radius-md);
    }
    
    /* Chapter */
    .farewell-message {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
    }
    
    .gratitude-text {
        font-size: 1rem;
    }
    
    /* Footer */
    .footer-tagline {
        font-size: 1rem;
    }
    
    .founder-name {
        font-size: 0.85rem;
    }
}


