/* ============================================
   KIMCHI HOBART — COMING SOON PAGE
   Custom Styles — Mobile-First Design
   Brand: Premium, Earthy, Artistic, Authentic
   ============================================ */

/* ============ CSS CUSTOM PROPERTIES ============ */
:root {
    /* ── Primary Palette ── */
    --kimchi-red: #B73A2D;
    --kimchi-red-hover: #9E3025;
    --chili-red: #D95A3B;
    --warm-cream: #F8F4EC;
    --paper-beige: #EADFCF;
    --charcoal: #2E2A28;

    /* ── Australian Nature Accents ── */
    --eucalyptus: #6C8A63;
    --sage-green: #9CAF88;
    --gum-leaf: #7B8F6A;
    --sand: #D8C7A7;
    --ocean-blue: #6D9FB3;

    /* ── Korean Heritage Accents ── */
    --sesame-gold: #C9A55C;
    --soy-brown: #6A4E3D;
    --ceramic-white: #FFFDF8;
    --dark-ink: #1E1E1E;

    /* ── Decorative ── */
    --dusty-olive: #7A8768;
    --terracotta: #C46A45;
    --muted-coral: #DD7A63;
    --ochre: #C89A46;
    --soft-moss: #A5B08C;

    /* ── Text Colors ── */
    --text-primary: #2E2A28;
    --text-secondary: #6F6A66;
    --text-muted: #9A948F;

    /* ── Backgrounds ── */
    --bg-main: #F8F4EC;
    --bg-alt: #FFFDF8;
    --bg-card: #FFFFFF;
    --bg-footer: #2E2A28;

    /* ── Typography ── */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-script: 'Dancing Script', cursive;
    --font-feature: 'Cormorant Garamond', Georgia, serif;

    /* ── Spacing ── */
    --section-pad-y: 2rem;

    /* ── Transitions ── */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* ── Shadows (warm-toned) ── */
    --shadow-sm: 0 2px 8px rgba(46, 42, 40, 0.06);
    --shadow-md: 0 4px 20px rgba(46, 42, 40, 0.09);
    --shadow-lg: 0 8px 40px rgba(46, 42, 40, 0.12);
    --shadow-xl: 0 16px 60px rgba(46, 42, 40, 0.16);

    /* ── Border Radius ── */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

::selection {
    background: var(--kimchi-red);
    color: white;
}

/* ============ BOTANICAL SILHOUETTE DECORATIONS ============ */
.botanical-decor {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 5;
    pointer-events: none;
    opacity: 0.18;
}

.botanical-decor img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.botanical-decor-left {
    left: 0;
}

.botanical-decor-right {
    right: 0;
}

/* Hide on mobile — too small to be effective */
@media (max-width: 991.98px) {
    .botanical-decor {
        display: none;
    }
}

@media (min-width: 992px) and (max-width: 1399.98px) {
    .botanical-decor {
        width: 140px;
        opacity: 0.12;
    }
}

@media (min-width: 1400px) {
    .botanical-decor {
        width: 220px;
        opacity: 0.18;
    }
}

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

/* ============ TYPOGRAPHY HELPERS ============ */
.script-text {
    font-family: var(--font-script);
    color: var(--kimchi-red);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-title .title-heart {
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
    font-size: 1.2rem;
}

.section-title .title-dash {
    color: var(--sand);
    font-weight: 300;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

/* ============ NAVBAR ============ */
.navbar {
    padding: 0.75rem 0;
    background: rgba(248, 244, 236, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(46, 42, 40, 0.05);
    transition: var(--transition-medium);
    z-index: 1000;
}

.navbar > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-sm);
    background: rgba(248, 244, 236, 0.97);
}

.brand-logo {
    height: 46px;
    width: auto;
    margin-right: 10px;
    object-fit: contain;
}

.brand-korean {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: 2px;
}

.brand-divider {
    width: 1px;
    height: 28px;
    background: var(--sand);
    margin: 0 10px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 3px;
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-follow-text {
    font-family: var(--font-script);
    font-size: 1.05rem;
    color: var(--soy-brown);
}

.nav-follow-arrow {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background: var(--charcoal);
    color: var(--warm-cream);
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-icon:hover {
    background: var(--kimchi-red);
    color: white;
    transform: translateY(-2px);
}

/* ============ HERO SECTION ============ */
.hero-section {
    /* Bold warm gradient — cream to blush-pink sweep */
    background:
        radial-gradient(ellipse at 0% 40%, rgba(201, 165, 92, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 0%, rgba(217, 90, 59, 0.18) 0%, transparent 45%),
        radial-gradient(ellipse at 70% 100%, rgba(196, 106, 69, 0.12) 0%, transparent 45%),
        linear-gradient(135deg, #F8F4EC 0%, #F5EDE0 30%, #F2E4D8 60%, #F0DDD0 100%);
    position: relative;
    overflow: hidden;
    padding-top: 70px;
    z-index: 6;
}

/* Subtle paper/linen noise texture — artisanal feel */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.045;
    pointer-events: none;
    z-index: 0;
}

/* Large warm bloom behind the text side */
.hero-section::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    top: -10%;
    left: -15%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 165, 92, 0.22) 0%, rgba(234, 223, 207, 0.15) 40%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* Above-fold row — on desktop behaves like before, on mobile stays compact */
.hero-above-fold {
    padding-top: 1rem;
}

/* Mobile details block — shown below the image on small screens */
.hero-details-mobile {
    padding: 0.5rem 0 2rem;
}

/* Decorative floating orbs — large blurred ambient glows */
.hero-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
}

.hero-deco-1 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(217, 90, 59, 0.5) 0%, rgba(217, 90, 59, 0.15) 40%, transparent 65%);
    top: -200px;
    right: -150px;
    opacity: 0.35;
    filter: blur(80px);
}

.hero-deco-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(201, 165, 92, 0.5) 0%, rgba(201, 165, 92, 0.15) 40%, transparent 65%);
    bottom: -10%;
    left: -120px;
    opacity: 0.30;
    filter: blur(90px);
}

