/* Preethi Neeti Jyothi — landing styles */

:root {
  --cream: #f7f3eb;
  --cream-deep: #ebe4d6;
  --bg-deep: var(--cream);
  --bg-card: rgba(255, 255, 255, 0.82);
  --bg-elevated: #ffffff;
  --teal: #1a5c56;
  --teal-deep: #0f3d3a;
  --teal-soft: #2d7a72;
  --text: #143432;
  --text-muted: #4a6b68;
  --gold: #b8941f;
  --gold-soft: #d4af37;
  --gold-light: #e8d5a3;
  --accent: var(--teal);
  --border: rgba(26, 92, 86, 0.16);
  --glow: rgba(212, 175, 55, 0.25);
  --shadow: rgba(20, 52, 50, 0.08);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom, 0);
  -webkit-tap-highlight-color: transparent;
}

body.nav-open {
  overflow: hidden;
}

.bg-pattern {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(45, 122, 114, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 35% at 100% 60%, rgba(212, 175, 55, 0.1), transparent 50%),
    radial-gradient(ellipse 45% 30% at 0% 90%, rgba(26, 92, 86, 0.08), transparent 45%),
    var(--bg-deep);
}

.bg-pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L35 25L60 30L35 35L30 60L25 35L0 30L25 25Z' fill='%231a5c56'/%3E%3C/svg%3E");
  background-size: 48px 48px;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  background: linear-gradient(
    180deg,
    rgba(255, 252, 247, 0.94) 0%,
    rgba(247, 243, 235, 0.88) 100%
  );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 4px 24px rgba(20, 52, 50, 0.06);
}

.header-accent {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold-soft) 18%,
    var(--teal-soft) 50%,
    var(--gold-soft) 82%,
    transparent 100%
  );
  opacity: 0.85;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s var(--ease);
}

.logo:hover {
  opacity: 0.92;
}

.logo-ring {
  position: relative;
  flex-shrink: 0;
  padding: 3px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-soft), var(--teal-soft), var(--gold));
  box-shadow: 0 4px 16px rgba(26, 92, 86, 0.15);
}

.logo-img {
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--cream);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  min-width: 0;
}

