/* ===================================
   Cuban Wannabes — Vendor Proposal Style
   =================================== */

/* Design Tokens */
:root {
    --navy: #1B2A4A;
    --navy-light: #243560;
    --gold: #C8963E;
    --gold-light: #D4A76A;
    --cream: #E8D5B7;
    --cream-bg: #F5F0EB;
    --body-text: #3D4555;
    --muted-blue: #8899BB;
    --light-bg: #F7F8FA;
    --white: #FFFFFF;
    --footer-text: #CADCFC;

    --font-heading: 'EB Garamond', Georgia, 'Times New Roman', serif;
    --font-body: Calibri, 'Segoe UI', system-ui, -apple-system, sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.14);

    --radius: 6px;
    --radius-lg: 12px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--body-text);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--gold-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   Age Gate
   =================================== */
.age-gate {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-gate-content {
    text-align: center;
    max-width: 460px;
    padding: 48px 36px;
}

.age-gate-logo {
    width: 200px;
    margin: 0 auto 24px;
}

.age-gate-divider {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 20px;
}

.age-gate-tagline {
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--cream);
    margin-bottom: 32px;
}

.age-gate h1 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.age-gate p {
    color: var(--muted-blue);
    font-size: 15px;
    margin-bottom: 8px;
}

.age-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 32px 0;
}

.btn-enter {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 14px 36px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.btn-enter:hover {
    background: #B5862F;
    transform: translateY(-1px);
}

.btn-exit {
    background: transparent;
    color: var(--muted-blue);
    border: 1px solid var(--muted-blue);
    padding: 14px 36px;
    font-family: var(--font-heading);
    font-size: 16px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.btn-exit:hover {
    border-color: var(--white);
    color: var(--white);
}

.age-disclaimer {
    font-size: 12px !important;
    color: var(--muted-blue) !important;
    margin-top: 16px;
    line-height: 1.5;
}

/* ===================================
   Header
   =================================== */
.header {
    background: var(--navy);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    height: 48px;
    width: auto;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 0;
    position: relative;
    transition: color 0.2s;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav a:hover {
    color: var(--white);
}

.nav a:hover::after {
    width: 100%;
}

/* ===================================
   Hero
   =================================== */
.hero {
    background: var(--navy);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: var(--gold);
    opacity: 0.3;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-family: var(--font-heading);
    color: var(--white);
    line-height: 1;
    margin-bottom: 24px;
}

.hero-title-line {
    display: block;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--cream);
    margin-bottom: 4px;
    line-height: 2;
}

.hero-divider {
    width: 120px;
    height: 3px;
    background: var(--gold);
    margin: 28px 0;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.hero-price {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--muted-blue);
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    padding: 14px 40px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary:hover {
    background: #B5862F;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(200, 150, 62, 0.35);
}

.hero-product-img {
    max-height: 500px;
    margin: 0 auto;
    filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.4));
}

/* ===================================
   Section Headers (navy bar style)
   =================================== */
.section-header {
    background: var(--navy);
    margin: 0 -24px;
    padding: 24px 24px 20px;
    margin-bottom: 48px;
    position: relative;
}

.section-header--dark {
    background: var(--navy);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--cream);
}

/* ===================================
   Story Section
   =================================== */
.story-section {
    padding: 80px 0 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}

.story-heading {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.story-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--body-text);
    margin-bottom: 32px;
}

.features-heading {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
}

.features-list {
    list-style: none;
    margin-bottom: 32px;
}

.features-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--body-text);
}

.features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.7;
}

.flavor-notes {
    background: var(--cream-bg);
    padding: 16px 24px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
}

.flavor-label {
    margin-right: 8px;
}

.story-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
}

/* ===================================
   Cigars Section
   =================================== */
.cigars-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.cigars-heading {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 28px;
}

.cigars-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}

.cigar-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cigar-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s, transform 0.15s;
}

.cigar-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.cigar-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
}

.cigar-name {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.cigar-desc {
    font-size: 14px;
    color: var(--body-text);
    line-height: 1.5;
}

.cigars-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
}

/* ===================================
   Order Section
   =================================== */
.order-section {
    padding: 80px 0;
    background: var(--white);
}

.order-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-section {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid #E8E8E8;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--body-text);
    background: var(--light-bg);
    border: 1px solid #DDD;
    border-radius: var(--radius);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 150, 62, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
}

/* Order Summary */
.order-summary {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: var(--cream);
    padding: 8px 0;
}

.summary-row.total {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 8px;
    padding-top: 16px;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-heading);
}

/* Payment Options */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--light-bg);
    border: 1px solid #DDD;
    border-radius: var(--radius);
    cursor: pointer;
    transition: border-color 0.2s;
    font-size: 15px;
}

.payment-option:hover {
    border-color: var(--gold);
}

.payment-option input[type="radio"] {
    accent-color: var(--gold);
    width: 18px;
    height: 18px;
}

.payment-note {
    font-size: 13px;
    color: var(--muted-blue);
    line-height: 1.5;
}

.btn-large {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    margin-top: 16px;
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--gold);
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.contact-card p {
    font-size: 15px;
    color: var(--body-text);
    margin-bottom: 6px;
    line-height: 1.5;
}

.contact-card a {
    color: var(--gold);
}

.contact-card a:hover {
    color: var(--navy);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--navy);
    padding: 32px 0;
    text-align: center;
}

.footer p {
    font-size: 13px;
    color: var(--footer-text);
    margin-bottom: 8px;
}

.legal-notice {
    font-size: 11px !important;
    color: var(--muted-blue) !important;
    max-width: 600px;
    margin: 12px auto 8px !important;
    line-height: 1.5;
}

.copyright {
    font-size: 12px !important;
    color: var(--muted-blue) !important;
    margin-top: 8px;
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-divider {
        margin: 28px auto;
    }

    .hero-product-img {
        max-height: 360px;
    }

    .story-grid,
    .cigars-grid {
        grid-template-columns: 1fr;
    }

    .story-image,
    .cigars-image {
        order: -1;
    }

    .story-img,
    .cigars-img {
        max-height: 400px;
        margin: 0 auto;
        object-fit: contain;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        margin: 0 -24px;
    }
}

@media (max-width: 600px) {
    .nav {
        gap: 16px;
    }

    .nav a {
        font-size: 12px;
    }

    .logo {
        height: 36px;
    }

    .hero {
        padding: 48px 0;
    }

    .hero-title-line {
        font-size: 40px;
    }

    .age-buttons {
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .age-gate-content {
        padding: 32px 20px;
    }

    .age-gate-logo {
        width: 160px;
    }
}

@media (max-width: 400px) {
    .nav {
        gap: 10px;
    }

    .nav a {
        font-size: 11px;
        letter-spacing: 0;
    }
}
