/* DESIGN SYSTEM */
:root {
    --bg-base: #F9F8F4;
    --bg-surface: #FFFFFF;
    --bg-alt: #F0EFE9;
    --text-primary: #2C352D; /* Dark green/grey */
    --text-muted: #6B7068;
    --accent-green: #4A6741;
    --accent-brown: #8B5A2B;
    --border-dim: #E2DFD8;
    
    --font-display: 'Cormorant Garamond', serif;
    --font-sans: 'Outfit', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; background: var(--bg-base); }
body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* Grain Overlay */
.grain-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 9999;
}

/* Typography */
h1, h2, h3, h4, .font-display { font-family: var(--font-display); }
.text-muted { color: var(--text-muted); }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.container-large { max-width: 1600px; margin: 0 auto; padding: 0 5%; }
.section { padding: 8rem 0; }
.section-subtitle {
    display: block;
    font-size: 0.85rem;
    font-family: var(--font-sans);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.20em;
    color: var(--accent-brown);
    margin-bottom: 1rem;
}
.section-light { background: var(--bg-base); }
.section-alt { background: var(--bg-base); }

/* Nav */
nav {
    position: fixed; top: 0; width: 100%; height: 90px;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%; z-index: 1000; transition: all 0.4s ease;
}
.brand {
    font-family: var(--font-sans); font-size: 1.2rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
    color: #FFF; display: flex; flex-direction: column; transition: color 0.4s;
}
.brand span { font-size: 0.65rem; color: var(--accent-brown); letter-spacing: 0.2em; margin-top: 2px; }
.nav-links { display: flex; gap: 3rem; list-style: none; transition: 0.5s ease-in-out; }
.nav-links a {
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.9); text-decoration: none; transition: color 0.3s; font-weight: 500;
}
.nav-links a:hover, .nav-links a.active { color: #FFF; }

nav.scrolled {
    height: 70px; background: rgba(249, 248, 244, 0.95);
    backdrop-filter: blur(15px); border-bottom: 1px solid var(--border-dim);
}
nav.scrolled .brand { color: var(--text-primary); }
nav.scrolled .nav-links a { color: var(--text-primary); }
nav.scrolled .nav-links a:hover { color: var(--accent-green); }

/* Mobile Toggle */
.menu-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1100; }
.menu-toggle span { width: 28px; height: 1.5px; background: var(--text-primary); transition: 0.3s; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.8rem;
    border-radius: 50px; /* Consistent Pill Shape */
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-decoration: none;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.btn-primary { background: var(--text-primary); color: var(--bg-base); }
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: var(--accent-green);
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}
.btn-primary:hover::before { left: 0; }
.btn-primary:hover { color: white; transform: translateY(-4px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }

.btn-outline { border-color: var(--text-primary); color: var(--text-primary); background: transparent; }
.btn-outline:hover { background: var(--text-primary); color: white; transform: translateY(-4px); }

/* Animations */
.reveal { 
    opacity: 0; 
    transform: translateY(40px) scale(0.99); 
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); 
    filter: blur(8px);
}
.reveal.active { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
    filter: blur(0);
}
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Hero - Precise Layered Layout */
.premium-hero-layout {
    height: 100vh;
    position: relative;
    padding: 0 5%;
    overflow: hidden;
    color: #FFF;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.05);
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent 40%, rgba(0,0,0,0.5));
}

/* Layer Positions */
.hero-layer-top-right {
    position: absolute; top: 15%; right: 5%;
    text-align: right;
}
.tagline-serif {
    font-family: var(--font-display);
    font-size: 1.8rem;
    line-height: 1.2;
    font-style: italic;
    opacity: 0.9;
}

.hero-layer-mid-left {
    position: absolute; top: 45%; left: 5%;
    transform: translateY(-50%);
}
.hero-display-title {
    font-size: clamp(4rem, 10vw, 8.5rem);
    font-family: var(--font-display);
    line-height: 0.85;
    font-weight: 400;
    letter-spacing: -0.02em;
}
.hero-display-title em { font-style: italic; opacity: 0.95; }

.hero-layer-bottom-left {
    position: absolute; bottom: 8%; left: 5%;
    max-width: 350px;
}
.hero-desc-small {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.02em;
}

.hero-layer-bottom-center {
    position: absolute; bottom: 8%; left: 0;
    width: 100%; display: flex; justify-content: center;
    pointer-events: none;
}
.hero-actions-pill {
    display: flex;
    gap: 1.5rem;
    pointer-events: auto;
}

