:root {
    /* Colors */
    --background: #0a0a0a;
    --foreground: #ffffff;
    --primary: #b87333; /* Copper */
    --primary-foreground: #ffffff;
    --muted: #1a1a1a;
    --muted-foreground: #a0a0a0;
    --border: #333333;
    --card: #111111;
    --card-foreground: #ffffff;
    
    /* Typography */
    --font-sans: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 48px;
    
    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

.text-copper {
    color: var(--primary);
}

.text-white {
    color: white;
}

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

.mb-8 { margin-bottom: 8px; }
.mt-12 { margin-top: 12px; }

/* Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 32px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

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

.btn-primary:hover {
    background-color: #a0632a;
}

.btn-outline-white {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

.btn-outline-white:hover {
    background-color: white;
    color: black;
}

.btn-link {
    background: none;
    border: none;
    padding: 0;
    color: var(--foreground);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    cursor: pointer;
}

.btn-link:hover {
    color: var(--primary);
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 48px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: white;
}

.nav-actions {
    display: flex;
    gap: 24px;
}

.icon-link {
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
}

/* Hero */
.hero {
    height: 90vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    z-index: -1;
}

.hero-eyebrow {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 24px;
    color: var(--primary);
    font-weight: 600;
}

.hero-title {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Sections */
.section {
    padding: 120px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
}

.section-title {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2px;
    background-color: var(--border);
    border: 1px solid var(--border);
}

.product-card {
    background-color: var(--card);
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    transition: background-color 0.2s;
}

.product-card:hover {
    background-color: #161616;
}

.product-image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    background-color: var(--muted);
}

.product-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-origin {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-name {
    font-size: 18px;
    font-weight: 500;
    color: var(--card-foreground);
}

.product-notes {
    font-size: 13px;
    color: var(--muted-foreground);
}

.product-price {
    font-size: 16px;
    font-weight: 600;
    margin-top: 8px;
}

/* Menu Section */
.menu-section {
    background-color: #111;
    padding: 120px 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

.menu-col h3 {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 48px;
    color: var(--primary);
    border-bottom: 1px solid rgba(184, 115, 51, 0.3);
    padding-bottom: 24px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
    align-items: baseline;
}

.menu-item-name {
    font-size: 16px;
    font-weight: 500;
}

.menu-item-details {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.menu-item-price {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* Guides */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 48px;
}

.guide-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.guide-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.guide-content h4 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 12px;
}

.guide-excerpt {
    color: var(--muted-foreground);
    font-size: 15px;
    line-height: 1.6;
}

/* Footer */
footer {
    padding: 80px 0;
    background-color: var(--background);
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.footer-link {
    display: block;
    color: var(--muted-foreground);
    margin-bottom: 16px;
    font-size: 14px;
}

.footer-link:hover {
    color: var(--foreground);
}

.newsletter input {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    color: var(--foreground);
    margin-bottom: 16px;
    font-size: 14px;
}

.newsletter input:focus {
    outline: none;
    border-color: var(--primary);
}

.footer-heading {
    font-size: 13px;
    font-weight: 500;
    display: block;
    margin-bottom: 16px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* In a real app we'd add a mobile menu */
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .container {
        padding: 0 24px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
}
