@charset "UTF-8";
@font-face {
  font-family: "Newsreader";
  src: url("/fonts/Newsreader.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: "Newsreader";
  src: url("/fonts/Newsreader-Italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 200 800;
  font-display: swap;
}
.brand img {
  width: 36px;
  height: 36px;
}
/* Decorative orbits must not create horizontal scrolling on small screens. */
.hero-art {
  overflow: clip;
  overflow-clip-margin: 24px;
}
:root {
  color-scheme: light;
  --ink: #263d33;
  --muted: #626b60;
  --paper: #f7f5ed;
  --green: #294e3b;
  --line: #dddfd2;
  --coral: #a44f38;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 6px;
}
.wrap {
  max-width: 1200px;
  margin: auto;
  padding-left: 44px;
  padding-right: 44px;
}
.nav {
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.7px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.brand-icon {
  background: var(--green);
  color: var(--paper);
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 30px;
  padding-bottom: 5px;
  position: relative;
}
.brand-icon span {
  font-size: 16px;
  position: absolute;
  right: 3px;
  top: 13px;
  color: #ebbd6d;
}
.brand-dot {
  color: var(--coral);
}
nav {
  display: flex;
  gap: 34px;
  font-size: 13px;
}
nav a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  min-height: 660px;
  align-items: center;
  padding-bottom: 78px;
  padding-top: 36px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  line-height: 1.6;
}
.tiny-sun {
  font-size: 19px;
  color: var(--coral);
  margin-right: 8px;
  vertical-align: middle;
}
h1,
h2 {
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -2.5px;
  line-height: 1.04;
}
h1 {
  font-size: 67px;
  margin: 27px 0 23px;
}
h1 em,
h2 em {
  font-weight: 400;
  color: var(--coral);
}
.hero p,
.calculator-layout > div > p,
.closing > p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  background: var(--green);
  color: white;
  border: 0;
  border-radius: 7px;
  padding: 18px 24px;
  font-size: 13px;
  cursor: pointer;
  min-height: 50px;
}
.button:hover {
  background: #1c392b;
}
.hero .button {
  margin-top: 17px;
}
.button span {
  font-size: 18px;
}
.availability {
  font-size: 12px;
  color: var(--muted);
  margin-top: 18px;
}
.availability span {
  margin: 0 8px;
}
.hero-art {
  height: 515px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit {
  position: absolute;
  border: 1px solid #e3dfd0;
  border-radius: 50%;
  width: 440px;
  height: 440px;
  transform: rotate(-25deg);
}
.orbit-two {
  width: 380px;
  height: 475px;
  transform: rotate(35deg);
}
.preview-card {
  position: absolute;
  border-radius: 14px;
  box-shadow: 0 18px 45px #253d3314;
}
.main-card {
  background: var(--green);
  color: var(--paper);
  width: 310px;
  height: 362px;
  transform: rotate(-7deg);
  top: 41px;
  left: 48px;
  padding: 28px;
}
.card-top {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 2px;
}
.preview-number {
  font-family: "Newsreader", Georgia, serif;
  font-size: 75px;
  margin-top: 29px;
  letter-spacing: -4px;
  line-height: 1;
}
.preview-number > span {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  margin-top: 10px;
}
.week-grid {
  height: 77px;
  margin-top: 25px;
  background-image: radial-gradient(circle, #98ad7e 2px, transparent 2.5px);
  background-size: 13px 13px;
  width: 245px;
  opacity: 0.75;
}
.card-bottom {
  border-top: 1px solid #ffffff28;
  padding-top: 16px;
  font-size: 12px;
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
}
.card-bottom span {
  font-size: 20px;
  margin-top: -7px;
}
.summer-card {
  background: #f3d5a2;
  width: 260px;
  right: -4px;
  bottom: 58px;
  padding: 23px;
  display: flex;
  align-items: center;
  gap: 23px;
  transform: rotate(8deg);
}
.summer-sun {
  font-size: 47px;
  color: #996124;
}
.summer-card strong {
  display: block;
  font-family: "Newsreader", Georgia, serif;
  font-size: 49px;
  font-weight: 400;
  line-height: 1;
}
.summer-card div > span {
  font-size: 12px;
  display: block;
  margin-top: 8px;
}
.art-star {
  position: absolute;
  right: 13px;
  top: 3px;
  font-size: 67px;
  color: var(--coral);
}
.hand-note {
  position: absolute;
  left: 14px;
  bottom: 11px;
  transform: rotate(-9deg);
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.4;
  color: #747966;
}
.hand-note span {
  position: absolute;
  right: -38px;
  top: -20px;
  font-size: 39px;
}
.example-note {
  position: absolute;
  bottom: -24px;
  right: 10px;
  font-size: 12px;
  color: var(--muted);
}
.thought-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 27px 12px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 21px;
}
.thought-strip span:nth-child(odd) {
  color: #727966;
}
.strip-star {
  margin: 0 34px;
  color: var(--coral) !important;
  font-size: 31px;
}
.section {
  padding-top: 95px;
  padding-bottom: 95px;
}
.section-heading {
  position: relative;
}
h2 {
  font-size: 49px;
  margin: 21px 0 27px;
}
.section-heading > p {
  position: absolute;
  right: 15px;
  bottom: 0;
  line-height: 1.8;
  color: var(--muted);
  font-size: 14px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 39px;
}
.feature {
  border-radius: 12px;
  padding: 31px;
  min-height: 287px;
}
.peach {
  background: #eee0d5;
}
.sage {
  background: #e5e9dc;
}
.cream {
  background: #eee9d9;
}
.feature-symbol {
  font-size: 33px;
}
.feature h3 {
  font-family: "Newsreader", Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.6px;
  margin: 21px 0 13px;
}
.feature p {
  color: #5d665c;
  font-size: 13px;
  line-height: 1.8;
  max-width: 260px;
}
.feature-caption {
  display: block;
  font-size: 12px;
  margin-top: 24px;
  font-weight: 600;
}
.calculator-section {
  background: #e9ece2;
  padding: 80px 0;
}
.calculator-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.calculator-layout h2 {
  font-size: 44px;
}
.private-note {
  font-size: 12px;
  color: #566852;
  margin-top: 27px;
}
.private-note span {
  font-size: 20px;
  margin-right: 6px;
}
.calculator {
  background: var(--paper);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #dde1d4;
}
.calculator label {
  font-size: 12px;
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}
.calculator input,
.calculator select {
  background: #fffefa;
  color: var(--ink);
  width: 100%;
  border: 1px solid #d7dbcf;
  border-radius: 5px;
  padding: 12px;
  min-height: 46px;
  min-width: 0;
}
.calculator input:focus,
.calculator select:focus {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 15px;
  margin-top: 20px;
}
.field-hint {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
  margin: 15px 0 20px;
}
.calculator .button {
  width: 100%;
}
#error {
  color: #973c29;
  font-size: 12px;
  margin-bottom: 0;
}
details {
  margin-top: 20px;
  border-top: 1px solid var(--line);
  padding-top: 15px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}
summary {
  cursor: pointer;
}
.result-number {
  display: block;
  font-family: "Newsreader", Georgia, serif;
  font-size: 70px;
  font-weight: 400;
  letter-spacing: -3px;
  margin-top: 20px;
}
#results h3 {
  font-weight: 400;
  margin-top: 0;
}
#other-results {
  font-size: 13px;
  color: var(--muted);
}
.result-message {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 23px;
  color: var(--coral);
  margin-top: 25px;
}
.text-button {
  background: none;
  border: none;
  border-bottom: 1px solid var(--green);
  padding: 8px 0;
  color: var(--green);
  font-size: 12px;
  cursor: pointer;
}
.closing {
  text-align: center;
}
.closing h2 {
  font-size: 52px;
}
.principles {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 12px;
  margin: 31px 0 37px;
}
.coming {
  display: inline-block;
  border: 1px solid #ccd4c5;
  padding: 13px 24px;
  border-radius: 30px;
  font-size: 12px;
}
footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  padding-bottom: 28px;
}
footer .brand {
  font-size: 15px;
}
footer > span {
  font-size: 12px;
  color: var(--muted);
  flex: 1;
}
footer nav {
  font-size: 12px;
  gap: 20px;
}
footer small {
  font-size: 12px;
  width: 100%;
  color: var(--muted);
}
.skip {
  position: absolute;
  left: 10px;
  top: -80px;
  z-index: 100;
  background: var(--green);
  color: white;
  padding: 15px;
}
.skip:focus {
  top: 10px;
}
.document {
  max-width: 780px;
  min-height: 65vh;
  padding-top: 50px;
  padding-bottom: 80px;
}
.document h1 {
  font-size: 48px;
}
.document h2 {
  font-size: 28px;
  letter-spacing: -0.7px;
  line-height: 1.2;
  margin-top: 34px;
}
.document p,
.document li {
  line-height: 1.8;
  color: var(--muted);
  font-size: 15px;
}
.document a {
  text-decoration: underline;
}
.document ul {
  padding-left: 22px;
}
[hidden] {
  display: none !important;
}
@media (min-width: 1400px) {
  .hero {
    min-height: 720px;
  }
}
@media (max-width: 1000px) {
  h1 {
    font-size: 55px;
  }
  .main-card {
    left: 15px;
    width: 285px;
  }
  .summer-card {
    right: -10px;
    width: 240px;
  }
  .orbit {
    width: 350px;
    height: 350px;
  }
  .orbit-two {
    width: 320px;
    height: 410px;
  }
  .calculator-layout {
    gap: 30px;
  }
  .calculator-layout h2 {
    font-size: 37px;
  }
  .feature {
    padding: 24px;
  }
  .thought-strip {
    font-size: 18px;
    gap: 18px;
  }
  .strip-star {
    margin: 0 15px;
  }
}
@media (max-width: 720px) {
  .wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
  .nav {
    height: 85px;
  }
  .nav .brand {
    font-size: 16px;
  }
  .brand-icon {
    width: 29px;
    height: 29px;
    font-size: 25px;
  }
  .brand-icon span {
    top: 9px;
  }
  .nav nav > a:first-child {
    display: none;
  }
  .nav nav {
    font-size: 12px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 25px;
    padding-bottom: 52px;
  }
  .eyebrow {
    font-size: 12px;
    letter-spacing: 1.5px;
  }
  h1 {
    font-size: 55px;
    letter-spacing: -2px;
  }
  .hero-copy {
    max-width: 490px;
  }
  .hero-art {
    height: 450px;
    max-width: 420px;
    width: 100%;
    margin: 15px auto 0;
  }
  .main-card {
    left: 25px;
    top: 15px;
    width: 275px;
    height: 340px;
    padding: 25px;
  }
  .preview-number {
    font-size: 66px;
  }
  .week-grid {
    width: 222px;
    height: 67px;
  }
  .summer-card {
    width: 235px;
    bottom: 51px;
    right: 0;
  }
  .art-star {
    font-size: 49px;
    right: 7px;
    top: 0;
  }
  .hand-note {
    font-size: 14px;
    bottom: 9px;
    left: 10px;
  }
  .example-note {
    font-size: 12px;
    bottom: -22px;
    right: 0;
  }
  .thought-strip {
    gap: 9px;
    font-size: 14px;
    flex-wrap: wrap;
    padding: 19px 15px;
  }
  .strip-star {
    font-size: 20px;
    margin: 0 5px;
  }
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  h2 {
    font-size: 43px;
  }
  .section-heading > p {
    position: static;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 30px;
  }
  .feature {
    min-height: 0;
    padding: 26px;
  }
  .feature p {
    max-width: none;
  }
  .feature-caption {
    margin-top: 17px;
  }
  .feature h3 {
    margin-top: 12px;
  }
  .calculator-section {
    padding: 54px 0;
  }
  .calculator-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .calculator-layout h2 {
    font-size: 38px;
  }
  .calculator {
    padding: 25px;
  }
  .closing h2 {
    font-size: 44px;
  }
  .closing p br {
    display: none;
  }
  .principles {
    flex-direction: column;
    gap: 14px;
  }
  .closing > p {
    font-size: 14px;
  }
  footer {
    gap: 18px;
  }
  footer > span {
    flex-basis: 100%;
    order: 2;
  }
  footer nav {
    margin-left: auto;
  }
  footer small {
    order: 3;
  }
  .document h1 {
    font-size: 42px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

.rhythm-note {
  max-width: 850px;
  margin-top: 28px;
  font-size: 14px;
  line-height: 1.7;
}
.share-examples {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 850px;
  margin: 32px auto;
  align-items: start;
}
.share-examples figure {
  margin: 0;
  min-width: 0;
}
.share-examples img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid #d5dacd;
}
.share-examples figcaption {
  margin-top: 14px;
  font-size: 14px;
}
.share-examples p {
  font-size: 16px;
}
.create-steps {
  padding-left: 24px;
  line-height: 1.7;
}
.create-steps li {
  margin-bottom: 12px;
}
#personal-form label {
  margin-top: 16px;
}
#personal-result {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #d5dacd;
  overflow-wrap: anywhere;
}
.personal-number {
  font-family: Newsreader, serif;
  font-size: 36px;
}
@media (max-width: 600px) {
  .share-examples {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
:root {
  --ocean-ink: #203f58;
  --ocean-paper: #f1f6fa;
  --terracotta-ink: #683d30;
  --terracotta-paper: #fff5eb;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 24px;
}
.pricing-card {
  padding: 28px;
  border: 1px solid currentColor;
  border-radius: 20px;
}
.theme-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.swatch {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
}
.forest-swatch {
  background: #294e3b;
  color: #f7f5ed;
}
.ocean-swatch {
  background: var(--ocean-ink);
  color: var(--ocean-paper);
}
.terracotta-swatch {
  background: var(--terracotta-ink);
  color: var(--terracotta-paper);
}
