/**
 * ============================================
 * SYMPLY HONEST TEA - COMPLETE FIXED CSS
 * ============================================
 */

/* ============================================
   1.CUSTOM FONTS
   ============================================ */
@font-face {
    font-family: 'Coolvetica';
    src: url('assets/fonts/coolvetica-rg.woff2') format('woff2'),
         url('assets/fonts/coolvetica-rg.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family:  'Indivisible';
    src: url('assets/fonts/indivisible-regular.woff2') format('woff2'),
         url('assets/fonts/indivisible-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Founders Hand';
    src:  url('assets/fonts/founders-hand.woff2') format('woff2'),
         url('assets/fonts/founders-hand.woff') format('woff');
    font-weight: 400;
    font-style:  normal;
    font-display: swap;
}

/* ============================================
   2.CSS VARIABLES
   ============================================ */
:root {
    --color-olive-green: #5E6444;
    --color-dusty-blue: #8FA09F;
    --color-dark-brown: #2E221A;
    --color-sage-green: #AEB68A;
    --color-cream: #F7EDDB;
    --color-tan: #C29980;
    --color-off-white: #FEFCF8;
    --color-light-gray: #E9DCC6;
    --color-warm-white:  #F8F6EC;
    --color-text-primary: var(--color-dark-brown);
    --color-text-light: var(--color-off-white);
    
    --font-title:  'Coolvetica', 'Outfit', sans-serif;
    --font-body:  'Indivisible', 'Inter', sans-serif;
    --font-accent: 'Founders Hand', cursive;
    
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;
    
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow:  400ms ease;
    --transition-drawer: 500ms cubic-bezier(0.16, 1, 0.3, 1);
    
    --drawer-peek: 56px;
    --product-gap: 24px;
    --card-width: 240px;
}

/* ============================================
   3.RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-primary);
    background-color: var(--color-dark-brown);
    overflow-x: hidden;
    min-height: 100vh;
}

body.modal-open,
body.drawer-open {
    overflow: hidden;
}

/* ============================================
   4.VIDEO BACKGROUND
   ============================================ */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height:  100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left:  50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position:  absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(46, 34, 26, 0.7) 0%,
        rgba(94, 100, 68, 0.4) 50%,
        rgba(46, 34, 26, 0.65) 100%
    );
}

/* ============================================
   5.MAIN LAYOUT
   ============================================ */
.landing-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    padding: 60px 80px;
    padding-bottom: calc(60px + var(--drawer-peek));
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================
   6.BRAND SECTION
   ============================================ */
.brand-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap:  2px;
}

.logo-container {
    margin-bottom: 0;
}

.logo {
    height: 120px;
    width: auto;
    max-width: 250px;
    display: block;
    margin-left: -56px;
}

.tagline {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 300;
    color:  var(--color-text-light);
    opacity: 0.9;
    letter-spacing: 0.01em;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    opacity: 0.85;
    transition:  opacity var(--transition-fast), transform var(--transition-fast);
    text-decoration: none;
}

.social-links a:hover {
    opacity: 1;
    transform:  translateY(-2px);
}

.social-icon {
    width:  24px;
    height: 24px;
}

/* ============================================
   7.CTA SECTION
   ============================================ */
.cta-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 14px;
}

.cta-heading {
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 500;
    color:  var(--color-text-light);
    letter-spacing: 0.02em;
    text-transform: none;
}

.cta-button {
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 500;
    color:  var(--color-dark-brown);
    background-color: var(--color-text-light);
    border: 2px solid var(--color-text-light);
    padding: 14px 36px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
}

.cta-button:hover {
    background-color:  transparent;
    color:  var(--color-text-light);
    transform: translateY(-2px);
}

.products-toggle {
    display: flex;
    align-items: center;
    gap:  6px;
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--color-text-light);
    background:  transparent;
    border:  none;
    padding: 4px 0;
    cursor:  pointer;
    opacity: 0.8;
    transition:  all var(--transition-fast);
}

.products-toggle:hover {
    opacity: 1;
}

.toggle-icon {
    transition: transform var(--transition-base);
    width: 14px;
    height: 14px;
}

.products-toggle[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}

/* ============================================
   8.PROJECTS DRAWER
   ============================================ */