.hero-deco-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(108, 138, 99, 0.4) 0%, rgba(108, 138, 99, 0.1) 40%, transparent 65%);
    top: 45%;
    right: 10%;
    opacity: 0.22;
    filter: blur(70px);
}

/* Floating spice particles — adds organic life */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    will-change: transform;
    opacity: 0;
}

.hero-particle--warm {
    background: var(--chili-red);
}

.hero-particle--gold {
    background: var(--sesame-gold);
}

.hero-particle--earth {
    background: var(--eucalyptus);
}

.hero-particle--terracotta {
    background: var(--terracotta);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 1rem 0 0;
}

.hero-subtitle {
    font-family: var(--font-script);
    font-size: 1.3rem;
    color: var(--chili-red);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-subtitle .chili-emoji {
    font-size: 1.2rem;
    display: inline-block;
    animation: wiggle 2s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-ink);
    line-height: 1.15;
    margin-bottom: 0.5rem;
}

.hero-accent {
    color: var(--kimchi-red);
}

.hero-accent em {
    font-style: italic;
    font-weight: 600;
}

.coming-text {
    font-family: var(--font-script);
    font-size: 3.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.hero-description strong {
    color: var(--text-primary);
    text-decoration: underline;
    text-decoration-color: var(--kimchi-red);
    text-underline-offset: 3px;
}

/* ── Notify Button (Primary CTA) ── */
.btn-notify {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    background: var(--kimchi-red);
    color: #FFFFFF;
    border: 2px solid var(--kimchi-red);
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

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

.btn-notify:hover {
    background: var(--kimchi-red-hover);
    border-color: var(--kimchi-red-hover);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(183, 58, 45, 0.3);
}

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

.btn-notify:active {
    transform: translateY(-1px);
}

.cta-subtext {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.6rem;
    font-style: italic;
}

.cta-subtext i {
    font-size: 0.7rem;
    margin-right: 0.3rem;
}

/* ── Hero Image / Card-Fan Swiper ── */
.hero-image-col {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0.5rem 0 1rem;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 320px;
}

.hero-swiper-container {
    position: relative;
    /* Extra horizontal room so tilted cards aren't clipped */
    padding: 1rem 1.5rem;
}

/* Ambient radial glow behind the card stack */
.hero-image-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160%;
    height: 140%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(
        ellipse,
        rgba(183, 58, 45, 0.45) 0%,
        rgba(217, 90, 59, 0.30) 18%,
        rgba(201, 165, 92, 0.22) 38%,
        rgba(196, 106, 69, 0.12) 58%,
        transparent 78%
    );
    filter: blur(35px);
    pointer-events: none;
    z-index: 0;
    animation: swiper-glow-pulse 4s ease-in-out infinite;
    will-change: opacity, transform;
}

.hero-swiper {
    overflow: visible !important;
    width: 100%;
    aspect-ratio: 3/4;
}

/* Prevent FOUC before Swiper initializes */
.hero-swiper:not(.swiper-initialized) .swiper-slide:not(:nth-child(3)) {
    display: none;
}

.hero-swiper .swiper-slide {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    will-change: transform;
    backface-visibility: hidden;
    transition: box-shadow 0.5s ease;
}

/* Active card warm glow halo */
.hero-swiper .swiper-slide-active {
    box-shadow:
        0 8px 40px rgba(46, 42, 40, 0.12),
        0 0 30px rgba(183, 58, 45, 0.22),
        0 0 70px rgba(201, 165, 92, 0.14),
        0 0 100px rgba(217, 90, 59, 0.06);
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}

/* Custom navigation arrows — positioned at card edges */
.hero-swiper-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 34px;
    height: 34px;
    border-radius: var(--radius-full);
    background: rgba(255, 253, 248, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(46, 42, 40, 0.08);
    color: var(--text-primary);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.hero-swiper-btn:hover {
    background: var(--kimchi-red);
    color: white;
    border-color: var(--kimchi-red);
    box-shadow: 0 4px 15px rgba(183, 58, 45, 0.3);
    transform: translateY(-50%) scale(1.08);
}

.hero-swiper-prev {
    left: 0;
}

.hero-swiper-next {
    right: 0;
}

/* Hide nav arrows on mobile — users swipe instead */
@media (max-width: 991px) {
    .hero-swiper-btn {
        display: none !important;
    }
}

/* Swipe hint overlay */
.hero-swipe-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 15;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(46, 42, 40, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-swipe-hint.visible {
    opacity: 1;
}

.hero-swipe-hint i {
    font-size: 1.1rem;
    animation: swipe-gesture 2s ease-in-out infinite;
}

@keyframes swipe-gesture {
    0%   { transform: translateX(-12px) rotate(0deg); opacity: 0.4; }
    15%  { opacity: 1; }
    50%  { transform: translateX(14px) rotate(-8deg); opacity: 1; }
    70%  { transform: translateX(14px) rotate(-8deg); opacity: 0; }
    71%  { transform: translateX(-12px) rotate(0deg); opacity: 0; }
    100% { transform: translateX(-12px) rotate(0deg); opacity: 0.4; }
}

/* Swiper footer row: badge + pagination + heart */
.hero-swiper-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 0.75rem;
}

/* Pagination dots */
.hero-swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.hero-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--sand);
    opacity: 0.5;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--kimchi-red);
    opacity: 1;
    width: 22px;
    border-radius: 4px;
}

