:root {
    /* Base Layers */
    --bg-primary: #0f1512;
    --bg-secondary: #17221c;
    --surface: rgba(255, 255, 255, 0.05);
    
    /* Organic Accents */
    --accent-primary: #3b6b4a;
    --accent-secondary: #6b8f6a;
    --accent-highlight: #c8a96a;
    
    /* Warm Hospitality Tones */
    --warm-brown: #3a2f2a;
    --warm-cream: #f3e9dc;
    --warm-amber: #e7c28a;
    
    /* Typography Colors */
    --text-primary: #f5f5f4;
    --text-secondary: #d6e2d9;
    --text-muted: #9ca3af;
    
    /* Border & Shadows */
    --border-glass: rgba(231, 194, 138, 0.15);
    --shadow-soft: 0 10px 30px rgba(15, 21, 18, 0.6);
    --shadow-glow: 0 4px 20px rgba(200, 169, 106, 0.15);
    
    /* Geometry */
    --radius-sm: 14px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --container-max: 1320px;
    
    /* Fonts */
    --font-main: 'Inter', sans-serif;
    --font-display: 'Poppins', sans-serif;
}

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

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

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--warm-cream);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1.display-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
}

h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: 1.5rem; }

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.text-muted { color: var(--text-muted); }
.accent-subtitle {
    display: block;
    color: var(--accent-highlight);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.center-align { text-align: center; }

/* Layout System */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
}

.section-padding {
    padding: 120px 0;
}
.page-top-padding {
    padding-top: 140px;
}

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-6 { margin-top: 2.5rem; }
.mt-8 { margin-top: 4rem; }
.mt-10 { margin-top: 6rem; }
.pt-0 { padding-top: 0; }
.w-full { width: 100%; }
.inline-block { display: inline-block; }
.max-w-md { max-width: 800px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Grid Layouts */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.split-layout.align-center {
    align-items: center;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

/* Glassmorphism & Cards */
.glass-card, .glass-panel {
    background: var(--surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(200, 169, 106, 0.4);
}

.card-image-wrap {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.card-image-wrap.portrait {
    height: 340px;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.8s ease;
}

.glass-card:hover .card-image-wrap img {
    transform: scale(1.05);
}

.card-content {
    padding: 30px;
}

.card-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--accent-highlight);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.card-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-highlight);
    transition: width 0.3s ease;
}

.glass-card:hover .card-link::after {
    width: 100%;
}

.glass-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-glass);
}
.glass-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}
.glass-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(15, 21, 18, 0.7);
    backdrop-filter: blur(8px);
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    color: var(--warm-cream);
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.bg-secondary {
    background-color: var(--bg-secondary);
}

/* Header System */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(15, 21, 18, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    transition: background 0.3s ease, padding 0.3s ease;
}

.glass-header.scrolled {
    background: rgba(15, 21, 18, 0.85);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    transition: height 0.3s ease;
}
.glass-header.scrolled .header-inner {
    height: 70px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--warm-cream);
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--warm-amber);
}

/* Vine Animation Underline */
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-highlight));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 2px;
}
.main-nav a:hover::after, .main-nav a.active::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 101;
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--warm-cream);
    transition: 0.3s ease;
}

/* Button System */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-highlight));
    color: var(--bg-primary);
    box-shadow: 0 4px 15px rgba(59, 107, 74, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 169, 106, 0.4);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    color: var(--warm-cream);
    border: 1px solid var(--accent-secondary);
}

.btn-outline:hover {
    background: rgba(107, 143, 106, 0.1);
    border-color: var(--warm-amber);
    color: var(--warm-amber);
    transform: translateY(-2px);
}

.button-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Hero & Banners */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.parallax-bg .bg-image {
    width: 100vw;
    height: 120vh;
    object-fit: cover;
    transform: translateY(0); /* Handled by JS */
    border-radius: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--bg-primary) 30%, transparent 100%),
                linear-gradient(to bottom, rgba(15,21,18,0.4) 0%, var(--bg-primary) 100%);
    z-index: -1;
}

.banner-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,21,18,0.6);
    z-index: -1;
}
.banner-content {
    position: relative;
    z-index: 1;
}

/* Menu Layout */
.menu-section {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}
.menu-section.reverse {
    flex-direction: row-reverse;
}
.menu-text { flex: 1; }
.menu-visual { flex: 1; }

.menu-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    padding-bottom: 5px;
    margin-bottom: 10px;
}
.menu-item-header h4 { margin-bottom: 0; color: var(--warm-amber); }
.menu-price { color: var(--warm-cream); font-weight: 500; font-family: var(--font-display); }

/* Forms */
.custom-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row {
    display: flex;
    gap: 20px;
}
.form-row .form-group { flex: 1; }
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.form-group input, .form-group select, .form-group textarea {
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--border-glass);
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--warm-amber);
    background: rgba(0,0,0,0.4);
}

.booking-layout, .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.booking-form-wrapper, .contact-form-wrapper {
    padding: 40px;
}
.booking-guidelines {
    margin-top: 40px;
    padding: 30px;
}
.booking-guidelines ul {
    list-style: disc;
    padding-left: 20px;
    color: var(--text-secondary);
}

/* Legal Pages */
.legal-container {
    max-width: 900px;
}
.legal-content {
    padding: 50px;
}
.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    color: var(--warm-amber);
}
.divider {
    height: 1px;
    background: var(--border-glass);
    margin: 30px 0;
}

/* Footer */
.glass-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-glass);
    padding: 80px 0 30px;
    position: relative;
    z-index: 10;
}

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

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

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--warm-amber);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}