/* ===========================
   CSS Reset & Base Styles
   =========================== */

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

:root {
    /* Colors */
    --color-cream: #F8F6F0;
    --color-charcoal: #1A1A1A;
    --color-charcoal-light: #2A2A2A;
    --color-gold: #C9A96E;
    --color-gold-light: #D4B883;
    --color-text: #2A2A2A;
    --color-text-light: #666;
    --color-white: #FFFFFF;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-max: 1400px;
    
    /* Animations */
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-cream);
    overflow-x: hidden;
    cursor: default;
}

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

/* ===========================
   Loading Screen
   =========================== */

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-charcoal-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s var(--ease-out-expo);
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: var(--color-cream);
}

.loading-logo {
    margin-bottom: 40px;
    animation: float 2s ease-in-out infinite;
}

.loading-logo img {
    width: 80px;
    height: auto;
    filter: brightness(0) invert(1);
}

.loading-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.loading-text span {
    display: inline-block;
    opacity: 0;
    animation: letterDrop 0.6s var(--ease-out-quart) forwards;
}

.loading-text span:nth-child(1) { animation-delay: 0.1s; }
.loading-text span:nth-child(2) { animation-delay: 0.2s; }
.loading-text span:nth-child(3) { animation-delay: 0.3s; }
.loading-text span:nth-child(4) { animation-delay: 0.4s; }
.loading-text span:nth-child(5) { animation-delay: 0.5s; }
.loading-text span:nth-child(6) { animation-delay: 0.6s; }
.loading-text span:nth-child(7) { animation-delay: 0.8s; }
.loading-text span:nth-child(8) { animation-delay: 0.9s; }
.loading-text span:nth-child(9) { animation-delay: 1.0s; }
.loading-text span:nth-child(10) { animation-delay: 1.1s; }
.loading-text span:nth-child(11) { animation-delay: 1.2s; }
.loading-text span:nth-child(12) { animation-delay: 1.3s; }
.loading-text span:nth-child(13) { animation-delay: 1.4s; }
.loading-text span:nth-child(14) { animation-delay: 1.5s; }

/* ===========================
   Navigation
   =========================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(248, 246, 240, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s var(--ease-out-quart);
    transform: translateY(-100%);
    animation: slideDown 0.8s var(--ease-out-expo) 2s forwards;
}

.navbar.scrolled {
    background: rgba(248, 246, 240, 0.98);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.nav-logo img {
    height: 35px;
    width: auto;
    transition: transform 0.3s var(--ease-out-quart);
}

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

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

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s var(--ease-out-quart);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s var(--ease-out-quart);
}

.nav-link:hover {
    color: var(--color-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s var(--ease-out-quart);
}

/* ===========================
   Utility Classes
   =========================== */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-title.light {
    color: var(--color-cream);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.section-subtitle.light {
    color: var(--color-gold);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s var(--ease-out-quart);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-white);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s var(--ease-out-quart);
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-cream);
    border: 2px solid var(--color-gold);
}

.btn-secondary:hover {
    background: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ===========================
   Hero Section
   =========================== */

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-charcoal-light) 100%);
    color: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(201, 169, 110, 0.1) 0%, transparent 50%);
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.floating-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-particles::after {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 40px;
}

.hero-logo {
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1.2s var(--ease-out-expo) 0.5s forwards;
}

.hero-logo img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    opacity: 0;
    animation: fadeInUp 1.2s var(--ease-out-expo) 0.8s forwards;
}

.hero-tagline {
    font-size: 1.4rem;
    color: var(--color-gold);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 0.05em;
    opacity: 0;
    animation: fadeInUp 1.2s var(--ease-out-expo) 1.1s forwards;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 50px;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1.2s var(--ease-out-expo) 1.4s forwards;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1.2s var(--ease-out-expo) 1.7s forwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1s ease-out 3s forwards;
}

.scroll-arrow {
    width: 20px;
    height: 30px;
    border: 2px solid var(--color-gold);
    border-radius: 15px;
    position: relative;
    cursor: pointer;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-gold);
    transform: translateX(-50%);
    animation: scrollBounce 2s infinite;
}

/* ===========================
   About Section
   =========================== */

.about {
    background: var(--color-cream);
}

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

.about-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-card {
    padding: 30px;
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s var(--ease-out-quart), box-shadow 0.3s var(--ease-out-quart);
    border-left: 4px solid var(--color-gold);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-text);
    margin-bottom: 16px;
    font-weight: 500;
}

.about-card p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.about-visual {
    position: relative;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out-quart);
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(42, 42, 42, 0.5) 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.3s var(--ease-out-quart);
}

.about-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-cream);
    margin-bottom: 8px;
}

.overlay-content p {
    color: var(--color-gold);
    font-size: 0.95rem;
}

/* ===========================
   Products Section
   =========================== */

.products {
    background: var(--color-charcoal);
    color: var(--color-cream);
}

.products-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

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

.product-image-large {
    position: relative;
    text-align: center;
}

.product-image-large img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    transition: transform 0.5s var(--ease-out-quart);
}

.product-image-large:hover img {
    transform: scale(1.05) rotate(2deg);
}

.product-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

.product-info h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 16px;
    font-weight: 600;
}

