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

:root {
  --cream: #f8f3ea;
  --cream-2: #fbf8f2;
  --peach: #eec8b6;
  --peach-deep: #d99b7c;
  --peach-line: rgba(217, 155, 124, 0.35);
  --navy: #12172a;
  --navy-2: #1b2138;
  --ink: #1c1f2e;
  --muted: #8a8377;
  --muted-dark: #a9a6bd;
  --gray-bg: #efece6;
  --line: rgba(28, 31, 46, 0.1);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 56px;
}

::selection {
  background: var(--peach);
  color: var(--navy);
}

/* CURSOR / SCROLL PROGRESS */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--peach-deep);
  z-index: 999;
  transform-origin: left;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 56px;
  background: transparent;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}

nav.scrolled {
  background: rgba(248, 243, 234, 0.86);
  backdrop-filter: blur(14px);
  padding: 16px 56px;
  box-shadow: 0 1px 0 var(--line);
}

.logo {
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
}

.logo-img {
  height: 58px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 42px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: var(--peach-deep);
  transition: width .35s var(--ease);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 28px;
  cursor: pointer;
  border: 1px solid var(--navy);
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
  white-space: nowrap;
}

.btn-fill {
  background: var(--navy);
  color: var(--cream);
}

.btn-fill:hover {
  background: var(--ink);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--cream);
}

.btn-nav {
  padding: 12px 22px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 600;
}

.hamburger span {
  width: 24px;
  height: 1px;
  background: var(--navy);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 550;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  opacity: 0;
  pointer-events: none;
}

.mobile-menu.is-open {
  pointer-events: auto;
}

.mobile-menu a:not(.btn) {
  font-family: var(--serif);
  font-size: 30px;
  text-decoration: none;
  color: var(--navy);
}

/* SECTION HELPERS */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--peach-deep);
  background: rgba(217, 155, 124, .12);
  border: 1px solid var(--peach-line);
  padding: 9px 16px;
  margin-bottom: 26px;
}

.eyebrow-plain {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  display: block;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.4vw, 68px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--navy);
  overflow: hidden;
}

.hero h1 .line {
  display: block;
  overflow: hidden;
}

.hero h1 .line span {
  display: block;
  transform: translateY(110%);
}

.hero h1 em {
  font-style: italic;
  color: var(--peach-deep);
}

.hero-sub {
  margin-top: 26px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 400px;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  height: 560px;
}

.hv-frame {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 68%;
  aspect-ratio: 3/4.1;
  border: 1px solid var(--peach-line);
  z-index: 0;
}

.hv-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 68%;
  aspect-ratio: 3/4.1;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(28, 20, 15, .18);
  z-index: 2;
  clip-path: inset(0 0 0 0);
}

.hv-main img,
.hv-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
}

.hv-mini {
  position: absolute;
  bottom: -20px;
  left: -10px;
  width: 42%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 8px solid var(--cream-2);
  box-shadow: 0 30px 60px rgba(28, 20, 15, .22);
  z-index: 3;
}

.hv-dot {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--peach);
  opacity: .55;
  top: 60%;
  left: -30px;
  z-index: 1;
  filter: blur(1px);
}

/* MODERN STRUGGLE */
.struggle {
  background: var(--peach);
  padding: 110px 24px;
  text-align: center;
}

.struggle-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(26px, 3.6vw, 42px);
  color: var(--navy);
  line-height: 1.35;
  max-width: 780px;
  margin: 0 auto;
}

.struggle-rule {
  width: 46px;
  height: 1px;
  background: var(--navy);
  opacity: .35;
  margin: 30px auto 0;
}

/* FEATURES */
.features {
  padding: 140px 0;
}

.feat-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
}

.feat-h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--navy);
  max-width: 380px;
}

.feat-body {
  margin-top: 22px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 340px;
}

.feat-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 40px;
}

.feat-item {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.feat-num {
  font-size: 12px;
  color: var(--peach-deep);
  font-weight: 600;
  letter-spacing: .05em;
}

.feat-title {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  color: var(--navy);
  margin: 10px 0 8px;
}

.feat-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* HOW IT WORKS */
.how {
  background: var(--gray-bg);
  padding: 140px 0;
}

.how-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 70px;
  flex-wrap: wrap;
}

.how-h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 500;
  color: var(--navy);
}

.how-meta {
  text-align: right;
}

.how-meta p {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.how-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1px solid var(--line);
  padding: 8px 14px;
  background: var(--cream-2);
}

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

.how-card {
  background: var(--cream-2);
  border: 1px solid var(--line);
  padding: 20px;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.how-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(28, 20, 15, .1);
}

.how-thumb {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--peach) 0%, #f3ddce 60%, var(--cream-2) 100%);
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
}

.how-thumb::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(28, 23, 20, .12);
}

.how-thumb .hc-shape {
  position: absolute;
  background: rgba(255, 255, 255, .55);
}

.how-card:nth-child(1) .hc-shape {
  width: 60%;
  height: 14px;
  top: 30%;
  left: 20%;
}

.how-card:nth-child(2) .hc-shape {
  width: 22%;
  height: 22%;
  border-radius: 50%;
  top: 25%;
  left: 22%;
  box-shadow: 34px 0 0 rgba(255, 255, 255, .55), 68px 0 0 rgba(255, 255, 255, .35);
}

.how-card:nth-child(3) .hc-shape {
  width: 46%;
  height: 60%;
  top: 20%;
  left: 27%;
}

