/* ========================================================================
   Chicken Masterclass — Promo Site Styles
   Theme: Hearth-warmed coop. Amber-deep, crimson ember, gold yolk on cream.
   Typography: Bungee (display), Plus Jakarta Sans (body), Caveat Brush (script accent)
   ======================================================================== */

:root {
    /* Brand palette */
    --amber-deep:     #3A1A08;
    --amber-warm:     #5A2A0E;
    --amber-midnight: #240F05;
    --crimson-fire:   #C8331A;
    --crimson-ember:  #E54E2A;
    --gold-yolk:      #F5B72E;
    --gold-sunbeam:   #FFD96B;
    --gold-deep:      #B8801A;
    --cream:          #FBE9C2;
    --feather:        #FFF4D8;
    --eggshell:       #FAF1DE;
    --coop-brown:     #7A4423;
    --basket:         #A8642C;
    --cocoa:          #3D1F0F;
    --straw:          #D4A856;

    /* Text on dark */
    --text-primary:   #FFF4D8;
    --text-secondary: #E0C99A;
    --text-tertiary:  #9E8868;

    /* Radii */
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 20px;
    --r-xl: 32px;

    /* Shadows */
    --shadow-card:   0 2px 6px rgba(0, 0, 0, 0.40);
    --shadow-modal:  0 8px 24px rgba(0, 0, 0, 0.55);
    --shadow-gold:   0 0 24px rgba(245, 183, 46, 0.45);
    --shadow-crimson: 0 0 16px rgba(229, 78, 42, 0.50);

    /* Type */
    --f-display: 'Bungee', 'Impact', sans-serif;
    --f-body:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --f-script:  'Caveat Brush', 'Marker Felt', cursive;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--f-body);
    color: var(--text-primary);
    background: linear-gradient(180deg, var(--amber-deep) 0%, var(--amber-midnight) 100%);
    background-attachment: fixed;
    margin: 0;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* ----- Typography utilities ----- */

.f-display { font-family: var(--f-display); letter-spacing: 0.5px; }
.f-script  { font-family: var(--f-script); letter-spacing: 0.5px; }
.f-body    { font-family: var(--f-body); }

.txt-gold-grad {
    background: linear-gradient(180deg, var(--gold-sunbeam) 0%, var(--gold-yolk) 60%, var(--gold-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.txt-ember-grad {
    background: linear-gradient(180deg, var(--gold-sunbeam) 0%, var(--crimson-ember) 70%, var(--crimson-fire) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.txt-outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--gold-yolk);
    text-stroke: 2px var(--gold-yolk);
}

.script-accent {
    font-family: var(--f-script);
    color: var(--gold-sunbeam);
    font-size: 1.6em;
    line-height: 1;
    transform: rotate(-3deg);
    display: inline-block;
}

/* ----- Heading sizes ----- */

h1, h2, h3, h4 {
    font-family: var(--f-display);
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 0.6em;
    color: var(--feather);
}

.h-hero {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: 0.5px;
}

.h-section {
    font-size: clamp(1.8rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 0.5em;
}

.section-eyebrow {
    font-family: var(--f-script);
    color: var(--gold-sunbeam);
    font-size: 1.6rem;
    text-align: center;
    display: block;
    margin-bottom: 0.2em;
    transform: rotate(-2deg);
}

/* ----- Layout ----- */

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 90px 0;
    position: relative;
}

@media (max-width: 768px) {
    section { padding: 60px 0; }
}

/* ----- Header / Nav ----- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: rgba(36, 15, 5, 0.80);
    border-bottom: 1px solid rgba(245, 183, 46, 0.15);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--feather);
}

.nav-logo img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-card);
}

.nav-logo span {
    font-family: var(--f-display);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold-yolk); }

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    color: var(--feather);
    cursor: pointer;
}

@media (max-width: 720px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 16px;
        background: var(--amber-warm);
        padding: 18px 24px;
        border-radius: var(--r-md);
        border: 1px solid rgba(245, 183, 46, 0.2);
        gap: 14px;
    }
}

/* ----- Hero ----- */

.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0 100px;
    background:
        linear-gradient(180deg, rgba(36,15,5,0.55) 0%, rgba(36,15,5,0.92) 100%),
        radial-gradient(circle at 30% 30%, rgba(245,183,46,0.18), transparent 55%),
        radial-gradient(circle at 75% 70%, rgba(229,78,42,0.20), transparent 60%),
        url('images/hero_bg.webp') center/cover no-repeat;
}

.hero::after {
    /* Subtle film grain via radial dots */
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 244, 216, 0.04) 1px, transparent 1px);
    background-size: 4px 4px;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
}

