/* ========================================
   Josie's — Shared Styles
   ======================================== */

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

:root {
    --cream: #FDF6EC;
    --espresso: #2C1810;
    --caramel: #C4956A;
    --honey: #D4A55A;
    --sage: #8B9E7E;
    --latte: #E8D5C0;
    --blush: #E8C4B8;
    --deep-brown: #1A0E08;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--espresso);
    background: var(--cream);
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

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

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1.25rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(253, 246, 236, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(196, 149, 106, 0.15);
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--espresso);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(44, 24, 16, 0.6);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--espresso);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1.5px;
    background: var(--caramel);
}

.nav-instagram {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-instagram svg {
    width: 18px;
    height: 18px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.nav-instagram:hover svg {
    opacity: 1;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 110;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--espresso);
    transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ========================================
   Page Hero (shared for sub-pages)
   ======================================== */

.page-hero {
    padding: 10rem 3rem 4rem;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    background: radial-gradient(circle, var(--latte) 0%, transparent 70%);
    opacity: 0.4;
    z-index: 0;
}

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

.page-hero-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--caramel);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 1.05;
    font-weight: 700;
    color: var(--espresso);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.page-hero h1 em {
    font-style: italic;
    color: var(--caramel);
}

.page-hero-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(44, 24, 16, 0.65);
    font-weight: 300;
    max-width: 520px;
}

/* ========================================
   Landing — Hero
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 3rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, var(--latte) 0%, transparent 70%);
    opacity: 0.5;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 30vw;
    height: 30vw;
    border-radius: 50%;
    background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
    opacity: 0.3;
    z-index: 0;
}

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

.hero-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--caramel);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.95;
    font-weight: 700;
    color: var(--espresso);
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.hero h1 em {
    font-style: italic;
    color: var(--caramel);
}

.hero-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(44, 24, 16, 0.7);
    max-width: 520px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--deep-brown);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--espresso);
    border: 1px solid rgba(44, 24, 16, 0.2);
}

.btn-secondary:hover {
    border-color: var(--caramel);
    color: var(--caramel);
}

.btn-light {
    background: rgba(253, 246, 236, 0.15);
    color: var(--cream);
    border: 1px solid rgba(253, 246, 236, 0.25);
}

.btn-light:hover {
    background: rgba(253, 246, 236, 0.25);
}

/* ========================================
   Divider
   ======================================== */

.divider {
    width: 60px;
    height: 1px;
    background: var(--caramel);
    margin: 5rem 0;
}

/* ========================================
   Landing — Story
   ======================================== */

.story {
    padding: 0 3rem 8rem;
    max-width: 1200px;
    margin: 0 auto;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.story-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--caramel);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.story h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.story p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(44, 24, 16, 0.65);
    font-weight: 300;
}

.story-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    line-height: 1.4;
    font-style: italic;
    color: var(--espresso);
    padding: 3rem 0;
    border-top: 1px solid rgba(196, 149, 106, 0.3);
    margin-top: 3rem;
}

/* ========================================
   Landing — Menu Preview
   ======================================== */

.menu-section {
    background: var(--deep-brown);
    color: var(--cream);
    padding: 8rem 3rem;
    position: relative;
    overflow: hidden;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 149, 106, 0.08) 0%, transparent 50%);
}

.menu-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.menu-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--caramel);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.menu-header {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.menu-item {
    padding: 2.5rem;
    border: 1px solid rgba(196, 149, 106, 0.2);
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.menu-item:hover {
    border-color: rgba(196, 149, 106, 0.5);
}

.menu-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.menu-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(253, 246, 236, 0.55);
    font-weight: 300;
}

.menu-item .tag {
    display: inline-block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--caramel);
    margin-top: 1rem;
    font-weight: 500;
}

.menu-section-footer {
    text-align: center;
    margin-top: 3.5rem;
}

/* ========================================
   Landing — Vision
   ======================================== */

.vision {
    padding: 8rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.vision-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--caramel);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.vision h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: 4rem;
    max-width: 600px;
    letter-spacing: -0.02em;
}

.phases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.phase {
    padding-top: 2rem;
    border-top: 1px solid rgba(196, 149, 106, 0.3);
}

.phase-num {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--caramel);
    margin-bottom: 1rem;
    font-weight: 600;
}

