:root {
    --heritage-green: #4a8b2c;
    --slate: #323e48;
    --fresh-hop: #a5c144;
    --cream: #faecde;
    --goldenrod: #e8ab3a;
    --white: #ffffff;
    --stone-dark: #2d2d2d;
    --stone-medium: #5a5a5a;
    --stone-light: #8a8a8a;
    --stone-pale: #c4c4c4;
    --stone-bg: #f7f5f3;
    --stone-warm: #ede8e3;
    --accent-copper: #a67c52;
    --charcoal: #323e48;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "gelica", serif;
    line-height: 1.6;
    color: var(--stone-dark);
    overflow-x: hidden;
}

.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--heritage-green);
    z-index: 2000;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 32px;
}

.nav-logo img {
    height: 100%;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    font-family: "tt-commons-pro", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: var(--fresh-hop);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 5px;
    z-index: 2002;
    position: relative;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 120px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: calc(100vh - 120px);
    justify-content: space-between;
}

/* Hero Brand Layout */
.hero-brand-block {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    justify-content: center;
}

.brand-text-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-title {
    font-family: "alternate-gothic-condensed-a", sans-serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 0.9;
    margin: 0;
    color: var(--white);
    text-shadow: 3px 3px 25px rgba(0, 0, 0, 0.7);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: "loos-extrawide", serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin: 1rem 0;
    opacity: 0.95;
    color: var(--white);
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.6);
    line-height: 1;
}

.hero-introducing {
    margin-bottom: 2rem;
    color: var(--white);
    opacity: 0.9;
    font-size: 1rem;
    letter-spacing: 4px;
}

.lupocore-brand {
    font-family: "alternate-gothic-condensed-a", sans-serif;
    font-size: 8rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--white);
    line-height: 0.8;
    text-transform: uppercase;
    text-shadow: 6px 6px 35px rgba(0, 0, 0, 0.9);
    white-space: nowrap;
}

.lupocore-brand.hero-main {
    font-size: 10rem;
}

.core-highlight {
    color: var(--goldenrod);
    text-shadow: 6px 6px 35px rgba(232, 171, 58, 0.5);
}

.trademark {
    font-size: 2rem;
    vertical-align: top;
    margin-left: 0.3rem;
    opacity: 0.95;
    position: relative;
    top: 0.5rem;
}

.sensory-plus-text {
    font-family: "tt-commons-pro", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0.9;
    margin-top: -0.5rem;
}

/* Section Brand Headers */
.section-brand-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.section-wolf-icon {
    height: 80px;
    width: auto;
    filter: brightness(100%) saturate(10%);
}

.section-title-brand {
    font-family: "alternate-gothic-condensed-a", sans-serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--stone-dark);
    line-height: 1;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.core-color {
    color: var(--goldenrod);
}

.max-color {
    color: var(--fresh-hop);
}

.hero-description {
    font-family: "gelica", serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-cta {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    text-decoration: none;
    font-family: "tt-commons-pro", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
}

.hero-cta:hover {
    background: var(--white);
    color: var(--stone-dark);
    transform: translateX(-50%) translateY(-2px);
}

.section {
    padding: 8rem 2rem;
    background: var(--stone-bg);
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-family: "tt-commons-pro", sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--goldenrod);
    margin-bottom: 1rem;
}

.section-title {
    font-family: "alternate-gothic-condensed-a", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--stone-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-description {
    font-family: "gelica", serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--stone-medium);
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-top: 4rem;
}

