:root {
  --navy: #16233d;
  --navy-dark: #0f1a31;
  --navy-soft: #223452;
  --gold: #e5a146;
  --gold-dark: #c87a28;
  --cream: #f8f2e8;
  --sand: #f1e7d8;
  --ink: #1b2430;
  --muted: #5f6977;
  --white: #ffffff;
  --shadow: rgba(15, 20, 40, 0.18);
  --teal: #2d6f66;
  --line: rgba(17, 27, 63, 0.12);
}

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

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f8f2e8 0%, #f2e8da 45%, #f8f2e8 100%);
  line-height: 1.6;
}

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

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

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 0);
  background-size: 4px 4px;
  opacity: 0.25;
  z-index: 0;
}

.hero {
  position: relative;
  min-height: 86vh;
  color: var(--white);
  background: url("assets/hero-family.jpg") center/cover no-repeat;
  padding: 22px 6vw 90px;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8, 14, 32, 0.9), rgba(22, 35, 61, 0.72));
  z-index: 0;
}

.hero__top,
.nav,
.hero__content {
  position: relative;
  z-index: 1;
}

.hero__top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.hero__top-left,
.hero__top-right {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px 18px;
  border-radius: 18px;
  background: rgba(12, 18, 38, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__brand img {
  width: 110px;
  height: auto;
}

.nav__brand span {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.nav__links {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav__links a {
  color: rgba(255, 255, 255, 0.85);
}

.nav__cta {
  background: var(--gold);
  color: var(--navy);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 11px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: center;
  text-align: left;
  padding: 70px 0 20px;
}

.hero__copy {
  max-width: 520px;
}

.hero__copy h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4.6vw, 54px);
  margin: 0 0 18px;
}

.hero__copy p {
  font-size: 18px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}

.btn--light {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.18);
}

.btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.hero__video {
  width: 100%;
  max-width: 520px;
  justify-self: end;
  background: rgba(15, 22, 44, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(6, 9, 24, 0.35);
}

.hero__note {
  margin: 12px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.section {
  padding: 80px 6vw;
  position: relative;
  z-index: 1;
}

.section--light {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.section--soft {
  background: var(--sand);
  border-top: 1px solid var(--line);
}

.section--deep {
  background: linear-gradient(135deg, #0f1b3b 0%, #172244 100%);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section__split,
.section--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.section__media,
.section__media-wide {
  display: flex;
  justify-content: center;
}

.section__media img,
.section__media-wide img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
  object-fit: cover;
}

.section__media img {
  max-width: 520px;
  max-height: 360px;
}

.section__media-wide img {
  max-width: 980px;
  max-height: 420px;
}

.section__content h2,
.section__text h2,
.section__header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.4vw, 42px);
  margin: 0 0 20px;
}

.section__content p,
.section__text p {
  line-height: 1.75;
  font-size: 16px;
  color: var(--muted);
}

.section--deep .section__text p {
  color: rgba(255, 255, 255, 0.78);
}

.section__text h3 {
  margin: 26px 0 12px;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}

.info-callout {
  background: #fdf8f0;
  padding: 18px 22px;
  border-left: 4px solid var(--gold);
  border-radius: 14px;
  border: 1px solid rgba(210, 180, 140, 0.35);
  margin-top: 22px;
}

.section__text {
  max-width: 900px;
}

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

.checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.checklist li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 14px;
  font-weight: 500;
}

.checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-dark);
  font-weight: 700;
}

.section__header {
  margin-bottom: 36px;
}

.section__header--center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.section__media-wide {
  margin: 30px 0;
}

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

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

.bullet-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.12);
}

.bullet-card h3 {
  margin: 0 0 10px;
  color: var(--gold);
}

.pricing {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.pricing__card {
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.12);
}