.hero-eyebrow {
    font-family: var(--f-script);
    color: var(--gold-sunbeam);
    font-size: 1.8rem;
    display: inline-block;
    transform: rotate(-3deg);
    margin-bottom: 8px;
}

.hero h1 {
    font-size: clamp(2.6rem, 6.5vw, 5rem);
    line-height: 0.98;
    margin: 0 0 18px;
}

.hero h1 .line-1 {
    display: block;
    color: var(--feather);
}

.hero h1 .line-2 {
    display: block;
    font-style: italic;
    color: var(--cream);
    font-family: var(--f-display);
    font-size: 0.85em;
}

.hero h1 .line-3 {
    display: block;
    background: linear-gradient(180deg, var(--gold-sunbeam) 0%, var(--gold-yolk) 50%, var(--crimson-ember) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p.lede {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 0 32px;
    line-height: 1.55;
}

@media (max-width: 900px) {
    .hero p.lede { margin-left: auto; margin-right: auto; }
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

@media (max-width: 900px) {
    .hero-cta-row { justify-content: center; }
}

.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 36px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .hero-stats { justify-content: center; }
}

.hero-stat {
    text-align: left;
}

@media (max-width: 900px) { .hero-stat { text-align: center; } }

.hero-stat .num {
    font-family: var(--f-display);
    font-size: 2rem;
    color: var(--gold-yolk);
    line-height: 1;
    display: block;
}

.hero-stat .lbl {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

/* Hero illustration: circle with the splash artwork floating */
.hero-art {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 460px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-art .glow {
    position: absolute;
    inset: 8%;
    background: radial-gradient(circle at 50% 50%, var(--gold-sunbeam), var(--gold-yolk) 35%, transparent 70%);
    filter: blur(40px);
    opacity: 0.55;
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.hero-art img {
    position: relative;
    width: 78%;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-modal), var(--shadow-gold);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.45; transform: scale(1); }
    50% { opacity: 0.65; transform: scale(1.05); }
}

/* ----- Buttons ----- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    font-family: var(--f-body);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
    line-height: 1;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(180deg, var(--gold-sunbeam) 0%, var(--gold-yolk) 60%, var(--gold-deep) 100%);
    color: var(--amber-midnight);
    box-shadow: var(--shadow-gold), 0 4px 12px rgba(0,0,0,0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.btn-secondary {
    background: transparent;
    color: var(--feather);
    border: 2px solid rgba(255, 244, 216, 0.40);
}

.btn-secondary:hover {
    border-color: var(--gold-yolk);
    color: var(--gold-sunbeam);
}

.btn-ember {
    background: linear-gradient(180deg, var(--crimson-ember) 0%, var(--crimson-fire) 100%);
    color: var(--feather);
    box-shadow: var(--shadow-crimson), 0 4px 12px rgba(0,0,0,0.35);
}

.btn-ember:hover { transform: translateY(-2px); filter: brightness(1.08); }

.btn-block { width: 100%; }

/* ----- Features grid ----- */

.features {
    background:
        linear-gradient(180deg, rgba(58, 26, 8, 0) 0%, rgba(58, 26, 8, 0.6) 30%, rgba(36, 15, 5, 0.95) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 50px;
}

@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
    background: linear-gradient(160deg, rgba(90, 42, 14, 0.85) 0%, rgba(36, 15, 5, 0.85) 100%);
    border: 1px solid rgba(245, 183, 46, 0.18);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(245,183,46,0.10) 0%, transparent 70%);
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 183, 46, 0.50);
    box-shadow: var(--shadow-card), var(--shadow-gold);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--amber-warm) 0%, var(--amber-midnight) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: inset 0 1px 0 rgba(255, 244, 216, 0.10);
    position: relative;
    z-index: 1;
}