.projects-drawer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 70vh;
    background:  linear-gradient(
        180deg,
        var(--color-sage-green) 0%,
        var(--color-olive-green) 100%
    );
    border-radius: 20px 20px 0 0;
    z-index: 100;
    transform: translateY(calc(100% - var(--drawer-peek)));
    transition: transform var(--transition-drawer);
    box-shadow: 0 -4px 24px rgba(46, 34, 26, 0.25);
    overflow:  hidden;
}

.projects-drawer.open {
    transform: translateY(0);
}

.drawer-handle {
    height: var(--drawer-peek);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition:  opacity var(--transition-base);
}

.projects-drawer.open .drawer-handle {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.handle-bar {
    width: 48px;
    height: 4px;
    background-color: var(--color-cream);
    border-radius: var(--radius-full);
    opacity: 0.7;
    transition: all var(--transition-fast);
}

.drawer-handle:hover .handle-bar {
    width: 64px;
    opacity: 1;
}

.handle-text {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--color-cream);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.drawer-close {
    position:  absolute;
    top: 12px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(254, 252, 248, 0.1);
    border:  1px solid rgba(254, 252, 248, 0.2);
    color: var(--color-cream);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    cursor: pointer;
    opacity: 0;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    z-index: 20;
    backdrop-filter: blur(8px);
}

.projects-drawer.open .drawer-close {
    opacity: 1;
    transform:  translateY(0);
    transition-delay: 150ms;
}

.drawer-close:hover {
    background: rgba(254, 252, 248, 0.2);
}

.drawer-close svg {
    width: 14px;
    height: 14px;
}

.drawer-close span {
    font-family: var(--font-body);
    font-size: 0.75rem;
}

#ingredients-canvas {
    position:  absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.drawer-content {
    position:  relative;
    z-index: 5;
    padding: 16px 24px 24px;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-slow);
}

.projects-drawer.open .drawer-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 100ms;
}

/* ============================================
   9.CATEGORY TABS
   ============================================ */
.category-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 16px;
    scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
    display:  none;
}

.category-tab {
    flex-shrink: 0;
    font-family: var(--font-title);
    font-size: 0.85rem;
    color: var(--color-cream);
    background: rgba(254, 252, 248, 0.1);
    border: 1px solid rgba(254, 252, 248, 0.2);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.category-tab:hover {
    background: rgba(254, 252, 248, 0.15);
}

.category-tab.active {
    background: var(--color-cream);
    color: var(--color-dark-brown);
    border-color: var(--color-cream);
}

/* ============================================
   10.PRODUCTS WRAPPER & SCROLL
   ============================================ */
.products-wrapper {
    position: relative;
    width: 100%;
    padding:  0 60px;
}

.products-viewport {
    overflow: hidden;
    width: 100%;
}

.products-scroll {
    display: flex;
    gap: var(--product-gap);
    padding: 8px 4px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    justify-content: center;
}

.products-scroll::-webkit-scrollbar {
    display: none;
}

.products-scroll.can-scroll {
    justify-content: flex-start;
}

/* ============================================
   11.PRODUCT CARDS
   ============================================ */
.product-card {
    flex: 0 0 var(--card-width);
    min-width: var(--card-width);
    max-width: var(--card-width);
    scroll-snap-align:  start;
    background: rgba(254, 252, 248, 0.1);
    border: 1px solid rgba(254, 252, 248, 0.2);
    border-radius: var(--radius-lg);
    padding: 20px;
    backdrop-filter: blur(8px);
    transition: all var(--transition-base);
    cursor: pointer;
}

.product-card:hover {
    background: rgba(254, 252, 248, 0.18);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(46, 34, 26, 0.15);
}

.product-card.hidden {
    display:  none;
}

.product-image-wrapper {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: var(--radius-md);
    background: rgba(254, 252, 248, 0.08);
    overflow: hidden;
}

.product-image {
    width:  100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.product-card h4 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    color: var(--color-cream);
    margin-bottom: 6px;
    line-height: 1.2;
}

.product-card p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-cream);
    opacity: 0.75;
    line-height: 1.4;
}

/* ============================================
   12.SCROLL ARROWS
   ============================================ */
.scroll-arrow {
    position:  absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-dark-brown);
    border:  2px solid var(--color-cream);
    border-radius: 50%;
    color: var(--color-cream);
    cursor: pointer;
    z-index: 50;
    transition:  all 0.2s ease;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.scroll-arrow:hover:not(:disabled) {
    background: var(--color-olive-green);
    transform: translateY(-50%) scale(1.1);
}

