/* ==========================================================================
   Liquid Assets Distributing - Main Stylesheet
   Colors derived from logo: navy blue + orange
   ========================================================================== */

/* ---------- Custom Properties ---------- */
:root {
    --navy:       #0b1d3a;
    --navy-mid:   #132d54;
    --blue:       #1a4a8a;
    --blue-light: #2563a8;
    --accent:     #e67e22;
    --accent-dark:#c96b15;
    --accent-glow: rgba(230,126,34,.15);
    --white:      #ffffff;
    --off-white:  #f4f6f9;
    --gray-50:    #f8f9fa;
    --gray-100:   #eef1f5;
    --gray-200:   #dde2ea;
    --gray-300:   #c4ccd8;
    --gray-500:   #6b7a90;
    --gray-700:   #3a4555;
    --gray-900:   #1a2332;
    --text:       #2c3444;
    --text-light: #5a6577;
    --radius:     10px;
    --radius-lg:  16px;
    --shadow-sm:  0 1px 3px rgba(11,29,58,.08);
    --shadow:     0 4px 20px rgba(11,29,58,.10);
    --shadow-lg:  0 12px 40px rgba(11,29,58,.14);
    --font-heading: 'Montserrat', sans-serif;
    --font-body:    'Open Sans', sans-serif;
    --header-h:   76px;
    --topbar-h:   40px;
    --transition:  .3s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + var(--topbar-h) + 20px); overflow-x: hidden; }
body { overflow-x: hidden; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
ul { list-style: none; }
address { font-style: normal; }

/* ---------- Utility ---------- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-accent { color: var(--accent); }
.icon { width: 18px; height: 18px; vertical-align: middle; flex-shrink: 0; }
.nav-icon { width: 16px; height: 16px; flex-shrink: 0; opacity: .55; transition: opacity var(--transition); }
.site-nav__list a:hover .nav-icon,
.site-nav__list a.active .nav-icon { opacity: 1; color: var(--accent); }
.req { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: 8px;
    font-family: var(--font-heading); font-weight: 600; font-size: .95rem;
    text-decoration: none; border: 2px solid transparent;
    cursor: pointer; transition: all var(--transition);
    white-space: nowrap;
}
.btn--primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: var(--white); }
.btn--accent { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn--accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: var(--white); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--gray-300); }
.btn--outline:hover { border-color: var(--navy); color: var(--navy); }
.btn--white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn--white:hover { background: var(--off-white); color: var(--accent); }
.btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn--outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); color: var(--white); }
.btn--lg { padding: 14px 32px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ---------- Age Gate ---------- */
.age-gate {
    position: fixed; inset: 0; z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    opacity: 1; transition: opacity .4s ease;
}
.age-gate.hidden { opacity: 0; pointer-events: none; }
.age-gate__backdrop { position: absolute; inset: 0; background: rgba(11,29,58,.92); backdrop-filter: blur(8px); }
.age-gate__box {
    position: relative; background: var(--white);
    padding: 48px 40px; border-radius: var(--radius-lg);
    text-align: center; max-width: 440px; width: 90%;
    box-shadow: var(--shadow-lg);
}
.age-gate__logo { height: 64px; margin: 0 auto 8px; width: auto; }
.age-gate__brand { font-family: var(--font-heading); font-weight: 800; font-size: 1.1rem; color: var(--navy); margin-bottom: 20px; }
.age-gate__box h2 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 8px; color: var(--navy); }
.age-gate__box p { color: var(--text-light); margin-bottom: 28px; }
.age-gate__buttons { display: flex; gap: 12px; justify-content: center; }
.age-gate__buttons .btn { min-width: 140px; justify-content: center; }