.feature-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.feature-card h3 {
    font-family: var(--f-display);
    font-size: 1.1rem;
    margin: 0 0 10px;
    color: var(--feather);
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.55;
    position: relative;
    z-index: 1;
}

/* ----- Technique badges row ----- */

.techniques {
    background: var(--amber-midnight);
    padding: 70px 0;
}

.tech-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 36px;
}

.tech-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--amber-warm), var(--amber-deep));
    border: 1px solid rgba(245, 183, 46, 0.30);
    color: var(--cream);
    font-family: var(--f-display);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-card);
}

.tech-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-yolk);
    box-shadow: 0 0 8px var(--gold-yolk);
}

/* ----- Screenshot carousel (device frames) ----- */

.preview {
    background:
        radial-gradient(ellipse at top, rgba(229,78,42,0.18), transparent 60%),
        var(--amber-deep);
}

.swiper-wrap {
    margin-top: 48px;
    padding: 12px 0 48px;
}

.device-frame {
    width: 220px;
    max-width: 70vw;
    aspect-ratio: 9 / 19.5;
    background: linear-gradient(160deg, #1a0c05, #0d0602);
    border-radius: 36px;
    padding: 10px;
    box-shadow:
        0 0 0 2px #2b170a,
        0 0 0 4px rgba(245, 183, 46, 0.20),
        0 24px 44px rgba(0, 0, 0, 0.55),
        inset 0 0 0 1px rgba(255, 244, 216, 0.05);
    margin: 0 auto;
    position: relative;
}

.device-frame::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    border-radius: 999px;
    background: #0a0402;
    z-index: 3;
}

.device-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    display: block;
}

.preview .swiper {
    padding: 20px 0 30px;
}

.preview .swiper-pagination-bullet {
    background: var(--cream);
    opacity: 0.45;
}

.preview .swiper-pagination-bullet-active {
    background: var(--gold-yolk);
    opacity: 1;
    box-shadow: 0 0 8px var(--gold-yolk);
}

.preview .swiper-button-next,
.preview .swiper-button-prev {
    color: var(--gold-yolk);
}

/* Caption under each slide */
.slide-caption {
    text-align: center;
    margin-top: 18px;
    color: var(--text-secondary);
    font-family: var(--f-script);
    font-size: 1.4rem;
}

/* ----- CTA section ----- */

.cta {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(36,15,5,0.70), rgba(36,15,5,0.92)),
        url('images/cta_bg.webp') center/cover no-repeat;
    text-align: center;
    padding: 100px 0;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(245,183,46,0.22), transparent 60%);
    pointer-events: none;
}

.cta-inner { position: relative; z-index: 2; }

.cta h2 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    margin-bottom: 18px;
}

.cta p {
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto 36px;
    font-size: 1.1rem;
}

.store-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--amber-midnight);
    color: var(--feather);
    padding: 14px 24px;
    border-radius: var(--r-md);
    border: 1px solid rgba(245, 183, 46, 0.30);
    text-decoration: none;
    font-weight: 600;
    transition: border-color 0.2s, transform 0.15s;
    min-width: 200px;
}

.store-btn:hover {
    border-color: var(--gold-yolk);
    transform: translateY(-2px);
}

.store-btn .small { font-size: 0.7rem; color: var(--text-tertiary); display: block; line-height: 1; }
.store-btn .big   { font-size: 1.05rem; line-height: 1.2; margin-top: 2px; display: block; }

.store-btn svg { width: 28px; height: 28px; flex-shrink: 0; }

/* ----- Footer ----- */

.site-footer {
    background: var(--amber-midnight);
    border-top: 1px solid rgba(245, 183, 46, 0.15);
    padding: 50px 0 30px;
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 36px;
}

