/* ============================================
   ARKTOS BREWING CO. — MAIN STYLESHEET
   ============================================ */

/* ── CSS Variables ─────────────────────────── */
:root {
    --bg-primary:    #0F0E0C;
    --bg-secondary:  #1A1816;
    --bg-surface:    #252220;
    --text-primary:  #F0EDE6;
    --text-muted:    #9A9590;
    --accent-red:    #CC2A20;
    --accent-orange: #E86A2A;
    --accent-yellow: #F5CC2A;
    --border:        rgba(240, 237, 230, 0.1);
    --header-h:      60px;
    --footer-h:      44px;
    --font-display:  'BasteB', Impact, 'Arial Black', sans-serif;
    --font-body:     'DenimINK', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --radius:        6px;
    --transition:    0.2s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { background-color: var(--bg-primary); color: var(--text-primary); color-scheme: dark; overflow-x: hidden; }

/* Desktop-only: smooth scroll + GPU hints */
@media (min-width: 769px) {
    html { scroll-behavior: smooth; }
    .hero-side-wrap, .hero-badge-wrap, .hero-co, .hero-abc,
    .next-mascot, .next-hop, .arje-rosa, .deco,
    .sonne-sun, .wave-row, .sun-crosser img {
        will-change: transform;
        transform: translateZ(0);
    }
}

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

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 900; letter-spacing: 0.04em; line-height: 1.05; }
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
p  { line-height: 1.7; color: var(--text-muted); }
a  { color: var(--text-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-orange); }

