:root {
    --cream: #FBF8F3;
    --warm-brown: #6B4423;
    --golden: #D4A574;
    --deep-brown: #3E2723;
    --light-gold: #E8D5C0;
    --text-dark: #2C1810;
}

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

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(251, 248, 243, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(107, 68, 35, 0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
    text-decoration: none;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--warm-brown);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--golden);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--warm-brown);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 85px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-gold) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -30px) rotate(5deg); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: var(--deep-brown);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--warm-brown);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(107, 68, 35, 0.2);
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

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

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--warm-brown);
    color: var(--cream);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: var(--deep-brown);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(107, 68, 35, 0.3);
}

/* Page Content */
.page-content {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 85px auto 0;
    animation: fadeIn 0.6s ease-out;
}

.page-content-after-hero {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 0.6s ease-out;
}

.page-content-no-top {
    padding: 2rem 2rem 5rem;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--deep-brown);
    margin-bottom: 1rem;
}

.section-header .subtitle {
    font-size: 1.4rem;
    color: var(--warm-brown);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

/* About Page Styles */
.about-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--warm-brown);
}

.about-section-card {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(107, 68, 35, 0.08);
    margin-bottom: 3rem;
}

.about-section-card h3 {
    font-size: 2.2rem;
    color: var(--warm-brown);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-gold);
    padding-bottom: 0.8rem;
}

.about-section-card p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-section-card ul {
    margin: 1.5rem 0;
    list-style: none;
    padding-left: 0;
}

.about-section-card ul li {
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
    line-height: 1.6;
}

.about-section-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--golden);
    font-weight: bold;
}

.credentials-showcase {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    align-items: start;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(107, 68, 35, 0.08);
    margin-bottom: 3rem;
    scroll-margin-top: 100px;
}

.credential-badge {
    width: 100%;
}

.about-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.about-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.about-image-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(107, 68, 35, 0.1);
}

.about-image-grid-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.about-image-grid-bottom div {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.about-image-grid-bottom img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(107, 68, 35, 0.1);
}

.highlight-box {
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--cream) 100%);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--golden);
    margin: 2rem 0;
}

.highlight-box p {
    font-style: italic;
    color: var(--deep-brown);
    margin: 0;
}

/* Coaching Styles */
.coaching-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
}

.coaching-credential-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 3rem auto;
    justify-content: center;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(107, 68, 35, 0.08);
    max-width: 800px;
}

.coaching-credential-section .credential-badge {
    width: 120px;
    flex-shrink: 0;
}

.coaching-credential-section p {
    font-size: 1.05rem;
    max-width: 600px;
}

.coaching-with-photos {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.coaching-photo-sidebar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.coaching-photo-sidebar img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(107, 68, 35, 0.1);
}

.coaching-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.coaching-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(107, 68, 35, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.coaching-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 68, 35, 0.15);
}

.coaching-card h3 {
    font-size: 1.8rem;
    color: var(--warm-brown);
    margin-bottom: 1rem;
}

.coaching-card p {
    margin-bottom: 1rem;
}

.coaching-photos-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
    align-items: start;
}

.coaching-photos-bottom img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(107, 68, 35, 0.1);
}

/* Tastings Styles */
.tasting-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    text-align: center;
}

.tasting-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 0 0 5rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-card h3 {
    font-size: 1.6rem;
    color: var(--warm-brown);
    margin: 1rem 0;
}

.feature-card ul {
    list-style: none;
    padding-left: 0;
}

.feature-card ul li {
    margin-bottom: 0.5rem;
}

.albums-header {
    text-align: center;
    margin: 5rem 0 2rem;
}

.albums-header h3 {
    font-size: 2.2rem;
    color: var(--deep-brown);
    margin-bottom: 0.5rem;
}

.tasting-events {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.tasting-event {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(107, 68, 35, 0.1);
    background: white;
}

.tasting-event-preview {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 0;
}

.tasting-event-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.tasting-event-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tasting-event-info h4 {
    font-size: 1.8rem;
    color: var(--warm-brown);
    margin: 0 0 0.5rem;
}

.tasting-event-info .event-meta {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.event-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--warm-brown);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--body-font);
    cursor: pointer;
    transition: all 0.3s;
    width: auto;
    max-width: 180px;
}

.event-toggle:hover {
    background: var(--deep-brown);
    transform: translateY(-2px);
}

.event-toggle-icon {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.event-toggle.active .event-toggle-icon {
    transform: rotate(180deg);
}

.tasting-event-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.tasting-event-details.active {
    max-height: 3000px;
    transition: max-height 0.6s ease-in;
}

.tasting-event-content {
    padding: 2rem;
    border-top: 2px solid var(--cream);
}

.event-description {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.event-description p {
    margin-bottom: 1rem;
}

.event-photos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.event-photos img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(107, 68, 35, 0.1);
}

/* Classes Styles */
.coming-soon {
    text-align: center;
    padding: 6rem 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(107, 68, 35, 0.08);
}

.coming-soon h3 {
    font-size: 2.5rem;
    color: var(--warm-brown);
    margin-bottom: 1rem;
}

.coming-soon p {
    font-size: 1.2rem;
    color: var(--text-dark);
}

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

.classes-photo-grid img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(107, 68, 35, 0.1);
}

.classes-photo-grid-centered {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem auto;
    max-width: 800px;
}

.classes-photo-grid-centered img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(107, 68, 35, 0.1);
}

/* Contact Section */
.contact-info {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(107, 68, 35, 0.08);
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--warm-brown);
    margin-bottom: 1.5rem;
}

.contact-info a {
    color: var(--warm-brown);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    display: inline-block;
    margin: 0.5rem 0;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--golden);
}

/* Footer */
footer {
    background: var(--deep-brown);
    color: var(--light-gold);
    text-align: center;
    padding: 2.5rem 2rem;
    margin-top: 5rem;
}

footer p {
    margin-bottom: 0.5rem;
}

footer a {
    color: var(--golden);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--light-gold);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .logo img {
        height: 50px;
    }
    
    .nav-links {
        position: fixed;
        right: -100%;
        top: 85px;
        flex-direction: column;
        background: var(--cream);
        width: 100%;
        padding: 2rem;
        transition: right 0.3s;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .page-content {
        padding: 3rem 1.5rem;
    }
    
    .page-content-after-hero {
        padding: 3rem 1.5rem;
    }
    
    .page-content-no-top {
        padding: 1.5rem 1.5rem 3rem;
    }
    
    .coaching-grid {
        grid-template-columns: 1fr;
    }
    
    .about-two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .credentials-showcase {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .credential-badge {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .about-image-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image-grid-bottom {
        grid-template-columns: 1fr;
    }
    
    .coaching-with-photos {
        grid-template-columns: 1fr;
    }
    
    .coaching-photo-sidebar {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tasting-event-preview {
        grid-template-columns: 1fr;
    }
    
    .tasting-event-image {
        height: 200px;
    }
    
    .tasting-event-info {
        padding: 1.5rem;
    }
    
    .tasting-event-content {
        padding: 1.5rem;
    }
    
    .classes-photo-grid {
        grid-template-columns: 1fr;
    }
    
    .classes-photo-grid img {
        height: 250px;
    }
    
    .classes-photo-grid-centered {
        grid-template-columns: 1fr;
    }
    
    .coaching-photos-bottom {
        grid-template-columns: 1fr;
    }
}