:root {
  --bg-deep: #0a0a0a;
  --bg-card: #111111;
  --bg-surface: #1a1a1a;
  --fg: #e8e0d6;
  --fg-muted: #8a817a;
  --accent: #c41e3a;
  --accent-glow: #ff2d55;
  --accent-dim: #8b1528;
  --bone: #d4c5b2;
  --fog: rgba(196, 30, 58, 0.08);
  --font-display: 'Creepster', cursive;
  --font-body: 'Space Grotesk', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(196, 30, 58, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(139, 21, 40, 0.1) 0%, transparent 50%),
    var(--bg-deep);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c41e3a' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.9;
  color: var(--fg);
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  text-shadow:
    0 0 40px rgba(196, 30, 58, 0.3),
    0 0 80px rgba(196, 30, 58, 0.1);
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--fg-muted);
  max-width: 540px;
  margin-top: 1.5rem;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.hero-location {
  margin-top: 2.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dim);
  position: relative;
  z-index: 1;
}

.drip {
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, var(--bg-deep), transparent);
  position: relative;
}

/* ---- EXPERIENCES ---- */
.experiences {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.experiences-header {
  text-align: center;
  margin-bottom: 4rem;
}

.experiences-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.experiences-header p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.exp-card {
  background: var(--bg-card);
  border: 1px solid rgba(196, 30, 58, 0.12);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.exp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.exp-card:hover {
  border-color: rgba(196, 30, 58, 0.3);
  transform: translateY(-2px);
}

.exp-card:hover::before {
  opacity: 1;
}

.exp-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.exp-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.exp-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---- ATMOSPHERE ---- */
.atmosphere {
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

.atmosphere::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196, 30, 58, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(139, 21, 40, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.atmo-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.atmo-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--fg);
  margin-bottom: 1rem;
}

.atmo-left p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.atmo-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-block {
  padding: 1.5rem;
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
}

.stat-block .stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent);
  display: block;
}

.stat-block .stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0.25rem;
}

/* ---- CLOSING ---- */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(196, 30, 58, 0.12) 0%, transparent 60%),
    var(--bg-deep);
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--fg);
  margin-bottom: 1rem;
  text-shadow: 0 0 60px rgba(196, 30, 58, 0.2);
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.closing-divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 2rem auto;
  opacity: 0.6;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(196, 30, 58, 0.1);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.footer-text {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.footer-location {
  font-size: 0.75rem;
  color: var(--accent-dim);
  margin-top: 0.5rem;
  letter-spacing: 0.1em;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .atmo-columns {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .hero {
    min-height: 80vh;
    padding: 4rem 1.5rem;
  }

  .experiences,
  .atmosphere,
  .closing {
    padding: 4rem 1.5rem;
  }
}
