:root {
  --green: #9da27b;
  --cream: #fcf9f0;
  --ink: #24251f;
  --muted: #66685b;
  --line: rgba(36, 37, 31, 0.14);
  --white: #fffdf7;
  --clay: #c88463;
  --blue: #dbe8e7;
  --shadow: 0 18px 50px rgba(36, 37, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::selection {
  background: var(--green);
  color: var(--white);
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  font-weight: 850;
  text-decoration: none;
  letter-spacing: 0;
}

.site-header .brand {
  padding: 6px 13px 6px 7px;
  border: 1px solid rgba(255, 253, 247, 0.22);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.13);
  backdrop-filter: blur(14px);
}

.brand-logo {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer .brand-logo {
  width: 38px;
  height: 38px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 30px);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: 140px clamp(20px, 6vw, 88px) 86px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -2;
  background-image: url("/assets/lenlari-family-hero.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(30, 31, 27, 0.78) 0%, rgba(30, 31, 27, 0.48) 43%, rgba(30, 31, 27, 0.08) 100%),
    linear-gradient(0deg, rgba(36, 37, 31, 0.40) 0%, rgba(36, 37, 31, 0.02) 45%);
}

.hero-content {
  width: min(760px, 100%);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #e7eccd;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 7vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0;
  font-size: clamp(1.12rem, 1.7vw, 1.35rem);
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 34px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: rgba(255, 253, 247, 0.92);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow);
}

.button.primary:hover {
  background: #8f956d;
}

.section {
  padding: clamp(76px, 10vw, 140px) clamp(20px, 5vw, 72px);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.prose {
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  color: var(--muted);
}

.prose p {
  margin-bottom: 16px;
}

blockquote {
  margin: 22px 0;
  padding: 24px 28px;
  border-left: 6px solid var(--green);
  background: var(--white);
  color: var(--ink);
  font-size: clamp(1.35rem, 2.8vw, 2.15rem);
  font-weight: 850;
  line-height: 1.15;
  box-shadow: var(--shadow);
}

.problem {
  background: linear-gradient(180deg, var(--cream) 0%, #fffdf7 100%);
}

.parents {
  background: var(--blue);
}

.narrow {
  width: min(840px, 100%);
}

.narrow p {
  max-width: 760px;
  color: #50554d;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.section-heading {
  width: min(820px, 100%);
  margin-bottom: 34px;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.signal-grid span {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.center-copy {
  width: min(700px, 100%);
  margin: 34px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 750;
}

.moments {
  background: #f6efe6;
}

.moment-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.moment-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid rgba(36, 37, 31, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(36, 37, 31, 0.08);
}

.moment-card p {
  margin-bottom: 28px;
  color: var(--clay);
  font-size: 0.9rem;
  font-weight: 850;
}

.vision {
  background: var(--white);
}

.waitlist {
  background: var(--green);
  color: var(--white);
}

.waitlist .eyebrow {
  color: #f4f0dc;
}

.waitlist-inner {
  width: min(820px, 100%);
  text-align: center;
}

.waitlist p:not(.eyebrow) {
  margin: 0 auto 30px;
  color: rgba(255, 253, 247, 0.92);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.waitlist .button.primary {
  background: var(--white);
  color: #6e7451;
}

.footer {
  background: var(--ink);
  color: var(--white);
  padding: 30px clamp(20px, 5vw, 72px);
}

.footer-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 26px;
}

.footer-links a {
  color: rgba(255, 253, 247, 0.78);
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    color: var(--white);
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 88svh;
    padding-bottom: 66px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(30, 31, 27, 0.82) 0%, rgba(30, 31, 27, 0.54) 66%, rgba(30, 31, 27, 0.16) 100%),
      linear-gradient(0deg, rgba(36, 37, 31, 0.44) 0%, rgba(36, 37, 31, 0.04) 45%);
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .signal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .moment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 64px;
    padding: 14px 18px;
  }

  .hero {
    min-height: 86svh;
    padding: 112px 18px 52px;
  }

  .hero-bg {
    background-position: 62% center;
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.5rem);
  }

  .button {
    width: 100%;
    min-height: 56px;
    padding-inline: 18px;
  }

  .section {
    padding: 68px 18px;
  }

  .signal-grid,
  .moment-grid {
    grid-template-columns: 1fr;
  }

  .signal-grid span {
    min-height: 64px;
  }

  .moment-card {
    min-height: 150px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .legal-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}


.legal {
  background: #fffdf7;
  color: var(--ink);
  padding-block: clamp(64px, 8vw, 108px);
}

.legal.privacy {
  background: var(--cream);
}

.legal-inner {
  width: min(960px, 100%);
}

.legal-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.82);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 14px 40px rgba(36, 37, 31, 0.08);
}

.legal-panel h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.legal-panel p {
  color: var(--muted);
  margin-bottom: 24px;
}

.legal-panel p:last-child {
  margin-bottom: 0;
}

.legal-panel a {
  color: #68704a;
  font-weight: 800;
}

.legal-list {
  display: grid;
  gap: 18px;
  margin: 0 0 24px;
}

.legal-list div {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.legal-list dt {
  color: var(--muted);
  font-weight: 850;
}

.legal-list dd {
  margin: 0;
  font-weight: 720;
}

.legal-note {
  font-size: 0.96rem;
}


.page-body {
  background: var(--cream);
}

.page-header {
  color: var(--ink);
  background: rgba(252, 249, 240, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.page-header .brand {
  background: rgba(255, 253, 247, 0.72);
  border-color: rgba(36, 37, 31, 0.12);
}

.legal-page-main {
  padding-top: 72px;
}

.legal-page-hero {
  padding: clamp(84px, 12vw, 132px) clamp(20px, 5vw, 72px) clamp(48px, 7vw, 82px);
  background: linear-gradient(180deg, var(--cream) 0%, #fffdf7 100%);
}

.legal-page-hero h1 {
  max-width: none;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.legal-page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.8vw, 1.28rem);
}

.legal-page-section {
  padding-top: clamp(42px, 6vw, 82px);
  background: var(--cream);
}

.cookie-banner {
  position: fixed;
  z-index: 60;
  left: clamp(14px, 3vw, 28px);
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 18px 18px 20px;
  border: 1px solid rgba(36, 37, 31, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.96);
  color: var(--ink);
  box-shadow: 0 18px 54px rgba(36, 37, 31, 0.2);
  backdrop-filter: blur(16px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 3px;
  font-size: 1rem;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.cookie-actions a {
  color: #68704a;
  font-weight: 850;
  text-decoration: none;
}

.cookie-button {
  min-height: 44px;
  padding-inline: 18px;
  border: 0;
  cursor: pointer;
}


.legal-document h2 {
  margin: 34px 0 14px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.18;
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document ul {
  margin: 0 0 24px 1.2rem;
  padding: 0;
  color: var(--muted);
}

.legal-document li {
  margin-bottom: 9px;
  padding-left: 4px;
}

.legal-stand {
  color: var(--ink) !important;
  font-weight: 850;
}
