/* ═══════════════════════════════════════════════════════════
   OSAKA SUMO LIVE SHOW – Landing Page Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #c0392b;
  --red-dark:   #922b21;
  --red-light:  #e74c3c;
  --gold:       #d4a017;
  --gold-light: #f0c040;
  --gold-pale:  #fdf3d0;
  --dark:       #0d0d0d;
  --dark-2:     #1a1a1a;
  --dark-3:     #252525;
  --mid:        #3d3d3d;
  --grey:       #888;
  --light:      #f8f5f0;
  --white:      #ffffff;
  --ink:        #2b2b2b;

  --font-body: 'Inter', system-ui, sans-serif;
  --font-serif: 'Noto Serif JP', 'Georgia', serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0,0,0,0.14);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.25);

  --max-w: 1200px;
  --nav-h: 70px;

  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Sections ── */
.section { padding: 96px 0; }

/* ═══════════════════════════════════
   BUTTONS
═══════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,57,43,0.4);
}

.btn--gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,160,23,0.45);
}

.btn--nav {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  padding: 9px 22px;
  font-size: 0.88rem;
}
.btn--nav:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn--outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--lg  { padding: 15px 36px; font-size: 1.05rem; }
.btn--xl  { padding: 18px 48px; font-size: 1.15rem; }
.btn--full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════ */
.section-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }

.section-tag {
  display: inline-block;
  background: rgba(192,57,43,0.1);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-tag--light {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-title--light { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 560px;
  margin: 0 auto;
}

.accent       { color: var(--red); }
.accent-gold  { color: var(--gold-light); }

/* ═══════════════════════════════════
   NAVIGATION
═══════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 12px 0;
}
.nav.scrolled {
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
  padding: 8px 0;
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo-kanji {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
}
.nav__logo-text {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.01em;
}

.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav__links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--gold-light); }

.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: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 16px;
  background: rgba(13,13,13,0.98);
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav__mobile ul { display: flex; flex-direction: column; gap: 8px; }
.nav__mobile a  { color: rgba(255,255,255,0.85); font-size: 1rem; }
.nav__mobile.open { display: flex; }

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,13,0.88) 0%,
    rgba(100,10,10,0.72) 40%,
    rgba(13,13,13,0.5) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(212,160,23,0.2);
  border: 1px solid rgba(212,160,23,0.5);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero__badge i { color: var(--gold-light); }

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero__title-jp {
  display: block;
  font-size: 0.45em;
  color: rgba(212,160,23,0.8);
  letter-spacing: 0.2em;
  margin-bottom: 4px;
}
.hero__title-accent { color: var(--gold-light); }

.hero__sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.84rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 24px;
  backdrop-filter: blur(6px);
}
.chip i { color: var(--gold-light); font-size: 0.8rem; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}
.trust-item i { color: var(--gold-light); }

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  animation: bounce 2s ease-in-out infinite;
}
.hero__scroll-indicator i { font-size: 1rem; }

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

/* ═══════════════════════════════════
   INTRO STRIP
═══════════════════════════════════ */
.intro-strip {
  background: var(--dark);
  padding: 32px 0;
}
.intro-strip__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.intro-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 48px;
}
.intro-stat__number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}
.intro-stat__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.intro-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
}

/* ═══════════════════════════════════
   EXPERIENCE
═══════════════════════════════════ */
.experience { background: var(--light); }

.experience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.experience__visual { position: relative; }

.experience__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.experience__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.experience__img-wrap:hover .experience__img { transform: scale(1.04); }

.experience__img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(8px);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.15);
}
.experience__img-badge i { color: var(--red-light); font-size: 1.1rem; }

.experience__img-small-wrap {
  margin-top: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.experience__img-small {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
}

/* Steps */
.experience__steps { display: flex; flex-direction: column; gap: 28px; }

.exp-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  border-left: 4px solid transparent;
}
.exp-step:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
  border-left-color: var(--red);
}

.exp-step__icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.15rem;
}
.exp-step__body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.exp-step__body p {
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.6;
}

/* ═══════════════════════════════════
   HIGHLIGHTS
═══════════════════════════════════ */
.highlights {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}
.highlights__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px),
    repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px);
  pointer-events: none;
}

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hl-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}
.hl-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,160,23,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.hl-card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold), #b8860b);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.hl-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.hl-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}
.hl-card p strong { color: rgba(255,255,255,0.75); }

/* ═══════════════════════════════════
   INCLUSIONS
═══════════════════════════════════ */
.inclusions { background: var(--white); }

.inclusions__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.inclusions__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 2px solid;
}
.inclusions__title--yes   { color: #27ae60; border-color: #27ae60; }
.inclusions__title--info  { color: var(--mid); border-color: #ccc; }

.inclusions__list { display: flex; flex-direction: column; gap: 12px; }
.inclusions__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.5;
}
.inclusions__list li i { font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }
.inclusions__list:not(.inclusions__list--info) li i { color: #27ae60; }
.inclusions__list--info li i { color: var(--grey); }
.inclusions__list--info strong { font-weight: 600; }

/* ═══════════════════════════════════
   PRICING
═══════════════════════════════════ */
.pricing { background: var(--light); }

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 880px;
  margin: 0 auto 32px;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  position: relative;
  border: 2px solid transparent;
  transition: var(--transition);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.price-card--featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fffdf5 0%, var(--white) 100%);
}

.price-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

.price-card__show-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.price-card--featured .price-card__show-label { color: var(--gold); }

.price-card__time {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.price-card__desc {
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: 24px;
  line-height: 1.6;
}

.price-card__prices {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--light);
  border-radius: 8px;
}
.price-row--free { background: rgba(39,174,96,0.08); }