/* Legacy fallback — keeps hero-image class working for any other usage */
.hero-image {
    width: 100%;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 20px 40px rgba(46, 42, 40, 0.15));
    transition: var(--transition-slow);
    will-change: transform;
    transform: translateZ(0);
}

.hero-image:hover {
    transform: scale(1.02) rotate(1deg);
}

.hero-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    z-index: 12;
    background: var(--ceramic-white);
    border: 2px solid var(--kimchi-red);
    border-radius: var(--radius-full);
    width: 72px;
    height: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    animation: spin-slow 15s linear infinite;
}

.badge-top,
.badge-bottom {
    font-size: 0.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--kimchi-red);
    text-transform: uppercase;
    line-height: 1.3;
}

.hero-heart-float {
    position: absolute;
    bottom: -8px;
    left: -8px;
    z-index: 12;
    color: var(--kimchi-red);
    font-size: 1.4rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

/* ============ COUNTDOWN SECTION (REMOVED) ============ */

/* ============ OWNER MESSAGE SECTION ============ */
.owner-section {
    padding: var(--section-pad-y) 0;
    background: var(--bg-main);
    position: relative;
    z-index: 1;
}

.owner-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 0;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(46, 42, 40, 0.04);
    position: relative;
    overflow: hidden;
}

.owner-photo-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.owner-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    position: relative;
    z-index: 2;
    display: block;
    transition: var(--transition-medium);
}

