:root {
    --yellow: #ffc52f;
    --yellow-dark: #e5aa00;
    --teal: #12b8c8;
    --teal-dark: #007481;
    --cream: #fffaf0;
    --charcoal: #102434;
    --muted: #51606b;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background: #ffffff;
    color: var(--charcoal);
}

.site-nav {
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(0,0,0,.06);
}

.nav-logo {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    object-fit: cover;
}

.navbar-brand span {
    font-weight: 900;
    color: var(--teal-dark);
}

.nav-link {
    font-weight: 800;
    color: var(--charcoal);
}

.nav-link:hover {
    color: var(--teal-dark);
}

.nav-btn {
    padding: 10px 24px !important;
}

.home-hero {
    position: relative;
    overflow: hidden;
    padding: 76px 0 0;
    background:
        radial-gradient(circle at 76% 40%, rgba(255,197,47,.38), transparent 31%),
        linear-gradient(115deg, #fffaf0 0%, #ffffff 46%, #dff9fc 100%);
}

.home-hero::after {
    content: "";
    position: absolute;
    right: -120px;
    top: 80px;
    width: 560px;
    height: 560px;
    background: rgba(18,184,200,.13);
    border-radius: 50%;
}

.pill-badge,
.mini-label {
    display: inline-block;
    background: var(--yellow);
    color: var(--teal-dark);
    font-weight: 900;
    padding: 10px 18px;
    border-radius: 999px;
    margin-bottom: 22px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.hero-title {
    font-size: clamp(44px, 5.6vw, 72px);
    font-weight: 900;
    line-height: .98;
    letter-spacing: -2.5px;
    margin-bottom: 24px;
}

.hero-copy {
    font-size: 21px;
    color: var(--muted);
    max-width: 500px;
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-main {
    background: var(--yellow);
    color: #101010;
    border: 2px solid var(--yellow-dark);
    font-weight: 900;
    padding: 14px 30px;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(255,197,47,.26);
}

.btn-main:hover {
    background: var(--yellow-dark);
    color: #101010;
}

.btn-outline-custom {
    background: #ffffff;
    color: var(--teal-dark);
    border: 2px solid var(--teal);
    font-weight: 900;
    padding: 14px 30px;
    border-radius: 999px;
}

.btn-outline-custom:hover {
    background: var(--teal);
    color: #ffffff;
}

.hero-stage {
    position: relative;
    z-index: 2;
    min-height: 610px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-sun {
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255,197,47,.45) 0%, rgba(255,197,47,.22) 55%, transparent 70%);
    right: 45px;
    bottom: 68px;
    z-index: 1;
}

.hero-photo-card {
    position: relative;
    z-index: 3;
    width: min(520px, 92%);
    height: 590px;
    border-radius: 46px 46px 0 0;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 32px 70px rgba(0,0,0,.18);
    transform: rotate(-1.5deg);
}

.hero-photo-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 10px solid rgba(255,255,255,.88);
    border-radius: 46px 46px 0 0;
    z-index: 2;
    pointer-events: none;
}

.hero-person {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero-drink-badge {
    position: absolute;
    z-index: 5;
    left: 35px;
    bottom: 105px;
    background: var(--teal-dark);
    color: white;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 16px 35px rgba(0,0,0,.18);
}

.hero-drink-badge strong {
    display: block;
    font-size: 22px;
    line-height: 1;
}

.hero-flavor-badge {
    position: absolute;
    z-index: 5;
    right: 18px;
    top: 135px;
    background: var(--yellow);
    color: var(--charcoal);
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 16px 35px rgba(0,0,0,.15);
    transform: rotate(4deg);
}

.flavors-showcase {
    padding: 72px 0 70px;
    background: #ffffff;
    overflow: hidden;
}

.section-heading {
    margin-bottom: 34px;
}

.section-heading h2,
.section-title {
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
}

.section-copy {
    font-size: 19px;
    color: var(--muted);
    max-width: 660px;
}

.flavor-carousel-wrap {
    position: relative;
}

.flavor-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 6px 24px;
    scrollbar-width: none;
}

.flavor-carousel::-webkit-scrollbar {
    display: none;
}

.drink-card {
    flex: 0 0 230px;
    scroll-snap-align: start;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,.10);
    transition: .25s ease;
}

.drink-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 52px rgba(0,0,0,.15);
}

.drink-photo {
    height: 210px;
    overflow: hidden;
    background: #ffffff;
}

.drink-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s;
}

.drink-card:hover .drink-photo img {
    transform: scale(1.06);
}

.drink-body {
    padding: 22px 18px 24px;
    text-align: center;
}

.drink-body h3 {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.05;
    color: var(--teal-dark);
    margin-bottom: 12px;
}

.drink-body p {
    color: var(--muted);
    font-size: 14px;
    min-height: 62px;
    margin-bottom: 0;
}

.flavor-arrow {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    z-index: 5;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 2px solid rgba(0,116,129,.18);
    background: #ffffff;
    color: var(--teal-dark);
    font-size: 42px;
    font-weight: 900;
    line-height: 42px;
    box-shadow: 0 14px 34px rgba(0,0,0,.14);
    cursor: pointer;
}

.flavor-arrow:hover {
    background: var(--yellow);
    color: var(--charcoal);
}

.flavor-arrow-left {
    left: -22px;
}

.flavor-arrow-right {
    right: -22px;
}

.event-proof {
    padding: 76px 0;
    background: linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
}

.event-proof-img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 22px 54px rgba(0,0,0,.15);
    display: block;
}