.product-tagline {
    font-size: 1.2rem;
    color: var(--color-gold);
    margin-bottom: 24px;
    font-weight: 500;
}

.product-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.product-card {
    background: rgba(42, 42, 42, 0.5);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: transform 0.3s var(--ease-out-quart), background 0.3s var(--ease-out-quart);
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.product-card:hover {
    transform: translateY(-10px);
    background: rgba(42, 42, 42, 0.8);
}

.product-card .product-image {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 15px;
}

.product-card .product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out-quart);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 16px;
    font-weight: 500;
}

.product-content p {
    color: var(--color-cream);
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.tasting-notes {
    background: rgba(201, 169, 110, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 3px solid var(--color-gold);
    font-size: 0.9rem;
    line-height: 1.5;
}

.tasting-notes strong {
    color: var(--color-gold);
}

/* ===========================
   Locations Section
   =========================== */

.locations {
    background: var(--color-cream);
}

.locations-intro {
    text-align: center;
    margin-bottom: 60px;
}

.locations-intro p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.location-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s var(--ease-out-quart), box-shadow 0.3s var(--ease-out-quart);
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.location-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.location-header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-text);
    font-weight: 500;
}

.location-badge {
    background: var(--color-gold);
    color: var(--color-white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.location-details p {
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.location-details strong {
    color: var(--color-text);
    font-weight: 600;
}

/* ===========================
   Founder Section
   =========================== */

.founder {
    background: var(--color-charcoal);
    color: var(--color-cream);
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 100px;
    align-items: center;
}

.founder-image-container {
    text-align: center;
    position: relative;
}

.founder-image {
    position: relative;
    display: inline-block;
}

.founder-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--color-gold);
    transition: transform 0.5s var(--ease-out-quart);
}

.founder-image:hover img {
    transform: scale(1.05);
}

.image-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    border: 2px solid rgba(201, 169, 110, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.founder-text h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 16px;
    font-weight: 600;
}

.founder-text h4 {
    font-size: 1.2rem;
    color: var(--color-cream);
    margin-bottom: 30px;
    font-weight: 400;
    opacity: 0.9;
}

.founder-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 24px;
    opacity: 0.9;
}

.founder-story strong {
    color: var(--color-gold);
}

blockquote {
    background: rgba(201, 169, 110, 0.1);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--color-gold);
    margin-top: 30px;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
}

blockquote cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    color: var(--color-gold);
    font-weight: 500;
}

/* ===========================
   Businesses Section
   =========================== */

.businesses {
    background: var(--color-cream);
}

.businesses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.business-card {
    background: var(--color-charcoal-light);
    color: var(--color-cream);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.4s var(--ease-out-quart), background 0.4s var(--ease-out-quart);
    position: relative;
    overflow: hidden;
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
}

.business-card:hover {
    transform: translateY(-10px);
    background: var(--color-charcoal);
}

.business-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: transform 0.3s var(--ease-out-quart);
}

.business-card:hover .business-icon {
    transform: scale(1.1) rotate(10deg);
}

.business-icon svg {
    width: 24px;
    height: 24px;
}

.business-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 20px;
    font-weight: 500;
}

.business-card p {
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 24px;
}

.founder-link {
    margin: 30px 0;
    text-align: center;
}

.founder-link .btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background: var(--color-gold);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s var(--ease-out-quart);
}

.founder-link .btn-primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
}

.business-link {
    padding-top: 20px;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
    text-align: center;
}

.business-link .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    color: var(--color-gold);
    text-decoration: none;
    border: 2px solid var(--color-gold);
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s var(--ease-out-quart);
    font-size: 0.9rem;
}

.business-link .btn-secondary:hover {
    background: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 110, 0.3);
}

/* ===========================
   Contact Section
   =========================== */

.contact {
    background: var(--color-charcoal);
    color: var(--color-cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-item h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--color-gold);
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-visual {
    background: rgba(42, 42, 42, 0.5);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.contact-card h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-gold);
    margin-bottom: 16px;
    font-weight: 500;
}

.contact-card p {
    line-height: 1.7;
    opacity: 0.9;
}

/* ===========================
   Footer
   =========================== */

.footer {
    background: var(--color-charcoal-light);
    color: var(--color-cream);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    color: var(--color-gold);
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-cream);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s var(--ease-out-quart);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-gold);
}

.footer-contact p {
    margin-bottom: 8px;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(201, 169, 110, 0.2);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===========================
   Animations
   =========================== */

@keyframes letterDrop {
    0% {
        opacity: 0;
        transform: translateY(-20px) rotateX(90deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

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

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(8px);
    }
    60% {
        transform: translateX(-50%) translateY(4px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
}

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

/* Intersection Observer Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out-expo);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s var(--ease-out-expo);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s var(--ease-out-expo);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s var(--ease-out-expo);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .container {
        padding: 0 30px;
    }
    
    .nav-container {
        padding: 0 30px;
    }
    
    .about-content,
    .product-hero,
    .founder-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--color-cream);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: right 0.3s var(--ease-out-quart);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 200px;
        text-align: center;
    }
    
    .locations-grid,
    .businesses-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .about-card,
    .location-card,
    .business-card {
        padding: 25px;
    }
    
    .founder-image img {
        width: 250px;
        height: 250px;
    }
    
    .product-info h3 {
        font-size: 2rem;
    }
}