:root {
  --blue: #073f5a;
  --blue-dark: #052f43;
  --green: #b9d45a;
  --green-dark: #829b2d;
  --mint: #eef6f2;
  --aqua: #dcebed;
  --paper: #ffffff;
  --ink: #1c313a;
  --muted: #62757d;
  --line: rgba(7, 63, 90, 0.15);
  --shadow: 0 22px 55px rgba(7, 63, 90, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 190px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--blue);
  font-size: 0.94rem;
  font-weight: 750;
}

.nav a:hover,
.legal-links a:hover,
.contact-links a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.header-cta,
.button-primary {
  color: var(--paper);
  background: var(--blue);
  box-shadow: 0 13px 28px rgba(7, 63, 90, 0.22);
}

.button-secondary {
  color: var(--blue);
  background: var(--paper);
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: min(790px, 86svh);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 10px solid var(--green);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.86) 43%, rgba(255, 255, 255, 0.25) 72%, rgba(7, 63, 90, 0.16) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0) 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 72px 0 88px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--blue);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 8vw, 6.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4.1rem);
}

h3 {
  font-size: 1.18rem;
}

p {
  margin: 12px 0 0;
}

.hero-copy {
  max-width: 620px;
  color: #33474f;
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(620px, 100%);
  margin: 34px 0 0;
}

.hero-facts div {
  min-height: 86px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-facts dt {
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 5px 0 0;
  color: var(--blue);
  font-weight: 800;
}

.section {
  padding: clamp(62px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.section-head {
  width: min(900px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.intro {
  background: var(--mint);
}

.intro-grid,
.timeline,
.people-grid,
.faq-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

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

.intro-grid article,
.benefit,
.timeline article,
.person,
.faq details,
.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-grid article {
  min-height: 250px;
  padding: 28px;
}

.step {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--blue);
  background: var(--green);
  border-radius: 50%;
  font-weight: 850;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.split-copy,
.benefit-list,
.contact {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.split-copy p:not(.eyebrow),
.benefit p,
.timeline p,
.person p,
.vibe p,
.contact-copy p:not(.eyebrow),
.faq p {
  color: var(--muted);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.benefit {
  min-height: 180px;
  padding: 24px;
  border-left: 7px solid var(--green);
}

.journey {
  background: var(--blue);
}

.journey h2 {
  color: var(--paper);
}

.journey .eyebrow {
  color: var(--green);
}

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

.timeline article {
  min-height: 260px;
  padding: 28px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.timeline h3 {
  color: var(--paper);
}

.timeline p {
  color: rgba(255, 255, 255, 0.82);
}

.timeline span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 10px;
  color: var(--blue);
  background: var(--green);
  border-radius: 999px;
  font-weight: 850;
}

.first-day {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.first-day-panel,
.info-list {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.first-day-panel {
  padding: 32px;
  color: var(--paper);
  background: var(--blue);
  border-radius: 8px;
}

.first-day-panel h2 {
  color: var(--paper);
}

.first-day-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.9);
}

.first-day-panel .eyebrow {
  color: var(--green);
}

.info-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 0;
  margin-bottom: 0;
}

.info-list div {
  min-height: 140px;
  padding: 24px;
  background: var(--aqua);
  border-radius: 8px;
}

.info-list dt {
  color: var(--blue);
  font-weight: 850;
}

.info-list dd {
  margin: 6px 0 0;
}

.people {
  background: var(--mint);
}

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

.person {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  align-items: center;
  padding: 18px;
}

.person img {
  width: 150px;
  height: 190px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 8px;
}

.role {
  margin: 0 0 6px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.vibe {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.vibe img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.faq {
  background: var(--blue);
}

.faq h2 {
  color: var(--paper);
}

.faq .eyebrow {
  color: var(--green);
}

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

.faq details {
  padding: 22px 24px;
  box-shadow: none;
}

.faq summary {
  color: var(--blue);
  font-weight: 850;
  cursor: pointer;
}

.faq p {
  color: #4f6670;
}

.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  color: var(--blue);
  font-weight: 850;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.privacy-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.privacy-note a {
  color: var(--blue);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.privacy-note-small {
  text-align: center;
  font-size: 0.82rem;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--blue);
  font-weight: 850;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(7, 63, 90, 0.24);
  border-radius: 8px;
  font: inherit;
}

.whatsapp-inline {
  text-align: center;
  color: var(--blue);
  font-weight: 750;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--paper);
  background: #1d2024;
}

.site-footer img {
  width: 172px;
  padding: 8px;
  background: var(--paper);
  border-radius: 8px;
}

.site-footer p {
  margin: 0;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--green);
  font-weight: 760;
}

.legal-main {
  background: linear-gradient(180deg, var(--mint) 0, var(--paper) 380px);
}

.legal-hero {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(72px, 10vw, 130px) 18px 36px;
  text-align: center;
}

.legal-hero h1 {
  margin: 8px 0 14px;
  color: var(--blue);
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.96;
}

.legal-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.legal-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px clamp(72px, 10vw, 120px);
}

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

.legal-card {
  padding: clamp(22px, 3vw, 34px);
}

.legal-card h2 {
  margin-top: 0;
  color: var(--blue);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.15;
}

.legal-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.legal-card a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-highlight {
  background: var(--blue);
}

.legal-highlight h2,
.legal-highlight p,
.legal-highlight a {
  color: var(--paper);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .intro-grid,
  .split,
  .benefit-list,
  .timeline,
  .first-day,
  .info-list,
    .people-grid,
    .vibe,
    .faq-grid,
    .contact,
    .legal-content,
    .legal-content-wide {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 16px;
  }

  .brand img {
    width: 156px;
  }

  .header-cta {
    width: 100%;
    min-height: 40px;
    padding: 9px 11px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 78svh;
    align-items: flex-end;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 68%, rgba(255, 255, 255, 0.34) 100%);
  }

  .hero-content {
    margin: 0 auto;
    padding: 44px 0 38px;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10.5vw, 3rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-facts {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 16px;
  }

  .intro-grid article,
  .benefit,
  .timeline article,
  .first-day-panel,
  .info-list div,
  .faq details,
  .contact-form {
    padding: 20px;
  }

  .timeline article {
    min-height: 0;
  }

  .person {
    grid-template-columns: minmax(104px, 32%) 1fr;
    gap: 16px;
    align-items: start;
    padding: 14px;
  }

  .person img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-position: center 16%;
  }

  .person p {
    font-size: 0.95rem;
  }

  .role {
    font-size: 0.72rem;
  }

  .vibe img {
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 380px) {
  .person {
    grid-template-columns: 92px 1fr;
  }

  .person img {
    aspect-ratio: 3 / 4.4;
  }
}