@media (max-width: 720px) {
    .footer-grid { grid-template-columns: 1fr; gap: 26px; }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-brand .b-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand .b-row img { width: 40px; height: 40px; border-radius: 10px; }
.footer-brand .b-row span { color: var(--feather); font-family: var(--f-display); font-size: 1.05rem; }

.footer-col h4 {
    font-family: var(--f-display);
    color: var(--cream);
    font-size: 0.95rem;
    margin: 0 0 14px;
    letter-spacing: 1px;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: var(--text-secondary); text-decoration: none; }
.footer-col a:hover { color: var(--gold-yolk); }

.footer-bottom {
    border-top: 1px solid rgba(245, 183, 46, 0.10);
    padding-top: 22px;
    text-align: center;
    color: var(--text-tertiary);
    font-size: 0.85rem;
}

/* ----- Content pages (privacy / terms / contact) ----- */

.page-hero {
    padding: 80px 0 50px;
    background:
        radial-gradient(ellipse at top, rgba(229,78,42,0.20), transparent 60%),
        var(--amber-deep);
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    margin-bottom: 12px;
}

.page-hero .meta {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.content-area {
    padding: 60px 0 90px;
}

.content-card {
    max-width: 820px;
    margin: 0 auto;
    background: linear-gradient(160deg, rgba(90, 42, 14, 0.55) 0%, rgba(36, 15, 5, 0.55) 100%);
    border: 1px solid rgba(245, 183, 46, 0.15);
    border-radius: var(--r-lg);
    padding: 42px 38px;
    box-shadow: var(--shadow-card);
}

@media (max-width: 600px) { .content-card { padding: 28px 22px; } }

.content-card h2 {
    font-family: var(--f-display);
    color: var(--gold-yolk);
    font-size: 1.4rem;
    margin: 36px 0 14px;
    line-height: 1.3;
}

.content-card h2:first-child { margin-top: 0; }

.content-card h3 {
    font-family: var(--f-display);
    color: var(--cream);
    font-size: 1.05rem;
    margin: 22px 0 10px;
}

.content-card p {
    color: var(--text-secondary);
    margin: 0 0 14px;
    text-align: left;
    line-height: 1.65;
}

.content-card ul, .content-card ol {
    color: var(--text-secondary);
    padding-left: 22px;
    margin: 0 0 14px;
}

.content-card li {
    margin-bottom: 6px;
    line-height: 1.55;
}

.content-card a {
    color: var(--gold-sunbeam);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.content-card a:hover { color: var(--crimson-ember); }

.content-card strong { color: var(--feather); }

/* ----- Contact form ----- */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form label {
    display: block;
    color: var(--cream);
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="file"],
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(36, 15, 5, 0.65);
    border: 1px solid rgba(245, 183, 46, 0.25);
    border-radius: var(--r-md);
    color: var(--feather);
    font-family: var(--f-body);
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold-yolk);
    box-shadow: 0 0 0 3px rgba(245, 183, 46, 0.20);
}

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

.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text-tertiary); }

.field-row { display: flex; flex-direction: column; }

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 600px) { .contact-info { grid-template-columns: 1fr; } }

.contact-info-card {
    background: rgba(36, 15, 5, 0.55);
    border: 1px solid rgba(245, 183, 46, 0.18);
    border-radius: var(--r-md);
    padding: 18px;
}

.contact-info-card h4 {
    font-family: var(--f-display);
    color: var(--gold-yolk);
    font-size: 0.9rem;
    margin: 0 0 6px;
    letter-spacing: 1px;
}

.contact-info-card p { margin: 0; font-size: 0.95rem; color: var(--text-secondary); }

/* ----- Privacy acceptance bar (Flutter integration) ----- */

.privacy-accept-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 24px 24px;
    background: linear-gradient(180deg, rgba(36, 15, 5, 0) 0%, rgba(36, 15, 5, 0.96) 40%, rgba(36, 15, 5, 1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-accept-btn.hidden { display: none; }

.accept-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 420px;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    background: linear-gradient(180deg, var(--gold-sunbeam) 0%, var(--gold-yolk) 60%, var(--gold-deep) 100%);
    color: var(--amber-midnight);
    font-family: var(--f-body);
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-gold), 0 6px 16px rgba(0, 0, 0, 0.45);
    transition: transform 0.15s ease, filter 0.2s ease;
    line-height: 1;
}

.accept-btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.accept-btn:active { transform: translateY(0); }