.owner-photo:hover {
    transform: scale(1.02);
}

.owner-content {
    padding: 3.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.owner-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-ink);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.owner-accent {
    color: var(--kimchi-red);
    font-style: italic;
}

.owner-message {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
}

.owner-signature {
    font-size: 1.8rem;
    color: var(--soy-brown);
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .owner-content {
        text-align: center;
        padding: 2.5rem 1.5rem;
    }
}


/* ============ HAND-DRAWN ANNOTATION ============ */
.drawn-underline {
    position: absolute;
    bottom: -15px;
    left: -10px;
    width: 120%;
    height: 30px;
    color: var(--chili-red);
    pointer-events: none;
    z-index: -1;
    overflow: visible;
}

.drawn-underline path {
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
    /* Animation is triggered by GSAP/ScrollTrigger in main.js */
}


/* ============ TESTIMONIALS SECTION ============ */
.testimonials-section {
    padding: var(--section-pad-y) 0;
    background: var(--bg-alt);
    position: relative;
    overflow: hidden;
}

/* ── Decorative floating elements ── */
.testimonial-deco {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    will-change: transform;
}

.testimonial-deco img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testimonial-deco-bowl {
    width: 100px;
    height: 100px;
    left: -10px;
    top: 50%;
    transform: translateY(-50%) rotate(-5deg);
    opacity: 0.85;
}

.testimonial-deco-heart {
    width: 60px;
    height: 60px;
    left: 33%;
    top: 15%;
    transform: rotate(10deg);
    opacity: 0.75;
    animation: testimonialFloat 4s ease-in-out infinite;
}

.testimonial-deco-herb {
    width: 55px;
    height: 55px;
    left: 55%;
    top: 12%;
    transform: rotate(-15deg);
    opacity: 0.7;
}

.testimonial-deco-chili {
    width: 55px;
    height: 55px;
    right: 5%;
    top: 30%;
    transform: rotate(25deg);
    opacity: 0.8;
    animation: testimonialFloat 5s ease-in-out 1s infinite;
}

.testimonial-deco-korean {
    width: 80px;
    height: 80px;
    left: 4%;
    top: 42%;
    transform: rotate(-8deg);
    opacity: 0.85;
}

@keyframes testimonialFloat {
    0%, 100% { transform: translateY(0) rotate(var(--deco-rotate, 10deg)); }
    50% { transform: translateY(-8px) rotate(var(--deco-rotate, 10deg)); }
}

/* ── Section header ── */
.testimonials-header {
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
}

.testimonials-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--kimchi-red);
    margin-bottom: 0.5rem;
}