.about-text {
    font-family: "gelica", serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--stone-medium);
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-visual {
    background: var(--stone-warm);
    padding: 4rem 3rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.visual-number {
    font-family: "loos-extrawide", serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--goldenrod);
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.visual-text {
    font-family: "tt-commons-pro", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: var(--stone-medium);
}

/* Button Container for Request Sample and Download Spec */
.button-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--fresh-hop);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    text-decoration: none;
    font-family: "tt-commons-pro", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background: var(--heritage-green);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--stone-dark);
    border: 2px solid var(--stone-dark);
    padding: 1rem 2rem;
    text-decoration: none;
    font-family: "tt-commons-pro", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background: var(--stone-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: linear-gradient(90deg, var(--heritage-green) 0%, var(--fresh-hop) 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.modal-header h2 {
    font-family: "alternate-gothic-condensed-a", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.modal-header p {
    font-family: "gelica", serif;
    font-size: 1.1rem;
    opacity: 0.9;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: var(--white);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: all 0.3s ease;
}

.close:hover {
    transform: scale(1.1);
    opacity: 0.7;
}

.modal-body {
    padding: 2rem;
}

.modal-form {
    border: none !important;
    border-radius: 0;
    background: transparent;
    width: 100%;
    min-height: 600px;
}

.quotes-section {
    background: var(--white);
    padding: 8rem 2rem;
}

.quotes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.quote-box {
    background: var(--cream);
    padding: 3rem 2rem;
    border-left: 4px solid var(--heritage-green);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    position: relative;
}

.quote-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--heritage-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-family: "alternate-gothic-condensed-a", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--heritage-green);
    letter-spacing: 1px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.quote-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.quote-box:hover .quote-logo {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(74, 139, 44, 0.3);
}

.quote-text {
    font-family: "gelica", serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--stone-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.quote-author {
    font-family: "tt-commons-pro", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--heritage-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quote-company {
    font-family: "tt-commons-pro", sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--stone-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.waitlist-section {
    background: var(--stone-warm);
    padding: 8rem 2rem;
}

.waitlist-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Enhanced Form Styling */
.form-container {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    margin-top: 3rem;
    border: 1px solid rgba(74, 139, 44, 0.1);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--heritage-green) 0%, var(--fresh-hop) 100%);
}

.airtable-embed {
    border: none !important;
    border-radius: 12px;
    background: transparent;
    width: 100%;
    min-height: 600px;
}

/* Form Privacy Notice */
.form-privacy {
    font-family: "tt-commons-pro", sans-serif;
    font-size: 0.8rem;
    color: var(--stone-medium);
    text-align: center;
    margin-top: 1rem;
    padding: 0 2rem;
    line-height: 1.4;
}

.form-privacy a {
    color: var(--heritage-green);
    text-decoration: underline;
}

.form-privacy a:hover {
    color: var(--fresh-hop);
}

/* Style the section header for the form */
.waitlist-section .section-header {
    margin-bottom: 2rem;
}

.waitlist-section .section-subtitle {
    color: var(--stone-medium);
}

.waitlist-section .section-title {
    color: var(--stone-dark);
}

.waitlist-section .section-description {
    color: var(--stone-medium);
    margin-bottom: 0;
}

.footer {
    background: var(--charcoal);
    color: var(--stone-light);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-family: "alternate-gothic-condensed-a", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-section p,
.footer-section a {
    font-family: "tt-commons-pro", sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--stone-light);
    line-height: 1.6;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--fresh-hop);
}

.footer-partners {
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-partners h4 {
    font-family: "alternate-gothic-condensed-a", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--stone-light);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.partners-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
    padding: 0 2rem;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    flex: 1;
}

.partner-logo {
    height: 40px;
    width: auto;
    max-width: 120px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: brightness(0) invert(1);
    margin-bottom: 0.5rem;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-region {
    font-family: "tt-commons-pro", sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--stone-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: "tt-commons-pro", sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--stone-light);
}

.footer-bottom a[href="https://www.johnihaas.com"] {
    color: white;
    font-weight: 700;
    text-decoration: none;
}

/* Beer Label Confetti Feature */
.confetti-tab {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--fresh-hop) 0%, var(--heritage-green) 100%);
    color: var(--white);
    padding: 1rem 0.5rem;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    z-index: 1500;
    transition: all 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: "tt-commons-pro", sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    outline: none;
}

.confetti-tab:hover {
    right: 5px;
    box-shadow: -8px 0 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--heritage-green) 0%, var(--fresh-hop) 100%);
}

.confetti-tab:active {
    transform: translateY(-50%) scale(0.95);
}

