/* ============================================
   GRANDE OURSE — Design System
   Métaphysique Chinoise · Voyage Céleste
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Raleway:wght@200;300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --night: #060d1f;
  --night-deep: #030811;
  --night-mid: #0a1128;
  --night-light: #111b38;
  --gold: #d4af37;
  --gold-light: #f0d060;
  --gold-dim: #a88a2a;
  --silver: #c0c0c0;
  --silver-light: #e0e0e8;
  --white: #f5f5fa;
  --aurora-teal: #1a7a6d;
  --aurora-green: #2ecc71;
  --aurora-purple: #6c3eb6;
  --aurora-pink: #9b59b6;
  --star-blue: #6cb4ee;
  --glass-bg: rgba(10, 17, 40, 0.55);
  --glass-border: rgba(212, 175, 55, 0.15);
  --glass-hover: rgba(212, 175, 55, 0.08);

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Raleway', 'Segoe UI', sans-serif;

  /* Spacing */
  --section-pad: clamp(4rem, 10vw, 8rem) clamp(1rem, 5vw, 6rem);
  --card-radius: 16px;
  --nav-height: 70px;

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--white);
  background: var(--night-deep);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--gold-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Starry Canvas Background --- */
#starfield {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Aurora overlay */
.aurora-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 60% at 20% 10%, rgba(26, 122, 109, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 100% 50% at 80% 5%, rgba(108, 62, 182, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(46, 204, 113, 0.05) 0%, transparent 50%);
  animation: auroraShift 20s ease-in-out infinite alternate;
}

@keyframes auroraShift {
  0% {
    opacity: 0.6;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-10px);
  }

  100% {
    opacity: 0.7;
    transform: translateY(5px);
  }
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  background: rgba(6, 13, 31, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  transition: background 0.4s, box-shadow 0.4s;
}

.navbar.scrolled {
  background: rgba(6, 13, 31, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo .star-icon {
  font-size: 1.2rem;
  animation: pulseStar 3s ease-in-out infinite;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--silver-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease-out);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 0.5rem 1.4rem !important;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: var(--night) !important;
  border-radius: 30px;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4) !important;
  color: var(--night) !important;
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('header-bg.png') center/cover no-repeat;
  z-index: -2;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(3, 8, 17, 0.3) 0%,
      rgba(6, 13, 31, 0.6) 50%,
      var(--night-deep) 100%);
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
  animation: fadeInUp 1.2s var(--ease-out) both;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  margin-bottom: 2rem;
  background: rgba(212, 175, 55, 0.05);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.hero h1 .gold {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--silver);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(245, 245, 250, 0.7);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.4rem;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold), var(--gold-light));
  background-size: 200% 200%;
  color: var(--night);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: shimmer 3s ease infinite;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
  color: var(--night);
}

@keyframes shimmer {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: float 3s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 245, 250, 0.4);
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid rgba(212, 175, 55, 0.5);
  border-bottom: 1.5px solid rgba(212, 175, 55, 0.5);
  transform: rotate(45deg);
}

@keyframes float {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* --- Section Base --- */
.section {
  position: relative;
  z-index: 2;
  padding: var(--section-pad);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header .label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1rem;
  color: rgba(245, 245, 250, 0.6);
  line-height: 1.8;
}

/* --- Intro Section --- */
.intro-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(245, 245, 250, 0.75);
  margin-bottom: 1.5rem;
}

.intro-text .highlight {
  color: var(--gold);
  font-weight: 400;
}

/* --- Bento Grid — 7 Étoiles --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Constellation layout */
.bento-card:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1;
}

/* Étoile 1 — large */
.bento-card:nth-child(2) {
  grid-column: 3 / 4;
  grid-row: 1;
}

/* Étoile 2 */
.bento-card:nth-child(3) {
  grid-column: 4 / 5;
  grid-row: 1;
}

/* Étoile 3 */
.bento-card:nth-child(4) {
  grid-column: 1 / 2;
  grid-row: 2;
}

/* Étoile 4 */
.bento-card:nth-child(5) {
  grid-column: 2 / 4;
  grid-row: 2 / 4;
}

/* Étoile 5 — Polaire — Grand */
.bento-card:nth-child(6) {
  grid-column: 4 / 5;
  grid-row: 2;
}

/* Étoile 6 */
.bento-card:nth-child(7) {
  grid-column: 1 / 2;
  grid-row: 3;
  grid-column: 1 / 2;
}

/* Étoile 7 */