.scroll-arrow:active:not(:disabled) {
    transform: translateY(-50%) scale(0.95);
}

.scroll-arrow:disabled {
    opacity:  0.3;
    cursor:  not-allowed;
}

.scroll-arrow-left {
    left: 8px;
}

.scroll-arrow-right {
    right: 8px;
}

.scroll-arrow svg {
    width:  24px;
    height: 24px;
    pointer-events: none;
}

/* ============================================
   13.SCROLL PROGRESS
   ============================================ */
.scroll-progress {
    height: 4px;
    background: rgba(254, 252, 248, 0.2);
    border-radius:  var(--radius-full);
    margin-top: 16px;
    overflow: hidden;
    position: relative;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--color-cream);
    border-radius: var(--radius-full);
    position: absolute;
    left: 0;
    top: 0;
    min-width: 30px;
    transition: left 0.15s ease-out, width 0.15s ease-out;
}

/* ============================================
   14.MODAL STYLES
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(46, 34, 26, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

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

.modal-container {
    position:  relative;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    background-color: var(--color-off-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 48px rgba(46, 34, 26, 0.2);
    overflow: hidden;
    transform: translateY(30px) scale(0.95);
    transition: transform var(--transition-slow);
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-close {
    position:  absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border:  none;
    color: var(--color-dark-brown);
    cursor: pointer;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    z-index: 10;
}

.modal-close:hover {
    background-color: var(--color-light-gray);
    transform: rotate(90deg);
}

.modal-close svg {
    width:  18px;
    height: 18px;
}

.modal-content {
    padding: var(--space-2xl);
    overflow-y: auto;
    max-height: 90vh;
}

.form-title {
    font-family: var(--font-title);
    font-size:  1.4rem;
    color: var(--color-dark-brown);
    line-height: 1.3;
    margin-bottom: var(--space-xl);
    padding-right: var(--space-2xl);
}

.rsvp-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction:  column;
    gap: var(--space-sm);
}

.form-label {
    font-family: var(--font-title);
    font-size: 0.8rem;
    color: var(--color-dark-brown);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.required {
    color:  var(--color-tan);
}

.form-input {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-dark-brown);
    background-color: var(--color-warm-white);
    border: 1.5px solid var(--color-light-gray);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    width: 100%;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-olive-green);
    box-shadow: 0 0 0 4px rgba(94, 100, 68, 0.1);
}

.form-input::placeholder {
    color:  var(--color-dusty-blue);
    opacity: 0.6;
}

.input-with-icon {
    position: relative;
}

.input-icon {
    position:  absolute;
    left: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--color-dusty-blue);
    pointer-events: none;
}

.form-input.has-icon {
    padding-left: calc(var(--space-md) * 2 + 20px);
}

.form-select {
    font-family: var(--font-body);
    font-size:  1rem;
    color: var(--color-dark-brown);
    background-color: var(--color-warm-white);
    border: 1.5px solid var(--color-light-gray);
    padding: var(--space-md) var(--space-lg);
    border-radius:  var(--radius-md);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232E221A' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-lg) center;
    padding-right: calc(var(--space-lg) * 2 + 12px);
    transition: all var(--transition-fast);
}

.form-select:focus {
    outline:  none;
    border-color: var(--color-olive-green);
    box-shadow: 0 0 0 4px rgba(94, 100, 68, 0.1);
}

/* ============================================
   RADIO/CHECKBOX GRID - EQUAL HEIGHT BOXES
   ============================================ */
.radio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    /* This is the key - makes all items in a row equal height */
    grid-auto-rows: 1fr;
}

.radio-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.radio-option {
    position: relative;
    cursor: pointer;
    /* Stretch to fill grid cell */
    display: grid;
}

.radio-option.full-width {
    grid-column: 1 / -1;
    max-width: calc(50% - var(--space-xs));
}

.radio-option input[type="radio"],
.radio-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height:  100%;
    z-index: 1;
}

/* Equal height radio/checkbox labels */
.radio-label {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-dark-brown);
    background-color: var(--color-warm-white);
    border: 1.5px solid var(--color-light-gray);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-fast);
    line-height: 1.3;
    /* Fill the entire grid cell */
    min-height: 56px;
}

