/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg: #0a0a0a;
    --color-surface: #141414;
    --color-surface-2: #1c1c1c;
    --color-border: rgba(255, 255, 255, 0.07);
    --color-border-accent: rgba(200, 169, 110, 0.28);
    --color-accent: #C8A96E;
    --color-accent-dark: #A88A4A;
    --color-text: #f0f0f0;
    --color-text-muted: #888888;
    --color-text-dim: #4a4a4a;
    --white: #ffffff;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;

    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1.25rem;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-accent: 0 8px 32px rgba(200, 169, 110, 0.18);

    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

/* ============ HEADER ============ */
.header {
    background-color: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.nav {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.nav-link {
    color: var(--color-text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-text);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-accent);
}

/* ============ HERO ============ */
.hero {
    background-color: var(--color-bg);
    background-image:
        linear-gradient(rgba(200, 169, 110, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 169, 110, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    padding: var(--space-3xl) 0;
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 15%;
    right: -5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.06) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.04) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
    border: 1px solid var(--color-border-accent);
    padding: 0.375rem 1.125rem;
    border-radius: var(--radius-full);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 7vw, 5.25rem);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-title em {
    font-style: italic;
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
    max-width: 580px;
    line-height: 1.75;
    font-weight: 300;
}

.hero-cta-group {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    align-items: center;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--color-accent);
    color: #0a0a0a;
}

.btn-primary:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-outline:hover {
    border-color: var(--color-border-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1.125rem 2.625rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* ============ SECTIONS ============ */
.section {
    padding: var(--space-2xl) 0;
}

.section-alt {
    background-color: var(--color-surface);
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.875rem, 4vw, 2.875rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
    font-weight: 300;
    line-height: 1.7;
}

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

/* ============ GRID ============ */
.grid {
    display: grid;
    gap: 1px;
    background: var(--color-border);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.grid-plain {
    display: grid;
    gap: var(--space-lg);
    background: none;
    border: none;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Override for foods section which uses card-image class */
.grid.grid-2 .card {
    border-radius: 0;
    border: none;
}

.grid.grid-3 .card {
    border-radius: 0;
    border: none;
}

/* ============ CARDS ============ */
.card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all 0.35s ease;
}

.card-hover:hover {
    transform: translateY(-6px);
    border-color: var(--color-border-accent);
    box-shadow: var(--shadow-accent);
    z-index: 1;
    position: relative;
}

/* When inside a grid (gap: 1px), hovering should still show border */
.grid .card-hover:hover {
    border: 1px solid var(--color-border-accent);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(200, 169, 110, 0.08);
    border: 1px solid var(--color-border-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.card-icon svg {
    color: var(--color-accent);
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
}

.card-text {
    color: var(--color-text-muted);
    line-height: 1.75;
    font-size: 0.9375rem;
}

.card-image-placeholder {
    font-size: 3rem;
    text-align: center;
    margin-bottom: var(--space-md);
    line-height: 1;
}

/* ============ STATS ============ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1px;
    margin-top: var(--space-xl);
    background: var(--color-border);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.stat-card {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    background: var(--color-bg);
    transition: background 0.3s ease;
}

.stat-card:hover {
    background: var(--color-surface);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4.25rem);
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
    line-height: 1;
    letter-spacing: -0.04em;
}

.stat-text {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.55;
}

/* ============ PRODUCT SECTION ============ */
.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    gap: var(--space-2xl);
    align-items: start;
    margin-top: var(--space-xl);
}

.product-image-container {
    position: sticky;
    top: 6rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    aspect-ratio: 4 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: var(--space-lg);
}

.product-info {
    padding: var(--space-xs) 0;
}

.product-title {
    font-family: var(--font-display);
    font-size: 2.625rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 0.25rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.product-subtitle {
    font-size: 0.75rem;
    color: var(--color-accent);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
    display: block;
}

.product-description {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
}

.product-description h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
}

.product-description p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
    font-size: 0.9375rem;
}

.product-benefits {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
}

.product-benefits h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

.product-benefits ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.product-benefits ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    line-height: 1.65;
}

.product-benefits ul li svg {
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.product-price-container {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.product-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.6875rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.product-note {
    background: var(--color-surface-2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-top: var(--space-md);
}

.product-note p {
    color: var(--color-text-dim);
    font-size: 0.8125rem;
    line-height: 1.65;
}

/* ============ FAQ ============ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

.faq-item:first-child {
    border-top: 1px solid var(--color-border);
}

.faq-question {
    padding: var(--space-lg) 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: var(--color-text);
    transition: color 0.3s ease;
    gap: var(--space-md);
    font-size: 1rem;
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-icon {
    font-size: 1.375rem;
    color: var(--color-accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: var(--space-lg);
}

.faq-answer p {
    color: var(--color-text-muted);
    line-height: 1.8;
    font-size: 0.9375rem;
}

/* ============ CONTACT INFO ============ */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-info-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    color: var(--color-accent);
    flex-shrink: 0;
    background: rgba(200, 169, 110, 0.08);
    border: 1px solid var(--color-border-accent);
    border-radius: var(--radius-md);
    padding: 10px;
}

.contact-info-item strong {
    display: block;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.contact-info-item p {
    color: var(--color-text-muted);
    margin: 0;
    font-size: 0.9375rem;
}

.contact-info-item a {
    color: var(--color-accent);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-info-item a:hover {
    opacity: 0.8;
}

/* ============ FOOTER ============ */
.footer {
    background-color: var(--color-surface);
    border-top: 1px solid var(--color-border);
    color: var(--color-text-muted);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-title {
    font-family: var(--font-display);
    color: var(--color-text);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

.footer-text {
    line-height: 1.8;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

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

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: var(--space-md);
    text-align: center;
    font-size: 0.8125rem;
    color: var(--color-text-dim);
}

.footer-bottom a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ============ FORM STYLES ============ */
.contact-grid {
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-label {
    font-weight: 500;
    color: var(--color-text);
    font-size: 0.875rem;
    letter-spacing: 0.02em;
}

.form-input {
    padding: 0.875rem var(--space-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--color-surface-2);
    color: var(--color-text);
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* ============ LEGAL PAGES CONTENT ============ */
.legal-content h2 {
    font-family: var(--font-display);
    color: var(--color-text);
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.legal-content h3 {
    color: var(--color-text);
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-content p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.legal-content ul {
    color: var(--color-text-muted);
    line-height: 1.8;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.legal-content li {
    margin-bottom: var(--space-xs);
}

.legal-contact-box {
    background: var(--color-surface-2);
    border: 1px solid var(--color-border-accent);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-top: var(--space-md);
}

.legal-contact-box p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.legal-contact-box a {
    color: var(--color-accent);
    text-decoration: none;
}

.legal-contact-box a:hover {
    opacity: 0.8;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.fade-in:nth-child(2) {
    animation-delay: 0.12s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.24s;
}

.fade-in:nth-child(4) {
    animation-delay: 0.36s;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
    .product-showcase {
        grid-template-columns: 1fr;
    }

    .product-image-container {
        position: relative;
        top: auto;
        aspect-ratio: 16 / 9;
        max-height: 380px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: var(--space-2xl) 0;
    }

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

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

    .nav {
        gap: var(--space-md);
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 3rem;
    }

    .product-price-container {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }

    .logo-text {
        font-size: 1.5rem;
    }
}
