/* Basic reset and styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    background-color: #F6F5F1;
}

/* Premium Navbar Redesign */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 15px 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.nav-brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #ffffff;
    transition: color 0.4s ease;
}

.navbar.scrolled .nav-brand {
    color: #2b3a32;
}

.brand-main {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1;
}

.brand-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 4px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-quote {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar.scrolled .btn-quote {
    border-color: #2b3a32;
    color: #2b3a32;
}

.btn-quote:hover {
    background-color: #ffffff;
    color: #2b3a32;
}

.navbar.scrolled .btn-quote:hover {
    background-color: #2b3a32;
    color: #ffffff;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 32px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.4s ease;
}

.navbar.scrolled .menu-toggle span {
    background-color: #2b3a32;
}

/* Navbar text changes when menu overlay is open */
.navbar.menu-open .nav-brand {
    color: #2b3a32;
}

.navbar.menu-open .btn-quote {
    border-color: #2b3a32;
    color: #2b3a32;
}

.navbar.menu-open .btn-quote:hover {
    background-color: #2b3a32;
    color: #ffffff;
}

.navbar.menu-open .menu-toggle span {
    background-color: #2b3a32;
}

/* Menu Toggle Animation */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
    .navbar, .navbar.scrolled {
        padding: 15px 20px;
    }
    .brand-main {
        font-size: 1.3rem;
    }
    .brand-sub {
        font-size: 0.5rem;
        letter-spacing: 3px;
    }
    .nav-actions {
        gap: 15px;
    }
    .btn-quote {
        padding: 8px 14px;
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #F6F5F1;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.menu-link {
    font-family: 'Fraunces', serif;
    font-size: 2.2rem;
    color: #74605A;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}
.menu-link:hover {
    color: #967F78;
    transform: scale(1.05);
}

.menu-link .plus {
    font-weight: 300;
    font-size: 1.8rem;
    color: #a3928c;
}

@media (max-width: 768px) {
    .menu-content {
        gap: 20px;
    }
    .menu-link {
        font-size: 1.8rem;
    }
    .menu-link .plus {
        font-size: 1.5rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #222;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 8s linear;
    transform: scale(1.05); /* Slight zoom for ken burns effect */
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%; /* Prioritize the upper part of the photo to avoid cutting faces */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    color: #ffffff;
    width: 90%;
    max-width: 800px;
}

.hero-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-title {
    font-family: 'Fraunces', serif;
    font-size: 4.5rem;
    line-height: 1.1 !important;
    margin-bottom: 25px;
    font-weight: 500;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-btn {
    display: inline-block;
    background-color: #ffffff;
    color: #2b3a32;
    padding: 15px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: #cb5329;
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #ffffff;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: #ffffff;
    color: #222;
}

#slideCounter {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }
}

/* Intro Statement Section */
.intro-statement {
    padding: 140px 20px;
    background-color: #F6F5F1;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-col p.eyebrow {
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #cb5329;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.intro-col h2 {
    font-family: 'Fraunces', serif;
    font-size: 2.8rem;
    color: #2b3a32;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.2;
}

.intro-col p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-col p.intro-quote {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: #2b3a32;
    margin-top: 30px;
    padding-left: 20px;
    border-left: 3px solid #cb5329;
}

@media (max-width: 900px) {
    .intro-statement {
        padding: 100px 20px;
    }
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .intro-col h2 {
        font-size: 2.4rem;
    }
}

/* Portfolio Section */
.portfolio-section {
    padding: 120px 20px;
    background-color: #ffffff;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 60px;
}

.portfolio-header .eyebrow {
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #cb5329;
    font-weight: 600;
    margin-bottom: 15px;
}

.portfolio-header h2 {
    font-family: 'Fraunces', serif;
    font-size: 3.5rem;
    color: #2b3a32;
    font-weight: 300;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 3/4;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    font-family: 'Fraunces', serif;
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.portfolio-overlay span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cb5329;
}

.portfolio-overlay span::after {
    content: '→';
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay span::after {
    transform: translateX(8px);
}

@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .portfolio-section {
        padding: 80px 20px;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-header h2 {
        font-size: 2.5rem;
    }
    .portfolio-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
    }
}

/* Featured Films Section (Classic 2x2 Redesign) */
.films-section {
    padding: 120px 20px;
    background-color: #ffffff;
}

.films-container {
    max-width: 1200px;
    margin: 0 auto;
}

.films-header-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.films-header-wrapper .eyebrow {
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: #cb5329;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    text-transform: uppercase;
}

.cinematic-title {
    font-family: 'Fraunces', serif;
    font-size: 3.5rem;
    color: #2b3a32;
    font-weight: 300;
    text-transform: capitalize;
    text-align: center;
}

.films-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.film-item-clean iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    background-color: #f4f4f4;
}

@media (max-width: 768px) {
    .films-section {
        padding: 80px 20px;
    }
    .cinematic-title {
        font-size: 2.5rem;
    }
    .films-grid-2x2 {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Why Choose Us Section (Unique Asymmetrical Design) */
.why-choose-us {
    padding: 180px 20px;
    background-color: #FAFAFA;
    position: relative;
    overflow: hidden;
}

/* Giant watermark in the background */
.why-choose-us::before {
    content: 'DECCAN';
    position: absolute;
    top: 50px;
    left: -50px;
    font-family: 'Fraunces', serif;
    font-size: 18vw;
    color: rgba(43, 58, 50, 0.03);
    z-index: 0;
    pointer-events: none;
    letter-spacing: -5px;
    white-space: nowrap;
}

.why-unique-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.why-unique-image {
    width: 50%;
    position: relative;
    z-index: 1;
}

.why-unique-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 8px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}

.why-unique-card {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    background-color: #ffffff;
    padding: 70px 60px;
    z-index: 2;
    box-shadow: -15px 30px 60px rgba(0,0,0,0.08);
    border-top: 4px solid #cb5329;
}

.why-unique-card .eyebrow {
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #cb5329;
    font-weight: 700;
    margin-bottom: 20px;
}

.why-unique-card h2 {
    font-family: 'Fraunces', serif;
    font-size: 3.5rem;
    color: #2b3a32;
    margin-bottom: 30px;
    line-height: 1.1;
}

.why-unique-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

.owner-signature {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #e5e7eb;
}

.owner-signature h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    color: #2b3a32;
    font-weight: 400;
    margin-bottom: 5px;
}

.owner-signature p {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #cb5329;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .why-choose-us {
        padding: 100px 20px;
    }
    .why-unique-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .why-unique-image {
        width: 100%;
    }
    .why-unique-image img {
        height: 500px;
    }
    .why-unique-card {
        position: relative;
        top: 0;
        transform: translateY(-60px);
        width: 90%;
        padding: 50px 40px;
    }
    .why-choose-us::before {
        font-size: 25vw;
        top: 20px;
    }
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    background-color: #ffffff;
}
.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: space-between;
}
.contact-info {
    flex: 1;
    min-width: 300px;
    padding-top: 40px;
}
.contact-info h3 {
    font-family: 'Fraunces', serif;
    font-size: 2.2rem;
    color: #2b3a32;
    margin-bottom: 25px;
    line-height: 1.2;
}
.contact-info p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 20px;
}
.contact-phone {
    font-size: 1.1rem;
    color: #333;
}
.contact-phone a {
    color: #cb5329;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}
.contact-phone a:hover {
    color: #a34220;
    text-decoration: underline;
}

.contact-form-wrapper {
    flex: 1;
    min-width: 350px;
    background: #F6F5F1;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

.contact-form-wrapper .eyebrow {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #cb5329;
    font-weight: 600;
    margin-bottom: 15px;
}
.contact-form-wrapper h2 {
    font-family: 'Fraunces', serif;
    font-size: 2.4rem;
    color: #2b3a32;
    margin-bottom: 35px;
    line-height: 1.2;
}

.form-group {
    margin-bottom: 25px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    color: #74605A;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.form-group label span {
    color: #cb5329;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid rgba(116, 96, 90, 0.2);
    border-radius: 6px;
    background: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #cb5329;
    box-shadow: 0 0 0 3px rgba(203, 83, 41, 0.1);
}

.contact-form-wrapper .button {
    width: 100%;
    background-color: #2b3a32;
    color: #ffffff;
    border: none;
    padding: 16px 30px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    margin-top: 10px;
}
.contact-form-wrapper .button:hover {
    background-color: #cb5329;
    transform: translateY(-2px);
}
.form-status {
    margin-top: 15px;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Unique Footer - Premium Dark Mode Styling */
.site-footer {
    background-color: #1a1a1a;
    color: #f1f1f1;
    padding: 100px 40px 0 40px;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 80px auto;
    position: relative;
    z-index: 2;
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #a0a0a0;
    margin-bottom: 25px;
}

.brand-col h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: none;
}

.brand-col p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d1d1d1;
    max-width: 350px;
    margin-bottom: 30px;
}

.footer-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #cb5329;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-cta-link:hover {
    color: #e56a3e;
}