.pricing__card--light {
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing__card--accent {
  background: linear-gradient(160deg, #c9302c, #b42521);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.price {
  font-size: 22px;
  color: var(--teal);
  font-weight: 700;
}

.price--accent {
  font-size: 28px;
  color: var(--white);
}

.note {
  font-size: 12px;
  color: #6a7685;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin: 0 auto 40px;
  max-width: 1100px;
}

.testimonial {
  text-align: left;
  background: #fbf8f2;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 26px 28px;
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.08);
}

.stars {
  color: #f7c948;
  font-size: 22px;
  margin-bottom: 16px;
}

.testimonial h3 {
  margin: 0 0 10px;
}

.testimonial p {
  color: var(--muted);
  line-height: 1.7;
}

.testimonial__name {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  color: #66707d;
}

.video-grid,
.report-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  justify-items: center;
  margin: 0 auto;
  max-width: 1100px;
}

.video-embed {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #0b0f1f;
  aspect-ratio: 16 / 9;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-embed--vsl {
  max-width: 100%;
  border-radius: 14px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.video-grid .video-embed {
  max-width: 340px;
}

.report-grid {
  max-width: 980px;
}

.report-grid .video-embed {
  max-width: 460px;
}

.faq {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq details {
  background: var(--white);
  border-radius: 14px;
  padding: 18px 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

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

.faq__list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.faq__list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  line-height: 1.7;
}

.faq__list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #2fbf71;
  font-weight: 700;
}

.faq__note {
  margin: 12px 0 0;
  color: var(--muted);
}

.section--contact {
  background: linear-gradient(140deg, #1a2a44, #233555);
  color: var(--white);
}

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

.contact__box {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.contact__box a {
  color: var(--white);
}

.footer {
  padding: 30px 6vw;
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer img {
  width: 120px;
}

.footer__links {
  display: flex;
  gap: 18px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 22px rgba(0, 0, 0, 0.25);
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.whatsapp-float--hidden {
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
}

.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;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero {
    padding: 20px 5vw 70px;
  }

  .nav {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .nav__links {
    flex-wrap: wrap;
    gap: 16px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .nav__cta {
    padding: 10px 18px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .hero__copy {
    margin: 0 auto;
    max-width: 620px;
  }

  .hero__copy h1 {
    line-height: 1.1;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__video {
    max-width: 680px;
    justify-self: center;
  }

  .section {
    padding: 72px 6vw;
  }

  .section--split,
  .section__two,
  .contact,
  .pricing {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 16px 6vw 60px;
  }

  .hero__top {
    justify-content: center;
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .hero__top-left,
  .hero__top-right {
    width: 100%;
    justify-content: center;
  }

  .nav {
    padding: 14px;
    gap: 16px;
  }

  .nav__brand {
    flex-direction: column;
    text-align: center;
  }

  .nav__brand img {
    width: 92px;
  }

  .nav__brand span {
    font-size: 9px;
  }

  .nav__links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .nav__cta {
    width: 100%;
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.16em;
    padding: 12px 18px;
  }

  .hero__content {
    padding-top: 40px;
    gap: 28px;
  }

  .hero__copy {
    max-width: 100%;
  }

  .hero__copy h1 {
    font-size: clamp(28px, 6vw, 36px);
    line-height: 1.15;
  }

  .hero__copy p {
    font-size: 16px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__video {
    padding: 12px;
    max-width: 100%;
  }

  .hero__note {
    font-size: 12px;
  }

  .section {
    padding: 64px 6vw;
  }

  .section__content p,
  .section__text p {
    font-size: 15px;
  }

  .section__text h3 {
    font-size: 12px;
    letter-spacing: 0.16em;
  }

  .section__media img {
    max-height: 300px;
  }

  .section__media-wide img {
    max-height: 320px;
  }

  .grid--two {
    grid-template-columns: 1fr;
  }

  .pricing__card,
  .testimonial {
    padding: 22px;
  }

  .faq details {
    padding: 16px 18px;
  }

  .faq summary {
    font-size: 14px;
  }

  .video-grid,
  .report-grid {
    gap: 18px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 560px) {
  .hero__top {
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .hero__top-left,
  .hero__top-right {
    flex-direction: column;
    gap: 8px;
  }

  .nav {
    padding: 12px;
  }

  .nav__brand span {
    letter-spacing: 0.18em;
  }

  .btn {
    font-size: 10px;
    letter-spacing: 0.16em;
    padding: 12px 18px;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__links {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    transition: none;
  }
}