/* ---------- Top Bar ---------- */
.top-bar {
    background: var(--navy);
    color: rgba(255,255,255,.7);
    font-size: .82rem;
    height: var(--topbar-h);
    display: flex; align-items: center;
    max-width: 100vw;
    box-sizing: border-box;
}
.top-bar__inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar__address { display: flex; align-items: center; gap: 6px; }
.top-bar__phone { display: flex; align-items: center; gap: 6px; color: var(--accent); font-weight: 600; }
.top-bar__phone:hover { color: var(--white); }
.top-bar .icon { width: 14px; height: 14px; }

/* ---------- Site Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: var(--white);
    height: var(--header-h);
    box-shadow: var(--shadow-sm);
    display: flex; align-items: center;
    transition: box-shadow var(--transition);
    max-width: 100vw;
    box-sizing: border-box;
}
.site-header.scrolled { box-shadow: var(--shadow); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; min-width: 0; }
.site-header__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; margin-right: 16px; }
.site-header__logo img { height: 40px; width: auto; }
.site-header__name {
    font-family: var(--font-heading); font-weight: 800; font-size: 1.05rem;
    color: var(--navy); line-height: 1.2; white-space: nowrap;
}
.site-nav__list { display: flex; gap: 1px; }
.site-nav__list a {
    display: flex; align-items: center; gap: 5px;
    padding: 7px 10px; border-radius: 6px;
    font-family: var(--font-heading); font-weight: 600; font-size: .82rem;
    color: var(--gray-700); transition: all var(--transition);
    white-space: nowrap;
}
.site-nav__list a:hover,
.site-nav__list a.active {
    color: var(--accent); background: var(--accent-glow);
}
.site-header__cta { margin-left: 12px; padding: 10px 18px; font-size: .85rem; }

/* Hamburger */
.hamburger {
    display: none; background: none; border: none; cursor: pointer;
    width: 36px; height: 36px; position: relative; z-index: 1001;
}
.hamburger span {
    display: block; width: 24px; height: 2.5px; background: var(--navy);
    border-radius: 2px; position: absolute; left: 6px;
    transition: all .25s ease;
}
.hamburger span:nth-child(1) { top: 9px; }
.hamburger span:nth-child(2) { top: 17px; }
.hamburger span:nth-child(3) { top: 25px; }
.hamburger.open span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--blue) 100%);
    padding: 100px 0 110px;
    overflow: hidden;
    color: var(--white);
}
.hero__overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(230,126,34,.15) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(26,74,138,.3) 0%, transparent 50%);
}
.hero::before {
    content: '';
    position: absolute; top: -60%; right: -20%;
    width: 800px; height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230,126,34,.08) 0%, transparent 70%);
}
.hero__inner { position: relative; z-index: 1; max-width: 720px; }
.hero__badge {
    display: inline-block; padding: 6px 16px; border-radius: 100px;
    background: rgba(230,126,34,.15); color: var(--accent);
    font-family: var(--font-heading); font-weight: 600; font-size: .8rem;
    text-transform: uppercase; letter-spacing: .06em;
    margin-bottom: 20px;
}
.hero h1 {
    font-family: var(--font-heading); font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800; line-height: 1.15; margin-bottom: 20px;
}
.hero__lead { font-size: 1.15rem; line-height: 1.7; color: rgba(255,255,255,.8); margin-bottom: 32px; max-width: 600px; }
.hero__lead strong { color: var(--white); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Stats Bar ---------- */
.stats-bar {
    background: var(--white);
    margin-top: -44px;
    position: relative; z-index: 2;
}
.stats-bar__grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 32px 16px;
    text-align: center;
}
.stat__number {
    font-family: var(--font-heading); font-size: 2.6rem; font-weight: 800;
    color: var(--navy);
    display: inline;
}
.stat__plus { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: var(--accent); }
.stat__label { display: block; font-size: .85rem; color: var(--text-light); margin-top: 4px; font-weight: 500; }