/* Beer Label Confetti Animations */
@keyframes confettiFall {
    0% {
        transform: translateY(-200px) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(-100px) rotate(180deg) scale(1);
    }
    70% {
        opacity: 1;
        transform: translateY(calc(100vh - 150px)) rotate(540deg) scale(1);
    }
    75% {
        transform: translateY(calc(100vh - 100px)) rotate(580deg) scale(1.1);
    }
    80% {
        transform: translateY(calc(100vh - 120px)) rotate(620deg) scale(0.95);
    }
    85% {
        transform: translateY(calc(100vh - 110px)) rotate(640deg) scale(1.02);
    }
    90% {
        transform: translateY(calc(100vh - 115px)) rotate(660deg) scale(0.98);
        opacity: 1;
    }
    95% {
        transform: translateY(calc(100vh - 112px)) rotate(680deg) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translateY(calc(100vh + 200px)) rotate(720deg) scale(1);
        opacity: 0;
    }
}

@keyframes confettiSway {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-50px);
    }
    75% {
        transform: translateX(50px);
    }
}

/* Added missing bounce animation */
@keyframes confettiBounce {
    0% {
        transform: translateY(-250px) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(0px) rotate(180deg) scale(1);
    }
    50% {
        transform: translateY(calc(100vh - 150px)) rotate(540deg) scale(1);
    }
    55% {
        transform: translateY(calc(100vh - 80px)) rotate(580deg) scale(1.2);
    }
    60% {
        transform: translateY(calc(100vh - 180px)) rotate(620deg) scale(0.9);
    }
    65% {
        transform: translateY(calc(100vh - 100px)) rotate(640deg) scale(1.05);
    }
    70% {
        transform: translateY(calc(100vh - 140px)) rotate(660deg) scale(0.95);
    }
    75% {
        transform: translateY(calc(100vh - 110px)) rotate(680deg) scale(1);
    }
    80% {
        transform: translateY(calc(100vh - 130px)) rotate(700deg) scale(0.98);
    }
    85% {
        transform: translateY(calc(100vh - 115px)) rotate(710deg) scale(1);
        opacity: 1;
    }
    90% {
        transform: translateY(calc(100vh - 120px)) rotate(715deg) scale(0.99);
        opacity: 0.7;
    }
    100% {
        transform: translateY(calc(100vh + 200px)) rotate(720deg) scale(1);
        opacity: 0;
    }
}

.beer-label {
    position: fixed;
    pointer-events: none;
    z-index: 1000;
    border-radius: 4px;
    transition: opacity 0.3s ease;
    animation: confettiFall 8s cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards;
}

/* Animation variations */
.beer-label.sway {
    animation: confettiFall 8s cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards,
               confettiSway 3s ease-in-out infinite;
}

