/* ==========================================================================
   CSS Variables & Design System
   ========================================================================== */
:root {
    /* Colors */
    --bg-color: #0d0b0a;
    /* Very dark warm gray/black */
    --bg-light: #161311;
    /* Slightly lighter for cards */
    --accent-color: #e59e38;
    /* Golden orange */
    --accent-hover: #c98a31;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --border-color: #2a2522;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --container-max: 1100px;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 400;
    line-height: 1.2;
}

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

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

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

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

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.w-100 {
    width: 100%;
}

.section-title {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: var(--spacing-lg);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(229, 158, 56, 0.3);
}

/* Placeholders for missing images */
.placeholder-img {
    background: linear-gradient(45deg, #1a1715, #2a2522);
    width: 100%;
    height: 100%;
    min-height: 250px;
    border-radius: var(--radius-md);
}

.placeholder-img.portrait {
    min-height: 500px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 80%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subtitle-top {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.main-title {
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--accent-color);
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    color: var(--text-primary);
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 1px;
    opacity: 0.7;
    z-index: 2;
    color: var(--text-primary);
}

.scroll-down i {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* ==========================================================================
   Gallery Section (Cada drink, uma obra)
   ========================================================================== */
.gallery-section {
    padding: var(--spacing-xl) 0;
}

.drink-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.drink-grid.custom-layout {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 350px;
}

.drink-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
}

.drink-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.drink-grid:not(.custom-layout) .drink-item {
    aspect-ratio: 4/3;
}

.drink-item.item-tall {
    grid-row: span 2;
}

.drink-item:hover {
    animation: imagePulse 2s infinite ease-in-out;
    z-index: 2;
    position: relative;
}

/* ==========================================================================
   Video Section
   ========================================================================== */
.video-section {
    padding: var(--spacing-lg) 0;
}

.video-container {
    max-width: 450px;
    margin: 0 auto;
    aspect-ratio: 9/16;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.placeholder-video {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
    background-color: #000;
    position: relative;
}

.video-bg-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.video-container:hover .placeholder-video {
    transform: scale(1.05);
}

.play-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}

.play-btn {
    background: transparent;
    border: none;
    color: var(--accent-color);
    font-size: 5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-container:hover .play-btn {
    transform: scale(1.1);
}

.video-caption-inside {
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
}

/* ==========================================================================
   Video Modal
   ========================================================================== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: relative;
    width: auto;
    max-width: 90%;
    height: auto;
    max-height: 90vh;
    z-index: 10000;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-modal-content video {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 90vh;
    display: block;
    border-radius: var(--radius-lg);
}

.close-video-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    transition: background 0.3s ease;
}

.close-video-btn:hover {
    background: var(--accent-color);
    color: #000;
}

/* ==========================================================================
   Image Modal (Lightbox)
   ========================================================================== */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
}

.image-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.image-modal-content {
    position: relative;
    width: auto;
    max-width: 90%;
    height: auto;
    max-height: 90vh;
    z-index: 10000;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-modal-content img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 90vh;
    display: block;
    border-radius: var(--radius-lg);
    object-fit: contain;
}

.close-image-btn {
    position: absolute;
    top: -20px;
    right: -20px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--accent-color);
    color: #fff;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
}

.close-image-btn:hover {
    background: var(--accent-color);
    color: #000;
    transform: scale(1.1);
}

/* Make gallery items clickable */
.drink-item {
    cursor: pointer;
}

/* ==========================================================================
   Learning Section
   ========================================================================== */
.learning-section {
    padding: var(--spacing-xl) 0;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.card {
    flex: 1 1 300px;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    animation: borderPulse 1.5s infinite;
}

.card-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.card:hover .card-icon {
    transform: scale(1.15);
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.card p {
    font-size: 0.9rem;
}

/* ==========================================================================
   Target Audience Section
   ========================================================================== */
.target-audience {
    padding: var(--spacing-xl) 0;
}

.audience-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.check-list {
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-primary);
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.check-list li:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    animation: borderPulse 1.5s infinite;
}

.check-list i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

/* ==========================================================================
   Quote Section
   ========================================================================== */
.quote-section {
    padding: var(--spacing-xl) 0;
    position: relative;
    /* Placeholder for background */
    background: linear-gradient(rgba(13, 11, 10, 0.8), rgba(13, 11, 10, 0.8)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect width="100" height="100" fill="%231a1715"/></svg>') center/cover fixed;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.3;
}

/* ==========================================================================
   Included Section
   ========================================================================== */
.included-section {
    padding: var(--spacing-xl) 0;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.included-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid rgba(229, 158, 56, 0.5);
    /* Lighter accent color border */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.included-item:hover .icon-circle {
    background-color: rgba(229, 158, 56, 0.1);
    /* Subtle fill instead of solid */
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(229, 158, 56, 0.2);
    transform: translateY(-5px);
}

/* ==========================================================================
   Dates Section
   ========================================================================== */
.dates-section {
    padding: var(--spacing-xl) 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.date-card {
    background: linear-gradient(145deg, #181513 0%, #110f0e 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.date-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-8px);
    animation: borderPulse 1.5s infinite;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--accent-color);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    animation: pulseBadge 2s infinite;
    letter-spacing: 1px;
}

@keyframes pulseBadge {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.turma-title {
    font-size: 0.875rem;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.date-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.date-info i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.date-info .label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.date-info .value {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.date-info .highlight {
    font-size: 1.5rem;
}

.date-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-size: 0.875rem;
    margin-top: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.date-link:hover {
    color: #fff;
    gap: 1rem;
}

.info-box {
    display: flex;
    gap: 1.5rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    border-left: 4px solid var(--accent-color);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.info-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.info-text h4 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.info-text p {
    color: var(--text-primary);
    font-size: 1.05rem;
}

.alert-box {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: linear-gradient(to right, rgba(229, 158, 56, 0.15), rgba(229, 158, 56, 0.05));
    border: 1px solid rgba(229, 158, 56, 0.2);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    margin-bottom: 3rem;
}

.alert-box .text-orange {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.alert-box p {
    font-size: 0.9rem;
    color: var(--text-primary);
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    padding: var(--spacing-xl) 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.subtitle-small {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.about-content p {
    margin-bottom: 1rem;
}

.about-content strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* ==========================================================================
   Media Section
   ========================================================================== */
.media-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-light);
}

.subtitle-media {
    max-width: 600px;
    margin: -1.5rem auto 3.5rem auto;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

#media-grid.collapsed .media-card:nth-child(n+4) {
    display: none;
}

.media-card {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, border-color 0.3s ease;
}

.media-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    animation: borderPulse 1.5s infinite;
}

.media-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.media-card h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.media-card p {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.media-link {
    font-size: 0.75rem;
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
}

.media-link:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Final Gallery
   ========================================================================== */
.final-gallery {
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 1rem 0;
}

.final-drink-grid {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scrollGallery 20s linear infinite;
}

.final-drink-grid:hover {
    animation-play-state: paused;
}

.final-drink-grid:hover .drink-item {
    opacity: 0.4;
    filter: grayscale(80%);
}

.final-drink-grid .drink-item {
    aspect-ratio: 3/4;
    width: 400px;
    flex-shrink: 0;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.final-drink-grid .drink-item:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.08);
    z-index: 10;
    box-shadow: 0 15px 40px rgba(229, 158, 56, 0.2);
}

@keyframes scrollGallery {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 0.75rem));
    }
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-section {
    padding: var(--spacing-xl) 0;
}

.pricing-card {
    max-width: 400px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    background-color: var(--bg-light);
}

.pricing-label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.price {
    font-family: var(--font-body);
    font-size: 3.5rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-sub {
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

.vagas-limitadas-text {
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-top: 1.5rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    padding: var(--spacing-xl) 0 2rem;
    background-color: #000;
}

.footer-title {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-desc {
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.footer-bottom {
    margin-top: 5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.brand-footer {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.social-links a:hover {
    color: var(--accent-color);
}

.copyright {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}



/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 992px) {

    .audience-container,
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .final-drink-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .drink-grid.custom-layout {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(200px, auto);
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-lg: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .final-gallery .section-title {
        font-size: 1.5rem;
        padding: 0 1.5rem;
    }

    .main-title {
        font-size: 3.5rem;
    }

    .final-drink-grid {
        grid-template-columns: 1fr;
    }

    .drink-grid.custom-layout {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .drink-grid.custom-layout .drink-item {
        aspect-ratio: 4/3;
    }

    .drink-item.item-tall {
        grid-row: auto;
    }

    .video-modal-content {
        width: 100%;
        height: 100%;
        border-radius: 0;
        display: flex;
        align-items: center;
    }

    .video-modal-content video {
        height: 100%;
        object-fit: contain;
    }

    .close-video-btn {
        top: 20px;
        right: 20px;
        background: rgba(0, 0, 0, 0.7);
    }
}

.portrait-img {
    width: 100%;
    height: 100%;
    max-height: 550px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(229, 158, 56, 0.15);
}

/* ==========================================================================
   Animations
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.about-image,
.audience-image {
    height: 100%;
    display: flex;
    align-items: center;
}

@keyframes imagePulse {
    0% {
        transform: translateY(-5px) scale(1.02);
    }
    50% {
        transform: translateY(-12px) scale(1.04);
    }
    100% {
        transform: translateY(-5px) scale(1.02);
    }
}