.hero-layer-bottom-right {
    position: absolute; bottom: 8%; right: 5%;
}
.hero-est-tag {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 500;
    opacity: 0.6;
}

/* Standard Button Variants */
.btn-solid { background: #FFF; color: var(--text-primary); border: 1px solid #FFF; }
.btn-solid:hover { background: transparent; color: #FFF; }
.btn-outline-white { background: transparent; color: #FFF; border: 1px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #FFF; }

.btn-pill-solid { background: #FFF; color: var(--text-primary); border: 1px solid #FFF; }
.btn-pill-solid:hover { background: transparent; color: #FFF; }

/* Wheel of Craft Section */
.section-craft-wheel {
    padding: 6rem 0;
    background: var(--bg-base);
    overflow: hidden;
}
.wheel-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 850px;
}
.wheel-center {
    width: 750px; height: 750px;
    position: relative;
    z-index: 5;
}
.hero-art-container {
    width: 100%; height: 100%;
    opacity: 0.8;
}
.hero-art-container svg { width: 100%; height: 100%; }

/* Independent Mandala Rotations */
.mandala-outer, .mandala-mid, .mandala-inner, .mandala-core {
    transform-origin: 200px 200px; /* SVG center */
}

.mandala-outer { animation: spinCounter 120s linear infinite; }
.mandala-mid { animation: spinClock 80s linear infinite; }
.mandala-inner { animation: spinCounter 40s linear infinite; }
.mandala-core { animation: spinClock 15s linear infinite; }

@keyframes spinClock { 100% { transform: rotate(360deg); } }
@keyframes spinCounter { 100% { transform: rotate(-360deg); } }

.wheel-nodes {
    position: absolute;
    width: 100%; height: 100%;
    top: 0; left: 0;
}
.wheel-node {
    position: absolute;
    display: flex;
    align-items: center;
    width: 350px;
    z-index: 10;
}
.node-line {
    height: 1px;
    background: var(--accent-brown);
    opacity: 0.3;
    width: 80px;
}
.node-content {
    padding: 0 1.5rem;
}
.node-title {
    font-size: 1.4rem;
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
.node-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Positioning nodes around the even larger circle */
.node-1 { top: 5%; right: -5%; }
.node-2 { bottom: 5%; right: -5%; }
.node-3 { top: 50%; left: -10%; flex-direction: row-reverse; text-align: right; transform: translateY(-50%); }
.node-3 .node-line { width: 180px; }

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

/* Storytelling - Balanced & Premium */
.story-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 6rem; 
    align-items: center; 
}
.story-img-wrapper { 
    position: relative; 
    border-radius: var(--radius-lg); 
    overflow: hidden; 
    box-shadow: var(--shadow-md); 
    aspect-ratio: 4/5;
}
.story-img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.story-img-wrapper:hover .story-img { transform: scale(1.05); }

.story-content h2 { font-size: 3.5rem; margin-bottom: 2rem; color: var(--text-primary); line-height: 1.15; }
.story-content p { margin-bottom: 1.5rem; font-size: 1.15rem; color: var(--text-muted); }

/* Stats Bar */
.section-stats {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    margin-bottom: 4rem;
}
/* Stats Bar - Glassmorphism */
.stats-bar {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg); /* Rounded for consistency */
    box-shadow: 0 30px 60px -12px rgba(0,0,0,0.08);
    padding: 3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.stat-value {
    font-size: 2.5rem;
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.25rem;
}
.stat-value-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}
.stars {
    color: var(--accent-brown);
    font-size: 1.2rem;
    letter-spacing: 2px;
}
.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.stats-divider {
    width: 1px;
    height: 50px;
    background: var(--border-dim);
}
.stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-base);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Editorial Values Layout */
.section-values { padding: 8rem 0; overflow: hidden; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    align-items: flex-start;
}
.value-card {
    background: transparent;
    padding: 0;
    border-radius: 0;
    text-align: left;
    box-shadow: none;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.value-card:nth-child(2) { transform: translateY(80px); } /* Asymmetry */
.value-card:nth-child(3) { transform: translateY(40px); }

.icon-box {
    width: 50px;
    height: 50px;
    background: var(--text-primary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--bg-base);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.value-icon {
    width: 24px;
    height: 24px;
}
.value-card:hover .icon-box {
    background: var(--accent-green);
    transform: rotate(45deg);
}
.value-title {
    font-size: 1.5rem;
    font-family: var(--font-display);
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
}
.value-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

/* Specialties */
.section-specialties-header { text-align: center; margin-bottom: 5rem; }
.section-specialties-header h1 {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 1rem;
}
/* Specialties - Balanced & Refined */
.specialty-item { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 6rem; 
    align-items: center; 
    margin-bottom: 8rem; 
}
.specialty-item:nth-child(even) { direction: rtl; }
.specialty-item:nth-child(even) .specialty-content { direction: ltr; }

.specialty-img-wrapper { 
    border-radius: var(--radius-lg); 
    overflow: hidden; 
    box-shadow: var(--shadow-md); 
    aspect-ratio: 1/1; 
}

.specialty-img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.specialty-img-wrapper:hover .specialty-img { transform: scale(1.08); }
.specialty-content h3 { font-size: 3rem; font-family: var(--font-display); color: var(--accent-green); margin-bottom: 1rem; }
.specialty-price { font-size: 1.4rem; font-weight: 500; margin-bottom: 1.5rem; color: var(--accent-brown); letter-spacing: 0.1em; }
.specialty-content p { color: var(--text-muted); font-size: 1.15rem; margin-bottom: 2.5rem; }

/* Footer */
footer { background: var(--text-primary); color: var(--bg-base); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-brand { font-family: var(--font-display); font-size: 2rem; color: #FFF; margin-bottom: 1rem; }
.footer-desc { color: var(--bg-alt); opacity: 0.9; margin-bottom: 2rem; max-width: 300px; }
.footer-title { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1.5rem; color: #FFF; font-weight: 600; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; color: rgba(255,255,255,0.7); }
.footer-links a { color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: #FFF; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.8rem; opacity: 0.6; }

/* Menu Page Styles */
.page-header { padding: 8rem 0 0; text-align: center; background: var(--bg-base); }
.page-title { font-size: 4rem; color: var(--text-primary); margin-bottom: 1rem; }
.menu-category { margin-bottom: 5rem; }
.menu-category-title { font-size: 2rem; padding-bottom: 1rem; margin-bottom: 2rem; color: var(--accent-green); }
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.menu-item-card { display: flex; align-items: center; gap: 1.5rem; background: var(--bg-surface); padding: 1.5rem; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--border-dim); transition: transform 0.3s ease; }
.menu-item-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.menu-item-img { width: 100px; height: 100px; border-radius: var(--radius-sm); object-fit: cover; }
.menu-item-info { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.menu-item-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.5rem; }
.menu-item-name { font-size: 1.3rem; font-weight: 500; font-family: var(--font-display); color: var(--text-primary); }
.menu-item-price { font-weight: 600; color: var(--accent-brown); }
.menu-item-desc { font-size: 0.95rem; color: var(--text-muted); }

/* Visit Page Styles */
.visit-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: stretch; }
.contact-info { background: var(--bg-surface); padding: 3rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--border-dim); }
.contact-item { margin-bottom: 2rem; }
.contact-item:last-child { margin-bottom: 0; }
.contact-item h4 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--accent-green); text-transform: uppercase; letter-spacing: 0.1em; }
.contact-item p { color: var(--text-primary); font-size: 1.1rem; }
.map-container { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); height: 100%; min-height: 400px; border: 1px solid var(--border-dim); }

/* ==========================================
   GENERAL UTILITIES & PAGE-SPECIFIC DESKTOP
   ========================================== */

/* Featured Harvest Section */
.section-harvest { background: var(--bg-base); padding: 8rem 0; }
.harvest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.harvest-info h2 { font-family: var(--font-display); font-size: 3.5rem; line-height: 1.15; margin-bottom: 2rem; color: var(--text-primary); }
.harvest-info p { font-family: var(--font-sans); font-size: 1.15rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 500px; }
.tasting-notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3.5rem; }
.note span { display: block; font-family: var(--font-sans); font-size: 0.8rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent-green); margin-bottom: 0.5rem; }
.note strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--text-primary); font-weight: 400; line-height: 1.2; }