/* ---------- Section ---------- */
.section { padding: 90px 0; }
.section--light { background: var(--off-white); }
.section--dark { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); color: var(--white); }
.section__header { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section__eyebrow {
    display: inline-block; font-family: var(--font-heading); font-weight: 700;
    font-size: .78rem; text-transform: uppercase; letter-spacing: .08em;
    color: var(--accent); margin-bottom: 10px;
}
.section__eyebrow--light { color: var(--accent); }
.section__header h2 {
    font-family: var(--font-heading); font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 14px;
}
.section--dark .section__header h2 { color: var(--white); }
.section__sub { color: var(--text-light); font-size: 1.05rem; }
.section--dark .section__sub { color: rgba(255,255,255,.7); }

/* ---------- Cards ---------- */
.card-grid { display: grid; gap: 24px; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 36px 30px; box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--gray-200); }
.card h3 { font-family: var(--font-heading); font-size: 1.2rem; margin: 16px 0 10px; color: var(--navy); }
.card p { color: var(--text-light); font-size: .95rem; line-height: 1.65; }
.card--centered { text-align: center; }
.card--cta { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); color: var(--white); border: none; }
.card--cta:hover { transform: translateY(-4px); }
.card--cta h3 { color: var(--white); }
.card--cta p { color: rgba(255,255,255,.8); margin-bottom: 20px; }

/* Card icons */
.card__icon {
    width: 60px; height: 60px; color: var(--blue);
}
.card__icon--wine { color: #8b2252; }
.card__icon--spirits { color: var(--accent); }
.card__icon--supplies { color: var(--blue-light); }
.card__icon--coffee { color: #6b4423; }
.card__icon--delivery { color: var(--accent); }
.card--cta .card__icon--delivery { color: var(--accent); }

.card__icon-circle {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--accent-glow);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto;
}
.card__icon-circle svg { width: 26px; height: 26px; }

/* ---------- About Preview ---------- */
.about-preview__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: center; }
.about-preview__content p { color: rgba(255,255,255,.75); margin-bottom: 18px; font-size: 1.05rem; }
.about-preview__content .btn { margin-top: 10px; }
.about-preview__visual { display: flex; justify-content: center; }
.about-preview__card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 48px 40px; text-align: center;
    backdrop-filter: blur(10px);
}
.about-preview__stat {
    font-family: var(--font-heading); font-size: 4rem; font-weight: 800;
    color: var(--accent);
}
.about-preview__stat-label { font-size: 1rem; color: rgba(255,255,255,.6); margin-top: 8px; }

/* ---------- CTA Banner ---------- */
.cta-banner {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    padding: 56px 0; color: var(--white);
}
.cta-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-banner__text h2 { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; }
.cta-banner__text p { color: rgba(255,255,255,.85); margin-top: 6px; }
.cta-banner__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Page Hero ---------- */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--blue) 100%);
    padding: 70px 0 60px; color: var(--white);
}
.page-hero__eyebrow {
    display: inline-block; font-family: var(--font-heading); font-weight: 700;
    font-size: .78rem; text-transform: uppercase; letter-spacing: .08em;
    color: var(--accent); margin-bottom: 12px;
}
.page-hero h1 {
    font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800; line-height: 1.2; margin-bottom: 14px;
}
.page-hero__sub { font-size: 1.1rem; color: rgba(255,255,255,.75); max-width: 600px; }

/* ---------- Content Grid (About) ---------- */
.content-grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: 48px; align-items: start; }
.content-grid__text h2 { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; color: var(--navy); margin-bottom: 18px; }
.content-grid__text p { margin-bottom: 16px; }
.content-grid__text p strong { color: var(--navy); }

.info-card {
    background: var(--off-white); border-radius: var(--radius-lg);
    padding: 32px; border: 1px solid var(--gray-100);
}
.info-card h4 { font-family: var(--font-heading); font-size: 1rem; color: var(--navy); margin-bottom: 18px; }
.info-card__list { display: grid; gap: 14px; }
.info-card__list dt { font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-light); font-weight: 600; }
.info-card__list dd { font-weight: 600; color: var(--navy); margin-bottom: 4px; }

