:root {
  --rosewater: #f5e0dc;
  --flamingo: #f2cdcd;
  --pink: #f5c2e7;
  --mauve: #cba6f7;
  --red: #f38ba8;
  --maroon: #eba0ac;
  --peach: #fab387;
  --yellow: #f9e2af;
  --green: #a6e3a1;
  --teal: #94e2d5;
  --sky: #89dceb;
  --sapphire: #74c7ec;
  --blue: #89b4fa;
  --lavender: #b4befe;
  --text: #4c4f69;
  --subtext: #5c5f77;
  --muted: #6c6f85;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --surface-soft: rgba(255, 255, 255, 0.62);
  --line: rgba(76, 79, 105, 0.12);
  --line-strong: rgba(76, 79, 105, 0.18);
  --shadow: 0 22px 60px rgba(76, 79, 105, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --shell: min(1120px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(249, 226, 175, 0.42), transparent 34%),
    radial-gradient(circle at top right, rgba(137, 180, 250, 0.24), transparent 30%),
    linear-gradient(180deg, #eff1f5 0%, #f4f1ea 46%, #edf4f2 100%);
}

img {
  display: block;
  max-width: 100%;
}

figure {
  margin: 0;
}

a {
  color: inherit;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(239, 241, 245, 0.72);
  border-bottom: 1px solid rgba(76, 79, 105, 0.08);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d9a066, #7ca7d8);
  color: #fff;
  box-shadow: 0 10px 24px rgba(124, 167, 216, 0.24);
}

.nav {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.nav a,
.footer-links a {
  color: var(--subtext);
  text-decoration: none;
  font-weight: 600;
}

.nav a:hover,
.footer-links a:hover,
.brand:hover {
  color: var(--text);
}

.hero {
  padding: 20px 0 12px;
}

.hero-subpage {
  padding-bottom: 12px;
}

.momo-hero {
  display: grid;
  gap: 24px;
}

.momo-hero-images {
  display: grid;
  gap: 16px;
}

.hero-waiting {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
}

.waiting-shell {
  display: grid;
  gap: 24px;
  max-width: 56rem;
}

.hero-grid,
.split-grid,
.detail-grid,
.story-grid {
  display: grid;
  gap: 22px;
}

.hero-copy,
.feature-photo {
  background: transparent;
}

.hero-copy {
  padding: 12px 0;
  max-width: 48rem;
}

.momo-hero .hero-copy {
  max-width: min(92%, 78rem);
}

.trip-counter {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.trip-counter-date {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.trip-counter strong {
  color: #363a4f;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  letter-spacing: -0.03em;
  line-height: 0.98;
  color: #363a4f;
}

h1 {
  font-size: clamp(1.8rem, 5.2vw, 3rem);
}

h2 {
  font-size: clamp(1.45rem, 4.2vw, 2.35rem);
}

.lead,
.section-head p,
.story-copy p,
.content-card p,
.site-footer p,
.small-note {
  color: var(--subtext);
  line-height: 1.7;
  margin: 0;
}

.lead {
  margin-top: 14px;
  font-size: 1rem;
  max-width: 52rem;
}

.momo-hero .lead {
  max-width: min(92%, 78rem);
  margin-top: 20px;
  margin-bottom: 10px;
}

.hero-waiting .lead {
  max-width: min(96%, 72rem);
}

.hero-actions,
.map-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, #cb9157, #6f98c6);
  color: #fff;
  box-shadow: 0 16px 28px rgba(111, 152, 198, 0.24);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line-strong);
  color: var(--text);
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 28px;
  margin-top: 24px;
}

.spec-grid div {
  padding-top: 14px;
  padding-bottom: 14px;
  border-top: 1px solid var(--line-strong);
}

.spec-grid dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spec-grid dd {
  margin: 0;
  color: #363a4f;
  line-height: 1.55;
}

.fact-row strong,
.preview-copy strong {
  display: block;
  margin-bottom: 6px;
  color: #363a4f;
}

.hero-art {
  display: block;
}

.waiting-photo {
  min-height: 360px;
}

.hero-photo,
.preview-window,
.feature-photo,
.story-photo {
  overflow: hidden;
}

.hero-photo img,
.preview-window img,
.feature-photo img,
.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-main {
  min-height: 250px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.momo-hero-images .hero-photo {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(76, 79, 105, 0.1);
  box-shadow: 0 20px 50px rgba(76, 79, 105, 0.14);
  background: rgba(255, 255, 255, 0.58);
}

.momo-hero-images .hero-photo img {
  filter: saturate(1.02) contrast(1.01);
}

.momo-hero-images .hero-photo-small {
  min-height: 250px;
}

.section {
  padding: 34px 0;
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
}

.section-head.stack {
  grid-template-columns: 1fr;
}

.map-card {
  padding: 0;
}

.map-frame {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 440px;
  border: 0;
}

.map-actions {
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.content-card {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.content-card h2 {
  margin-bottom: 14px;
}

.extras-copy {
  max-width: min(92%, 78rem);
}

.extras-copy p + p {
  margin-top: 14px;
}

.preview-card {
  display: grid;
  gap: 16px;
  align-content: start;
}

.preview-copy p {
  margin-top: 10px;
}

.embed-card {
  gap: 14px;
}

.instagram-grid {
  display: grid;
  gap: 18px;
}

.instagram-meta {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}

.instagram-media {
  width: 100%;
  max-width: 540px;
  min-width: 0 !important;
  margin: 0 !important;
  border-radius: var(--radius-xl) !important;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.feature-photo {
  min-height: 320px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.facts-grid {
  align-self: stretch;
  gap: 0;
}

.fact-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fact-row {
  padding: 14px 0;
  border-top: 1px solid var(--line-strong);
}

.fact-row:last-child {
  border-bottom: 1px solid var(--line-strong);
}

.standalone-facts {
  margin-top: 10px;
}

.standalone-facts .fact-label {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.standalone-facts .fact-value {
  margin: 0;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  letter-spacing: 0;
}

.story-copy {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.story-copy p + p {
  margin-top: 14px;
}

.story-visuals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.story-photo {
  min-height: 190px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.story-photo.wide {
  grid-column: 1 / -1;
  min-height: 260px;
}

.site-footer {
  padding: 22px 0 42px;
  border-top: 1px solid rgba(76, 79, 105, 0.1);
  margin-top: 30px;
}

.site-footer p {
  max-width: 40rem;
  margin-top: 8px;
}

.legal-hero {
  padding-bottom: 6px;
}

.legal-layout,
.legal-layout-single,
.legal-grid {
  display: grid;
  gap: 24px;
}

.legal-panel {
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.legal-panel h2 {
  margin-bottom: 14px;
}

.legal-intro {
  padding: 0;
}

.legal-nav {
  display: grid;
  gap: 10px;
  align-content: start;
}

.legal-nav a {
  padding: 10px 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--subtext);
  text-decoration: none;
  font-weight: 700;
}

.legal-nav a:hover {
  color: var(--text);
}

.legal-copy {
  margin: 0;
  color: var(--subtext);
  line-height: 1.7;
}

.legal-copy + .legal-copy {
  margin-top: 14px;
}

.legal-section + .legal-section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line-strong);
}

.legal-list {
  margin: 14px 0;
  padding-left: 20px;
  color: var(--subtext);
  line-height: 1.7;
}

@media (min-width: 720px) {
  .hero {
    padding-top: 24px;
  }

  .split-grid,
  .detail-grid,
  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .momo-hero-images {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: stretch;
  }

  .legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-layout {
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    align-items: start;
  }

  .standalone-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
  }

  .standalone-facts .fact-row:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line-strong);
  }

  .feature-photo {
    min-height: 100%;
  }
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
  }

  .spec-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section-head {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: end;
  }

  .map-card {
    padding: 0;
  }

  .story-copy {
    padding: 28px 24px;
  }
}

@media (max-width: 719px) {
  .header-inner,
  .footer-inner,
  .map-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    justify-content: flex-start;
  }

  .map-frame iframe {
    min-height: 360px;
  }
}