.bento-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  padding: 2rem 1.8rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
  cursor: default;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.03), transparent 70%);
  transition: opacity 0.4s;
  opacity: 0;
  pointer-events: none;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 8px 40px rgba(212, 175, 55, 0.08), 0 0 60px rgba(212, 175, 55, 0.04);
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card .star-number {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bento-card .star-number .star-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulseStar 3s ease-in-out infinite;
}

.bento-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.bento-card .card-subtitle {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold-dim);
  margin-bottom: 1rem;
}

.bento-card p {
  font-size: 0.88rem;
  color: rgba(245, 245, 250, 0.6);
  line-height: 1.7;
}

/* Polaris card — 5th star — special glow */
.bento-card.polaris {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), var(--glass-bg));
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.06);
}

.bento-card.polaris .star-dot {
  width: 10px;
  height: 10px;
  box-shadow: 0 0 12px var(--gold), 0 0 30px rgba(212, 175, 55, 0.3);
  animation: polarisPulse 2s ease-in-out infinite;
}

@keyframes pulseStar {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

@keyframes polarisPulse {

  0%,
  100% {
    opacity: 0.8;
    transform: scale(1);
    box-shadow: 0 0 12px var(--gold), 0 0 30px rgba(212, 175, 55, 0.3);
  }

  50% {
    opacity: 1;
    transform: scale(1.5);
    box-shadow: 0 0 20px var(--gold), 0 0 50px rgba(212, 175, 55, 0.5);
  }
}

/* --- Packs Section --- */
.packs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pack-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  padding: 2.5rem 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
  overflow: hidden;
}

.pack-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.pack-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow:
    0 12px 50px rgba(212, 175, 55, 0.18),
    0 0 80px rgba(212, 175, 55, 0.08),
    inset 0 0 30px rgba(212, 175, 55, 0.03);
}

.pack-card:hover::before {
  opacity: 1;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.07) 0%, transparent 60%);
}

.pack-card .pack-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  display: block;
}

.pack-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.pack-card .pack-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--silver);
  margin-bottom: 1.2rem;
}

.pack-card p {
  font-size: 0.9rem;
  color: rgba(245, 245, 250, 0.65);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.pack-card .price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.pack-card .price small {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--silver);
}

.pack-card .btn-book {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: var(--night);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pack-card .btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.35);
  color: var(--night);
}

.price-note {
  font-size: 0.8rem;
  color: rgba(245, 245, 250, 0.45);
  margin-bottom: 1.2rem;
}

/* Highlight the premium pack */
.pack-card.featured {
  border-color: rgba(212, 175, 55, 0.35);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06), var(--glass-bg));
}

.pack-card.featured::after {
  content: '✦ Recommandé';
  position: absolute;
  top: 1rem;
  right: -2rem;
  background: var(--gold);
  color: var(--night);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 2.5rem;
  transform: rotate(45deg);
}

/* --- About Section --- */
.about-section {
  max-width: 900px;
  margin: 0 auto;
}

.about-block {
  margin-bottom: 3rem;
}

.about-block h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 1rem;
}

.about-block p {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(245, 245, 250, 0.72);
  margin-bottom: 1rem;
}

.about-divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 2.5rem auto;
}

.about-signature {
  text-align: center;
  padding: 2.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.about-signature h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.about-signature p {
  font-size: 0.95rem;
  color: rgba(245, 245, 250, 0.65);
  line-height: 1.8;
}

/* --- Footer --- */
.footer {
  position: relative;
  z-index: 2;
  padding: 4rem clamp(1.5rem, 5vw, 6rem) 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-brand h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(245, 245, 250, 0.5);
  max-width: 300px;
}

.footer-contact h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 400;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--silver);
  margin-bottom: 0.6rem;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--gold);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.8rem;
  padding: 0.65rem 1.6rem;
  background: #25D366;
  color: #fff !important;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  color: #fff !important;
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.75rem;
  color: rgba(245, 245, 250, 0.3);
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.reveal-delay-6 {
  transition-delay: 0.6s;
}

.reveal-delay-7 {
  transition-delay: 0.7s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-card:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .bento-card:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
  }

  .bento-card:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
  }

  .bento-card:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .bento-card:nth-child(5) {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .bento-card:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }

  .bento-card:nth-child(7) {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(6, 13, 31, 0.97);
    backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card:nth-child(1),
  .bento-card:nth-child(5) {
    grid-column: auto;
  }

  .packs-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand p {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .bento-card {
    padding: 1.5rem 1.2rem;
  }

  .pack-card {
    padding: 2rem 1.5rem;
  }
}