/* ---------- Area Tags ---------- */
.area-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 700px; margin: 0 auto; }
.area-tag {
    padding: 10px 22px; border-radius: 100px;
    background: var(--white); border: 1px solid var(--gray-200);
    font-family: var(--font-heading); font-weight: 600; font-size: .9rem;
    color: var(--navy);
    transition: all var(--transition);
}
.area-tag:hover { border-color: var(--accent); color: var(--accent); }
.area-tag--more { background: var(--accent); color: var(--white); border-color: var(--accent); }

/* ---------- Products ---------- */
.product-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-100);
}
.product-section:last-child { border-bottom: none; }
.product-section__header { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; }
.product-section__icon { width: 56px; height: 56px; flex-shrink: 0; color: var(--blue); }
.product-section__icon--wine { color: #8b2252; }
.product-section__icon--spirits { color: var(--accent); }
.product-section__icon--supplies { color: var(--blue-light); }
.product-section__icon--coffee { color: #6b4423; }
.product-section__header h3 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--navy); margin-bottom: 4px; }
.product-section__header p { color: var(--text-light); font-size: .95rem; }

.product-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.product-tags span {
    padding: 8px 18px; border-radius: 100px;
    background: var(--off-white); border: 1px solid var(--gray-200);
    font-size: .88rem; color: var(--gray-700); font-weight: 500;
    transition: all var(--transition);
}
.product-tags span:hover { background: var(--accent-glow); border-color: var(--accent); color: var(--accent); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: start; }
.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); border: 1px solid var(--gray-100); }
.contact-form h3 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--navy); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: .88rem; color: var(--navy); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 12px 16px; border-radius: 8px;
    border: 1.5px solid var(--gray-200);
    font-family: var(--font-body); font-size: .95rem;
    color: var(--text); background: var(--white);
    transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-group input[type="date"],
.form-group input[type="time"] { min-width: 0; }

