/* ============================================
   Batch 2460 — Static Site Stylesheet
   ============================================ */

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

:root {
    --bg: #0f0f0f;
    --bg-alt: #1a1a1a;
    --bg-card: #1e1e1e;
    --text: #e8e8e8;
    --text-muted: #9ca3af;
    --amber: #d97706;
    --amber-light: #f59e0b;
    --amber-dark: #b45309;
    --border: #2a2a2a;
    --radius: 12px;
    --radius-sm: 8px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 1200px;
    --nav-height: 64px;
}

html {
    scroll-behavior: smooth;
}

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

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

a:hover {
    color: var(--amber);
}

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 700;
    font-size: 1.2rem;
}

.nav__logo:hover {
    color: var(--text);
}

.nav__logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--amber-dark), var(--amber-light));
    border-radius: var(--radius-sm);
    font-size: 1rem;
    color: #fff;
    font-weight: 800;
}

.nav__links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav__link {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
}

.nav__link:hover {
    color: var(--text);
    background: rgba(255,255,255,0.05);
}

.nav__link--active {
    color: var(--amber-light);
    background: rgba(217, 119, 6, 0.1);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ============================================
   Hero
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(15,15,15,0.55) 0%, rgba(15,15,15,0.7) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero > .container {
    position: relative;
    z-index: 2;
}

.hero--compact {
    min-height: 50vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('/img/grafton-merge.png') center/cover no-repeat;
    filter: saturate(1.1);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(217,119,6,0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ============================================
   Category Navigation (Shop)
   ============================================ */
.cat-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cat-nav__label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-right: 14px;
}

.cat-nav__link {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text);
    transition: all 0.2s;
}

.cat-nav__link:hover {
    border-color: var(--amber-light);
    color: var(--amber-light);
    background: rgba(217,119,6,0.08);
}

.hero__badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(217,119,6,0.1);
    border: 1px solid rgba(217,119,6,0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--amber-light);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero__content {
    max-width: 680px;
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.text-amber {
    color: var(--amber-light);
}

.text-muted-small {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 24px;
}

/* ============================================
   Benefit List
   ============================================ */
.benefit-list {
    list-style: none;
    margin: 24px 0;
}

.benefit-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
    color: var(--text-muted);
    line-height: 1.5;
}

.benefit-list li strong {
    color: var(--text);
}

.benefit-icon {
    flex-shrink: 0;
    font-size: 1rem;
}

/* ============================================
   Custom Order Form
   ============================================ */
.custom-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    margin-top: 24px;
}

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

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--amber-light);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

select.form-input {
    cursor: pointer;
    appearance: auto;
}

@media (max-width: 640px) {
    .custom-form {
        padding: 24px;
    }
}

.hero__subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 540px;
}

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-family: var(--font);
}

.btn--primary {
    background: linear-gradient(135deg, var(--amber-dark), var(--amber-light));
    color: #fff;
}

.btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(217,119,6,0.3);
    color: #fff;
}

.btn--outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}

.btn--outline:hover {
    border-color: var(--amber);
    color: var(--amber-light);
}