.testimonials-label .label-heart {
    display: inline-block;
    font-size: 1rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.testimonials-heading {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.testimonials-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.testimonials-subtitle-line {
    width: 60px;
    height: 3px;
    background: var(--chili-red);
    border-radius: 2px;
    margin: 0 auto;
}

/* ── Review screenshot grid (masonry via CSS columns) ── */
.review-grid {
    columns: 2;
    column-gap: 1.5rem;
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

.review-card {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    will-change: transform;
}

.review-card:nth-child(2) {
    transform: translateY(1rem);
}

.review-card:nth-child(3) {
    transform: translateY(-0.5rem);
}

.review-card-inner {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(46, 42, 40, 0.05);
    transition: var(--transition-medium);
    cursor: pointer;
    outline: none;
}

.review-card-inner:hover {
    transform: translateY(-6px) rotate(0deg) !important;
    box-shadow: var(--shadow-lg);
}

.review-card-inner:focus-visible {
    box-shadow: 0 0 0 3px var(--kimchi-red), var(--shadow-md);
}

/* ── Image wrapper with overlay ── */
.review-img-wrapper {
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.review-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-card-inner:hover .review-img-wrapper img {
    transform: scale(1.03);
}


/* ── Caption bar under each image ── */
.review-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 1rem;
    border-top: 1px solid rgba(46, 42, 40, 0.06);
}

.review-source {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.review-source i {
    font-size: 0.85rem;
    color: var(--kimchi-red);
}

.review-stars {
    color: var(--kimchi-red);
    font-size: 0.65rem;
    letter-spacing: 2px;
}

/* ── Lightbox / full-size viewer ── */
.review-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.review-lightbox.is-active {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(46, 42, 40, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    max-height: 90vh;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.lightbox-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: var(--radius-full);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* ── Thank you message ── */
.testimonials-thankyou {
    font-family: var(--font-script);
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 2.5rem;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.testimonials-thankyou .thankyou-heart {
    color: var(--kimchi-red);
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
}

/* ============ TIKTOK SECTION ============ */
.tiktok-section {
    padding: var(--section-pad-y) 0;
    background: var(--bg-main);
}

.tiktok-embed-wrapper {
    display: flex;
    justify-content: center;
}


/* ============ PRODUCTS SECTION ============ */
.products-section {
    padding: var(--section-pad-y) 0;
    background: var(--bg-main);
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(46, 42, 40, 0.04);
    transition: var(--transition-medium);
    height: 100%;
}

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

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

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image:not(.product-image-left):not(.product-image-right) {
    transform: scale(1.08);
}

/* ── Dual Image Display (1kg) ── */
.dual-image-wrapper {
    background: var(--paper-beige);
}

.dual-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    opacity: 0.15;
    mix-blend-mode: multiply;
}

.dual-image-wrapper .product-image {
    position: absolute;
    width: 60%;
    height: 75%;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    border: 4px solid var(--ceramic-white);
}

.product-image-left {
    left: 5%;
    top: 15%;
    transform: rotate(-6deg);
    z-index: 1;
}

.product-image-right {
    right: 5%;
    bottom: 8%;
    transform: rotate(5deg);
    z-index: 2;
}

.product-card:hover .product-image-left {
    transform: scale(1.06) rotate(-9deg) translateX(-3px);
}

.product-card:hover .product-image-right {
    transform: scale(1.06) rotate(8deg) translateX(3px);
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--kimchi-red);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(183, 58, 45, 0.35);
}

.product-info {
    padding: 1.5rem;
    text-align: left;
}

.product-title-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
    border-bottom: 1px dotted var(--paper-beige);
    padding-bottom: 0.5rem;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0;
}

.product-size {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

.product-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--kimchi-red);
    margin: 0;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
}

.product-icons {
    display: flex;
    gap: 0.4rem;
    font-size: 1.1rem;
}

/* ============ GALLERY SECTION ============ */
.gallery-section {
    padding: var(--section-pad-y) 0;
    background: var(--bg-alt);
    overflow: hidden;
}

.gallery-header {
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-subtitle {
    font-family: var(--font-script);
    font-size: 1.3rem;
    color: var(--soy-brown);
    margin-bottom: 0.75rem;
}

.gallery-heart {
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.social-icon-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: var(--charcoal);
    color: var(--warm-cream);
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition-fast);
    margin: 0 0.25rem;
}

.social-icon-lg:hover {
    background: var(--kimchi-red);
    color: white;
    transform: translateY(-3px) scale(1.05);
}

.gallery-strip {
    position: relative;
    overflow: hidden;
    margin: 0 -15px;
    padding: 10px 0;
}

.gallery-track {
    display: flex;
    gap: 12px;
    animation: scroll-gallery 30s linear infinite;
    width: max-content;
}

.gallery-item {
    flex-shrink: 0;
    width: 180px;
    height: 140px;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-medium);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============ FOOTER ============ */
.site-footer {
    background: var(--bg-footer);
    color: var(--warm-cream);
    padding: 1.5rem 0;
    position: relative;
    z-index: 10;
}

.footer-brand .brand-korean {
    color: var(--warm-cream);
    font-size: 1.3rem;
}

.footer-brand .brand-name {
    color: var(--warm-cream);
    font-size: 0.85rem;
}

.footer-brand .brand-tagline {
    color: var(--text-muted);
    font-size: 0.5rem;
}

.footer-brand .brand-divider {
    background: var(--text-muted);
}

.footer-links a {
    color: var(--sand);
    text-decoration: none;
    font-size: 0.8rem;
    margin: 0 0.75rem;
    transition: var(--transition-fast);
}

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

.footer-made {
    font-size: 0.8rem;
    color: var(--sand);
}

/* ============ NOTIFY MODAL ============ */
.notify-modal-content {
    background: var(--bg-main);
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.notify-modal-content .modal-header {
    padding: 1.5rem 1.5rem 0;
}

.notify-modal-content .modal-body {
    padding: 1rem 1.5rem 1.5rem;
}

.notify-social-msg {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.notify-social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.notify-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    will-change: transform;
}

.notify-social-btn i {
    font-size: 1.25rem;
}

.notify-social-btn:hover {
    transform: translateY(-2px);
    color: #fff;
    filter: brightness(1.08);
}

.notify-social-btn:active {
    transform: translateY(0);
}

/* Instagram — gradient inspired by the IG brand */
.notify-social-instagram {
    background: linear-gradient(135deg, #833AB4 0%, #C13584 25%, #E1306C 50%, #FD1D1D 75%, #F77737 100%);
    box-shadow: 0 4px 15px rgba(193, 53, 132, 0.35);
}

.notify-social-instagram:hover {
    box-shadow: 0 6px 20px rgba(193, 53, 132, 0.5);
}

/* TikTok — dark with accent glow */
.notify-social-tiktok {
    background: #010101;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.notify-social-tiktok::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 244, 238, 0.15) 0%, transparent 50%, rgba(254, 44, 85, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.notify-social-tiktok:hover {
    box-shadow: 0 6px 20px rgba(254, 44, 85, 0.3);
}

.notify-social-tiktok:hover::before {
    opacity: 1;
}

.notify-social-footer {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ============ BACK TO TOP ============ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--kimchi-red);
    color: white;
    border: none;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-medium);
    box-shadow: 0 4px 15px rgba(183, 58, 45, 0.35);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--kimchi-red-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(183, 58, 45, 0.45);
}

/* ============ ANIMATIONS ============ */
@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    50% { transform: rotate(-10deg); }
    75% { transform: rotate(12deg); }
}

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

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

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

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes tick {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); color: var(--kimchi-red); }
    100% { transform: scale(1); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes scroll-gallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scale-in {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(183, 58, 45, 0.35); }
    50% { box-shadow: 0 0 0 15px rgba(183, 58, 45, 0); }
}

@keyframes hero-deco-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(12px, -8px) scale(1.03); }
    66% { transform: translate(-8px, 6px) scale(0.97); }
}

