*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root { --teal: #1B8A9A; --teal-dark: #136475; --rust: #B84A28; --amber: #C4950A; --gold: #E8A820; --cream: #F5ECD8; --dark: #1A0E06; --text: #2C1A08; --mid: #6B4226; }
body { font-family: 'Inter', sans-serif; color: rgba(255,255,255,0.9); background: var(--cream); overflow-x: hidden; }

/* TICKER */
.ticker-wrap { background: #1A0E06; overflow: hidden; height: 36px; display: flex; align-items: center; position: fixed; top: 0; left: 0; right: 0; z-index: 200; }
.ticker-track { display: flex; gap: 48px; animation: ticker 30s linear infinite; white-space: nowrap; }
.ticker-item { font-size: 0.72rem; font-weight: 600; color: rgba(255,248,232,0.85); letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; flex-shrink: 0; }
.ticker-pill { background: var(--teal); color: #fff; padding: 2px 8px; border-radius: 3px; margin-right: 6px; font-size: 0.65rem; }
.ticker-sep { color: rgba(255,248,232,0.3); font-size: 0.65rem; flex-shrink: 0; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* NAV */
nav:not(.nav-drawer) { position: fixed; top: 36px; left: 0; right: 0; z-index: 100; display: flex; align-items: center; gap: 20px; padding: 0 clamp(16px,4vw,48px); height: 68px; background: #1E0A02; border-bottom: 2px solid #4A2810; box-shadow: 0 2px 12px rgba(0,0,0,0.15); }
.nav-badge { display: flex; align-items: center; gap: 14px; text-decoration: none; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: clamp(12px,2vw,28px); margin-left: auto; }
.nav-links > a, .nav-item > a { font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.9); text-decoration: none; letter-spacing: 0.12em; text-transform: uppercase; transition: color 0.2s; white-space: nowrap; }
.nav-links > a:hover, .nav-item > a:hover { color: #B04A20; }
.nav-links > a.active { color: #B04A20; border-bottom: 2px solid #B04A20; padding-bottom: 2px; }
.nav-cta { background: #B84A28 !important; color: #fff !important; padding: 10px 22px !important; border-radius: 4px !important; font-size: 0.75rem !important; font-weight: 800 !important; text-transform: uppercase !important; letter-spacing: 0.14em !important; white-space: nowrap; transition: background 0.2s !important; flex-shrink: 0; }
.nav-cta:hover { background: #983820 !important; }
.nav-item { position: relative; }
.nav-item > a { display: inline-flex; align-items: center; gap: 4px; }
.nav-item > a::after { content: "\25be"; font-size: 0.6rem; opacity: 0.6; transition: transform 0.2s; }
.nav-item:hover > a::after { transform: rotate(180deg); }
.nav-dropdown { display: none; position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%); background: #1E0A02; border: 1.5px solid #4A2810; border-radius: 6px; box-shadow: 0 8px 24px rgba(0,0,0,0.15); min-width: 180px; z-index: 200; overflow: hidden; }
.nav-dropdown a { display: block; padding: 10px 18px; font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.9); text-decoration: none; letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; border-bottom: 1px solid rgba(196,168,120,0.4); transition: background 0.15s, color 0.15s; }
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { background: #2E1206; color: #E8901A; }
.nav-item:hover .nav-dropdown { display: block; }
.nav-item::after { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 20px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: currentColor; border-radius: 2px; }
@media (max-width: 768px) { .nav-links { display: none; } .nav-hamburger { display: flex; } }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 149; }
.nav-overlay.open { display: block; }
nav.nav-drawer { position: fixed; top: 0; right: -320px; width: 300px; height: 100vh; background: #1A0E06; z-index: 150; transition: right 0.3s ease; display: flex; flex-direction: column; }
nav.nav-drawer.open { right: 0; }
.nav-drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 20px 16px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.nav-drawer-logo { font-family: 'Rye', cursive; font-size: 0.85rem; color: #F5ECD8; line-height: 1.4; }
.nav-drawer-close { background: none; border: none; color: #F5ECD8; font-size: 1.4rem; cursor: pointer; }
.nav-drawer-links { display: flex; flex-direction: column; padding: 16px 0; overflow-y: auto; flex: 1; }
.nav-drawer-links > a { padding: 12px 20px; font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 700; color: rgba(255,248,232,0.9); text-decoration: none; letter-spacing: 0.1em; text-transform: uppercase; }
.nav-drawer-cta { margin: 16px 20px 0; background: #B84A28; color: #fff !important; text-align: center; padding: 14px !important; border-radius: 4px; font-weight: 800 !important; }
.nav-drawer-section { font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 800; color: rgba(255,248,232,0.5); letter-spacing: 0.15em; text-transform: uppercase; padding: 14px 16px 4px; }
.nav-drawer-sub { padding-left: 18px; }
.nav-drawer-sub a { display: block; padding: 8px 16px; font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 600; color: rgba(255,248,232,0.7); text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase; border-left: 2px solid rgba(196,149,10,0.4); margin: 2px 0; }
.nav-drawer-sub a:hover { color: #F5C842; }

/* HERO */
.page-hero { position: relative; min-height: 55vh; display: flex; align-items: flex-end; padding: 104px clamp(24px,6vw,80px) clamp(48px,6vw,72px); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: url('/assets/images/combo-hero.png'); background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,8,3,0.88) 0%, rgba(13,8,3,0.5) 50%, rgba(13,8,3,0.25) 100%); }
.hero-pattern { display: none; }
.page-hero-content { position: relative; z-index: 2; max-width: 720px; }
.page-eyebrow { font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.page-hero-content h1 { font-family: 'Rye', cursive; font-size: clamp(2.2rem,5.5vw,4rem); color: #F5ECD8; line-height: 1.1; margin-bottom: 16px; }
.page-hero-content p { font-size: clamp(1rem,2vw,1.12rem); color: rgba(245,236,216,0.8); max-width: 580px; line-height: 1.75; margin-bottom: 28px; }
.hero-cta { display: inline-block; background: var(--rust); color: #fff; padding: 14px 36px; border-radius: 4px; font-size: 0.85rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; transition: background 0.2s, transform 0.2s; }
.hero-cta:hover { background: #983820; transform: translateY(-2px); }

/* VALUE PROPOSITION */
.value-section { background: #F5ECD8; padding: clamp(48px,7vw,80px) clamp(24px,6vw,80px); }
.value-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.section-eyebrow { font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); margin-bottom: 10px; }
.value-section h2 { font-family: 'Rye', cursive; font-size: clamp(1.6rem,4vw,2.6rem); color: var(--dark); margin-bottom: 16px; }
.value-section > .value-inner > p { color: var(--mid); font-size: 1rem; line-height: 1.8; max-width: 640px; margin: 0 auto 40px; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 900px; margin: 0 auto; }
.value-card { text-align: center; padding: 28px 20px; }
.value-icon { font-size: 2.2rem; margin-bottom: 14px; }
.value-card h4 { font-family: 'Rye', cursive; font-size: 1rem; color: var(--dark); margin-bottom: 8px; }
.value-card p { font-size: 0.88rem; color: var(--mid); line-height: 1.7; }
@media (max-width: 700px) { .value-grid { grid-template-columns: 1fr; max-width: 400px; } }

/* PACKAGES */
.packages-section { background: #1A0E06; padding: clamp(48px,7vw,88px) clamp(24px,6vw,80px); }
.packages-section .section-eyebrow { color: var(--gold); text-align: center; }
.packages-section h2 { font-family: 'Rye', cursive; font-size: clamp(1.6rem,4vw,2.6rem); color: #F5ECD8; text-align: center; margin-bottom: 12px; }
.packages-section > .packages-sub { color: rgba(245,236,216,0.65); font-size: 1rem; line-height: 1.7; max-width: 600px; margin: 0 auto 48px; text-align: center; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1100px; margin: 0 auto; }
@media (max-width: 900px) { .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

.package-card { background: #2A1508; border: 1px solid rgba(232,168,32,0.15); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; }
.package-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.package-card-header { background: linear-gradient(135deg, #3A1A08, #2A1508); padding: 28px 24px 20px; text-align: center; border-bottom: 1px solid rgba(232,168,32,0.1); }
.package-card-icons { font-size: 1.8rem; margin-bottom: 12px; letter-spacing: 6px; }
.package-card-header h3 { font-family: 'Rye', cursive; font-size: 1.15rem; color: #F5ECD8; margin-bottom: 6px; }
.package-card-header .package-tagline { font-size: 0.78rem; color: var(--gold); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.package-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.package-includes { list-style: none; margin-bottom: 20px; }
.package-includes li { font-size: 0.88rem; color: rgba(245,236,216,0.8); line-height: 1.6; padding: 6px 0; padding-left: 24px; position: relative; border-bottom: 1px solid rgba(255,255,255,0.04); }
.package-includes li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.package-includes li:last-child { border-bottom: none; }
.package-price { text-align: center; margin: auto 0 16px; padding-top: 16px; }
.package-price .price-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(245,236,216,0.5); margin-bottom: 4px; }
.package-price .price-amount { font-family: 'Rye', cursive; font-size: 2rem; color: var(--gold); }
.package-price .price-amount span { font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 600; color: rgba(245,236,216,0.5); }
.package-price .price-savings { font-size: 0.78rem; font-weight: 700; color: #4CAF50; margin-top: 4px; }
.package-cta { display: block; text-align: center; background: var(--rust); color: #fff; padding: 14px; border-radius: 4px; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; transition: background 0.2s; }
.package-cta:hover { background: #983820; }

/* HOW IT WORKS */
.how-section { background: var(--cream); padding: clamp(48px,7vw,80px) clamp(24px,6vw,80px); }
.how-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.how-section h2 { font-family: 'Rye', cursive; font-size: clamp(1.6rem,4vw,2.4rem); color: var(--dark); margin-bottom: 40px; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.how-step { text-align: center; }
.how-step-num { font-family: 'Rye', cursive; font-size: 2rem; color: var(--amber); margin-bottom: 10px; }
.how-step h4 { font-size: 0.9rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--dark); margin-bottom: 6px; }
.how-step p { font-size: 0.85rem; color: var(--mid); line-height: 1.7; }
@media (max-width: 600px) { .how-steps { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; } }

/* BOTTOM CTA */
.bottom-cta { background: linear-gradient(135deg, #2E1206, #1A0E06); padding: clamp(48px,7vw,72px) clamp(24px,6vw,80px); text-align: center; }
.bottom-cta h2 { font-family: 'Rye', cursive; font-size: clamp(1.6rem,4vw,2.4rem); color: #F5ECD8; margin-bottom: 12px; }
.bottom-cta p { color: rgba(245,236,216,0.7); font-size: 1rem; line-height: 1.7; max-width: 520px; margin: 0 auto 28px; }
.bottom-cta .hero-cta { background: var(--gold); color: var(--dark); }
.bottom-cta .hero-cta:hover { background: #d4920a; }

/* FOOTER */
footer { background: #0D0A07; border-top: 1px solid rgba(184,104,16,0.15); padding: clamp(48px,6vw,72px) clamp(20px,6vw,80px) clamp(32px,4vw,48px); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 220px 1fr 1fr 1fr; gap: 48px; }
.footer-brand img { height: 80px; margin-bottom: 20px; display: block; }
.footer-social { display: flex; gap: 14px; margin-top: 4px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(184,104,16,0.35); color: var(--amber); font-size: 1rem; text-decoration: none; transition: background 0.2s, border-color 0.2s; }
.footer-social a:hover { background: rgba(184,104,16,0.2); border-color: var(--amber); }
.footer-col h4 { font-family: 'Rye', cursive; font-size: 0.82rem; font-weight: 400; color: var(--amber); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; border-bottom: 1px solid rgba(184,104,16,0.3); padding-bottom: 10px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: #A07848; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--amber); }
.footer-col p { font-size: 0.88rem; color: #A07848; line-height: 1.7; }
.footer-col a { color: #A07848; text-decoration: none; }
.footer-col a:hover { color: var(--amber); }
.footer-bottom { max-width: 1200px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.75rem; color: #5A4428; }
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; gap: 28px; } .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; } }