.btn--small {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn--lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* ============================================
   Bundle Card
   ============================================ */
.bundle-card {
    background: linear-gradient(135deg, rgba(217,119,6,0.08), rgba(217,119,6,0.02));
    border: 2px solid rgba(217,119,6,0.3);
    border-radius: var(--radius);
    padding: 48px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.bundle-card__img {
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.bundle-card__img img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .bundle-card {
        grid-template-columns: 1fr;
    }
}

.bundle-card__badge {
    position: absolute;
    top: -12px;
    left: 32px;
    padding: 6px 20px;
    background: linear-gradient(135deg, var(--amber-dark), var(--amber-light));
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bundle-card__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.bundle-card__desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 700px;
}

.bundle-card__includes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.bundle-card__includes span {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.bundle-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.bundle-card__price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--amber-light);
    display: block;
}

.bundle-card__compare {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* ============================================
   Swatches / Colour Variants
   ============================================ */
.card__variant-row {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.card__swatch {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text-muted);
}

.swatch-navy { border-color: #1e3a5f; color: #7cb8e4; }
.swatch-sage { border-color: #5a7a6a; color: #a8d5b8; }
.swatch-rose { border-color: #a65a6a; color: #e4b0bf; }
.swatch-purple { border-color: #6a5a8a; color: #b8a0d8; }
.swatch-green { border-color: #3a7a3a; color: #8cc88c; }
.swatch-teal { border-color: #2a7a7a; color: #80c8c0; }
.swatch-warm { border-color: #8a6a3a; color: #d4b080; }
.swatch-mint { border-color: #4a8a7a; color: #90d0b8; }
.swatch-dark { border-color: #3a3a3a; color: #b0b0b0; }
.swatch-forest { border-color: #2a5a3a; color: #80b890; }
.swatch-slate { border-color: #4a5a6a; color: #a0b0c0; }
.swatch-sunset { border-color: #8a5a3a; color: #d4a880; }
.swatch-berry { border-color: #7a3a5a; color: #c880a8; }

.card--muted {
    opacity: 0.6;
}

.card--muted:hover {
    opacity: 1;
    border-color: rgba(217,119,6,0.3);
}

/* ============================================
   Sections
   ============================================ */

.section--alt {
    background: var(--bg-alt);
}
.section {
    padding: 100px 0;
}

.section--dark {
    background: var(--bg-alt);
}

.section--dark .split {
    position: relative;
}

.section--dark .placeholder-img {
    background: var(--bg-card) url('/img/workshop-tools.jpg') center/cover no-repeat;
    border: 1px solid var(--border);
    min-height: 300px;
}

.section--center {
    text-align: center;
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.section__subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Product Grid
   ============================================ */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    position: relative;
    transition: all 0.3s;
}

.card:hover {
    border-color: rgba(217,119,6,0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.card__badge {
    display: inline-block;
    padding: 3px 10px;
    background: linear-gradient(135deg, var(--amber-dark), var(--amber-light));
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card__img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 16px;
}

.card__img--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px dashed var(--border);
}
    background: var(--bg);
}

.card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card__icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.card__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.card__desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.card__features {
    list-style: none;
    margin-bottom: 20px;
}

.card__features li {
    padding: 4px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.card__features li::before {
    content: '✓ ';
    color: var(--amber-light);
}

.card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.card__price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--amber-light);
}

/* ============================================
   Split Layout
   ============================================ */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split__content h2 {
    margin-bottom: 20px;
}

.split__content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.7;
}

.placeholder-img {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    overflow: hidden;
}

.placeholder-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-img--river {
    aspect-ratio: 16/10;
}

.placeholder-img--square {
    aspect-ratio: 1/1;
}

.placeholder-img--alt {
    aspect-ratio: 1/1;
}

/* ============================================
   Contact
   ============================================ */
.contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.contact__card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    text-align: center;
}

.contact__icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.contact__card h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact__card p,
.contact__card a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ============================================
   Prose (About page)
   ============================================ */
.prose {
    max-width: 720px;
    margin: 0 auto;
}

.prose p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.prose h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 40px 0 16px;
}

.prose ul {
    list-style: none;
    margin-bottom: 24px;
}

.prose ul li {
    color: var(--text-muted);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.prose ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--amber-light);
}

/* ============================================
   404 Error
   ============================================ */
.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}

.error__code {
    font-size: 8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--amber-dark), var(--amber-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.error__text {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin: 16px 0 32px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer__tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 8px;
}

.footer__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer__col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer__col a {
    display: block;
    color: var(--text);
    font-size: 0.9rem;
    padding: 4px 0;
}

.footer__col a:hover {
    color: var(--amber-light);
}

.footer__newsletter {
    max-width: 380px;
}

.footer__newsletter-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}

.footer__newsletter-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.5;
}

.footer__newsletter-form {
    display: flex;
    gap: 8px;
}

.footer__newsletter-input {
    flex: 1;
    padding: 10px 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
}

.footer__newsletter-input:focus {
    outline: none;
    border-color: var(--amber-light);
}

.footer__newsletter-btn {
    padding: 10px 20px;
    background: var(--amber);
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.footer__newsletter-btn:hover {
    background: var(--amber-light);
}

.footer__bottom {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================
   Mobile
   ============================================ */
@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__links {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 16px;
        gap: 4px;
    }

    .nav__links.nav__links--open {
        display: flex;
    }

    .nav__link {
        padding: 12px 16px;
    }

    .hero__title {
        font-size: 2.2rem;
    }

    .split {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__links {
        gap: 24px;
    }

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

/* ============================================
   Buy Buttons (Stripe Payment Links)
   ============================================ */

.btn--xs {
    padding: 4px 10px;
    font-size: 0.7rem;
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
    text-decoration: none;
}

.btn--sm {
    padding: 8px 18px;
    font-size: 0.85rem;
    display: inline-block;
    margin-left: 12px;
    text-decoration: none;
}

.card__variant-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
}

.card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.card .btn--primary {
    background: var(--amber);
    color: #0f0f0f;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: background 0.2s;
}

.card .btn--primary:hover {
    background: var(--amber-light);
    text-decoration: none;
}

/* Make swatches not break the layout */
.card__swatch {
    display: inline-block;
    padding: 3px 8px;
    font-size: 0.7rem;
    white-space: nowrap;
}

/* ===== EMAIL CAPTURE MODAL ===== */
.email-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.email-modal-overlay--open {
    opacity: 1;
}

.email-modal {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 40px 32px 32px;
    max-width: 420px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.email-modal__close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    padding: 4px;
}

.email-modal__close:hover {
    color: var(--text);
}

.email-modal__icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.email-modal__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--text);
}

.email-modal__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0 0 24px;
    line-height: 1.5;
}

.email-modal__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.email-modal__input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    background: var(--bg);
    color: var(--text);
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.email-modal__input:focus {
    outline: none;
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(255, 191, 0, 0.15);
}

.email-modal__submit {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    cursor: pointer;
}

.email-modal__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.email-modal__note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 16px 0 0;
}

.email-modal__error {
    display: none;
    background: #fef2f2;
    color: #dc2626;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    margin-top: 12px;
    border: 1px solid #fecaca;
}

@media (prefers-color-scheme: dark) {
    .email-modal__error {
        background: #3b0a0a;
        color: #fca5a5;
        border-color: #7f1d1d;
    }
}

.email-modal-overlay--open .email-modal {
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        transform: scale(0.95) translateY(10px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}