@keyframes swiper-glow-pulse {
    0%, 100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.08);
    }
}

/* ============ RESPONSIVE — TABLET (768px+) ============ */
@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .coming-text {
        font-size: 4.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .gallery-item {
        width: 220px;
        height: 170px;
    }

    .feature-icon {
        width: 58px;
        height: 58px;
    }

    .feature-title {
        font-size: 1rem;
    }

    .features-card {
        padding: 3rem 2rem;
    }

    .features-card .col-md-4:not(:last-child) .feature-card {
        border-right: 1px solid var(--paper-beige);
    }

    :root {
        --section-pad-y: 4rem;
    }
}

/* ============ RESPONSIVE — DESKTOP (992px+) ============ */
@media (min-width: 992px) {
    :root {
        --section-pad-y: 4rem;
    }

    .hero-above-fold {
        min-height: calc(100vh - 70px);
        padding-top: 2rem;
    }

    .hero-title {
        font-size: 4rem;
        margin-bottom: 1.25rem;
    }

    .coming-text {
        font-size: 5rem;
    }

    .hero-content {
        padding: 4rem 0;
    }

    .hero-image-col {
        padding: 2rem 0;
    }

    .hero-image-wrapper {
        max-width: 400px;
    }

    .hero-swiper-btn {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }

    .hero-badge {
        width: 90px;
        height: 90px;
        top: -12px;
        right: -12px;
    }

    .badge-top,
    .badge-bottom {
        font-size: 0.5rem;
        letter-spacing: 1px;
    }

    .feature-icon {
        width: 64px;
        height: 64px;
    }

    .feature-title {
        font-size: 1.05rem;
    }

    .gallery-item {
        width: 250px;
        height: 190px;
    }

    .testimonials-heading {
        font-size: 2.2rem;
    }

    .testimonials-thankyou {
        font-size: 1.35rem;
    }
}

/* ============ RESPONSIVE — LARGE DESKTOP (1200px+) ============ */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .coming-text {
        font-size: 5.5rem;
    }

    .testimonials-heading {
        font-size: 2.5rem;
    }

    .testimonial-deco-bowl {
        width: 120px;
        height: 120px;
    }

    .testimonial-deco-heart {
        width: 70px;
        height: 70px;
    }

    .testimonial-deco-korean {
        width: 100px;
        height: 100px;
    }
}

