/* ========================================
   SPICE FUSION — Motion Graphic Landing Page
   Color Palette: Beige, Black, White
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
    --beige: #F5F0E8;
    --beige-light: #FAF7F2;
    --beige-dark: #E8DFD0;
    --cream: #FFF8EF;
    --black: #1A1A1A;
    --black-soft: #2C2C2C;
    --white: #FFFFFF;
    --gold: #C8A96E;
    --gold-light: #D4BA85;
    --accent: #A0522D;

    --ff-heading: 'Fraunces', serif;
    --ff-body: 'Poppins', sans-serif;

    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
}

body {
    font-family: var(--ff-body);
    color: var(--black);
    background: var(--beige);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* ---- Custom Cursor Dot (aesthetic) ---- */
.cursor-dot {
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transition: transform 0.15s var(--ease-smooth);
}

.cursor-ring {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transition: transform 0.3s var(--ease-smooth), width 0.3s, height 0.3s;
}

/* ==========================================
   PRELOADER
   ========================================== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-text {
    font-family: var(--ff-heading);
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--beige);
    letter-spacing: 0.15em;
    overflow: hidden;
}

.preloader-text span {
    display: inline-block;
    transform: translateY(100%);
    animation: preloaderReveal 0.6s var(--ease-out) forwards;
}

@keyframes preloaderReveal {
    to {
        transform: translateY(0);
    }
}

.preloader-line {
    width: 0;
    height: 2px;
    background: var(--gold);
    margin-top: 1.5rem;
    animation: preloaderLine 1.8s var(--ease-smooth) 0.6s forwards;
}

@keyframes preloaderLine {
    to {
        width: 200px;
    }
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.92);
    backdrop-filter: blur(20px);
    padding: 0.75rem 3rem;
}

.nav-logo {
    font-family: var(--ff-heading);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--beige);
    letter-spacing: 0.08em;
    position: relative;
}

.nav-logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--ease-out);
}

.nav-logo:hover::after {
    width: 100%;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--beige-light);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: translateX(-101%);
    transition: transform 0.4s var(--ease-out);
}

.nav-links a:hover::after {
    transform: translateX(0);
}

.nav-cta {
    padding: 0.6rem 1.8rem !important;
    border: 1px solid var(--gold) !important;
    color: var(--gold) !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.15em !important;
    transition: background 0.4s ease, color 0.4s ease !important;
}

.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--black) !important;
}

.nav-cta::after {
    display: none !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--beige);
    transition: all 0.4s var(--ease-out);
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
}

/* Parallax background */
.hero-bg {
    position: absolute;
    inset: -60px;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45) saturate(1.1);
    transform: scale(1.1);
    transition: transform 8s var(--ease-smooth);
}

.hero.in-view .hero-bg img {
    transform: scale(1);
}

/* Grain overlay */
.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Gradient overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(to bottom,
            rgba(26, 26, 26, 0.3) 0%,
            rgba(26, 26, 26, 0.1) 40%,
            rgba(26, 26, 26, 0.5) 80%,
            rgba(26, 26, 26, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
    padding: 0 5vw;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(200, 169, 110, 0.4);
    border-radius: 0;
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-family: var(--ff-body);
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
}

.hero-badge .line {
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: var(--ff-heading);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 300;
    color: var(--beige);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hero-title .word {
    display: inline-block;
    overflow: hidden;
    margin-right: 0.3em;
    vertical-align: top;
}

.hero-title .word span {
    display: inline-block;
    transform: translateY(105%);
    transition: transform 0.9s var(--ease-out);
}

.hero.in-view .hero-title .word span {
    transform: translateY(0);
}

.hero-title .word:nth-child(2) span {
    transition-delay: 0.1s;
}

.hero-title .word:nth-child(3) span {
    transition-delay: 0.2s;
}

.hero-title .word:nth-child(4) span {
    transition-delay: 0.3s;
}

.hero-subtitle {
    font-family: var(--ff-body);
    font-size: clamp(0.9rem, 1.3vw, 1.1rem);
    color: rgba(245, 240, 232, 0.7);
    font-weight: 300;
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: var(--black);
    font-family: var(--ff-body);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out);
}

.btn-primary:hover::before {
    transform: translateY(0);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(200, 169, 110, 0.25);
}

.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-primary svg {
    width: 14px;
    height: 14px;
    transition: transform 0.4s var(--ease-out);
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--beige);
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid rgba(245, 240, 232, 0.3);
    cursor: pointer;
    transition: border-color 0.4s ease, color 0.4s ease, transform 0.4s var(--ease-out);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(245, 240, 232, 0.5);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-scroll .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 1;
        transform: scaleY(1);
    }

    50% {
        opacity: 0.4;
        transform: scaleY(0.6);
    }
}