.price-label { font-size: 0.88rem; font-weight: 600; color: var(--mid); }
.price-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
}
.price-value em { font-style: normal; font-size: 0.78rem; color: var(--grey); }
.price-row--free .price-value { color: #27ae60; }

.pricing__schedule-note {
  text-align: center;
  color: var(--grey);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.pricing__schedule-note i { color: var(--red); }

/* ═══════════════════════════════════
   GALLERY
═══════════════════════════════════ */
.gallery { background: var(--dark-3); }
.gallery .section-title--light { color: var(--white); }
.gallery .section-title { color: var(--white); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 12px;
}
.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.9);
}
.gallery__item:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.gallery__item--tall {
  grid-row: span 2;
}
.gallery__item--wide {
  grid-column: span 2;
}

/* ═══════════════════════════════════
   LOCATION
═══════════════════════════════════ */
.location { background: var(--light); }

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.location__content .section-tag { margin-bottom: 12px; }
.location__content .section-title { text-align: left; margin-bottom: 28px; font-size: clamp(1.6rem, 3vw, 2.2rem); }

.location__address {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.location__address i {
  color: var(--red);
  font-size: 1.2rem;
  margin-top: 3px;
}
.location__address strong { color: var(--dark); }
.location__address div { font-size: 0.95rem; color: var(--grey); line-height: 1.7; }

.location__stations { margin-bottom: 20px; }
.location__stations h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.location__stations h4 em { font-style: normal; color: var(--grey); font-weight: 400; font-size: 0.83rem; }
.location__stations h4 i { color: var(--red); }

.station-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid #ddd;
  padding: 7px 16px;
  border-radius: 24px;
  font-size: 0.87rem;
  font-weight: 500;
  margin-right: 8px;
  margin-bottom: 8px;
}
.station-pill i { font-size: 0.5rem; color: var(--red); }

.location__note {
  font-size: 0.86rem;
  color: var(--grey);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.location__note i { color: var(--grey); }

.location__map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(0,0,0,0.06);
}
.location__map-wrap iframe { display: block; }

/* ═══════════════════════════════════
   FINAL CTA
═══════════════════════════════════ */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  text-align: center;
}
.final-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.final-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,5,5,0.9) 0%, rgba(80,10,10,0.82) 100%);
}

.final-cta__content {
  position: relative;
  z-index: 2;
}

.final-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  margin: 12px 0 18px;
  line-height: 1.15;
}

.final-cta__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.final-cta__btns { margin-bottom: 28px; }

.final-cta__trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.final-cta__trust span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}
.final-cta__trust i { color: var(--gold-light); }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.footer {
  background: var(--dark);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand .footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer__brand .footer__logo span:last-child {
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}
.footer__brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 300px;
}

.footer__info h4,
.footer__book h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer__info ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer__info li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__info li i { color: rgba(255,255,255,0.3); font-size: 0.8rem; }

.footer__book p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer__support {
  margin-top: 14px !important;
  font-size: 0.78rem !important;
  color: rgba(255,255,255,0.3) !important;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer__support i { color: var(--gold); }

.footer__bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ═══════════════════════════════════
   STICKY MOBILE CTA
═══════════════════════════════════ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.sticky-cta.show { transform: translateY(0); }

.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 480px;
  margin: 0 auto;
}
.sticky-cta__text {
  display: flex;
  flex-direction: column;
}
.sticky-cta__text strong {
  font-size: 0.9rem;
  color: var(--white);
}
.sticky-cta__text span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ═══════════════════════════════════
   ANIMATIONS
═══════════════════════════════════ */
.animate-fade-in {
  opacity: 0;
  animation: fadeIn 0.9s ease forwards;
}
.animate-slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.highlights__grid .hl-card:nth-child(1) { transition-delay: 0.05s; }
.highlights__grid .hl-card:nth-child(2) { transition-delay: 0.15s; }
.highlights__grid .hl-card:nth-child(3) { transition-delay: 0.25s; }
.highlights__grid .hl-card:nth-child(4) { transition-delay: 0.05s; }
.highlights__grid .hl-card:nth-child(5) { transition-delay: 0.15s; }
.highlights__grid .hl-card:nth-child(6) { transition-delay: 0.25s; }

.experience__steps .exp-step:nth-child(1) { transition-delay: 0.05s; }
.experience__steps .exp-step:nth-child(2) { transition-delay: 0.15s; }
.experience__steps .exp-step:nth-child(3) { transition-delay: 0.25s; }
.experience__steps .exp-step:nth-child(4) { transition-delay: 0.35s; }

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile landscape / large tablet */
@media (max-width: 820px) {
  .experience__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .inclusions__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
  .location__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 2; }
}

/* Mobile */
@media (max-width: 640px) {
  .section { padding: 64px 0; }

  /* Nav */
  .nav__links { display: none; }
  .nav .btn--nav { display: none; }
  .nav__hamburger { display: flex; }

  /* Hero */
  .hero__title { font-size: 2.6rem; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .hero__trust { flex-direction: column; gap: 10px; }

  /* Intro strip */
  .intro-strip__grid { gap: 0; }
  .intro-stat { padding: 12px 20px; }
  .intro-divider { height: 32px; }

  /* Highlights */
  .highlights__grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery__item { height: 220px; }
  .gallery__item--tall, .gallery__item--wide { grid-column: span 1; grid-row: span 1; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  /* Sticky CTA */
  .sticky-cta { display: block; }

  /* Pricing */
  .price-card { padding: 28px 22px; }

  /* Section header */
  .section-header { margin-bottom: 40px; }
}

@media (max-width: 400px) {
  .intro-divider { display: none; }
  .intro-strip__grid { justify-content: space-around; }
}