/* ============ RESPONSIVE — MOBILE (max 991px) ============ */
@media (max-width: 991.98px) {
    .hero-above-fold {
        padding-top: 0.5rem;
    }

    .hero-content {
        padding: 0.75rem 0 0;
        text-align: center;
    }

    .hero-subtitle {
        margin-bottom: 0.4rem;
        justify-content: center;
    }

    .hero-title {
        margin-bottom: 0.25rem;
    }

    .hero-image-col {
        padding: 0 0 0.5rem;
    }

    .hero-image-wrapper {
        max-width: 280px;
    }

    .hero-details-mobile {
        padding: 0.75rem 0 1.5rem;
        text-align: center;
    }

    .hero-details-mobile .hero-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .features-section {
        padding: 2.5rem 0;
    }

    .features-card {
        padding: 1.5rem 0.5rem;
    }

    .testimonials-section,
    .products-section {
        padding: 2.5rem 0;
    }

    .testimonial-deco {
        display: none;
    }

    .testimonials-heading {
        font-size: 1.5rem;
    }

    .testimonials-thankyou {
        font-size: 1rem;
        margin-top: 1.5rem;
    }

    .review-grid {
        columns: 1;
        margin-top: 1.5rem;
    }

    .review-card {
        margin-bottom: 1rem;
    }

    .review-card:nth-child(2),
    .review-card:nth-child(3) {
        transform: none;
    }

    .gallery-section {
        padding: 2.5rem 0;
    }

    .section-title {
        margin-bottom: 0.5rem;
    }
}

/* ============ RESPONSIVE — MOBILE SMALL (max 575px) ============ */
@media (max-width: 575.98px) {
    .brand-korean {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .brand-divider {
        height: 22px;
        margin: 0 6px;
    }

    .brand-name {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .brand-tagline {
        font-size: 0.5rem;
        letter-spacing: 1.5px;
    }

    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }

    .nav-social {
        gap: 0.25rem !important;
    }
    .hero-section {
        padding-top: 80px;
    }

    .hero-section::after {
        width: 400px;
        height: 400px;
        top: -5%;
        left: -20%;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .coming-text {
        font-size: 2.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .hero-image-wrapper {
        max-width: 250px;
    }

    .hero-swiper-container {
        padding: 0.75rem 1rem;
    }

    .hero-swiper-btn {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }

    .hero-swiper-pagination .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
    }

    .hero-swiper-pagination .swiper-pagination-bullet-active {
        width: 18px;
    }

    .hero-badge {
        width: 60px;
        height: 60px;
        top: -6px;
        right: -6px;
    }

    .badge-top,
    .badge-bottom {
        font-size: 0.35rem;
    }

    .feature-card {
        padding: 1rem 0.5rem;
    }

    .feature-icon {
        width: 44px;
        height: 44px;
    }

    .feature-title {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .feature-desc {
        font-size: 0.7rem;
    }

    .gallery-item {
        width: 150px;
        height: 120px;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .footer-links {
        margin: 1rem 0;
    }

    .footer-links a {
        margin: 0 0.4rem;
        font-size: 0.7rem;
    }

    .footer-made {
        font-size: 0.7rem;
    }

    .footer-brand {
        text-align: center;
        display: flex;
        justify-content: center;
    }
}

/* (Preloader removed — hero loads instantly) */

/* ============ CURSOR & INTERACTION ============ */
@media (hover: hover) and (pointer: fine) {
    .product-card,
    .review-card-inner,
    .gallery-item {
        cursor: pointer;
    }
}

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

    .gallery-track {
        animation: none;
    }

    /* Show particles as static decorative dots (no animation, just placed) */
    .hero-particle {
        opacity: 0.25 !important;
    }

    .hero-deco {
        animation: none !important;
    }

    /* Swipe hint is a functional UX cue — keep the finger animation */
    .hero-swipe-hint i {
        animation: swipe-gesture 2s ease-in-out infinite !important;
        animation-duration: 2s !important;
        animation-iteration-count: infinite !important;
    }

    .hero-image-wrapper::after {
        animation: none !important;
        opacity: 0.6;
    }
}

/* ============ PRINT STYLES ============ */
@media print {
    .navbar,
    .back-to-top,
    .gallery-section,
    .botanical-decor {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}