.harvest-visual .bean-card {
    position: relative;
    aspect-ratio: 4/5;
    background: #EBEAE6;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
}
.harvest-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.harvest-visual .bean-card:hover img { transform: scale(1.05); }
.card-overlay {
    position: absolute; bottom: 2rem; left: 2rem;
    background: #FFF; padding: 0.5rem 1.2rem;
    font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
    border-radius: 50px; /* Fully rounded pill shape for consistency */
    font-family: var(--font-sans);
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

/* Dark button variants for light backgrounds */
.btn-pill-outline.dark { color: var(--text-primary); border-color: var(--text-primary); }
.btn-pill-outline.dark:hover { background: var(--text-primary); color: #FFF; }
.btn-link.dark { color: var(--text-primary); }
.btn-link.dark:hover { color: var(--accent-brown); }

/* Sub-page Navbar Adjustments */
body.sub-page nav:not(.scrolled) .brand { color: var(--text-primary); }
body.sub-page nav:not(.scrolled) .nav-links a { color: var(--text-primary); }
body.sub-page nav:not(.scrolled) .menu-toggle span { background: var(--text-primary); }

.page-header {
    padding: 10rem 0 4rem;
    text-align: center;
    background: var(--bg-base);
}
.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-primary);
    font-weight: 400;
}