/* Alerts */
.alert { display: flex; gap: 14px; padding: 18px 22px; border-radius: var(--radius); margin-bottom: 24px; }
.alert .icon { width: 24px; height: 24px; flex-shrink: 0; margin-top: 2px; }
.alert strong { display: block; margin-bottom: 4px; }
.alert p { font-size: .9rem; margin: 0; }
.alert--success { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
.alert--success .icon { color: #10b981; }
.alert--error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.alert--error .icon { color: #ef4444; }

/* Contact sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
    background: var(--off-white); border-radius: var(--radius-lg);
    padding: 28px; border: 1px solid var(--gray-100);
}
.contact-card h4 { font-family: var(--font-heading); font-size: 1.05rem; color: var(--navy); margin-bottom: 18px; }
.contact-card__item { display: flex; gap: 14px; margin-bottom: 18px; }
.contact-card__item:last-child { margin-bottom: 0; }
.contact-card__item .icon { width: 20px; height: 20px; color: var(--accent); margin-top: 3px; }
.contact-card__item strong { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; color: var(--text-light); font-weight: 600; margin-bottom: 2px; }
.contact-card__item a { color: var(--navy); font-weight: 600; }
.contact-card__item a:hover { color: var(--accent); }
.contact-card--accent { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: var(--white); border: none; text-align: center; }
.contact-card--accent h4 { color: var(--white); }
.contact-card--accent p { color: rgba(255,255,255,.75); margin-bottom: 18px; }

/* ---------- Dual CTA (New vs Existing) ---------- */
.dual-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.dual-cta__card {
    border-radius: var(--radius-lg); padding: 44px 36px;
    border: 1px solid var(--gray-100);
}
.dual-cta__card--new {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    color: var(--white); border: none;
}
.dual-cta__card--existing {
    background: var(--white); box-shadow: var(--shadow);
}
.dual-cta__badge {
    display: inline-block; padding: 4px 14px; border-radius: 100px;
    font-family: var(--font-heading); font-weight: 700; font-size: .75rem;
    text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px;
}
.dual-cta__card--new .dual-cta__badge { background: rgba(230,126,34,.2); color: var(--accent); }
.dual-cta__card--existing .dual-cta__badge { background: var(--accent-glow); color: var(--accent); }
.dual-cta__card h2 { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; margin-bottom: 12px; }
.dual-cta__card--new h2 { color: var(--white); }
.dual-cta__card--existing h2 { color: var(--navy); }
.dual-cta__card p { margin-bottom: 20px; line-height: 1.6; }
.dual-cta__card--new p { color: rgba(255,255,255,.75); }
.dual-cta__card--existing p { color: var(--text-light); }
.dual-cta__list { margin-bottom: 24px; }
.dual-cta__list li {
    display: flex; align-items: center; gap: 10px;
    padding: 6px 0; font-weight: 500; font-size: .95rem;
}
.dual-cta__card--new .dual-cta__list li { color: rgba(255,255,255,.85); }
.dual-cta__card--new .dual-cta__list .icon { color: var(--accent); }
.dual-cta__card--existing .dual-cta__list li { color: var(--gray-700); }
.dual-cta__card--existing .dual-cta__list .icon { color: var(--accent); }

/* ---------- Hero Trust Bar ---------- */
.hero__trust {
    display: flex; flex-wrap: wrap; gap: 20px; margin-top: 28px;
    padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12);
}
.hero__trust span {
    display: flex; align-items: center; gap: 7px;
    font-size: .85rem; color: rgba(255,255,255,.55); font-weight: 500;
}
.hero__trust .icon { width: 15px; height: 15px; color: var(--accent); opacity: .8; }

/* ---------- FAQ Teaser Grid ---------- */
.faq-teaser-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.faq-teaser {
    background: var(--white); border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg); padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.faq-teaser:hover { box-shadow: var(--shadow); border-color: var(--gray-200); }
.faq-teaser h4 { font-family: var(--font-heading); font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.faq-teaser p { color: var(--text-light); font-size: .92rem; line-height: 1.6; margin: 0; }
.faq-teaser a { color: var(--accent); font-weight: 600; }

/* ---------- Info Bar ---------- */
.info-bar { background: var(--off-white); border-bottom: 1px solid var(--gray-100); padding: 18px 0; }
.info-bar--muted { background: var(--gray-50); }
.info-bar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.info-bar__grid--2 { grid-template-columns: repeat(2, 1fr); }
.info-bar__item { display: flex; align-items: center; gap: 12px; }
.info-bar__item .icon { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.info-bar__item strong { display: block; font-size: .82rem; color: var(--text-light); font-weight: 600; }
.info-bar__item span { font-size: .88rem; color: var(--navy); font-weight: 600; }
.info-bar__link {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 20px; border-radius: var(--radius);
    background: var(--white); border: 1px solid var(--gray-200);
    text-decoration: none; transition: all var(--transition);
}
.info-bar__link:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.info-bar__link .icon { width: 24px; height: 24px; color: var(--accent); }
.info-bar__link strong { display: block; color: var(--navy); font-size: .95rem; }
.info-bar__link span { color: var(--accent); font-size: .85rem; font-weight: 600; }

/* ---------- Steps Bar ---------- */
.steps-bar { display: flex; align-items: flex-start; justify-content: center; gap: 8px; }
.step { text-align: center; flex: 1; max-width: 260px; }
.step__num {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--accent); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-weight: 800; font-size: 1.2rem;
    margin: 0 auto 14px;
}
.step h4 { font-family: var(--font-heading); font-size: 1rem; color: var(--navy); margin-bottom: 6px; }
.step p { font-size: .88rem; color: var(--text-light); line-height: 1.5; }
.step__arrow { display: flex; align-items: center; padding-top: 14px; color: var(--gray-300); }
.step__arrow svg { width: 24px; height: 24px; }

/* ---------- Application Form ---------- */
.app-form { max-width: 100%; }
.form-section {
    border: 1px solid var(--gray-100); border-radius: var(--radius-lg);
    padding: 28px 28px 10px; margin-bottom: 24px;
    background: var(--white);
}
.form-section legend {
    font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem;
    color: var(--navy); padding: 0 8px;
}
.form-section__note {
    font-size: .88rem; color: var(--text-light); margin-bottom: 18px;
    padding: 10px 14px; background: var(--gray-50); border-radius: 8px;
    border-left: 3px solid var(--accent);
}
.form-row--3 { grid-template-columns: 2fr 1fr 1fr; }
.checkbox-label {
    display: flex; align-items: center; gap: 8px; cursor: pointer;
    font-size: .92rem; font-weight: 500; color: var(--gray-700);
}
.checkbox-label input[type="checkbox"] {
    width: 18px; height: 18px; accent-color: var(--accent); cursor: pointer;
}
.checkbox-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px;
}
.form-submit { margin-top: 8px; }
.form-submit__note { text-align: center; font-size: .85rem; color: var(--text-light); margin-top: 14px; }
.form-submit__note a { color: var(--accent); font-weight: 600; }

.order-note {
    background: var(--accent-glow); border: 1px solid rgba(230,126,34,.25);
    border-radius: var(--radius); padding: 14px 20px; margin-bottom: 24px;
    font-size: .92rem;
}
.order-note a { color: var(--accent); font-weight: 600; }

.alert--big { padding: 28px; }
.alert--big .icon { width: 32px; height: 32px; }
.alert--big strong { font-size: 1.1rem; margin-bottom: 8px; }
.alert--big p { font-size: .95rem; }
.alert--big a { color: inherit; font-weight: 600; text-decoration: underline; }

/* ---------- FAQ Page ---------- */
.faq-group { margin-bottom: 40px; }
.faq-group__title {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700;
    color: var(--navy); padding-bottom: 14px;
    border-bottom: 2px solid var(--gray-100); margin-bottom: 8px;
}
.faq-group__title .icon { width: 22px; height: 22px; color: var(--accent); }
.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-item__q {
    width: 100%; background: none; border: none; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 4px; text-align: left;
    font-family: var(--font-heading); font-weight: 600; font-size: 1rem;
    color: var(--navy); gap: 16px;
    transition: color var(--transition);
}
.faq-item__q:hover { color: var(--accent); }
.faq-item__chevron {
    width: 20px; height: 20px; flex-shrink: 0;
    transition: transform .25s ease; color: var(--gray-500);
}
.faq-item__q[aria-expanded="true"] .faq-item__chevron { transform: rotate(180deg); color: var(--accent); }
.faq-item__a {
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 4px;
}
.faq-item__a.open { max-height: 600px; padding: 0 4px 20px; }
.faq-item__a p { margin-bottom: 10px; color: var(--text); line-height: 1.7; }
.faq-item__a p:last-child { margin-bottom: 0; }
.faq-item__a ul { margin: 8px 0 8px 24px; list-style: disc; }
.faq-item__a ul li { margin-bottom: 6px; color: var(--text); }
.faq-item__a a { color: var(--accent); font-weight: 600; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 6px 0; border-bottom: 1px solid var(--gray-100); font-size: .92rem; }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--navy); }