.beer-label.bounce {
    animation: confettiBounce 10s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

/* Alternative JavaScript-animated labels */
.beer-label.js-animated {
    animation: none;
    transition: opacity 0.3s ease;
}

.clear-labels-btn {
    position: fixed;
    top: 120px;
    right: 2rem;
    background: var(--goldenrod);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-family: "tt-commons-pro", sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    z-index: 1600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: none;
}

.clear-labels-btn:hover {
    background: var(--accent-copper);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.clear-labels-btn.visible {
    display: block;
    animation: slideIn 0.3s ease-out forwards;
}

/* Video Section */
.video-section {
    background: var(--stone-dark);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 800px;
    background: var(--stone-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-embed {
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(45, 45, 45, 0.3) 0%,
        rgba(45, 45, 45, 0.1) 50%,
        rgba(45, 45, 45, 0.3) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.video-content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    z-index: 2;
    color: var(--white);
    text-align: left;
}

.video-title {
    font-family: "alternate-gothic-condensed-a", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.7);
    color: var(--white);
}

.video-description {
    font-family: "gelica", serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    opacity: 0.95;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 45, 45, 0.95);
    color: var(--white);
    padding: 1.5rem 2rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-family: "tt-commons-pro", sans-serif;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-accept, .cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: "tt-commons-pro", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--heritage-green);
    color: var(--white);
}

.cookie-accept:hover {
    background: var(--fresh-hop);
}

.cookie-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-learn {
    color: var(--stone-light);
    font-family: "tt-commons-pro", sans-serif;
    font-size: 0.85rem;
    text-decoration: underline;
}

.cookie-learn:hover {
    color: var(--white);
}

/* Mobile menu overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1999;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-logo {
        height: 28px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 2rem;
        padding: 6rem 2rem 2rem;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.4);
        z-index: 2001;
    }

    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        padding: 0.5rem 0;
        transform: translateX(50px);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        transform: translateX(0);
        opacity: 1;
    }

    .nav-menu.active li:nth-child(1) {
        transition-delay: 0.1s;
    }
    .nav-menu.active li:nth-child(2) {
        transition-delay: 0.15s;
    }
    .nav-menu.active li:nth-child(3) {
        transition-delay: 0.2s;
    }
    .nav-menu.active li:nth-child(4) {
        transition-delay: 0.25s;
    }
    .nav-menu.active li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-menu a {
        color: var(--white);
        font-size: 1.1rem;
        font-family: "tt-commons-pro", sans-serif;
        font-weight: 600;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: block;
        transition: all 0.3s ease;
    }

    .nav-menu a:hover {
        color: var(--fresh-hop);
        padding-left: 1rem;
    }

    .hero {
        padding-top: 100px;
        min-height: 100vh;
    }

    .hero-content {
        height: calc(100vh - 100px);
        padding: 1rem;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 2rem;
        letter-spacing: 3px;
        margin: 0.5rem 0;
    }

    .hero-introducing {
        margin-bottom: 1rem;
        font-size: 0.8rem;
        letter-spacing: 3px;
    }

    .hero-brand-block {
        flex-direction: column;
        gap: 1rem;
    }

    .brand-text-group {
        align-items: center;
    }

    .lupocore-brand {
        font-size: 4.5rem;
        letter-spacing: -0.01em;
    }
    
    .lupocore-brand.hero-main {
        font-size: 5.5rem;
    }

    .trademark {
        font-size: 1.2rem;
        top: 0.3rem;
    }

    .sensory-plus-text {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
    
    .section-brand-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-wolf-icon {
        height: 60px;
    }
    
    .section-title-brand {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 0.95rem;
        padding: 0 1rem;
        margin-bottom: 1rem;
    }

    .hero-cta {
        bottom: 1rem;
        padding: 1.2rem 2.5rem;
        font-size: 0.8rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section {
        padding: 4rem 1rem;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .quotes-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .quote-box {
        padding: 2rem 1.5rem;
    }

    .quote-logo {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .form-container {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }

    .waitlist-section {
        padding: 4rem 1rem;
    }

    .button-container {
        flex-direction: column;
        gap: 1rem;
    }

    .modal-content {
        width: 95%;
        margin: 5% auto;
    }

    .modal-header {
        padding: 1.5rem;
    }

    .modal-header h2 {
        font-size: 2rem;
    }

    .modal-body {
        padding: 1rem;
    }

    .video-container {
        height: 50vh;
        min-height: 300px;
    }
    
    .video-content {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
    }
    
    .video-title {
        font-size: 2rem;
    }
    
    .video-description {
        font-size: 1rem;
    }

    .confetti-tab {
        padding: 0.8rem 0.4rem;
        font-size: 0.7rem;
    }
    
    .clear-labels-btn {
        top: 100px;
        right: 1rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.7rem;
    }
    
    .partners-row {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .partner-item {
        min-width: 80px;
        flex: 0 0 calc(25% - 1.5rem);
    }
    
    .partner-logo {
        height: 32px;
        max-width: 80px;
    }
    
    .partner-region {
        font-size: 0.6rem;
    }
    
    /* Cookie banner mobile adjustments */
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .hero-introducing {
        font-size: 0.7rem;
        letter-spacing: 2px;
        margin-bottom: 0.8rem;
    }
    
    .hero-brand-block {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .lupocore-brand {
        font-size: 3rem;
    }
    
    .lupocore-brand.hero-main {
        font-size: 3.5rem;
    }
    
    .trademark {
        font-size: 1rem;
        top: 0.2rem;
    }
    
    .section-wolf-icon {
        height: 50px;
    }
    
    .section-title-brand {
        font-size: 2.5rem;
    }
}
