/* Revel the Ride — Main Stylesheet */

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

:root {
  --bg:        #0a0a0a;
  --bg2:       #111111;
  --bg3:       #181818;
  --border:    #2a2a2a;
  --text:      #f0ede8;
  --muted:     #888880;
  --accent:    #c8a96e;
  --accent2:   #a07840;
  --white:     #ffffff;
  --radius:    6px;
  --max-w:     1080px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 17px;
  line-height: 1.75;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 60px;
}

.nav-brand {
  font-family: 'Palatino Linotype', 'Palatino', serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(200,169,110,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 50% 0%, rgba(200,169,110,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-logo {
  width: min(480px, 85vw);
  margin-bottom: 2.5rem;
  filter: drop-shadow(0 4px 32px rgba(200,169,110,0.18));
}

.hero-tagline {
  font-family: 'Palatino Linotype', 'Palatino', serif;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.hero-tagline span { color: var(--accent); }

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #0a0a0a;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.6rem;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-1px);
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--border);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── SECTIONS ── */
section {
  padding: 6rem 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

section.full-bleed {
  max-width: none;
  padding: 6rem 0;
}

section.full-bleed .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

h2 {
  font-family: 'Palatino Linotype', 'Palatino', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: normal;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 2rem;
}

/* ── DIVIDER ── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: 0 auto;
  max-width: var(--max-w);
}

/* ── MANIFESTO ── */
#story {
  border-left: 3px solid var(--accent);
  padding-left: 2.5rem;
}

.manifesto {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.9;
}

.manifesto p { margin-bottom: 1.5rem; }
.manifesto p:last-child { margin-bottom: 0; }

.manifesto .lead {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--white);
}

/* ── THE WAVE ── */
#wave {
  background: var(--bg2);
}

.wave-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.wave-text p { color: var(--muted); margin-bottom: 1rem; }
.wave-text p:last-child { margin-bottom: 0; }

.wave-symbol {
  text-align: center;
  font-size: 8rem;
  opacity: 0.18;
  user-select: none;
  line-height: 1;
}

/* ── CHARITY ── */
#charity {
  text-align: center;
}

.charity-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 3rem;
  margin: 2rem 0 3rem;
}

.charity-badge .wish-icon {
  font-size: 3rem;
}

.charity-badge .wish-name {
  font-family: 'Palatino Linotype', 'Palatino', serif;
  font-size: 1.4rem;
  color: var(--white);
}

.charity-badge .wish-line {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.charity-note {
  max-width: 600px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.95rem;
}

.price-breakdown {
  display: flex;
  justify-content: center;
  gap: 1px;
  margin: 2.5rem 0;
}

.price-part {
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 1.5rem 2rem;
  text-align: center;
  flex: 1;
  max-width: 200px;
}

.price-part:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.price-part:last-child  { border-radius: 0 var(--radius) var(--radius) 0; }
.price-part.accent-part { background: var(--accent); border-color: var(--accent); }

.price-part .amount {
  font-family: 'Palatino Linotype', 'Palatino', serif;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.price-part.accent-part .amount { color: #0a0a0a; }

.price-part .label {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.price-part.accent-part .label { color: rgba(10,10,10,0.6); }

/* ── SHOP ── */
#shop {
  text-align: center;
}

.sticker-options {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.sticker-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  width: 260px;
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}

.sticker-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.sticker-card img {
  width: 100%;
  max-width: 180px;
  margin-bottom: 1.2rem;
}

.sticker-card.dark-card { background: var(--bg); }
.sticker-card.light-card { background: #f5f5f0; }

.sticker-card .card-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.sticker-card.light-card .card-title { color: #666; }

.sticker-card .card-price {
  font-family: 'Palatino Linotype', 'Palatino', serif;
  font-size: 1.4rem;
  color: var(--white);
}

.sticker-card.light-card .card-price { color: #111; }

.sticker-card .card-charity {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  color: var(--accent);
  margin-top: 0.4rem;
}

.shop-note {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 3rem 2rem;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

footer .footer-logo {
  font-family: 'Palatino Linotype', 'Palatino', serif;
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--accent); }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .wave-grid { grid-template-columns: 1fr; }
  .wave-symbol { display: none; }
  nav .nav-links { display: none; }
  .price-breakdown { flex-direction: column; align-items: center; }
  .price-part:first-child,
  .price-part:last-child { border-radius: var(--radius); }
  section { padding: 4rem 1.25rem; }
}