.faq-cta {
    text-align: center; padding: 40px;
    background: var(--off-white); border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100); margin-top: 20px;
}
.faq-cta h3 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--navy); margin-bottom: 8px; }
.faq-cta p { color: var(--text-light); margin-bottom: 20px; }
.faq-cta__actions { display: flex; gap: 12px; justify-content: center; }

/* ---------- Footer Hours ---------- */
.footer-hours li {
    display: flex; justify-content: space-between; gap: 8px;
    font-size: .85rem; margin-bottom: 4px;
}
.footer-hours li span:last-child { color: rgba(255,255,255,.8); font-weight: 600; }

/* ---------- Mobile Nav Extras ---------- */
.site-nav__mobile-extras { display: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__brand-name { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: 10px; line-height: 1.3; }
.footer__tagline { font-style: italic; font-size: .9rem; margin-bottom: 6px; color: rgba(255,255,255,.5); }
.footer__founded { font-size: .82rem; color: rgba(255,255,255,.4); }
.footer-col h4 { font-family: var(--font-heading); font-size: .9rem; color: var(--white); margin-bottom: 18px; text-transform: uppercase; letter-spacing: .06em; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-col address p { display: flex; gap: 10px; margin-bottom: 12px; font-size: .9rem; }
.footer-col address .icon { width: 16px; height: 16px; color: var(--accent); margin-top: 3px; }
.footer-col address a { color: rgba(255,255,255,.7); }
.footer-col address a:hover { color: var(--accent); }

.footer-bottom { padding: 24px 0; text-align: center; font-size: .82rem; color: rgba(255,255,255,.4); }
.footer-bottom__note { margin-top: 4px; }
.footer-bottom__legal { margin-top: 8px; }
.footer-bottom__legal a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.footer-bottom__legal a:hover { color: var(--accent); }
.footer-bottom__legal span { margin: 0 6px; color: rgba(255,255,255,.3); }

/* ---------- Full Catalog Mode ---------- */
.catalog-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.catalog-pill {
    padding: 8px 20px; border-radius: 100px;
    background: var(--white); border: 1.5px solid var(--gray-200);
    font-family: var(--font-heading); font-weight: 600; font-size: .85rem;
    color: var(--gray-700); text-decoration: none;
    transition: all var(--transition);
}
.catalog-pill:hover { border-color: var(--accent); color: var(--accent); }
.catalog-pill.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.prod-card {
    background: var(--white); border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: all var(--transition); display: flex; flex-direction: column;
}
.prod-card:hover { box-shadow: var(--shadow); border-color: var(--gray-200); transform: translateY(-2px); }
.prod-card--featured { border-color: rgba(230,126,34,.3); }
.prod-card__img { height: 160px; overflow: hidden; background: var(--gray-50); display: flex; align-items: center; justify-content: center; }
.prod-card__img img { width: 100%; height: 100%; object-fit: cover; }
.prod-card__img--placeholder { color: var(--gray-300); }
.prod-card__img--placeholder svg { width: 48px; height: 48px; }
.prod-card__body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.prod-card__name { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.prod-card__size { font-size: .78rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: .03em; margin-bottom: 8px; }
.prod-card__desc { font-size: .88rem; color: var(--text-light); line-height: 1.5; flex: 1; }
.prod-card__badge {
    display: inline-block; margin-top: 10px; padding: 3px 12px;
    background: rgba(230,126,34,.1); color: var(--accent-dark);
    font-size: .72rem; font-weight: 700; text-transform: uppercase;
    border-radius: 100px; align-self: flex-start;
}

/* ---------- Customer Portal ---------- */
.order-card { border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 18px 20px; margin-bottom: 14px; transition: border-color var(--transition); }
.order-card:hover { border-color: var(--gray-200); }
.order-card__header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 10px; }
.order-card__header strong { font-family: var(--font-heading); color: var(--navy); font-size: .95rem; }
.order-card__date { display: block; font-size: .82rem; color: var(--text-light); margin-top: 2px; }
.order-card__status { font-size: .72rem; font-weight: 700; text-transform: uppercase; padding: 3px 10px; border-radius: 100px; white-space: nowrap; }
.order-card__status--received { background: rgba(230,126,34,.12); color: var(--accent-dark); }
.order-card__status--reviewing { background: rgba(59,130,246,.12); color: #1d4ed8; }
.order-card__status--scheduled { background: rgba(139,92,246,.12); color: #6d28d9; }
.order-card__status--packed { background: rgba(20,184,166,.12); color: #0f766e; }
.order-card__status--delivered { background: rgba(16,185,129,.12); color: #065f46; }
.order-card__status--closed { background: var(--gray-100); color: var(--gray-500); }
.order-card__details { font-size: .88rem; color: var(--text-light); line-height: 1.5; white-space: pre-line; }
.order-card__delivery { font-size: .82rem; color: var(--navy); font-weight: 600; margin-top: 8px; }

/* ---------- Legal Pages ---------- */
.legal-content { max-width: 780px; }
.legal-content h2 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--navy); margin: 32px 0 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 14px; line-height: 1.7; }
.legal-content ul { margin: 0 0 14px 24px; list-style: disc; }
.legal-content ul li { margin-bottom: 6px; line-height: 1.6; }
.legal-content a { color: var(--accent); font-weight: 600; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
    .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .about-preview__grid { grid-template-columns: 1fr; gap: 40px; }
    .content-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .dual-cta { grid-template-columns: 1fr; }
    .info-bar__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
    :root { --header-h: 64px; --topbar-h: 0px; }
    .top-bar { display: none; }
    .site-header__logo img { height: 38px; }
    .site-header__name { font-size: .9rem; }
    .site-header__cta { display: none; }
    .hamburger { display: block; }

    .site-nav {
        position: fixed; inset: 0; z-index: 999;
        background: var(--white);
        display: flex; flex-direction: column; align-items: center; justify-content: center;
        opacity: 0; pointer-events: none;
        transition: opacity .3s ease;
    }
    .site-nav.open { opacity: 1; pointer-events: all; }
    .site-nav__list { flex-direction: column; align-items: center; gap: 4px; }
    .site-nav__list a { font-size: 1.15rem; padding: 10px 24px; }
    .site-nav__mobile-extras { display: block; text-align: center; margin-top: 20px; padding: 0 24px; }
    .site-nav__mobile-hours { font-size: .8rem; color: var(--text-light); margin-top: 14px; }

    .hero { padding: 60px 0 80px; }
    .hero h1 { font-size: 2rem; }
    .hero__lead { font-size: 1rem; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; justify-content: center; }

    .stats-bar { margin-top: -30px; }
    .stats-bar__grid { grid-template-columns: repeat(2, 1fr); padding: 24px 12px; }
    .stat__number { font-size: 2rem; }

    .section { padding: 60px 0; }
    .card-grid--3 { grid-template-columns: 1fr; }
    .section__header { margin-bottom: 36px; }

    .cta-banner__inner { flex-direction: column; text-align: center; }
    .cta-banner__actions { justify-content: center; width: 100%; }
    .cta-banner__actions .btn { flex: 1; justify-content: center; }

    .page-hero { padding: 48px 0 40px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px 22px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-preview__stat { font-size: 3rem; }

    .product-section__header { flex-direction: column; align-items: flex-start; gap: 12px; }

    .faq-teaser-grid { grid-template-columns: 1fr; }
    .info-bar__grid { grid-template-columns: 1fr; gap: 14px; }
    .info-bar__grid--2 { grid-template-columns: 1fr; }
    .steps-bar { flex-direction: column; align-items: center; }
    .step__arrow { transform: rotate(90deg); padding: 0; }
    .form-row--3 { grid-template-columns: 1fr; }
    .checkbox-grid { grid-template-columns: 1fr 1fr; }
    .faq-cta__actions { flex-direction: column; }
    .faq-cta__actions .btn { width: 100%; justify-content: center; }
    .hero__trust { flex-direction: column; gap: 10px; }

    .top-bar__info { display: flex; gap: 16px; }
    .top-bar__hours { display: none; }
}

@media (max-width: 420px) {
    .age-gate__box { padding: 36px 24px; }
    .age-gate__buttons { flex-direction: column; }
    .age-gate__buttons .btn { width: 100%; justify-content: center; }
}