.logo-name-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--teal-deep);
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-deep);
  background: linear-gradient(135deg, rgba(232, 213, 163, 0.6), rgba(212, 175, 55, 0.25));
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.logo-tagline {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

@media (min-width: 900px) {
  .logo-tagline {
    max-width: none;
  }
}

.nav-panel {
  display: flex;
  align-items: center;
}

.nav-panel-label {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(26, 92, 86, 0.1);
  box-shadow: 0 2px 12px rgba(20, 52, 50, 0.04);
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  transition:
    color 0.2s var(--ease),
    background 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

.nav-icon {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  opacity: 0.75;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.nav-links a:hover {
  color: var(--teal-deep);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(20, 52, 50, 0.06);
}

.nav-links a:hover .nav-icon {
  opacity: 1;
  transform: scale(1.08);
}

.nav-links a.is-active {
  color: var(--teal-deep);
  background: #fff;
  box-shadow: 0 2px 10px rgba(26, 92, 86, 0.1);
}

.nav-links a.is-active .nav-icon {
  opacity: 1;
  color: var(--gold);
}

.nav-cta-item {
  margin-left: 0.15rem;
}

.nav-cta {
  color: var(--cream) !important;
  background: linear-gradient(135deg, var(--teal-soft) 0%, var(--teal-deep) 100%) !important;
  border: 1px solid rgba(15, 61, 58, 0.2);
  box-shadow:
    0 4px 14px rgba(26, 92, 86, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.nav-cta .nav-icon {
  opacity: 1;
}

.nav-cta:hover {
  filter: brightness(1.06);
  box-shadow:
    0 6px 20px rgba(26, 92, 86, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.nav-cta.is-active {
  background: linear-gradient(135deg, var(--teal-deep) 0%, #0a2e2c 100%) !important;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 101;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 12px;
  background: linear-gradient(145deg, #fff, rgba(247, 243, 235, 0.9));
  box-shadow: 0 2px 10px var(--shadow);
  cursor: pointer;
  touch-action: manipulation;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 1px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3rem, 10vw, 6rem) 0 clamp(4rem, 12vw, 7rem);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 120vw);
  height: 60%;
  background: radial-gradient(circle, var(--glow), transparent 65%);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hero-orb--1 {
  width: 280px;
  height: 280px;
  top: 10%;
  right: -5%;
  background: rgba(45, 122, 114, 0.15);
}

.hero-orb--2 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  left: -3%;
  background: rgba(212, 175, 55, 0.2);
}

.hero-inner {
  position: relative;
  text-align: center;
}

.hero-brand {
  margin-bottom: 1rem;
  animation: logoFloat 5s ease-in-out infinite;
  will-change: transform;
}

.hero-logo {
  width: min(220px, 52vw);
  height: auto;
  border-radius: 50%;
  box-shadow:
    0 8px 40px var(--shadow),
    0 0 0 4px rgba(255, 255, 255, 0.6);
  animation: logoShadow 5s ease-in-out infinite;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-16px) rotate(0.6deg);
  }
}

@keyframes logoShadow {
  0%,
  100% {
    box-shadow:
      0 12px 36px rgba(20, 52, 50, 0.12),
      0 4px 12px rgba(212, 175, 55, 0.08),
      0 0 0 4px rgba(255, 255, 255, 0.6);
  }
  50% {
    box-shadow:
      0 28px 48px rgba(20, 52, 50, 0.14),
      0 8px 20px rgba(212, 175, 55, 0.12),
      0 0 0 4px rgba(255, 255, 255, 0.65);
  }
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3.5vw, 1.5rem);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  margin: 0 0 0.75rem;
  letter-spacing: 0.02em;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
  color: var(--teal-deep);
}

.hero-lead {
  max-width: 36rem;
  margin: 0 auto 2rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), filter 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--cream);
  background: linear-gradient(135deg, var(--teal-soft), var(--teal-deep));
  box-shadow: 0 8px 28px rgba(26, 92, 86, 0.3);
}

.btn-ghost {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: rgba(26, 92, 86, 0.06);
  border-color: var(--teal-soft);
}

.btn-full {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 520px;
  margin-inline: auto;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 24px var(--shadow);
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-soft);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Banner */
.banner-coming {
  padding: 1.5rem 0;
  border-block: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(26, 92, 86, 0.08), rgba(212, 175, 55, 0.1));
}

.banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.pill {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--teal-deep);
}

.banner-inner p {
  margin: 0;
  flex: 1;
  min-width: 200px;
  color: var(--text-muted);
}

/* Sections */
.section-header {
  margin-bottom: 2.5rem;
  max-width: 40rem;
}

.section-header--center {
  text-align: center;
  margin-inline: auto;
}

.section-header h2,
.moon-copy h2,
.contact-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  line-height: 1.15;
  color: var(--teal-deep);
}

.section-lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.journey {
  padding: clamp(4rem, 10vw, 6rem) 0;
}

.journey-route-wrap {
  margin-bottom: 1.75rem;
}

.journey-route-label,
.journey-includes-label {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.journey-route {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}

.route-stop {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal-deep);
  background: rgba(26, 92, 86, 0.08);
  border: 1px solid rgba(26, 92, 86, 0.14);
}

.route-arrow {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  user-select: none;
}

.journey-includes {
  margin-bottom: 1.75rem;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.1), rgba(26, 92, 86, 0.06));
  border: 1px solid rgba(212, 168, 83, 0.28);
}

.journey-includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}

.include-card {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.include-icon {
  font-size: 1.35rem;
  line-height: 1;
}

.include-card strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
  color: var(--teal-deep);
}

.include-card span {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.hero-lead strong {
  color: var(--teal-deep);
  font-weight: 600;
}

.journey-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.meta-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.meta-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.meta-card strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.meta-card span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Itinerary timeline */
.itinerary {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.itinerary::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--teal-soft), transparent);
}

.itinerary-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem 1.25rem;
  padding: 1.5rem 0;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.6s var(--ease) forwards;
}