.phase h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.phase p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(44, 24, 16, 0.6);
    font-weight: 300;
}

/* ========================================
   Landing — Closing
   ======================================== */

.closing {
    background: var(--latte);
    padding: 8rem 3rem;
    text-align: center;
}

.closing-inner {
    max-width: 700px;
    margin: 0 auto;
}

.closing h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--espresso);
}

.closing p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(44, 24, 16, 0.65);
    font-weight: 300;
    margin-bottom: 2.5rem;
}

/* ========================================
   Menu Page — Drink Cards
   ======================================== */

.drinks-section {
    padding: 0 3rem 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.drinks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.drink-card {
    background: white;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(196, 149, 106, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.drink-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(44, 24, 16, 0.08);
}

.drink-image {
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drink-image .drink-icon {
    font-size: 4rem;
    opacity: 0.5;
    filter: grayscale(20%);
    position: relative;
    z-index: 1;
}

.drink-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.15) 0%, transparent 60%);
}

.drink-image.matcha {
    background: linear-gradient(145deg, #7A9B6D 0%, #A8C090 40%, #C7D9A0 100%);
}

.drink-image.honey-brown {
    background: linear-gradient(145deg, #B8823F 0%, #D4A55A 40%, #E8CFA0 100%);
}

.drink-image.cookie-butter {
    background: linear-gradient(145deg, #7A5B3A 0%, #C4956A 40%, #E0C4A8 100%);
}

.drink-image.lavender {
    background: linear-gradient(145deg, #9B85AD 0%, #C4A8D0 40%, #E8D0E0 100%);
}

.drink-details {
    padding: 2rem 2.5rem 2.5rem;
}

.drink-tag {
    display: inline-block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--caramel);
    font-weight: 600;
    margin-bottom: 0.75rem;
    padding: 0.3rem 0.6rem;
    border: 1px solid rgba(196, 149, 106, 0.3);
    border-radius: 2px;
}

.drink-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.drink-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(44, 24, 16, 0.6);
    font-weight: 300;
    margin-bottom: 1.25rem;
}

.drink-notes {
    font-size: 0.8rem;
    color: rgba(44, 24, 16, 0.4);
    font-weight: 400;
    font-style: italic;
}

.drinks-cta {
    text-align: center;
    padding: 4rem 3rem 6rem;
    max-width: 600px;
    margin: 0 auto;
}

.drinks-cta p {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.drinks-cta .subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: rgba(44, 24, 16, 0.55);
    font-weight: 300;
    margin-bottom: 2rem;
}

/* ========================================
   Schedule Page — Events
   ======================================== */

.events-section {
    padding: 0 3rem 6rem;
    max-width: 900px;
    margin: 0 auto;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-card {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background: white;
    border: 1px solid rgba(196, 149, 106, 0.12);
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(44, 24, 16, 0.06);
}

.event-card.featured {
    border-color: var(--caramel);
    background: linear-gradient(135deg, rgba(253, 246, 236, 1) 0%, rgba(232, 213, 192, 0.3) 100%);
}

.event-date-badge {
    flex-shrink: 0;
    width: 70px;
    text-align: center;
}

.event-date-badge .month {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--caramel);
    font-weight: 600;
    display: block;
}

.event-date-badge .day {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--espresso);
    line-height: 1.1;
    display: block;
}

.event-date-badge .weekday {
    font-size: 0.7rem;
    color: rgba(44, 24, 16, 0.4);
    font-weight: 400;
    display: block;
    margin-top: 0.2rem;
}

.event-info {
    flex: 1;
}

.event-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.event-location {
    font-size: 0.85rem;
    color: var(--caramel);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.event-location svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.event-time {
    font-size: 0.8rem;
    color: rgba(44, 24, 16, 0.45);
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.event-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(44, 24, 16, 0.55);
    font-weight: 300;
}

.event-featured-tag {
    display: inline-block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--honey);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.events-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border: 1px solid rgba(196, 149, 106, 0.12);
    border-radius: 6px;
}

.events-empty h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.events-empty p {
    font-size: 0.95rem;
    color: rgba(44, 24, 16, 0.5);
    font-weight: 300;
    line-height: 1.6;
}

.events-loading {
    text-align: center;
    padding: 3rem;
    color: rgba(44, 24, 16, 0.4);
    font-size: 0.9rem;
}

.schedule-cta {
    text-align: center;
    padding: 4rem 3rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.schedule-cta p {
    font-size: 0.95rem;
    color: rgba(44, 24, 16, 0.55);
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ========================================
   About Page
   ======================================== */

.about-section {
    padding: 0 3rem 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    margin-bottom: 6rem;
}

.about-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--caramel);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-text {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(44, 24, 16, 0.65);
    font-weight: 300;
}

.about-text + .about-text {
    margin-top: 1.25rem;
}

.about-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    line-height: 1.45;
    font-style: italic;
    color: var(--espresso);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(196, 149, 106, 0.3);
}

.about-image-placeholder {
    aspect-ratio: 3 / 4;
    background: linear-gradient(145deg, var(--latte) 0%, var(--blush) 50%, var(--cream) 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-image-placeholder::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    border: 1px solid rgba(196, 149, 106, 0.2);
}

.about-image-placeholder::after {
    content: '';
    position: absolute;
    width: 40%;
    height: 40%;
    border-radius: 50%;
    background: rgba(196, 149, 106, 0.08);
}

/* Values */
.values-section {
    background: var(--deep-brown);
    color: var(--cream);
    padding: 6rem 3rem;
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 149, 106, 0.06) 0%, transparent 50%);
}