.btn { display: inline-block; font-family: var(--font-body); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 12px 28px; border-radius: var(--radius); border: none; cursor: pointer; transition: background var(--transition), transform var(--transition); }
.btn-primary { background: var(--accent-red); color: #fff; }
.btn-primary:hover { background: #aa1e16; color: #fff; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text-primary); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--text-primary); color: var(--text-primary); }

/* =============================================
   HEADER
   ============================================= */
header { position: fixed; top: 0; left: 0; right: 0; height: var(--header-h); z-index: 1000; background: var(--bg-primary); border-bottom: 1px solid var(--border); transition: background 0.3s ease; }
header.scrolled { background: rgba(15, 14, 12, 0.95); backdrop-filter: blur(8px); }

.header-container { max-width: 1280px; margin: 0 auto; height: 100%; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo img { height: 54px; width: auto; display: block; }
nav { display: flex; align-items: center; gap: 32px; }
nav a { font-family: var(--font-body); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: #111; transition: color var(--transition); position: relative; }
/* Non-landing pages have a dark header — nav links must be light */
body:not(.landing-page) nav a { color: var(--text-primary); }
body:not(.landing-page) nav a:hover,
body:not(.landing-page) nav a.active { color: var(--accent-orange); }
body:not(.landing-page) .header-icon-btn { color: var(--text-muted); }
body:not(.landing-page) .header-icon-btn:hover { color: var(--text-primary); }
nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1.5px; background: var(--accent-red); transform: scaleX(0); transition: transform var(--transition); transform-origin: left; }
nav a:hover, nav a.active { color: var(--text-primary); }
nav a:hover::after, nav a.active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-icon-btn { display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: color var(--transition); position: relative; }
.header-icon-btn:hover { color: var(--text-primary); }
.cart-count { position: absolute; top: -6px; right: -8px; background: var(--accent-red); color: #fff; font-size: 0.62rem; font-weight: 700; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; line-height: 1; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
    nav { display: none; }
    .header-icon-btn.login-btn { display: none; }
    .hamburger { display: flex; }
}

/* =============================================
   MOBILE MENU
   ============================================= */
.mobile-menu { position: fixed; top: 0; right: 0; width: min(320px, 85vw); height: 100vh; background: var(--bg-secondary); z-index: 1100; display: flex; flex-direction: column; justify-content: space-between; padding: 80px 32px 40px; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1); border-left: 1px solid var(--border); }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-nav { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu-nav a { font-family: var(--font-display); font-size: 2rem; font-weight: 900; letter-spacing: 0.04em; color: var(--text-muted); padding: 8px 0; border-bottom: 1px solid var(--border); transition: color var(--transition); }
.mobile-menu-nav a:hover { color: var(--text-primary); }
.mobile-menu-logo { width: 80px; opacity: 0.4; }
.overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 1050; backdrop-filter: blur(2px); }
.overlay.active { display: block; }

/* =============================================
   FOOTER
   ============================================= */
footer { background: var(--bg-secondary); border-top: 1px solid var(--border); padding: 40px 24px 24px; }
.footer-content { max-width: 1280px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer-logo { height: 40px; width: auto; opacity: 0.7; }
.footer-tagline { font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.1em; color: var(--text-muted); text-transform: uppercase; }
.footer-nav { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.footer-nav a:hover { color: var(--text-primary); }
.footer-separator { color: var(--border); font-size: 0.75rem; }
.footer-social { display: flex; gap: 20px; }
.footer-social a { color: var(--text-muted); transition: color var(--transition); }
.footer-social a:hover { color: var(--text-primary); }
.footer-legal { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; font-size: 0.73rem; color: var(--text-muted); }
.footer-legal a { color: var(--text-muted); font-size: 0.73rem; }
.footer-legal a:hover { color: var(--text-primary); }

/* =============================================
   PAGE SHELL
   ============================================= */
.page-wrap { padding-top: var(--header-h); min-height: 100vh; display: flex; flex-direction: column; }
.page-content { flex: 1; }
.section { max-width: 1280px; margin: 0 auto; padding: 80px 24px; }
.section-sm { max-width: 760px; margin: 0 auto; padding: 60px 24px; }
.page-hero { padding: 80px 24px 60px; max-width: 1280px; margin: 0 auto; }

/* =============================================
   SHOP PAGE
   ============================================= */
.shop-hero { text-align: center; padding: 80px 24px 40px; }
.shop-hero h1 { margin-bottom: 16px; }
.shop-hero p  { max-width: 480px; margin: 0 auto 40px; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; max-width: 1280px; margin: 0 auto; padding: 0 24px 80px; }
.product-card { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform var(--transition), border-color var(--transition); cursor: pointer; }
.product-card:hover { transform: translateY(-4px); border-color: rgba(240,237,230,0.25); }
.product-card-img { width: 100%; aspect-ratio: 3/4; background: var(--bg-secondary); display: flex; align-items: center; justify-content: center; font-size: 4rem; color: var(--text-muted); }
.product-card-body { padding: 16px; }
.product-card-name { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 4px; }
.product-card-style { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; }
.product-card-price { font-family: var(--font-display); font-size: 1.4rem; }

/* =============================================
   BREWERY PAGE
   ============================================= */
.brewery-hero { min-height: 60vh; display: flex; align-items: flex-end; padding: 80px 24px 60px; position: relative; background: var(--bg-secondary); }
.brewery-hero-content { max-width: 1280px; margin: 0 auto; width: 100%; }
.brewery-hero h1 { margin-bottom: 16px; }
.brewery-hero p  { max-width: 600px; font-size: 1.1rem; }
.brewery-story { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 768px) { .brewery-story { grid-template-columns: 1fr; gap: 32px; } }
.brewery-story-text h2 { margin-bottom: 20px; }
.brewery-story-text p  { margin-bottom: 16px; }
.brewery-story-img { aspect-ratio: 4/3; background: var(--bg-surface); border-radius: var(--radius); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 3rem; }

/* =============================================
   TAPROOM PAGE
   ============================================= */
.taproom-hero { padding: 80px 24px 60px; max-width: 1280px; margin: 0 auto; }
.taproom-hero h1 { margin-bottom: 16px; }
.taproom-hero p  { max-width: 540px; }
.taproom-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.taproom-info-card { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.taproom-info-card .card-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-red); margin-bottom: 8px; }
.taproom-info-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.taproom-info-card p { font-size: 0.9rem; }
.draft-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); border-radius: var(--radius); overflow: hidden; }
.draft-item { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; background: var(--bg-surface); gap: 16px; }
.draft-item-name { font-family: var(--font-display); font-size: 1.2rem; }
.draft-item-style { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.draft-item-abv { font-size: 0.8rem; font-weight: 700; color: var(--accent-orange); white-space: nowrap; }

/* =============================================
   LOGIN PAGE
   ============================================= */
.login-wrap { display: flex; align-items: center; justify-content: center; min-height: calc(100vh - var(--header-h) - var(--footer-h)); padding: 40px 24px; }
.login-box { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 48px 40px; width: 100%; max-width: 400px; }
.login-box h1 { font-size: 2.4rem; margin-bottom: 8px; }
.login-box .login-subtitle { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.form-group input { width: 100%; background: var(--bg-secondary); border: 1px solid var(--border); color: var(--text-primary); padding: 12px 14px; border-radius: var(--radius); font-family: var(--font-body); font-size: 0.95rem; font-weight: 500; transition: border-color var(--transition); }
.form-group input:focus { outline: none; border-color: rgba(240,237,230,0.4); }
.login-footer { margin-top: 20px; text-align: center; font-size: 0.82rem; color: var(--text-muted); }
.login-footer a { color: var(--accent-orange); }

/* =============================================
   CART PAGE
   ============================================= */
.cart-wrap { max-width: 900px; margin: 0 auto; padding: 60px 24px; }
.cart-wrap h1 { margin-bottom: 40px; }
.cart-empty { text-align: center; padding: 80px 0; color: var(--text-muted); }
.cart-empty p { font-size: 1.1rem; margin-bottom: 24px; }
.cart-items { display: flex; flex-direction: column; gap: 1px; background: var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 32px; }
.cart-item { display: grid; grid-template-columns: 72px 1fr auto; gap: 20px; align-items: center; background: var(--bg-surface); padding: 16px 20px; }
.cart-item-img { width: 72px; height: 72px; background: var(--bg-secondary); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
.cart-item-name { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 4px; }
.cart-item-style { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.cart-summary { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.cart-summary-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--text-muted); }
.cart-summary-row.total { font-family: var(--font-display); font-size: 1.4rem; color: var(--text-primary); border-bottom: none; padding-top: 16px; }
.cart-checkout { margin-top: 20px; width: 100%; padding: 14px; font-size: 0.9rem; }

/* =============================================
   UTILITIES
   ============================================= */
.text-center { text-align: center; }
.text-muted  { color: var(--text-muted); }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 60px; }


/* =============================================
   LANDING PAGE
   ============================================= */
.landing-page { background-color: #228848; transition: background-color 0.6s ease; }
.header-btn-text { display: none; }

.landing-page #site-header { background: transparent !important; border-bottom: none !important; box-shadow: none; }
.landing-page #site-header.scrolled { background: rgba(20, 68, 35, 0.93) !important; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid rgba(255,255,255,0.08) !important; }
.landing-page #site-header .logo img        { filter: none; }
.landing-page #site-header .header-icon-btn { color: rgba(255,255,255,0.85); }
.landing-page .hamburger span               { background: #fff !important; }
/* Desktop: nav links white so they're visible over transparent green header */
.landing-page #site-header nav a           { color: rgba(255,255,255,0.92) !important; }
.landing-page #site-header nav a:hover,
.landing-page #site-header nav a.active    { color: #FFC72C !important; }


/* ═══════════════════════════════════════════════════
   SECTION 1 — HERO
   ═══════════════════════════════════════════════════ */
.hero-section { position: relative; width: 100%; height: 100vh; min-height: 560px; background: transparent; overflow: hidden; }

.hero-title-block { position: absolute; top: calc(var(--header-h) + 4px); left: 0; right: 0; text-align: center; line-height: 0.87; animation: heroTitleIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both; z-index: 4; pointer-events: none; }

/* Yellow background — tight around each word, centered */
.hero-title-line { display: block; width: max-content; max-width: 96%; margin: 0 auto; font-family: var(--font-display); font-size: clamp(4rem, calc(1.5rem + 11.5vw), 12rem); font-weight: 900; color: #111; letter-spacing: -0.01em; line-height: 0.87; text-transform: uppercase; background: #FFC72C; padding: 4px 20px 0; }

.hero-center-col { position: absolute; left: 18%; top: 26.5vh; width: 64%; display: flex; flex-direction: column; align-items: center; animation: heroCenterIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both; z-index: 3; }
.hero-img-strip { width: 100%; height: 65.2vh; background: transparent; overflow: visible; display: flex; align-items: flex-start; justify-content: center; }
.hero-beer-img { width: 100%; height: 100%; object-fit: contain; object-position: center top; display: block; }

/* CO. and ABC have will-change:transform so JS parallax composites on GPU */
.hero-co  { font-family: var(--font-display); font-size: clamp(4rem, calc(1.5rem + 11.5vw), 12rem); font-weight: 900; color: #111; letter-spacing: -0.01em; line-height: 1; text-align: center; margin-top: -0.35em; position: relative; z-index: 6; will-change: transform; }
.hero-abc { width: clamp(40px, 8vw, 60px); height: auto; display: block; margin: 6px auto 0; will-change: transform; }

.hero-side-wrap .hero-wrap-mobile  { display: none; }
.hero-side-wrap .hero-wrap-desktop { display: block; }

@media (max-width: 768px) {
    .hero-wrap-desktop { display: none !important; }
    .hero-wrap-mobile  { display: block !important; width: 70% !important; }
    .hero-center-col   { top: calc(26.5vh - 10px); }
    .hero-side-wrap    { top: calc(59.1vh - 220px) !important; }
    .hero-badge-wrap   { top: calc(72vh - 40px) !important; }
    .hero-co           { margin-top: calc(-2em - 5px); }
    .hero-abc          { margin-top: 0; }
}

.hero-side-wrap { position: absolute; top: calc(59.1vh - 180px); width: 28%; z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-side-wrap--left  { left: 0%;  animation: heroSlideFromLeft  0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both; }
.hero-side-wrap--right { right: 0%; animation: heroSlideFromRight 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both; }
.hero-side-wrap img { width: 100%; height: auto; display: block; }
.hero-side-wrap p { font-family: var(--font-body); font-weight: 700; font-size: clamp(0.55rem, 1.9vw, 0.78rem); letter-spacing: 0.08em; text-transform: uppercase; color: #111; line-height: 1.5; text-align: center; background: none; padding: 0; }

.hero-badge-wrap { position: absolute; top: 80vh; z-index: 5; animation: heroFadeUp 0.55s ease 0.55s both; }
.hero-badge-wrap--left  { left:  5.3%; }
.hero-badge-wrap--right { right: 3.6%; }
.hero-badge { display: inline-block; font-family: var(--font-body); font-weight: 700; font-size: clamp(0.52rem, 1.8vw, 0.72rem); letter-spacing: 0.1em; text-transform: uppercase; color: #111; background: #FFC72C; border: none; border-radius: 100px; padding: 6px 16px; white-space: nowrap; }

@keyframes heroTitleIn    { from { transform: translateY(-80px); opacity: 0; } to { transform: translateY(0);    opacity: 1; } }
@keyframes heroCenterIn   { from { transform: translateY(80px);  opacity: 0; } to { transform: translateY(0);    opacity: 1; } }
@keyframes heroSlideFromLeft  { from { transform: translateX(-80px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes heroSlideFromRight { from { transform: translateX(80px);  opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }


/* ═══════════════════════════════════════════════════
   SECTION 2 — HELLO FRANK
   ═══════════════════════════════════════════════════ */
.next-section { position: relative; min-height: 100vh; background: transparent; overflow: hidden; display: flex; flex-direction: column; align-items: center; }

.next-title { font-family: var(--font-display); font-size: clamp(2.6rem, 14vw, 7rem); font-weight: 900; color: #111; letter-spacing: 0.02em; text-align: center; padding: 30px 16px 0; position: relative; z-index: 10; text-transform: uppercase; line-height: 1; opacity: 0; transform: translateY(20px); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.next-title.is-visible { opacity: 1; transform: translateY(0); }

.speech-bubble { position: absolute; bottom: 105%; left: 50%; transform: translateX(-50%) scale(0); background: #fff; color: #111; font-family: var(--font-body); font-weight: 700; font-size: clamp(0.48rem, 1.8vw, 0.65rem); letter-spacing: 0.03em; white-space: nowrap; padding: 5px 10px; border-radius: 12px; border: 2px solid #111; pointer-events: none; transform-origin: bottom center; transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease; opacity: 0; z-index: 20; }
.speech-bubble::after  { content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 6px solid transparent; border-top-color: #111; }
.speech-bubble::before { content: ''; position: absolute; top: calc(100% - 2px); left: 50%; transform: translateX(-50%); border: 6px solid transparent; border-top-color: #fff; z-index: 1; }
.speech-bubble.show { transform: translateX(-50%) scale(1); opacity: 1; }

.next-mascot { position: absolute; pointer-events: none; will-change: transform, opacity; isolation: isolate; }
.next-mascot img { width: 100%; height: auto; display: block; }
.next-mascot-1 { left: 5%;  top: 20%;             width: clamp(80px, 23vw, 130px); z-index: 3; }
.next-mascot-2 { right: 5%; top: calc(42% - 80px); width: clamp(75px, 21vw, 120px); z-index: 3; }
.next-mascot-3 { left: 8%;  top: 64%;             width: clamp(75px, 21vw, 120px); z-index: 3; }
.next-mascot-4 { right: 5%; top: 72%;             width: clamp(75px, 21vw, 120px); z-index: 3; }

.next-section .misirlou-can-desc { z-index: 10; }
.next-can-area { position: relative; z-index: 10; display: flex; justify-content: center; padding-top: 2vh; }
.next-can-wrap { width: clamp(120px, 28vw, 210px); }
.next-can-img  { width: 100%; height: auto; display: block; filter: drop-shadow(0 14px 32px rgba(0,0,0,0.18)); }

.next-hop { position: absolute; pointer-events: none; will-change: transform, opacity; z-index: 2; }
.next-hop img { width: 100%; height: auto; display: block; }
.next-hop-a { right: 12%; top: calc(26% - 60px); width: clamp(28px, 7vw, 52px); }
.next-hop-b { left: 4%;   top: calc(54% - 60px); width: clamp(28px, 7vw, 52px); }
.next-hop-c { left: calc(50% - 43px); transform: translateX(-50%); bottom: calc(7% + 43px); width: clamp(28px, 7vw, 52px); }

/* ── Landing page add-to-cart buttons ── */
.section-atc { position: relative; z-index: 10; display: flex; justify-content: center; margin-top: 32px; }
.btn-section-atc {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 16px;
    background: #FFC72C; color: #111;
    border: none; border-radius: 100px;
    font-family: var(--font-body); font-weight: 700;
    font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
    cursor: pointer; white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
}
.btn-section-atc:hover { background: #ffd84d; transform: translateY(-2px); }
.btn-section-atc.added { background: #2e7d4f; color: #fff; }
/* Sonne (purple bg) — same yellow works great */
/* TNT (yellow bg) — darken slightly */
.tnt-section .btn-section-atc { background: #111; color: #FFC72C; }
.tnt-section .btn-section-atc:hover { background: #222; }

/* ── Add-to-cart quantity popup modal ── */
.atc-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 8000;
    backdrop-filter: blur(3px);
    align-items: center; justify-content: center;
}
.atc-overlay.open { display: flex; }
.atc-modal {
    background: #FFC72C;
    border-radius: 16px;
    padding: 32px 28px 28px;
    width: min(340px, 90vw);
    text-align: center;
    position: relative;
    animation: modalPop 0.25s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes modalPop { from { transform: scale(0.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.atc-modal-close {
    position: absolute; top: 12px; right: 16px;
    background: none; border: none;
    font-size: 1.3rem; color: #111;
    cursor: pointer; line-height: 1;
    opacity: 0.5; transition: opacity 0.15s;
}
.atc-modal-close:hover { opacity: 1; }
.atc-modal-name {
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 900;
    color: #111; letter-spacing: 0.04em;
    text-transform: uppercase; line-height: 1;
    margin-bottom: 4px;
}
.atc-modal-style {
    font-family: var(--font-body);
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(0,0,0,0.55); margin-bottom: 20px;
}
.atc-modal-price {
    font-family: var(--font-display);
    font-size: 1.6rem; color: #111;
    margin-bottom: 22px;
}
.atc-modal-qty-row {
    display: flex; align-items: center;
    justify-content: center; gap: 0;
    background: rgba(0,0,0,0.1);
    border-radius: 10px; overflow: hidden;
    margin-bottom: 20px; width: fit-content;
    margin-left: auto; margin-right: auto;
}
.atc-modal-qty-btn {
    width: 44px; height: 48px;
    background: none; border: none;
    font-size: 1.4rem; color: #111;
    cursor: pointer; display: flex;
    align-items: center; justify-content: center;
    transition: background 0.15s;
}
.atc-modal-qty-btn:hover { background: rgba(0,0,0,0.1); }
.atc-modal-qty-num {
    width: 60px; height: 48px;
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 900;
    color: #111; background: none; border: none;
    outline: none;
    -moz-appearance: textfield;
}
.atc-modal-qty-num::-webkit-outer-spin-button,
.atc-modal-qty-num::-webkit-inner-spin-button { -webkit-appearance: none; }
.atc-modal-confirm {
    display: block; width: 100%;
    padding: 13px;
    background: #111; color: #fff;
    border: none; border-radius: 10px;
    font-family: var(--font-body); font-weight: 700;
    font-size: 0.85rem; letter-spacing: 0.1em;
    text-transform: uppercase; cursor: pointer;
    transition: background 0.2s;
}
.atc-modal-confirm:hover { background: #333; }

/* ── Sun crosser at bottom of Hello Frank ── */
.sun-crosser { position: absolute; bottom: 60px; left: 0; right: 0; height: clamp(72px, 20.8vw, 130px); pointer-events: none; z-index: 6; }
.sun-crosser img { position: absolute; width: clamp(72px, 20.8vw, 130px); height: auto; bottom: 0; left: 0; will-change: transform; transform: translateX(110vw) rotate(0deg); }


/* ═══════════════════════════════════════════════════
   SECTION 3 — SONNE
   ═══════════════════════════════════════════════════ */
.sonne-section { position: relative; min-height: 100vh; background: transparent; overflow: hidden; display: flex; flex-direction: column; align-items: center; }

.sonne-title { font-family: var(--font-display); font-size: clamp(2.6rem, 14vw, 7rem); font-weight: 900; color: #111; letter-spacing: 0.02em; text-align: center; padding: 30px 16px 0; position: relative; z-index: 5; text-transform: uppercase; line-height: 1; opacity: 0; transition: opacity 0.8s ease; }
.sonne-title.is-visible { opacity: 1; }
.sonne-section .sonne-title { color: #F2E6DA; }
.sonne-section .can-desc-style, .sonne-section .can-desc-flavors { color: #F2E6DA; }

.sonne-sun { position: absolute; top: 50%; width: clamp(180px, 52vw, 320px); will-change: transform; pointer-events: none; z-index: 2; }
.sonne-sun img { width: 100%; height: auto; display: block; }
.sonne-sun-left  { left: -28%;  transform: translateY(-50%) rotate(0deg); }
.sonne-sun-right { right: -28%; transform: translateY(-50%) rotate(0deg) scaleX(-1); }


/* ═══════════════════════════════════════════════════
   SECTION 4 — ARJE
   ═══════════════════════════════════════════════════ */
.arje-section { position: relative; min-height: 100vh; background: transparent; overflow: visible; display: flex; flex-direction: column; align-items: center; justify-content: center; margin-top: -20px; }

.arje-title { font-family: var(--font-display); font-size: clamp(2.6rem, 14vw, 7rem); font-weight: 900; color: #111; letter-spacing: 0.02em; text-align: center; padding: 0 16px; margin-top: -390px; position: relative; z-index: 5; text-transform: uppercase; line-height: 1; opacity: 0; transition: opacity 0.8s ease; }
.arje-title.is-visible { opacity: 1; }

.arje-rosa { position: absolute; pointer-events: none; will-change: transform, opacity; opacity: 0; z-index: 2; }
.arje-rosa img { width: 100%; height: auto; display: block; }
.arje-rosa-flip      { transform: scaleX(-1); }
.arje-rosa-flip-v    { transform: scaleY(-1); }
.arje-rosa-flip-both { transform: scale(-1, -1); }

/* ── LEFT side ── */
.arje-rosa-l5 { left: -11vw; top: calc(5% - 180px);   width: 52vw;                        transform-origin:   0% 50%; }
.arje-rosa-l1 { left: -3%;   top: calc(4% - 62px);    width: clamp(66px, 20.4vw, 114px);  transform-origin:   2% 92%; }
.arje-rosa-l2 { left: -3%;   top: 27%;                width: clamp(70px, 22vw,  120px);   transform-origin:   0%  0%; }
.arje-rosa-l3 { left: -11vw; top: calc(74% - 120px);  width: 52vw;                        transform-origin:   0% 50%; }
.arje-rosa-l4 { left: -3%;   top:  4%;                width: clamp(70px, 22vw,  120px);   transform-origin:   0%  0%; }

/* ── RIGHT side ── */
.arje-rosa-r5 { right: -11vw; top: calc(5% - 180px);  width: 52vw;                        transform-origin: 100% 50%; }
.arje-rosa-r1 { right: -3%;   top: calc(4% - 62px);   width: clamp(66px, 20.4vw, 114px);  transform-origin:  98% 92%; }
.arje-rosa-r2 { right: -3%;   top: 27%;               width: clamp(70px, 22vw,  120px);   transform-origin: 100%  0%; }
.arje-rosa-r3 { right: -11vw; top: calc(74% - 120px); width: 52vw;                        transform-origin: 100% 50%; }
.arje-rosa-r4 { right: -3%;   top:  4%;               width: clamp(70px, 22vw,  120px);   transform-origin: 100%  0%; }


/* ═══════════════════════════════════════════════════
   SECTION 5 — TNT
   ═══════════════════════════════════════════════════ */
.tnt-section { position: relative; min-height: 100vh; background: transparent; overflow: hidden; display: flex; flex-direction: column; align-items: center; margin-top: -220px; }

/* ── TNT Mountains ── */
.tnt-mtn { position: absolute; pointer-events: none; will-change: transform, opacity; z-index: 3; }
.tnt-mtn img { width: 100%; height: auto; display: block; }


/* ── Mobile overrides ── */
@media (max-width: 768px) {
    .arje-section     { margin-top: 80px !important; }
    .misirlou-section { margin-top: -100px !important; }
    .deco-legs-l      { bottom: calc(32% - 120px) !important; }
    .deco-legs-r      { bottom: calc(32% - 120px) !important; }
    .misirlou-waves   { top: calc(42% - 40px) !important; }
}

/* Mobile mountain positions */
@media (max-width: 768px) {
    .tnt-mtn-1 { left:  2%;  top: 22%;    width: 14vw; }
    .tnt-mtn-2 { left:  5%;  top: 47%;    width: 11vw; }
    .tnt-mtn-4 { left: 22%;  top: 32%;    width:  7vw; }
    .tnt-mtn-5 { right:  2%; top: 22%;    width: 14vw; }
    .tnt-mtn-6 { right:  5%; top: 47%;    width: 11vw; }
    .tnt-mtn-8 { right: 22%; top: 32%;    width:  7vw; }
}

/* Desktop mountain positions — clustered close to the can */
@media (min-width: 769px) {
    /* LEFT — pulled inward toward center */
    .tnt-mtn-1 { left:  6%;  top: 20%;    width: 6.7vw; } /* upper left flank   */
    .tnt-mtn-2 { left: 10%;  top: 46%;    width: 5.3vw; } /* mid left, can level*/
    .tnt-mtn-4 { left: 26%;  top: 30%;    width: 3.4vw; } /* inner left, behind */
    /* RIGHT — pulled inward toward center */
    .tnt-mtn-5 { right:  6%; top: 20%;    width: 6.7vw; } /* upper right flank  */
    .tnt-mtn-6 { right: 10%; top: 46%;    width: 5.3vw; } /* mid right, can level*/
    .tnt-mtn-8 { right: 26%; top: 30%;    width: 3.4vw; } /* inner right, behind*/

}

.tnt-title { font-family: var(--font-display); font-size: clamp(2.6rem, 14vw, 7rem); font-weight: 900; color: #111; letter-spacing: 0.02em; text-align: center; padding: 30px 16px 0; position: relative; z-index: 5; text-transform: uppercase; line-height: 1; opacity: 0; transition: opacity 0.8s ease; }
.tnt-title.is-visible { opacity: 1; }

@keyframes tntBurst {
    0%   { opacity: 1; transform: translate(-50%, -50%) rotate(var(--r0)) scale(0.5); }
    12%  { opacity: 1; transform: translate(calc(-50% + var(--tx) * 0.12), calc(-50% + var(--ty) * 0.12)) rotate(calc(var(--r0) + var(--rs) * 0.12)) scale(1.3); }
    100% { opacity: 0; transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) rotate(calc(var(--r0) + var(--rs))) scale(0.7); }
}
.tnt-letter {
    position: absolute;
    pointer-events: none;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.2rem, 9vw, 4.5rem);
    color: #111;
    line-height: 1;
    z-index: 20;
    animation: tntBurst var(--dur, 0.7s) cubic-bezier(0.15, 0.85, 0.35, 1) forwards;
}


/* ═══════════════════════════════════════════════════
   SECTION 6 — MISIRLOU
   ═══════════════════════════════════════════════════ */
.misirlou-section { position: relative; min-height: 100vh; background: transparent; overflow: hidden; margin-top: -180px; }

.misirlou-title { font-family: var(--font-display); font-size: clamp(2.6rem, 14vw, 7rem); font-weight: 900; color: #111; letter-spacing: 0.02em; text-align: center; padding: 30px 16px 0; position: relative; z-index: 5; text-transform: uppercase; line-height: 1; opacity: 0; transition: opacity 0.8s ease; }
.misirlou-title.is-visible { opacity: 1; }

.misirlou-can-area { position: relative; z-index: 5; display: flex; justify-content: center; padding-top: 2vh; }
.misirlou-can-wrap { width: clamp(120px, 28vw, 210px); }
.misirlou-can-img { width: 100%; height: auto; display: block; filter: drop-shadow(0 14px 32px rgba(0,0,0,0.28)); }

.can-placeholder { width: clamp(120px, 28vw, 210px); aspect-ratio: 403 / 984; background: linear-gradient(155deg, #e8e8e8 0%, #c8c8c8 100%); border-radius: 12px 12px 16px 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; box-shadow: 0 14px 32px rgba(0,0,0,0.25); }
.can-placeholder::before { content: 'ARKTOS'; font-family: var(--font-display); font-weight: 900; font-size: 1rem; color: #555; letter-spacing: 0.06em; }
.can-placeholder::after  { content: 'MISIRLOU'; font-family: var(--font-display); font-size: 0.75rem; color: #888; letter-spacing: 0.1em; }

.misirlou-can-desc { position: relative; z-index: 5; text-align: center; padding: 8px 20px 0; max-width: 320px; margin: 16px auto 0; }
.can-desc-style { font-family: var(--font-display); font-weight: 900; font-size: clamp(0.8rem, 3vw, 1.1rem); color: #111; letter-spacing: 0.04em; margin-bottom: 6px; line-height: 1; }
.can-desc-flavors { font-family: 'DenimINK', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 500; font-size: clamp(0.6rem, 1.8vw, 0.72rem); color: #111; letter-spacing: 0.01em; line-height: 1.6; margin: 0; }
.can-desc-en { margin-top: 4px; opacity: 0.65; }

.misirlou-waves { position: absolute; top: 42%; left: -50%; width: 200%; z-index: 2; pointer-events: none; display: flex; flex-direction: column; gap: 6px; overflow: visible; }
.wave-row { width: 100%; height: 40px; display: block; opacity: 0.7; will-change: transform; background-image: url('Images/Waves.png'); background-repeat: repeat-x; background-size: auto 100%; }

.deco { position: absolute; pointer-events: none; will-change: transform, opacity; }
.scroll-from-left  { transform: translateX(-640px); opacity: 0; }
.scroll-from-right { transform: translateX(640px);  opacity: 0; }
.scroll-from-below { transform: translateY(120vh);  opacity: 0; }

.deco-cloud  { left: 5%;  top: 7%;  width: clamp(88px,  25vw, 145px); z-index: 3; }
.deco-cloud2 { left: -2%; top: 18%; width: clamp(140px, 42vw, 230px); z-index: 3; }
.deco-sun    { right: -2%; top: 0%; width: clamp(100px, 34vw, 185px); z-index: 3; }
.deco-surf   { left: 4%;  top: 37%; width: clamp(68px,  21vw, 125px); z-index: 6; }
.deco-bird   { z-index: 4; }
.deco-bird-1 { right: 28%; top: 14%; width: clamp(22px,  6vw, 44px); }
.deco-bird-2 { right: 12%; top: 22%; width: clamp(32px,  9vw, 60px); }
.deco-bird-3 { right: 18%; top: 9%;  width: clamp(16px,  4vw, 32px); }
.deco-bird-4 { right: 6%;  top: 33%; width: clamp(40px, 12vw, 80px); }
.deco-bird-5 { left: 8%;   top: 26%; width: clamp(28px,  8vw, 55px); }
.deco-legs-l { left: 4%;   bottom: 32%; width: clamp(58px, 20vw, 115px); z-index: 7; }
.deco-legs-r { right: 4%;  bottom: 32%; width: clamp(58px, 20vw, 115px); z-index: 7; }
.deco img { width: 100%; height: auto; display: block; }


/* ═══════════════════════════════════════════════════
   DESKTOP OVERRIDES  (min-width: 769px)
   ═══════════════════════════════════════════════════ */
@media (min-width: 769px) {

    :root { --header-h: 76px; }
    header { height: 76px; }
    .logo img { height: 72px; }

    nav { display: flex; gap: 28px; }
    nav a { font-size: 0.8rem; letter-spacing: 0.12em; }

    .header-icon { display: none !important; }
    .header-btn-text { display: inline; font-family: var(--font-body); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; }
    .cart-count { position: static; display: inline-flex !important; margin-left: 5px; vertical-align: middle; top: auto; right: auto; }
    .header-icon-btn { display: flex; align-items: center; gap: 4px; }

    .hero-title-line  { font-size: clamp(1.8rem, 7.5vw, 5rem); }
    .hero-co          { font-size: clamp(1.8rem, 7.5vw, 5rem); }
    .hero-title-block { top: 10vh; }
    .hero-center-col  { top: 24vh; }
    .hero-img-strip   { height: 45.7vh; }
    .hero-side-wrap   { top: calc(46.85vh - 150px); width: 22%; }
    .hero-side-wrap--left  { left: auto;  right: calc(50% + 15.2vh + 30px); }
    .hero-side-wrap--right { right: auto; left:  calc(50% + 15.2vh + 30px); }
    .hero-side-wrap p { font-size: clamp(0.55rem, 1.1vw, 0.85rem); }
    .hero-badge-wrap  { top: 82vh; }

    /* ── Hello Frank: move lowest hop right, away from cart button ── */
    .next-hop-a { right: 14%; top: calc(27% - 60px); width: clamp(24px, 3.5vw, 44px); }
    .next-hop-b { left: 6%;   top: calc(55% - 60px); width: clamp(24px, 3.5vw, 44px); }
    .next-hop-c { bottom: calc(8% + 43px); right: 8%; left: auto; transform: none; width: clamp(24px, 3.5vw, 44px); }

    /* ── Beer descriptions: desktop size + row gap between style and body ── */
    .can-desc-style   { font-size: clamp(0.84rem, 1.8vw, 1.2rem); margin-bottom: 1em; }
    .can-desc-flavors { font-size: clamp(0.6rem, 1.08vw, 0.78rem); line-height: 1.65; }
    .misirlou-can-desc { max-width: 560px; }

    /* ── Sonne: suns peek from edges on desktop ── */
    .sonne-sun { width: clamp(200px, 28vw, 380px); }
    .sonne-sun-left  { left: -12%; }
    .sonne-sun-right { right: -12%; }

    /* ── Arjé: push down so it doesn't overlap Sonne ── */
    .arje-section { margin-top: 120px; }

    /* ── Equal section spacing: all gaps match Hero→Hello Frank natural flow ── */
    .sonne-section   { margin-top: 0; }
    .next-section    { margin-top: 0; }

    /* ── Arjé roses: 40% smaller, hugging viewport edges ── */
    /* Big curtain roses (l5/r5, l3/r3) */
    .arje-rosa-l5 { left: -4vw;  width: 31vw; }
    .arje-rosa-r5 { right: -4vw; width: 31vw; }
    .arje-rosa-l3 { left: -4vw;  width: 31vw; }
    .arje-rosa-r3 { right: -4vw; width: 31vw; }
    /* Small roses */
    .arje-rosa-l1, .arje-rosa-r1 { width: clamp(50px, 7vw, 86px); }
    .arje-rosa-l2, .arje-rosa-r2 { width: clamp(86px, 12.8vw, 152px); }
    .arje-rosa-l4, .arje-rosa-r4 { width: clamp(86px, 12.8vw, 152px); }
    /* Edge positions for small roses */
    .arje-rosa-l1 { left: -1%; } .arje-rosa-r1 { right: -1%; }
    .arje-rosa-l2 { left: -1%; } .arje-rosa-r2 { right: -1%; }
    .arje-rosa-l4 { left: -1%; } .arje-rosa-r4 { right: -1%; }

    /* ── TNT: overlap into Misirlou ── */
    .tnt-section { margin-top: -160px; }

    /* ── Misirlou: natural spacing ── */
    .misirlou-section  { margin-top: 0; }
    .misirlou-can-wrap { width: clamp(120px, 28vw, 210px); }
    .misirlou-title    { font-size: clamp(1.8rem, 10vw, 4.9rem); }

    /* Waves: centered on the can */
    .misirlou-waves { top: 38%; left: -50%; width: 200%; }

    /* Cloud1: 80px from left, 80% bigger */
    .deco-cloud  { left: 80px; right: auto; top: 14%; width: clamp(187px, 21vw, 304px); }
    /* Cloud2: left side, 30% smaller */
    .deco-cloud2 { left: 300px; right: auto; top: 20%; width: clamp(127px, 12.6vw, 182px); }

    /* OldSun: 220px from right, 40% smaller */
    .deco-sun { left: auto; right: 220px; top: 5%; width: clamp(154px, 17.3vw, 250px); }

    .deco-surf  { left: calc(50% - 210px); top: 38%; width: clamp(60px, 7vw, 100px); }

    /* Legs */
    .deco-legs-l { left: calc(-6% + 30px);  bottom: calc(2% + 60px); width: clamp(115px, 16.6vw, 192px); z-index: 1; }
    .deco-legs-r { right: calc(-6% + 30px); bottom: calc(2% + 60px); width: clamp(115px, 16.6vw, 192px); z-index: 1; }

    .deco-bird-1 { left: calc(50% + 110px); right: auto; top: 14%; width: clamp(22px,  2.5vw, 39px); }
    .deco-bird-2 { left: calc(50% + 160px); right: auto; top: 22%; width: clamp(31px,  3.5vw, 53px); }
    .deco-bird-3 { left: calc(50% + 100px); right: auto; top: 9%;  width: clamp(17px,  1.8vw, 28px); }
    .deco-bird-4 { left: calc(50% + 190px); right: auto; top: 30%; width: clamp(39px,  4.2vw, 67px); }
    .deco-bird-5 { left: calc(50% - 230px); top: 20%;               width: clamp(28px,  2.8vw, 45px); }
}


/* ═══════════════════════════════════════════════════
   LANDING PAGE FOOTER  (pushed 120px up)
   ═══════════════════════════════════════════════════ */
.landing-page footer { min-height: 33vh; padding: 0; display: flex; align-items: center; justify-content: center; margin-top: -120px; }
.landing-page .footer-content { min-height: 33vh; padding: 40px 24px; justify-content: center; gap: 32px; }
.landing-page .footer-logo    { height: 56px; opacity: 0.85; }
.landing-page .footer-tagline { font-size: 1.15rem; letter-spacing: 0.14em; }
.landing-page .footer-nav a   { font-size: 0.85rem; letter-spacing: 0.12em; }
.landing-page .footer-social svg { width: 24px; height: 24px; }
