@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap");

/* Movian static prototype styles */

:root {
  --bg: #FBFAF7;
  --surface: #FFFFFF;
  --surface-strong: #F8EDD3;
  --text: #204756;
  --muted: #4B6A75;
  --line: #CED5D7;
  --forest: #5A8C73;
  --blue: #204756;
  --forest-dark: #204756;
  --sun: #F0BF44;
  --fog: #DAE3DD;
  --coast: #778E96;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 24px 70px rgba(32, 71, 86, 0.12);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: var(--muted);
}

.site-header {
  width: min(var(--max), calc(100% - 40px));
  margin: 20px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(206, 213, 215, 0.85);
  border-radius: 999px;
  background: rgba(251, 250, 247, 0.88);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 16px;
  z-index: 20;
}

.logo,
.footer-logo {
  font-weight: 800;
  letter-spacing: -0.04em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  display: block;
  width: 154px;
  height: auto;
}

.footer-logo img {
  display: block;
  width: 132px;
  height: auto;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--surface);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  color: var(--muted);
}

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

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 6px auto;
}

.hero,
.section,
.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.hero {
  padding: 92px 0 60px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--forest);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -0.055em;
  margin: 0;
}

h1 {
  font-size: clamp(2.7rem, 5.4vw, 4.9rem);
  max-width: 850px;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 3.1rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-subcopy {
  font-size: 1.22rem;
  max-width: 650px;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 750;
  border: 1px solid transparent;
}

.button.primary {
  color: var(--forest-dark);
  background: var(--sun);
}

.button.primary:hover {
  background: #F1CA68;
}

.button.secondary {
  color: var(--forest-dark);
  background: rgba(255, 255, 255, 0.75);
  border-color: var(--line);
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-placeholder {
  background:
    linear-gradient(135deg, rgba(32, 71, 86, 0.88), rgba(90, 140, 115, 0.74)),
    radial-gradient(circle at top left, rgba(240, 191, 68, 0.82), transparent 42%);
  color: rgba(251, 250, 247, 0.92);
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 220px;
  padding: 24px;
  font-weight: 700;
}

.hero-image {
  min-height: 470px;
}

.trip-preview {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
}

.trip-preview p {
  margin: 0;
}

.trip-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.section {
  padding: 78px 0;
}

.intro {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: end;
}

.intro p:last-child {
  font-size: 1.15rem;
}

.section-heading {
  margin-bottom: 34px;
  max-width: 760px;
}

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

.grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
}

.step-number {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--forest);
  font-weight: 850;
}

.feature-band {
  background: var(--fog);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 46px;
}

.trip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trip-type-card {
  background: var(--surface);
  border: 1px solid rgba(206, 213, 215, 0.75);
  border-radius: 22px;
  overflow: hidden;
}

.trip-type-card h3,
.trip-type-card p {
  padding: 0 18px;
}

.trip-type-card h3 {
  margin-top: 18px;
}

.trip-type-card p {
  margin-bottom: 22px;
}

.small-image {
  min-height: 170px;
}

.split,
.about,
.waitlist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.checklist-card {
  padding: 32px;
}

.checklist-card ul {
  padding-left: 20px;
  color: var(--muted);
}

.checklist-card li {
  margin: 12px 0;
}

