:root {
  color-scheme: light;
  --ink: #213128;
  --ink-soft: #435149;
  --muted: #6d756f;
  --cream: #f4efe7;
  --cream-deep: #e9e0d5;
  --paper: #fffdf8;
  --sage: #dbe5d6;
  --sage-soft: #edf2e9;
  --sage-dark: #496650;
  --forest: #2e4a39;
  --clay: #b77962;
  --clay-soft: #e4c4b6;
  --line: rgba(33, 49, 40, 0.13);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 28px 90px rgba(33, 49, 40, 0.15);
  --shadow-soft: 0 16px 50px rgba(33, 49, 40, 0.1);
  --radius: 26px;
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 98px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", ui-sans-serif, system-ui, -apple-system, sans-serif;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--clay-soft);
  color: var(--ink);
}

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

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

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
iframe:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
}

.header-inner {
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border-bottom: 1px solid rgba(33, 49, 40, 0.1);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.03rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 2px solid rgba(73, 102, 80, 0.18);
  border-radius: 50%;
  object-fit: cover;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 670;
}

.main-nav a {
  transition: color 160ms ease;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 23px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-size: 0.94rem;
  font-weight: 790;
  line-height: 1.1;
  text-align: center;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: var(--clay);
  background: var(--clay);
  transform: translateY(-2px);
}

.button-small {
  min-height: 43px;
  padding: 10px 18px;
  background: rgba(46, 74, 57, 0.08);
  color: var(--forest);
  backdrop-filter: blur(10px);
}

.button-small:hover {
  color: #fff;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 870px;
  align-items: end;
  overflow: hidden;
  padding: 152px 0 74px;
}

.hero-media,
.hero-wash,
.hero-media img {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background: var(--cream);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-wash {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(244, 239, 231, 0.99) 0%, rgba(244, 239, 231, 0.92) 43%, rgba(244, 239, 231, 0.24) 74%),
    linear-gradient(180deg, rgba(244, 239, 231, 0.08) 52%, rgba(33, 49, 40, 0.3) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 180px;
  left: -170px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(183, 121, 98, 0.17);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(260px, 1fr);
  align-items: end;
  gap: 68px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--clay);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 7px rgba(183, 121, 98, 0.1);
}

.eyebrow-dark {
  color: var(--sage-dark);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 27px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.5rem, 7.4vw, 7.1rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.91;
}

.hero h1 em,
.ritual-copy h2 em {
  color: var(--sage-dark);
  font-weight: 400;
}

.hero-lead {
  max-width: 630px;
  margin-bottom: 31px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(33, 49, 40, 0.27);
  padding-bottom: 4px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 750;
  transition: border-color 160ms ease, color 160ms ease;
}

.text-link:hover {
  border-color: var(--clay);
  color: var(--clay);
}