.values-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.value-item {
    padding-top: 2rem;
    border-top: 1px solid rgba(196, 149, 106, 0.25);
}

.value-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.value-item p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(253, 246, 236, 0.55);
    font-weight: 300;
}

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

footer {
    background: var(--deep-brown);
    color: rgba(253, 246, 236, 0.4);
    padding: 3rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--cream);
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-links a {
    font-size: 0.8rem;
    color: rgba(253, 246, 236, 0.45);
    transition: color 0.3s ease;
    font-weight: 400;
}

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

.footer-location {
    font-size: 0.8rem;
}

/* ========================================
   Mobile Responsive
   ======================================== */

@media (max-width: 768px) {
    nav {
        padding: 1.2rem 1.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.1);
        z-index: 105;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .hero {
        padding: 7rem 1.5rem 3rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .page-hero {
        padding: 8rem 1.5rem 3rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .story {
        padding: 0 1.5rem 5rem;
    }

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

    .story h2 {
        font-size: 2rem;
    }

    .story-quote {
        font-size: 1.4rem;
    }

    .menu-section {
        padding: 5rem 1.5rem;
    }

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

    .menu-header {
        font-size: 2rem;
    }

    .vision {
        padding: 5rem 1.5rem;
    }

    .vision h2 {
        font-size: 2rem;
    }

    .phases {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .closing {
        padding: 5rem 1.5rem;
    }

    /* Menu page */
    .drinks-section {
        padding: 0 1.5rem 4rem;
    }

    .drinks-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .drinks-cta {
        padding: 3rem 1.5rem 4rem;
    }

    .drinks-cta p {
        font-size: 1.3rem;
    }

    /* Schedule page */
    .events-section {
        padding: 0 1.5rem 4rem;
    }

    .event-card {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem;
    }

    .event-date-badge {
        display: flex;
        gap: 0.5rem;
        align-items: baseline;
        width: auto;
        text-align: left;
    }

    .event-date-badge .day {
        font-size: 1.5rem;
    }

    /* About page */
    .about-section {
        padding: 0 1.5rem 4rem;
    }

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

    .about-section h2 {
        font-size: 2rem;
    }

    .about-quote {
        font-size: 1.3rem;
    }

    .values-section {
        padding: 4rem 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Footer */
    footer {
        padding: 2rem 1.5rem;
    }

    .footer-inner {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
}

/* ========================================
   Overlay for mobile nav
   ======================================== */

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 14, 8, 0.4);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.open {
    display: block;
    opacity: 1;
}

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

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

.fade-up {
    animation: fadeUp 0.6s ease forwards;
    opacity: 0;
}

.fade-up.delay-1 { animation-delay: 0.1s; }
.fade-up.delay-2 { animation-delay: 0.2s; }
.fade-up.delay-3 { animation-delay: 0.3s; }
.fade-up.delay-4 { animation-delay: 0.4s; }