/* ==========================================
   MARQUEE BANNER
   ========================================== */
.marquee-section {
    background: var(--black);
    padding: 1.5rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(200, 169, 110, 0.15);
    border-bottom: 1px solid rgba(200, 169, 110, 0.15);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 0 3rem;
    white-space: nowrap;
    color: var(--beige);
    font-family: var(--ff-heading);
    font-size: 1.15rem;
    font-weight: 300;
    letter-spacing: 0.08em;
}

.marquee-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    to {
        transform: translateX(-50%);
    }
}

/* ==========================================
   SECTION REVEAL ANIMATIONS
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-left.in-view {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-right.in-view {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================
   ABOUT / OUR TOUCH SECTION
   ========================================== */
.about-section {
    padding: 8rem 5vw;
    background: var(--beige);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: 'SPICE';
    position: absolute;
    top: 50%;
    left: -5%;
    transform: translateY(-50%) rotate(-90deg);
    font-family: var(--ff-heading);
    font-size: 15rem;
    font-weight: 100;
    color: rgba(26, 26, 26, 0.03);
    pointer-events: none;
    letter-spacing: 0.1em;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border: 1px solid var(--gold);
    z-index: 0;
    transition: transform 0.6s var(--ease-out);
}

.about-image-wrapper:hover::before {
    transform: translate(-8px, -8px);
}

.about-image {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s var(--ease-smooth);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    padding: 1rem 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--ff-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.section-label .label-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--ff-heading);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 1.75rem;
    letter-spacing: -0.01em;
    color: var(--black);
}

.section-text {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--black-soft);
    line-height: 1.9;
    margin-bottom: 2rem;
    max-width: 520px;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--ff-body);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
    cursor: pointer;
    position: relative;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--black);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out);
}

.btn-text:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-text svg {
    width: 16px;
    height: 16px;
    transition: transform 0.4s var(--ease-out);
}

.btn-text:hover svg {
    transform: translateX(6px);
}

/* ==========================================
   PARALLAX QUOTE BANNER
   ========================================== */
.quote-banner {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--black);
}

.quote-banner-bg {
    position: absolute;
    inset: -100px;
    z-index: 1;
}

.quote-banner-bg img {
    width: 100%;
    height: calc(100% + 200px);
    object-fit: cover;
    filter: brightness(0.35) saturate(0.8);
}

.quote-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(26, 26, 26, 0.5);
}

.quote-content {
    position: relative;
    z-index: 3;
    padding: 0 5vw;
    max-width: 800px;
}