.nav-col a, .social-col a {
    display: block;
    color: #d1d1d1;
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 12px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-col a:hover, .social-col a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: #888;
    position: relative;
    z-index: 2;
}

.footer-bottom a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
}

.footer-watermark {
    font-family: 'Fraunces', serif;
    font-size: 20vw;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    bottom: -5vw;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 60px 20px 0 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .brand-col p {
        font-size: 1rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .footer-watermark {
        font-size: 28vw;
        bottom: 5vw;
    }
}

/* Floating Action Buttons */
.floating-action-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.floating-btn svg {
    display: block;
}

.floating-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3) !important;
    color: white;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-btn {
    background-color: #25D366;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-btn:hover {
    background-color: #1ebe57;
    animation: none;
}

.go-top-btn {
    background-color: #74605A;
}

.go-top-btn:hover {
    background-color: #967F78;
}

/* Typography Refinements */
h1, h2, h3 {
    line-height: 1.2 !important;
}

/* Fade-Up Entry Animations for all blocks */
.page-block {
    animation: premiumFadeUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    opacity: 0;
    transform: translateY(40px);
}
.page-block:nth-child(1) { animation-delay: 0.1s; }
.page-block:nth-child(2) { animation-delay: 0.2s; }
.page-block:nth-child(3) { animation-delay: 0.3s; }
.page-block:nth-child(4) { animation-delay: 0.4s; }
.page-block:nth-child(n+5) { animation-delay: 0.5s; }

@keyframes premiumFadeUp {
    to { opacity: 1; transform: translateY(0); }
}