.itinerary-item:nth-child(1) {
  animation-delay: 0.05s;
}
.itinerary-item:nth-child(2) {
  animation-delay: 0.1s;
}
.itinerary-item:nth-child(3) {
  animation-delay: 0.15s;
}
.itinerary-item:nth-child(4) {
  animation-delay: 0.2s;
}
.itinerary-item:nth-child(5) {
  animation-delay: 0.25s;
}
.itinerary-item:nth-child(6) {
  animation-delay: 0.3s;
}
.itinerary-item:nth-child(7) {
  animation-delay: 0.35s;
}

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

.day-marker {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  background: linear-gradient(145deg, var(--teal-soft), var(--teal-deep));
  box-shadow: 0 4px 20px rgba(26, 92, 86, 0.25);
}

.day-card {
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.day-card:hover {
  border-color: rgba(212, 168, 83, 0.45);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.day-card header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
  margin-bottom: 0.75rem;
}

.day-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0;
}

.day-location {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.day-highlights {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.day-highlights li {
  margin-bottom: 0.35rem;
}

.day-highlights li::marker {
  color: var(--gold);
}

.journey-cta {
  margin-top: 2.5rem;
  padding: 2rem;
  text-align: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(26, 92, 86, 0.1), rgba(255, 255, 255, 0.9));
  border: 1px solid var(--border);
}

.journey-cta p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
}

/* Features */
.coming-soon {
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: var(--cream-deep);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  position: relative;
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform 0.25s var(--ease);
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card--highlight {
  border-color: rgba(212, 175, 55, 0.45);
  background: linear-gradient(160deg, rgba(232, 213, 163, 0.35), var(--bg-card));
  overflow: visible;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--teal);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-icon--moon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  overflow: visible;
}


.feature-icon--moon .moon-svg {
  filter: drop-shadow(0 4px 12px rgba(20, 52, 50, 0.12));
}

.feature-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.feature-badge--live {
  background: rgba(212, 168, 83, 0.2);
  color: var(--gold-soft);
}

.feature-badge--active {
  background: rgba(26, 92, 86, 0.12);
  color: var(--teal);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.moon-detail {
  margin-top: 0.75rem !important;
  font-size: 0.85rem !important;
  color: var(--gold-soft) !important;
}

/* Moon visuals — crisp SVG render */
.moon-orbit {
  position: relative;
  width: min(220px, 55vw);
  height: min(220px, 55vw);
  flex-shrink: 0;
}

.moon-preview,
.moon-large {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  line-height: 0;
  background: none;
  overflow: visible;
}

.moon-preview {
  width: 64px;
  height: 64px;
}

.feature-icon--moon .moon-orbit,
.feature-icon--moon .moon-preview {
  width: 64px;
  height: 64px;
}

.moon-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 10px 28px rgba(20, 52, 50, 0.18));
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.moon-section {
  padding: clamp(4rem, 10vw, 6rem) 0;
}

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

.moon-visual-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.moon-ring {
  position: absolute;
  inset: -14%;
  z-index: 0;
  margin: 0;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35) inset;
  animation: moonRingSpin 48s linear infinite;
  pointer-events: none;
  transform-origin: center center;
}

@keyframes moonRingSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.moon-facts {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.moon-facts li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.moon-facts strong {
  color: var(--gold-soft);
  font-weight: 500;
}

/* Follow us */
.follow {
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: linear-gradient(
    180deg,
    var(--cream-deep) 0%,
    rgba(232, 213, 163, 0.15) 50%,
    var(--bg-deep) 100%
  );
}

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

.follow-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  color: var(--teal-deep);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.follow-perks {
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}

.follow-perks li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.follow-perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(
    135deg,
    #f9ce34 0%,
    #ee2a7b 50%,
    #6228d7 100%
  );
  box-shadow: 0 8px 28px rgba(238, 42, 123, 0.28);
  touch-action: manipulation;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), filter 0.2s;
}

.btn-instagram:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 12px 32px rgba(238, 42, 123, 0.35);
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.follow-visual {
  display: grid;
  place-items: center;
}