.wide-image {
  min-height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.waitlist {
  background: var(--forest-dark);
  color: var(--surface);
  border-radius: var(--radius-lg);
  padding: 44px;
}

.waitlist p,
.waitlist .eyebrow {
  color: rgba(251, 250, 247, 0.76);
}

.waitlist-form {
  background: rgba(251, 250, 247, 0.1);
  border: 1px solid rgba(251, 250, 247, 0.18);
  border-radius: 24px;
  padding: 22px;
}

.waitlist-form label {
  display: block;
  font-weight: 750;
  margin-bottom: 10px;
}

.form-row {
  display: flex;
  gap: 10px;
}

input {
  width: 100%;
  border: 1px solid var(--line);
  background: #FFFFFF;
  border-radius: 999px;
  min-height: 48px;
  padding: 0 16px;
  font: inherit;
}

.form-note {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.site-footer {
  padding: 36px 0 54px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

/* Legal/contact pages */

.page-hero {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 34px;
}

.page-content {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto 80px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.page-content h2 {
  font-size: 1.65rem;
  margin-top: 30px;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content a {
  color: var(--forest);
  font-weight: 750;
}

.legal-doc {
  max-width: 980px;
}


.legal-doc {
  max-width: 980px;
  padding: 0;
  overflow: hidden;
}

.legal-doc > * {
  margin-left: 46px;
  margin-right: 46px;
}

.legal-intro {
  margin: 0;
  padding: 34px 46px 22px;
  background: linear-gradient(135deg, rgba(32, 71, 86, 0.08), rgba(90, 140, 115, 0.08));
  border-bottom: 1px solid var(--line);
}

.legal-intro > * {
  margin-left: 0;
  margin-right: 0;
}

.legal-doc h2 {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  line-height: 1.14;
  margin-top: 44px;
  margin-bottom: 16px;
  color: var(--blue);
}

.legal-doc h2 span {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(240, 191, 68, 0.28);
  color: var(--blue);
  display: inline-grid;
  place-items: center;
  font-size: 0.95rem;
  line-height: 1;
  margin-top: -2px;
}

.legal-doc h3 {
  font-size: 1.15rem;
  line-height: 1.25;
  margin-top: 26px;
  margin-bottom: 10px;
  color: var(--forest);
  letter-spacing: -0.02em;
}

.legal-doc p {
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--muted);
}

.legal-doc ul {
  margin-top: 0;
  margin-bottom: 22px;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.legal-doc li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.legal-doc li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sun);
}

.legal-contact-card {
  background: rgba(90, 140, 115, 0.10);
  border: 1px solid rgba(90, 140, 115, 0.22);
  border-radius: 20px;
  padding: 22px;
  margin-top: 8px;
  margin-bottom: 46px;
  color: var(--text);
}

.legal-doc > :last-child {
  margin-bottom: 46px;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav.open {
    display: flex;
  }

  .hero,
  .intro,
  .split,
  .about,
  .waitlist,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .grid.four,
  .trip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding-top: 70px;
  }

  .hero-image {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero,
  .section,
  .site-footer,
  .page-hero,
  .page-content {
    width: min(100% - 28px, var(--max));
  }

  .logo img {
    width: 128px;
  }

  .grid.four,
  .trip-grid {
    grid-template-columns: 1fr;
  }

  .feature-band,
  .waitlist,
  .page-content {
    padding: 24px;
  }

  .legal-doc {
    padding: 0;
  }

  .legal-doc > *,
  .legal-intro {
    margin-left: 24px;
    margin-right: 24px;
  }

  .legal-intro {
    padding: 24px;
    margin-left: 0;
    margin-right: 0;
  }

  .legal-doc h2 {
    gap: 10px;
  }

  .legal-doc h2 span {
    width: 32px;
    height: 32px;
    font-size: 0.84rem;
  }

  .trip-preview,
  .form-row {
    flex-direction: column;
    align-items: stretch;
  }

  h1 {
    font-size: 2.85rem;
  }
}


.actual-image {
  display: block;
  width: 100%;
  object-fit: cover;
}

.hero-image.actual-image {
  min-height: 470px;
}

.small-image.actual-image {
  min-height: 170px;
}

.wide-image.actual-image {
  min-height: 360px;
  border-radius: var(--radius-lg);
}

@media (max-width: 900px) {
  .hero-image.actual-image {
    min-height: 360px;
  }
}


.trip-type-card .small-image.actual-image {
  height: 170px;
  min-height: 170px;
  max-height: 170px;
}

.sample-trip-details {
  display: block;
}

.sample-trip-header {
  margin-bottom: 18px;
}

.sample-trip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

.sample-trip-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.sample-trip-grid strong {
  color: var(--text);
}

@media (max-width: 620px) {
  .sample-trip-grid {
    grid-template-columns: 1fr;
  }
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0;
  color: rgba(255, 250, 242, 0.86);
  font-size: 0.92rem;
  line-height: 1.35;
}

.consent-checkbox input {
  width: auto;
  min-height: auto;
  margin-top: 3px;
  accent-color: var(--yellow);
  flex: 0 0 auto;
}

.consent-checkbox span {
  display: block;
}


/* v1.4 targeted refinements */
.hero-copy h1 {
  font-size: clamp(2.7rem, 5.8vw, 5.4rem);
}

.intro h2,
.section-heading h2,
.split h2,
.about h2,
.waitlist h2 {
  text-wrap: balance;
}

.feature-band .section-heading {
  max-width: 860px;
}

.waitlist {
  border-bottom: 0;
}

.notify-button {
  white-space: nowrap;
  flex: 0 0 auto;
  min-width: 124px;
}

.consent-checkbox {
  margin: 12px 0 0;
  font-weight: 400;
  font-size: 0.82rem;
  line-height: 1.35;
}

.consent-checkbox span {
  font-weight: 400;
}

.legal-title {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

@media (max-width: 620px) {
  .form-row {
    flex-direction: row;
    align-items: center;
  }

  .waitlist-form .button {
    width: auto;
  }

  .notify-button {
    min-width: 112px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 420px) {
  .form-row {
    flex-direction: column;
    align-items: stretch;
  }

  .notify-button {
    width: 100%;
  }
}


/* v1.5 targeted refinements */
.hero-copy h1 {
  font-size: clamp(2.35rem, 4.7vw, 4.45rem);
  max-width: 760px;
}

.waitlist-form .consent-checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 10px;
  margin-top: 12px;
  font-size: 0.78rem;
  line-height: 1.35;
  font-weight: 400;
}

.waitlist-form .consent-checkbox input {
  margin: 2px 0 0;
  padding: 0;
}

.waitlist-form .consent-checkbox span {
  display: inline;
  font-weight: 400;
}


/* v1.8 legal intro spacing fix */
.legal-doc .legal-intro + .legal-section {
  margin-top: 44px;
}

@media (max-width: 620px) {
  .legal-doc .legal-intro + .legal-section {
    margin-top: 32px;
  }
}


/* v1.9 legal subtitle spacing consistency */
.legal-doc .legal-section {
  margin-top: 44px;
}

.legal-doc .legal-section:first-of-type {
  margin-top: 44px;
}

.legal-doc .legal-section h2 {
  margin-top: 0;
}

.legal-doc .legal-section h3 {
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-doc .legal-section h3 + p,
.legal-doc .legal-section h3 + ul {
  margin-top: 0;
}

@media (max-width: 620px) {
  .legal-doc .legal-section,
  .legal-doc .legal-section:first-of-type {
    margin-top: 32px;
  }
}