.how-card:nth-child(4) .hc-shape {
  width: 30%;
  height: 30%;
  border-radius: 8px;
  top: 35%;
  left: 35%;
  background: var(--navy);
}

.how-num {
  font-size: 11px;
  color: var(--peach-deep);
  font-weight: 600;
  letter-spacing: .05em;
}

.how-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--navy);
  margin: 8px 0 8px;
}

.how-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ROADMAP (dark) */
.roadmap {
  background: var(--navy);
  color: var(--cream);
  padding: 140px 0;
}

.rm-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}

.rm-h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 500;
  line-height: 1.15;
  max-width: 380px;
}

.rm-body {
  margin-top: 22px;
  font-size: 14px;
  color: var(--muted-dark);
  line-height: 1.8;
  max-width: 340px;
}

.rm-list {
  position: relative;
}

.rm-line {
  position: absolute;
  left: 17px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: rgba(238, 200, 182, .18);
}

.rm-line-fill {
  position: absolute;
  left: 17px;
  top: 18px;
  width: 1px;
  height: 0%;
  background: var(--peach-deep);
}

.rm-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(238, 200, 182, .14);
  position: relative;
}

.rm-item:first-child {
  padding-top: 4px;
}

.rm-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(238, 200, 182, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--peach);
  transition: border-color .5s var(--ease), background .5s var(--ease), color .5s var(--ease);
  z-index: 1;
  background: var(--navy);
}

.rm-item.active .rm-num {
  background: var(--peach-deep);
  border-color: var(--peach-deep);
  color: var(--navy);
}

.rm-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 6px;
}

.rm-desc {
  font-size: 13px;
  color: var(--muted-dark);
  line-height: 1.7;
  max-width: 420px;
}

/* GALLERY */
.gallery {
  padding: 150px 0;
  text-align: center;
}

.gallery h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 60px;
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  text-align: left;
}

.gal-item {
  overflow: hidden;
  cursor: pointer;
}

.gal-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
}

.gal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.gal-item:hover .gal-img img {
  transform: scale(1.08);
}

.gal-cap {
  margin-top: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* CTA */
.cta-outer {
  padding: 0 56px 150px;
}

.cta {
  background: var(--peach);
  border-radius: 28px;
  padding: 90px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
}

.cta-shape.s1 {
  width: 220px;
  height: 220px;
  top: -100px;
  left: -80px;
}

.cta-shape.s2 {
  width: 160px;
  height: 160px;
  bottom: -90px;
  right: -50px;
}

.cta h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4.4vw, 48px);
  font-weight: 500;
  color: var(--navy);
  position: relative;
  z-index: 1;
}

.cta p {
  margin: 18px auto 0;
  font-size: 14px;
  color: rgba(28, 23, 20, .65);
  max-width: 440px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.cta-form {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.cta-form input {
  font-family: var(--sans);
  font-size: 13px;
  padding: 16px 22px;
  border: none;
  border-radius: 100px;
  width: 320px;
  max-width: 80vw;
  background: var(--cream-2);
  color: var(--ink);
  outline: none;
}

.cta-form input::placeholder {
  color: var(--muted);
}

.cta-form button {
  border-radius: 100px;
  border: 1px solid var(--navy);
}

.cta-msg {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: .05em;
  color: var(--navy);
  font-weight: 600;
  position: relative;
  z-index: 1;
  height: 16px;
  opacity: 0;
}

/* FAQ */
.faq {
  background: var(--gray-bg);
  padding: 140px 0;
  text-align: center;
}

.faq h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.6vw, 50px);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 56px;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 4px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--navy);
  text-align: left;
}

.faq-plus {
  font-size: 20px;
  color: var(--peach-deep);
  flex: 0 0 auto;
  margin-left: 20px;
  transition: transform .4s var(--ease);
}

.faq-item.open .faq-plus {
  transform: rotate(135deg);
}

.faq-a {
  height: 0;
  overflow: hidden;
}

.faq-a p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  padding: 0 4px 26px;
  max-width: 620px;
}

/* FOOTER */
footer {
  background: var(--navy);
  color: var(--cream);
  padding: 40px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.ft-logo {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: .1em;
  display: inline-flex;
  align-items: center;
}

.ft-logo-img {
  height: 26px;
  width: auto;
  filter: invert(1);
  opacity: .85;
}

.ft-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.ft-links a {
  font-size: 11px;
  color: var(--muted-dark);
  text-decoration: none;
  letter-spacing: .06em;
  transition: color .25s;
}

.ft-links a:hover {
  color: var(--peach);
}

.ft-copy {
  font-size: 11px;
  color: var(--muted-dark);
  letter-spacing: .05em;
}

/* REVEAL BASE (JS-driven via GSAP, this is just a no-JS fallback) */
.reveal {
  opacity: 0;
}

html.no-js .reveal {
  opacity: 1;
}

/* RESPONSIVE */
@media(max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    height: 420px;
    order: -1;
  }

  .feat-grid,
  .rm-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

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

  .nav-links {
    display: none;
  }

  .btn-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media(max-width: 640px) {
  .wrap {
    padding: 0 24px;
  }

  nav {
    padding: 20px 24px;
  }

  nav.scrolled {
    padding: 14px 24px;
  }

  .cta-outer {
    padding: 0 24px 100px;
  }

  .feat-items {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

  .how-head {
    align-items: flex-start;
  }

  .how-meta {
    text-align: left;
  }

  footer {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}