.follow-phone-link {
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: 28px;
  touch-action: manipulation;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.follow-phone-link:hover {
  transform: translateY(-4px);
}

.follow-phone-link:hover .follow-phone {
  box-shadow:
    0 28px 56px rgba(20, 52, 50, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.follow-phone-link:focus-visible {
  outline: 3px solid var(--gold-soft);
  outline-offset: 4px;
}

.follow-phone {
  width: min(280px, 100%);
  border-radius: 28px;
  padding: 0.65rem;
  background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
  box-shadow:
    0 24px 48px rgba(20, 52, 50, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.follow-phone-header {
  display: flex;
  gap: 0.35rem;
  padding: 0.35rem 0.5rem 0.65rem;
}

.follow-phone-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.follow-phone-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1.25rem 1.5rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  color: #f5f5f5;
}

.follow-phone-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.85rem;
  border: 3px solid rgba(255, 255, 255, 0.15);
}

.follow-phone-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.follow-phone-handle {
  margin: 0.2rem 0 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.follow-phone-bio {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
}

.follow-phone-cta {
  display: inline-block;
  padding: 0.45rem 1.25rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  background: #3897f0;
  pointer-events: none;
}

.follow-phone-link:hover .follow-phone-cta {
  background: #4ba3f5;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--teal-deep);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  touch-action: manipulation;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.footer-social svg {
  width: 1.1rem;
  height: 1.1rem;
}

.footer-social:hover {
  border-color: rgba(238, 42, 123, 0.45);
  color: #c13584;
  background: #fff;
}

.footer-email:hover {
  border-color: rgba(212, 168, 83, 0.55);
  color: var(--teal-deep);
  background: #fff;
}

/* Contact */
.contact {
  padding: clamp(4rem, 10vw, 6rem) 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: 2.5rem;
  border-radius: calc(var(--radius) + 4px);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.contact-details {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.contact-details-label {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--teal-deep);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.contact-email svg {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.contact-email:hover {
  border-color: var(--gold);
  color: var(--teal-deep);
  background: #fff;
}

.contact-email:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-form input,
.contact-form select {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.15);
}

.phone-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.phone-field-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal-deep);
}

.phone-field-row {
  display: grid;
  grid-template-columns: minmax(7.5rem, 9.5rem) 1fr;
  gap: 0.5rem;
  align-items: stretch;
}

.phone-country {
  min-width: 0;
  padding-right: 1.75rem;
  font-size: 0.92rem;
  cursor: pointer;
}

.form-note {
  margin: 0.25rem 0 0;
  font-size: 0.88rem;
  color: var(--gold-soft);
  min-height: 1.25em;
}

.btn.is-loading {
  opacity: 0.75;
  pointer-events: none;
  cursor: wait;
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.footer-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-text {
  flex: 1;
  min-width: 180px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0;
  color: var(--teal-deep);
}

.footer-tagline {
  margin: 0.15rem 0 0.35rem;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--gold);
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-top {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
}

.footer-top:hover {
  text-decoration: underline;
}

/* Touch devices — avoid sticky hover lift */
@media (hover: none) {
  .btn:hover,
  .feature-card:hover,
  .day-card:hover {
    transform: none;
  }
}

/* Mobile & tablet portrait — phone-first layout */
@media (max-width: 768px) {
  :root {
    --header-h: 64px;
    --radius: 14px;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-inline: max(0.75rem, env(safe-area-inset-left)) max(0.75rem, env(safe-area-inset-right));
    box-sizing: border-box;
  }

  .site-header {
    padding-top: env(safe-area-inset-top, 0);
  }

  .nav {
    min-height: var(--header-h);
    gap: 0.5rem;
  }

  .nav-toggle {
    display: flex;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .logo-img {
    width: 44px;
    height: 44px;
  }

  .logo-name {
    font-size: 1rem;
  }

  .logo-tagline {
    display: none;
  }

  .logo-badge {
    font-size: 0.58rem;
    padding: 0.12rem 0.35rem;
  }

  .nav-panel {
    position: fixed;
    inset: calc(var(--header-h) + env(safe-area-inset-top, 0px)) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.99), rgba(247, 243, 235, 0.98));
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(20, 52, 50, 0.12);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.25s;
  }

  .nav-panel.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-panel-label {
    display: block;
    margin: 0;
    padding: 1rem 1.25rem 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.5rem 1rem 1.25rem;
    padding-bottom: max(1.25rem, env(safe-area-inset-bottom));
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-cta-item {
    margin-left: 0;
    margin-top: 0.35rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
  }

  .nav-links a {
    justify-content: flex-start;
    width: 100%;
    min-height: 52px;
    padding: 0.875rem 1.125rem;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .nav-icon {
    width: 1.25rem;
    height: 1.25rem;
  }

  .nav-cta {
    justify-content: center;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Hero */
  .hero {
    padding: 1.75rem 0 2.5rem;
  }

  .hero-brand {
    margin-bottom: 0.75rem;
  }

  .hero-logo {
    width: min(180px, 44vw);
  }

  .hero-tagline {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    padding-inline: 0.25rem;
  }

  .hero h1 {
    font-size: 1.65rem;
    margin-bottom: 1rem;
    padding-inline: 0.25rem;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding-inline: 0.25rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    width: 100%;
    max-width: 100%;
    margin-bottom: 2rem;
    padding-inline: 0.25rem;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 52px;
    padding: 1rem 1.25rem;
    font-size: 1.05rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0.5rem 1rem;
    max-width: 100%;
  }

  .stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border);
  }

  .stat:last-child {
    border-bottom: none;
  }

  .stat-value {
    font-size: 1.5rem;
    order: 2;
  }

  .stat-label {
    font-size: 0.8rem;
    text-transform: none;
    letter-spacing: 0;
    order: 1;
    flex: 1;
  }

  /* Banner */
  .banner-coming {
    padding: 1.25rem 0;
  }

  .banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .banner-inner p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  /* Sections */
  .journey,
  .coming-soon,
  .moon-section,
  .follow,
  .contact {
    padding: 2.75rem 0;
  }

  .follow-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .follow-visual {
    order: -1;
  }

  .follow-phone {
    width: min(260px, 88vw);
  }

  .btn-instagram {
    width: 100%;
  }

  .section-header {
    margin-bottom: 1.75rem;
  }

  .section-header h2,
  .moon-copy h2,
  .contact-copy h2 {
    font-size: 1.65rem;
  }

  .section-lead {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .journey-route {
    gap: 0.5rem;
  }

  .route-stop {
    font-size: 0.82rem;
    padding: 0.45rem 0.75rem;
  }

  .journey-includes {
    padding: 1.15rem 1.1rem;
  }

  .journey-includes-grid {
    grid-template-columns: 1fr 1fr;
  }

  .journey-meta {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
  }

  .meta-card {
    padding: 1rem 1.125rem;
  }

  .itinerary::before {
    left: 21px;
  }

  .itinerary-item {
    grid-template-columns: 44px 1fr;
    gap: 0.875rem 1rem;
    padding: 1.125rem 0;
  }

  .day-marker {
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
  }

  .day-card {
    padding: 1.125rem 1.25rem;
  }

  .day-card h3 {
    font-size: 1.2rem;
  }

  .day-highlights {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .journey-cta {
    margin-top: 2rem;
    padding: 1.5rem 1.25rem;
  }

  .journey-cta p {
    font-size: 0.98rem;
    margin-bottom: 1rem;
  }

  .journey-cta .btn {
    width: 100%;
    min-height: 52px;
    font-size: 1.05rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-card {
    padding: 1.35rem 1.25rem;
  }

  .feature-card h3 {
    font-size: 1.25rem;
  }

  .feature-card p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .moon-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .moon-visual-wrap {
    min-height: 200px;
  }

  .moon-orbit {
    width: min(180px, 48vw);
    height: min(180px, 48vw);
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.35rem 1.25rem;
  }

  .contact-copy p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .contact-form {
    gap: 0.875rem;
  }

  .contact-form input,
  .contact-form select {
    min-height: 52px;
    padding: 0.95rem 1rem;
    font-size: 1rem; /* prevents iOS zoom on focus */
    border-radius: 12px;
  }

  .phone-field-row {
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }

  .phone-country {
    font-size: 1rem;
  }

  .contact-form .btn {
    min-height: 52px;
    margin-top: 0.25rem;
    font-size: 1.05rem;
  }

  .site-footer {
    padding: 1.75rem 0 max(1.75rem, env(safe-area-inset-bottom));
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
  }

  .footer-text {
    min-width: 0;
  }

  .footer-actions {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }

  .footer-social,
  .footer-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.75rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    width: 100%;
  }
}

/* Small phones */
@media (max-width: 380px) {
  .container {
    width: calc(100% - 1.25rem);
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-logo {
    width: min(160px, 42vw);
  }

  .stat-value {
    font-size: 1.35rem;
  }
}

/* Mood music — bottom toast (non-blocking) */
.mood-toast {
  position: fixed;
  left: max(0.75rem, env(safe-area-inset-left));
  right: max(0.75rem, env(safe-area-inset-right));
  bottom: max(0.75rem, env(safe-area-inset-bottom));
  z-index: 95;
  pointer-events: none;
}

.mood-toast[hidden] {
  display: none;
}

.mood-toast-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.65rem 0.75rem;
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  padding: 0.65rem 0.65rem 0.65rem 0.75rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(247, 243, 235, 0.98));
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow:
    0 8px 32px rgba(20, 52, 50, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  animation: toastIn 0.45s var(--ease);
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mood-toast-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 8px var(--shadow);
}

.mood-toast-copy {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.mood-toast-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--teal-deep);
  line-height: 1.2;
}

.mood-toast-text {
  margin: 0.1rem 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.mood-toast-actions {
  display: flex;
  flex-shrink: 0;
  gap: 0.35rem;
}

.mood-toast-btn {
  min-height: 40px;
  min-width: 44px;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  touch-action: manipulation;
  transition: filter 0.2s, transform 0.15s var(--ease);
}

.mood-toast-btn:active {
  transform: scale(0.97);
}

.mood-toast-btn--no {
  color: var(--text-muted);
  background: rgba(26, 92, 86, 0.08);
  border: 1px solid var(--border);
}

.mood-toast-btn--yes {
  color: var(--cream);
  background: linear-gradient(135deg, var(--teal-soft), var(--teal-deep));
  box-shadow: 0 2px 10px rgba(26, 92, 86, 0.25);
}

.mood-toast-dismiss {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
  margin-left: -0.15rem;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  touch-action: manipulation;
}

.mood-toast-dismiss:hover {
  background: rgba(26, 92, 86, 0.08);
  color: var(--teal-deep);
}

@media (max-width: 380px) {
  .mood-toast-text {
    display: none;
  }

  .mood-toast-inner {
    padding: 0.6rem 0.55rem 0.6rem 0.65rem;
    gap: 0.5rem;
  }
}

/* Desktop — mood banner bottom-right */
@media (min-width: 769px) {
  .mood-toast {
    left: auto;
    right: max(1rem, env(safe-area-inset-right));
    bottom: max(1rem, env(safe-area-inset-bottom));
    width: auto;
  }

  .mood-toast-inner {
    width: auto;
    max-width: 360px;
    margin-inline: 0;
    animation: toastInRight 0.45s var(--ease);
  }
}

@keyframes toastInRight {
  from {
    opacity: 0;
    transform: translate(12px, 16px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

/* Floating music toggle (return visits) */
.music-toggle {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 90;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  background: linear-gradient(145deg, #fff, var(--cream));
  color: var(--teal-deep);
  box-shadow: 0 6px 24px rgba(20, 52, 50, 0.15);
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.music-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 28px rgba(20, 52, 50, 0.2);
}

.music-toggle[hidden] {
  display: none;
}

.music-toggle.is-playing {
  color: var(--gold);
  border-color: var(--gold-soft);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.25);
}

.music-toggle-icon {
  width: 1.35rem;
  height: 1.35rem;
}

.music-toggle-icon--off {
  display: none;
}

.music-toggle:not(.is-playing) .music-toggle-icon--on {
  display: none;
}

.music-toggle:not(.is-playing) .music-toggle-icon--off {
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .itinerary-item {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .moon-ring {
    animation: none;
  }

  .hero-brand,
  .hero-logo {
    animation: none;
  }

  .mood-toast-inner {
    animation: none;
  }
}