.radio-option:hover .radio-label {
    border-color: var(--color-sage-green);
}

.radio-option input[type="radio"]:checked + .radio-label,
.radio-option input[type="checkbox"]:checked + .radio-label {
    background-color: var(--color-olive-green);
    border-color: var(--color-olive-green);
    color: var(--color-text-light);
}

.submit-button {
    font-family: var(--font-title);
    font-size:  1rem;
    color: var(--color-text-light);
    background-color: var(--color-dark-brown);
    border: 2px solid var(--color-dark-brown);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    margin-top: var(--space-md);
}

.submit-button:hover {
    background-color: var(--color-olive-green);
    border-color: var(--color-olive-green);
    transform: translateY(-2px);
}

.form-disclaimer {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--color-dusty-blue);
    text-align: center;
    line-height: 1.5;
    margin-top: var(--space-sm);
}

/* ============================================
   15.CUSTOM CURSOR
   ============================================ */
.cursor-dot {
    position: fixed;
    top: 0;
    left:  0;
    width: 10px;
    height: 10px;
    background-color: var(--color-cream);
    border-radius:  50%;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    box-shadow: 0 0 10px rgba(247, 237, 219, 0.5);
}

.cursor-ring {
    position:  fixed;
    top:  0;
    left: 0;
    width: 45px;
    height: 45px;
    border:  1.5px solid var(--color-cream);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform:  translate(-50%, -50%);
    transition: all 0.15s ease-out;
    opacity: 0.5;
}

body.cursor-hover .cursor-dot {
    width: 16px;
    height: 16px;
    background-color: var(--color-sage-green);
}

body.cursor-hover .cursor-ring {
    width: 60px;
    height: 60px;
    border-color: var(--color-sage-green);
    opacity: 0.3;
}

/* ============================================
   16.RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --product-gap: 20px;
        --card-width: 200px;
    }
    
    .landing-container {
        padding:  50px 40px;
        padding-bottom: calc(50px + var(--drawer-peek));
    }
    
    .logo {
        height: 100px;
        margin-left: -30px;
    }
    
    .cta-heading {
        font-size: 1rem;
    }
    
    .drawer-content {
        padding:  14px 20px 20px;
    }
    
    .products-wrapper {
        padding: 0 50px;
    }
    
    .drawer-close span {
        display: none;
    }
    
    .scroll-arrow {
        width: 44px;
        height: 44px;
    }
    
    .scroll-arrow svg {
        width:  20px;
        height: 20px;
    }
    
    .product-card h4 {
        font-size: 1.1rem;
    }
    
    .product-card p {
        font-size: 0.85rem;
    }
    
    .radio-label {
        min-height: 52px;
        font-size: 0.9rem;
    }
}

/* ============================================
   17.RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 768px) {
    :root {
        --drawer-peek: 50px;
        --product-gap: 12px;
        --card-width: 150px;
    }
    
    .landing-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 40px 24px;
        padding-bottom: calc(40px + var(--drawer-peek));
        gap: 0;
    }
    
    .brand-section {
        align-items: center;
        display: contents;
    }
    
    .logo-container { order: 1; }
    .logo {
        height: 100px;
        margin-left: 0;
    }
    
    .tagline {
        order: 2;
        margin-bottom: 100px;
    }
    
    .cta-section {
        order:  3;
        align-items: center;
        text-align: center;
        display: contents;
    }
    
    .cta-heading {
        order: 3;
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .cta-button {
        order: 4;
        margin-bottom: 12px;
        padding: 12px 28px;
    }
    
    .products-toggle {
        order:  5;
        margin-bottom: 20px;
    }
    
    .social-links {
        order: 6;
        justify-content: center;
    }
    
    .drawer-content {
        padding:  12px 16px 16px;
    }
    
    .category-tabs {
        padding-bottom: 12px;
        gap: 8px;
    }
    
    .category-tab {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .products-wrapper {
        padding: 0 50px;
    }
    
    .product-card {
        padding: 12px;
    }
    
    .product-card h4 {
        font-size: 0.95rem;
    }
    
    .product-card p {
        font-size: 0.75rem;
    }
    
    .scroll-arrow {
        width: 40px;
        height:  40px;
    }
    
    .scroll-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .scroll-progress {
        margin-top: 12px;
    }
    
    .radio-label {
        min-height: 48px;
        font-size: 0.85rem;
        padding: var(--space-sm);
    }
    
    .radio-grid.three-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   18.RESPONSIVE - SMALL MOBILE
   ============================================ */