/* Global Mobile Toggle Button styling */
nav:not(.scrolled) .menu-toggle span { background: #FFF; }
.menu-toggle.active span { background: var(--text-primary) !important; }

/* ==========================================
   RESPONSIVENESS & MEDIA QUERIES
   ========================================== */

@media (max-width: 900px) {
    .section { padding: 5rem 0; }
    
    /* Responsive Grid Collapse */
    .story-grid, 
    .values-grid, 
    .specialty-item, 
    .footer-grid, 
    .menu-grid, 
    .visit-grid, 
    .harvest-grid { 
        grid-template-columns: 1fr; 
        gap: 3rem; 
    }
    
    .story-img-wrapper { transform: none; aspect-ratio: 4/3; }
    .story-content { margin-left: 0; padding: 2rem 0; }
    .story-content h2 { font-size: 2.5rem; }

    .value-card:nth-child(2), .value-card:nth-child(3) { transform: none; }
    
    .specialty-item { margin-bottom: 4rem; direction: ltr !important; }
    .specialty-item:nth-child(even) .specialty-content { direction: ltr; }
    .specialty-item:nth-child(odd) .specialty-content, 
    .specialty-item:nth-child(even) .specialty-content { margin: 0; padding: 1.5rem 0; }
    .specialty-content h3 { font-size: 2.2rem; }

    .stats-bar { flex-direction: column; gap: 2rem; text-align: center; padding: 3rem 2rem; }
    .stat-item { align-items: center; }
    .stats-divider { width: 50px; height: 1px; }
    
    /* Navigation Mobile View Overlay */
    .menu-toggle { display: flex; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
        background: var(--bg-base); flex-direction: column; justify-content: center;
        align-items: center; transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1); gap: 2.5rem;
    }
    .nav-links.active { right: 0; }
    
    /* Invisible Link Bug Fix: force links inside active mobile drawer to be dark and legible */
    .nav-links a { 
        font-size: 2.2rem; 
        font-family: var(--font-display); 
        color: var(--text-primary) !important; 
    }
    .nav-links a:hover, 
    .nav-links a.active { 
        color: var(--accent-brown) !important; 
    }
    
    .hero-title { font-size: 3rem; }
    .page-title { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    /* Hero Overlap Bug Fix: transform absolute layers to standard flex layout flow on mobile */
    .premium-hero-layout {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 8rem 1.5rem 4rem;
        height: auto;
        min-height: 100vh;
    }
    .hero-layer-top-right,
    .hero-layer-mid-left,
    .hero-layer-bottom-left,
    .hero-layer-bottom-center,
    .hero-layer-bottom-right {
        position: static;
        transform: none;
        text-align: center;
        margin: 1.2rem 0;
        max-width: 100%;
        width: 100%;
        z-index: 1;
    }
    .hero-display-title {
        font-size: clamp(3rem, 12vw, 4.5rem);
        line-height: 1.1;
    }
    .hero-actions-pill {
        justify-content: center;
    }
    .hero-est-tag {
        margin-top: 1rem;
        opacity: 0.8;
    }
}

@media (max-width: 550px) {
    .section { padding: 4rem 0; }
    
    /* Tasting Notes Collapse to 1 Column for mobile readability */
    .tasting-notes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    /* Menu Item Card mobile layout styling */
    .menu-item-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
        padding: 1.2rem;
    }
    .menu-item-img {
        width: 100%;
        height: 180px;
        border-radius: var(--radius-md);
    }
    .menu-item-info {
        width: 100%;
    }
    .menu-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
        margin-bottom: 0.5rem;
    }
    
    /* Visit Page Mobile Adjustments */
    .contact-info {
        padding: 2rem 1.5rem;
    }
    .map-container {
        min-height: 300px;
    }
}