.quote-text {
    font-family: var(--ff-heading);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 300;
    font-style: italic;
    color: var(--beige);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.quote-author {
    font-family: var(--ff-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ==========================================
   FARM TO TABLE / SUPPORT LOCAL SECTION
   ========================================== */
.farm-section {
    padding: 8rem 5vw;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.farm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.farm-image-wrapper {
    position: relative;
    order: 2;
}

.farm-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border: 1px solid var(--gold);
    z-index: 0;
    transition: transform 0.6s var(--ease-out);
}

.farm-image-wrapper:hover::before {
    transform: translate(8px, -8px);
}

.farm-image {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.farm-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s var(--ease-smooth);
}

.farm-image:hover img {
    transform: scale(1.05);
}

/* ==========================================
   MENU HIGHLIGHTS SECTION
   ========================================== */
.menu-section {
    padding: 8rem 5vw;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.menu-section::before {
    content: 'MENU';
    position: absolute;
    bottom: -3rem;
    right: -2%;
    font-family: var(--ff-heading);
    font-size: 18rem;
    font-weight: 100;
    color: rgba(245, 240, 232, 0.03);
    pointer-events: none;
    letter-spacing: 0.1em;
}

.menu-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem;
}

.menu-header .section-label {
    color: var(--gold);
}

.menu-header .section-title {
    color: var(--beige);
}

.menu-header .section-text {
    color: rgba(245, 240, 232, 0.6);
    margin: 0 auto;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.menu-cat-btn {
    padding: 0.6rem 1.8rem;
    background: transparent;
    border: 1px solid rgba(200, 169, 110, 0.3);
    color: rgba(245, 240, 232, 0.6);
    font-family: var(--ff-body);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
}

.menu-cat-btn:hover,
.menu-cat-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-card {
    background: rgba(245, 240, 232, 0.04);
    border: 1px solid rgba(200, 169, 110, 0.1);
    overflow: hidden;
    transition: transform 0.5s var(--ease-out), border-color 0.5s ease;
    cursor: pointer;
}

.menu-card:hover {
    transform: translateY(-10px);
    border-color: rgba(200, 169, 110, 0.3);
}

.menu-card-image {
    height: 260px;
    overflow: hidden;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.08);
}

.menu-card-body {
    padding: 1.5rem;
}

.menu-card-name {
    font-family: var(--ff-heading);
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--beige);
    margin-bottom: 0.5rem;
}

.menu-card-desc {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(245, 240, 232, 0.5);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.menu-card-price {
    font-family: var(--ff-heading);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--gold);
}

/* ==========================================
   STATS COUNTER
   ========================================== */
.stats-section {
    padding: 5rem 5vw;
    background: var(--beige);
    border-top: 1px solid rgba(200, 169, 110, 0.2);
    border-bottom: 1px solid rgba(200, 169, 110, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    padding: 2rem 1rem;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 25%;
    right: 0;
    height: 50%;
    width: 1px;
    background: rgba(200, 169, 110, 0.3);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-family: var(--ff-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--black);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--ff-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials-section {
    padding: 8rem 5vw;
    background: var(--beige-light);
    position: relative;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    text-align: center;
    padding: 3rem 2rem;
    display: none;
    animation: fadeSlide 0.6s var(--ease-out);
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 2rem;
    color: var(--gold);
    font-size: 1.1rem;
}

.testimonial-text {
    font-family: var(--ff-heading);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 300;
    font-style: italic;
    color: var(--black-soft);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.testimonial-author {
    font-family: var(--ff-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
}

.testimonial-role {
    font-size: 0.7rem;
    font-weight: 300;
    color: var(--gold);
    margin-top: 0.3rem;
    letter-spacing: 0.1em;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.testimonial-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* ==========================================
   CTA / RESERVATION SECTION
   ========================================== */
.cta-section {
    position: relative;
    padding: 8rem 5vw;
    background: var(--black);
    text-align: center;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(200, 169, 110, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--ff-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--beige);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.cta-text {
    font-family: var(--ff-body);
    font-size: 1rem;
    font-weight: 300;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--black-soft);
    padding: 5rem 5vw 2rem;
    border-top: 1px solid rgba(200, 169, 110, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.footer-logo {
    font-family: var(--ff-heading);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--beige);
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(245, 240, 232, 0.5);
    line-height: 1.8;
    max-width: 320px;
}

.footer-heading {
    font-family: var(--ff-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(245, 240, 232, 0.5);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: var(--beige);
    padding-left: 6px;
}

.footer-newsletter-text {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(245, 240, 232, 0.5);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.footer-newsletter-form {
    display: flex;
    gap: 0;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    background: rgba(245, 240, 232, 0.06);
    border: 1px solid rgba(200, 169, 110, 0.2);
    border-right: none;
    color: var(--beige);
    font-family: var(--ff-body);
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.footer-newsletter-form input::placeholder {
    color: rgba(245, 240, 232, 0.3);
}

.footer-newsletter-form input:focus {
    border-color: var(--gold);
}

.footer-newsletter-form button {
    padding: 0.85rem 1.5rem;
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--black);
    font-family: var(--ff-body);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.footer-newsletter-form button:hover {
    background: transparent;
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(200, 169, 110, 0.1);
}

.footer-copyright {
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(245, 240, 232, 0.35);
}

.footer-socials {
    display: flex;
    gap: 1.25rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(200, 169, 110, 0.2);
    color: rgba(245, 240, 232, 0.5);
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-social-link svg {
    width: 16px;
    height: 16px;
}

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s var(--ease-out), background 0.3s ease;
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.back-to-top:hover {
    background: var(--white);
}

.back-to-top svg {
    width: 18px;
    height: 18px;
}

/* ==========================================
   FLOATING SPICE PARTICLES (Decorative)
   ========================================== */
.particles-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 12s ease-in-out infinite;
}

@keyframes floatParticle {
    0% {
        opacity: 0;
        transform: translateY(100vh) rotate(0deg);
    }

    20% {
        opacity: 0.4;
    }

    80% {
        opacity: 0.4;
    }

    100% {
        opacity: 0;
        transform: translateY(-20vh) rotate(360deg);
    }
}

/* ==========================================
   MOBILE RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {

    .about-grid,
    .farm-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .farm-image-wrapper {
        order: 0;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .navbar.scrolled {
        padding: 0.75rem 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right 0.5s var(--ease-out);
        z-index: 999;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1rem;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3.8rem);
    }

    .about-image img,
    .farm-image img {
        height: 350px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .menu-card-image {
        height: 220px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cursor-dot,
    .cursor-ring {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .menu-categories {
        gap: 0.5rem;
    }

    .menu-cat-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.65rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}