.text-link-dark {
  color: var(--forest);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.86rem;
  list-style: none;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-list span {
  color: var(--clay);
  font-size: 1rem;
}

.hero-card {
  justify-self: end;
  width: min(330px, 100%);
  margin-bottom: 10px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card-top {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.hero-card-top img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.hero-card-top strong,
.hero-card-top span {
  display: block;
}

.hero-card-top strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.hero-card-top span {
  color: var(--muted);
  font-size: 0.75rem;
}

.hero-card > p {
  margin: 30px 0 46px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.2;
}

.hero-card-note {
  color: var(--clay);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  right: 50%;
  bottom: 28px;
  width: 24px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
}

.scroll-cue span {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  transform: translateX(-50%);
}

.benefit-bar {
  background: var(--forest);
  color: #fff;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 29px 30px;
  border-right: 1px solid var(--line-light);
}

.benefit-grid > div:first-child {
  padding-left: 0;
}

.benefit-grid > div:last-child {
  border-right: 0;
  padding-right: 0;
}

.benefit-grid span {
  color: var(--clay-soft);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.benefit-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.89rem;
  line-height: 1.45;
}

.benefit-grid strong {
  color: #fff;
  font-size: 0.96rem;
}

.section {
  padding: 116px 0;
}

.reminder-section {
  background: var(--paper);
}

.reminder-grid {
  display: grid;
  grid-template-columns: 0.45fr minmax(430px, 0.95fr) minmax(300px, 0.7fr);
  align-items: center;
  gap: clamp(42px, 6vw, 82px);
}

.reminder-heading {
  align-self: start;
}

.reminder-number {
  display: block;
  color: var(--cream-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(6rem, 11vw, 10rem);
  line-height: 0.8;
}

.reminder-card {
  position: relative;
  isolation: isolate;
  min-height: 590px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(34px, 4.2vw, 54px);
  border-radius: 46% 46% 22px 22px;
  background: var(--sage-soft);
  box-shadow: var(--shadow-soft);
}

.reminder-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 18px;
  border: 1px solid rgba(73, 102, 80, 0.14);
  border-radius: inherit;
}

.quote-mark {
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  line-height: 1;
}

.reminder-card blockquote {
  margin: 20px 0 70px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.5vw, 3.35rem);
  line-height: 1.04;
  text-align: center;
}

.reflection {
  padding-top: 19px;
  border-top: 1px solid var(--line);
}

.reflection span {
  display: block;
  margin-bottom: 8px;
  color: var(--clay);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.reflection p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.reminder-copy h2,
.inside-heading h2,
.ritual-copy h2,
.newsletter-copy h2,
.faq-heading h2,
.final-cta h2 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5vw, 4.9rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.reminder-copy > p {
  margin-bottom: 28px;
  color: var(--muted);
}

.inside-section {
  background: var(--cream);
}

.inside-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 82px;
  margin-bottom: 56px;
}

.inside-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.inside-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
}

.inside-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.inside-grid article {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.inside-grid article:nth-child(2) {
  background: var(--sage);
}

.inside-grid article:nth-child(3) {
  background: #ead7ce;
}

.inside-number {
  float: right;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.inside-symbol {
  height: 180px;
  display: grid;
  place-items: center;
  color: var(--sage-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 7rem;
  font-weight: 400;
  line-height: 1;
}

.inside-grid article:nth-child(3) .inside-symbol {
  color: var(--clay);
  font-size: 11rem;
}

.inside-grid h3 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 400;
}

.inside-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.ritual-section {
  padding: 116px 0;
  background: var(--forest);
  color: #fff;
}

.ritual-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(430px, 1.1fr);
  align-items: center;
  gap: clamp(70px, 9vw, 140px);
}

.ritual-visual {
  position: relative;
  isolation: isolate;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.orbit-one {
  inset: 9%;
}

.orbit-two {
  inset: 22%;
  border-color: rgba(228, 196, 182, 0.3);
}

.ritual-word {
  color: var(--clay-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
}

.ritual-copy h2 {
  color: #fff;
}

.ritual-copy h2 em {
  color: var(--clay-soft);
}

.ritual-steps {
  margin-top: 38px;
}

.ritual-steps > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.ritual-steps > div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.ritual-steps span {
  color: var(--clay-soft);
  font-size: 0.72rem;
  font-weight: 900;
}

.ritual-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.ritual-steps strong {
  color: #fff;
}

.newsletter-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 118px 0;
  background: #d9c6ba;
}

.newsletter-orb {
  position: absolute;
  z-index: -1;
  top: -280px;
  left: -220px;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.35);
}

.newsletter-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(410px, 0.78fr);
  align-items: center;
  gap: clamp(62px, 8vw, 116px);
}

.newsletter-copy > p:not(.eyebrow) {
  max-width: 640px;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.newsletter-benefits {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.newsletter-benefits li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid rgba(33, 49, 40, 0.18);
}

.newsletter-benefits li > span {
  color: var(--sage-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.newsletter-benefits strong,
.newsletter-benefits small {
  display: block;
}

.newsletter-benefits small {
  margin-top: 2px;
  color: rgba(33, 49, 40, 0.6);
  font-size: 0.83rem;
}

.signup-shell {
  overflow: hidden;
  border: 1px solid rgba(33, 49, 40, 0.14);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.signup-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  background: var(--forest);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.71rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.signup-topline span:last-child {
  color: var(--clay-soft);
}

.form-frame-wrap {
  min-height: 760px;
  background: #fff;
}

.signup-frame {
  display: block;
  width: 100%;
  min-height: 760px;
  border: 0;
  background: #fff;
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(460px, 1.08fr);
  align-items: start;
  gap: clamp(60px, 10vw, 150px);
}

.faq-heading {
  position: sticky;
  top: 44px;
}

.faq-heading > p:not(.eyebrow) {
  color: var(--muted);
}

.faq-heading a {
  color: var(--sage-dark);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 19px;
  right: 4px;
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 680px;
  margin: -4px 0 24px;
  padding-right: 48px;
  color: var(--muted);
}

.final-cta {
  padding: 80px 0;
  background: var(--sage);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta h2 {
  max-width: 790px;
  margin-bottom: 0;
}

.button-light {
  flex: 0 0 auto;
}

.site-footer {
  padding: 42px 0 28px;
  background: var(--forest);
  color: #fff;
}

.footer-main,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-footer img {
  border-color: rgba(255, 255, 255, 0.18);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
  font-weight: 720;
}

.footer-links a:hover {
  color: var(--clay-soft);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.77rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    display: none;
  }

  .reminder-grid {
    grid-template-columns: minmax(380px, 0.9fr) minmax(300px, 0.7fr);
  }

  .reminder-heading {
    display: none;
  }

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

  .inside-grid article {
    min-height: 320px;
  }
}

@media (max-width: 820px) {
  .main-nav {
    display: none;
  }

  .benefit-grid,
  .reminder-grid,
  .inside-heading,
  .ritual-grid,
  .newsletter-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid > div {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .benefit-grid > div:last-child {
    border-bottom: 0;
  }

  .reminder-card {
    width: min(540px, 100%);
    justify-self: center;
  }

  .inside-heading,
  .ritual-grid {
    gap: 46px;
  }

  .ritual-visual {
    width: min(500px, 100%);
    justify-self: center;
  }

  .faq-heading {
    position: static;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 72px;
  }

  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    max-width: 188px;
    font-size: 0.9rem;
    line-height: 1.1;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .button-small {
    min-height: 40px;
    padding: 9px 14px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 780px;
    padding: 118px 0 56px;
  }

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

  .hero-wash {
    background:
      linear-gradient(90deg, rgba(244, 239, 231, 0.96), rgba(244, 239, 231, 0.7)),
      linear-gradient(180deg, rgba(244, 239, 231, 0.18) 45%, rgba(33, 49, 40, 0.4));
  }

  .hero h1 {
    font-size: clamp(3.45rem, 16.5vw, 5.1rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .trust-list {
    align-items: flex-start;
    flex-direction: column;
  }

  .scroll-cue {
    display: none;
  }

  .section,
  .ritual-section,
  .newsletter-section {
    padding: 78px 0;
  }

  .reminder-card {
    min-height: 520px;
    padding: 34px 26px;
    border-radius: 150px 150px 20px 20px;
  }

  .reminder-card blockquote {
    font-size: clamp(2rem, 10.5vw, 3rem);
  }

  .reminder-copy h2,
  .inside-heading h2,
  .ritual-copy h2,
  .newsletter-copy h2,
  .faq-heading h2,
  .final-cta h2 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .inside-grid article {
    min-height: 350px;
    padding: 24px;
  }

  .signup-shell {
    margin-inline: -5px;
  }

  .form-frame-wrap,
  .signup-frame {
    min-height: 850px;
  }

  .final-cta {
    padding: 64px 0;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