@media (max-width:  480px) {
    :root {
        --drawer-peek: 46px;
        --product-gap: 10px;
        --card-width:  130px;
    }
    
    .landing-container {
        padding: 30px 20px;
        padding-bottom: calc(30px + var(--drawer-peek));
    }
    
    .logo {
        height: 80px;
    }
    
    .tagline {
        font-size: 0.95rem;
        margin-bottom: 80px;
    }
    
    .cta-heading {
        font-size: 0.85rem;
    }
    
    .cta-button {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
    
    .handle-text {
        font-size: 0.6rem;
    }
    
    .drawer-content {
        padding: 10px 12px 14px;
    }
    
    .category-tab {
        padding:  6px 12px;
        font-size: 0.75rem;
    }
    
    .products-wrapper {
        padding:  0 45px;
    }
    
    .product-card h4 {
        font-size: 0.85rem;
    }
    
    .product-card p {
        font-size: 0.7rem;
    }
    
    .scroll-arrow {
        width: 36px;
        height: 36px;
    }
    
    .scroll-arrow svg {
        width: 16px;
        height:  16px;
    }
    
    .radio-label {
        min-height: 44px;
        font-size: 0.8rem;
        padding: var(--space-xs) var(--space-sm);
    }
}

/* ============================================
   19.TOUCH DEVICES
   ============================================ */
@media (hover: none) and (pointer: coarse) {
    .cursor-dot,
    .cursor-ring {
        display: none ! important;
    }
    
    .product-card:hover {
        transform: none;
    }
    
    .scroll-arrow:hover:not(:disabled) {
        transform: translateY(-50%);
    }
}

/* ============================================
   20.ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration:  0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    
    .video-background video {
        display: none;
    }
    
    .cursor-dot, .cursor-ring {
        display: none;
    }
}

:focus-visible {
    outline: 2px solid var(--color-sage-green);
    outline-offset:  3px;
}


/* ============================================
   CHECKBOX STYLES
   ============================================ */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    /* FIXED: Make all rows same height */
    grid-auto-rows: 1fr;
}

.checkbox-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.checkbox-option {
    position: relative;
    cursor:  pointer;
    /* FIXED: Stretch to fill grid cell */
    display: flex;
    min-height: 0;
}

.checkbox-option input[type="checkbox"] {
    position:  absolute;
    opacity: 0;
    cursor: pointer;
}

/* FIXED: Equal height checkbox labels */
.checkbox-label {
    display: flex;
    align-items:  center;
    justify-content: center;
    /* FIXED: Fill entire cell */
    width: 100%;
    height: 100%;
    min-height:  56px;
    font-family:  var(--font-body);
    font-size: 0.9rem;
    color: var(--color-dark-brown);
    background-color: var(--color-warm-white);
    border: 1.5px solid var(--color-light-gray);
    padding: var(--space-sm) var(--space-md);
    border-radius:  var(--radius-md);
    text-align: center;
    transition: all var(--transition-fast);
    line-height: 1.3;
}

.checkbox-option:hover .checkbox-label {
    border-color: var(--color-sage-green);
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-label {
    background-color: var(--color-olive-green);
    border-color: var(--color-olive-green);
    color: var(--color-text-light);
}

/* Hint text */
.hint {
    font-weight: 400;
    font-size: 0.7rem;
    color: var(--color-dusty-blue);
    text-transform: none;
    letter-spacing: 0;
}

/* ============================================
   FORM SUCCESS MESSAGE
   ============================================ */
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-2xl);
    min-height: 400px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background:  var(--color-sage-green);
    border-radius: 50%;
    display:  flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.success-icon svg {
    color: var(--color-off-white);
    width: 40px;
    height: 40px;
}

.success-title {
    font-family: var(--font-title);
    font-size: 2rem;
    color:  var(--color-dark-brown);
    margin-bottom: var(--space-md);
}

.success-message {
    font-family: var(--font-body);
    font-size: 1rem;
    color:  var(--color-dusty-blue);
    line-height: 1.6;
    max-width: 320px;
    margin-bottom: var(--space-xl);
}