.event-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.event-icons div {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 12px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

.event-icons span {
    display: block;
    font-size: 13px;
    font-weight: 900;
    margin-top: 8px;
}

.feature-cards {
    padding: 58px 0 70px;
    background: #ffffff;
}

.feature-card {
    background: #fff9df;
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 16px 38px rgba(0,0,0,.09);
}

.feature-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

.feature-card-body {
    padding: 28px;
}

.feature-icon {
    font-size: 34px;
    margin-bottom: 12px;
}

.feature-card h3 {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -.8px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--muted);
    font-size: 16px;
}

.event-gallery {
    padding: 62px 0 70px;
    background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
}

.gallery-top {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

.gallery-top h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-auto-rows: 210px;
    gap: 18px;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(0,0,0,.11);
}

.gallery-large {
    grid-row: span 2;
}

.cta-band {
    background: linear-gradient(135deg, #007481, #004854);
    color: #ffffff;
    padding: 38px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-inner h2 {
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 4px;
}

.cta-inner p {
    margin-bottom: 0;
    font-size: 18px;
}

.site-footer {
    background: #071f26;
    color: white;
    padding: 35px 0;
    margin-top: 0;
}

@media (max-width: 991px) {
    .home-hero {
        padding: 54px 0 0;
    }

    .hero-stage {
        min-height: 520px;
    }

    .hero-photo-card {
        height: 500px;
        width: min(430px, 92%);
    }

    .hero-sun {
        width: 340px;
        height: 340px;
        right: 60px;
        bottom: 60px;
    }

    .flavor-arrow {
        display: none;
    }

    .drink-card {
        flex-basis: 235px;
    }

    .event-icons {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-large {
        grid-row: span 1;
    }

    .cta-inner,
    .gallery-top {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .hero-title {
        letter-spacing: -1.5px;
    }

    .hero-copy {
        font-size: 18px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stage {
        min-height: 460px;
    }

    .hero-photo-card {
        height: 430px;
        width: 92%;
        border-radius: 34px 34px 0 0;
    }

    .hero-drink-badge {
        left: 18px;
        bottom: 72px;
        font-size: 13px;
    }

    .hero-flavor-badge {
        right: 8px;
        top: 80px;
        font-size: 13px;
    }

    .drink-card {
        flex-basis: 78vw;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }
}

.contact-section{
    padding:70px 0;
    background:#fffaf0;
}

.contact-card{
    background:#ffffff;
    border-radius:28px;
    box-shadow:0 18px 45px rgba(0,0,0,.10);
    display:grid;
    grid-template-columns:1.2fr .8fr;
    overflow:hidden;
}

.contact-info{
    padding:52px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.contact-message{
    background:linear-gradient(135deg,#007481,#004854);
    color:#ffffff;
    padding:42px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    gap:24px;
}

.contact-info h2,
.contact-message h2{
    font-weight:900;
    margin-bottom:24px;
}

.contact-row{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:28px;
}

.contact-row span{
    font-size:28px;
}

.contact-row strong{
    display:block;
    font-weight:900;
}

.contact-row p{
    margin:3px 0 0;
    color:#51606b;
}

.contact-socials{
    display:flex;
    gap:14px;
    margin-top:28px;
}

.contact-socials a{
    background:#ffc52f;
    color:#102434;
    font-weight:900;
    padding:12px 22px;
    border-radius:999px;
    text-decoration:none;
}

.contact-message p{
    font-size:18px;
    line-height:1.7;
    margin-bottom:28px;
}

@media(max-width:800px){
    .contact-card{
        grid-template-columns:1fr;
    }
}

.contact-row strong{
    display:block;
    font-size:20px;
    margin-bottom:4px;
}

.contact-row p{
    margin:0;
    font-size:18px;
    color:#4d5b66;
}

.contact-row span{
    font-size:32px;
    width:40px;
    text-align:center;
    flex-shrink:0;
}

.contact-socials{
    margin-top:20px;
}

.faq-section{
    padding:70px 0;
    background:#fffaf0;
}

.faq-list{
    max-width:950px;
    margin:0 auto;
}

.faq-item{
    background:#ffffff;
    border-radius:22px;
    padding:28px 32px;
    margin-bottom:20px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.faq-item h3{
    font-size:22px;
    font-weight:900;
    margin-bottom:12px;
    color:#007481;
}

.faq-item p{
    margin:0;
    font-size:17px;
    line-height:1.7;
    color:#51606b;
}

.quote-section{
    padding:70px 0;
    background:#fffaf0;
}

.quote-form{
    max-width:1050px;
    margin:0 auto;
}

.quote-form-card{
    background:#fff;
    border-radius:26px;
    padding:34px;
    margin-bottom:28px;
    box-shadow:0 14px 34px rgba(0,0,0,.08);
}

.quote-form-card h2{
    font-weight:900;
    margin-bottom:24px;
}

.quote-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.quote-field.full{
    grid-column:1 / -1;
}

.quote-field label{
    display:block;
    font-weight:900;
    margin-bottom:8px;
}

.quote-field label span{
    font-weight:600;
    color:#6c7a89;
}

.quote-field input,
.quote-field textarea{
    width:100%;
    border:2px solid #e4e8ec;
    border-radius:14px;
    padding:15px 16px;
    font-size:16px;
    font-family:inherit;
    box-sizing:border-box;
}

.quote-field input:focus,
.quote-field textarea:focus{
    outline:none;
    border-color:#00b8d9;
}

.quote-submit-area{
    text-align:center;
    margin-top:35px;
}

.quote-submit-area .btn{
    min-width:280px;
}

.quote-submit-area p{
    margin-top:18px;
    color:#51606b;
    font-size:15px;
}

@media(max-width:800px){
    .quote-grid{
        grid-template-columns:1fr;
    }
}