.success-button {
    font-family: var(--font-title);
    font-size: 1rem;
    color: var(--color-text-light);
    background-color: var(--color-dark-brown);
    border: 2px solid var(--color-dark-brown);
    padding: var(--space-md) var(--space-2xl);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
}

.success-button:hover {
    background-color: var(--color-olive-green);
    border-color: var(--color-olive-green);
    transform: translateY(-2px);
}

/* Responsive checkbox grid */
@media (max-width: 768px) {
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .checkbox-grid.three-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .checkbox-grid.three-col {
        grid-template-columns: 1fr;
    }
}



.campaign-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(174, 182, 138, 0.15); /* sage-green at 15% */
    border: 1px solid rgba(174, 182, 138, 0.3);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-sage-green);
    margin-bottom: var(--space-md);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--color-sage-green);
    border-radius: 50%;
    animation: badgePulse 2s ease infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ============================================
   CAMPAIGN BADGE — append to end of styles.css
   ============================================ */

.campaign-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(174, 182, 138, 0.15);
    border: 1px solid rgba(174, 182, 138, 0.3);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-sage-green);
    margin-bottom: var(--space-md);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--color-sage-green);
    border-radius: 50%;
    animation: badgePulse 2s ease infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ============================================
   CAMPAIGN BADGE — white, with ordinal styling
   ============================================ */

.campaign-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(254, 252, 248, 0.12);
    border: 1px solid rgba(254, 252, 248, 0.25);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-light);
    opacity: 0.9;
    margin-bottom: var(--space-md);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--color-text-light);
    border-radius: 50%;
    animation: badgePulse 2s ease infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.ordinal {
    font-size: 0.7em;
    vertical-align: super;
    line-height: 0;
    letter-spacing: 0.02em;
    margin-left: -0.1em;
    margin-right: 0.05em;
}

.ordinal-dark {
    font-size: 0.7em;
    vertical-align: super;
    line-height: 0;
    margin-left: -0.1em;
    margin-right: 0.05em;
}

/* ============================================
   EVENT INFO — inside modal, above form
   ============================================ */

.event-info {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.event-presenters {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--color-olive-green);
    letter-spacing: 0.03em;
    /* NOT uppercase — only S H L S & S T are capitals (handled in HTML) */
    text-transform: none;
    margin-bottom: 2px;
}

.event-present-label {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--color-olive-green);
    opacity: 0.6;
    margin-bottom: var(--space-sm);
}

.event-title {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-dark-brown);
    line-height: 1.2;
    margin-bottom: 4px;
    padding-right: 0;
}

.event-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-tan);
    letter-spacing: 0.04em;
    margin-bottom: var(--space-lg);
}

.event-divider {
    width: 48px;
    height: 2px;
    background: var(--color-light-gray);
    margin: var(--space-lg) auto;
    border-radius: var(--radius-full);
}

.event-description {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-dark-brown);
    line-height: 1.7;
    max-width: 460px;
    margin: 0 auto var(--space-md);
    opacity: 0.85;
}

.event-details-card {
    background: var(--color-warm-white);
    border: 1.5px solid var(--color-light-gray);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: var(--space-lg) auto;
    max-width: 320px;
    text-align: left;
}

.event-details-heading {
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-dark-brown);
    margin-bottom: var(--space-md);
    text-align: center;
}

.event-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: var(--space-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-dark-brown);
    line-height: 1.5;
}

.event-detail-row:last-child {
    margin-bottom: 0;
}

.event-detail-row svg {
    flex-shrink: 0;
    color: var(--color-olive-green);
    margin-top: 2px;
}

.event-closing {
    font-family: var(--font-accent);
    font-size: 1.05rem;
    color: var(--color-olive-green);
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
    opacity: 0.9;
}

/* ============================================
   RESPONSIVE — event info
   ============================================ */

@media (max-width: 768px) {
    .event-title {
        font-size: 1.6rem;
    }

    .event-description {
        font-size: 0.85rem;
    }

    .event-details-card {
        max-width: 100%;
    }

    .event-closing {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .event-title {
        font-size: 1.4rem;
    }

    .event-presenters {
        font-size: 0.7rem;
    }

    .event-description {
        font-size: 0.8rem;
    }
}