@font-face {
  font-family: Lora;
  src: url("../assets/fonts/lora.ttf") format("truetype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Lora;
  src: url("../assets/fonts/lora-italic.ttf") format("truetype");
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Young Serif";
  src: url("../assets/fonts/young-serif.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Bree Serif";
  src: url("../assets/fonts/bree-serif.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Averia Serif Libre";
  src: url("../assets/fonts/averia-serif-libre.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../assets/fonts/dmsans.ttf") format("truetype");
  font-weight: 100 1000;
  font-display: swap;
}
@font-face {
  font-family: Caveat;
  src: url("../assets/fonts/caveat.ttf") format("truetype");
  font-weight: 400 700;
  font-display: swap;
}
:root {
  color-scheme: light;
  --cream: #fffaf7;
  --paper: #fffefb;
  --ink: #303c53;
  --blue: #4c6f9f;
  --deep: #354f78;
  --rose: #9d5772;
  --blush: #fae4e7;
  --sky: #e7eff9;
  --pink: #f1ccd6;
  --line: #e1dde1;
  --muted: #606a7a;
  --display: Lora, Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --hand: Caveat, cursive;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  font-synthesis: none;
  scroll-behavior: smooth;
  scroll-padding-top: 25px;
}
:root[data-serif="young"] {
  --display: "Young Serif", Georgia, serif;
}
:root[data-serif="bree"] {
  --display: "Bree Serif", Georgia, serif;
}
:root[data-serif="averia"] {
  --display: "Averia Serif Libre", Georgia, serif;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
button,
a,
input,
textarea {
  touch-action: manipulation;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.042em;
  line-height: 1.16;
}
p {
  line-height: 1.75;
}
h1 {
  font-size: clamp(56px, 6.3vw, 86px);
}
h2 {
  font-size: clamp(37px, 4.1vw, 55px);
}
h3 {
  font-size: 30px;
}
em {
  font-style: normal;
  color: var(--blue);
}
.wrap {
  width: min(1180px, calc(100% - 96px));
  margin-inline: auto;
}
.space {
  padding-block: 100px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.65;
}
.hand {
  font-family: var(--hand);
  font-weight: 500;
  letter-spacing: 0;
}
.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;
}
.svg-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
::selection {
  background: var(--blush);
}
:focus-visible {
  outline: 3px solid var(--deep);
  outline-offset: 5px;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  z-index: 20;
  background: var(--ink);
  color: white;
  padding: 14px;
}
.skip-link:focus {
  top: 12px;
}
.arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.header {
  min-height: 112px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.brand-name {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.1;
}
.brand small {
  display: block;
  font: 600 8px var(--sans);
  letter-spacing: 0.17em;
  text-transform: uppercase;
  margin-top: 7px;
  color: var(--muted);
}
.brand > svg {
  width: 35px;
  height: 46px;
  color: var(--rose);
  stroke-width: 1.4;
}
.header nav {
  display: flex;
  gap: 28px;
  font-size: 12px;
}
.header nav a:hover,
.quiet-link:hover {
  color: var(--deep);
  text-decoration: underline;
  text-underline-offset: 5px;
}
.quiet-link {
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
}
.header-cta {
  min-height: 44px;
  border: 1px solid #c5c9dc;
  padding: 10px 17px;
  border-radius: 6px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 52px;
  padding: 15px 24px;
  background: var(--blue);
  color: white;
  border: 1px solid var(--blue);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 3px 3px 0 #c9d4e9;
  transition:
    background 0.15s,
    transform 0.15s;
}
.button:hover {
  background: var(--deep);
  transform: translateY(-2px);
}
.studio-hero {
  position: relative;
  text-align: center;
  padding-block: 45px 34px;
}
.hero-copy {
  max-width: 840px;
  margin: auto;
}
.hero-copy .eyebrow {
  color: var(--rose);
  margin-bottom: 22px;
}
.hero-copy > p:not(.eyebrow) {
  font-size: 15px;
  max-width: 650px;
  margin: 25px auto 0;
  color: var(--muted);
}
.studio-hero h1 em {
  color: var(--rose);
}
.studio-invitation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 29px;
}
.studio-invitation .hand {
  font-size: 30px;
  color: var(--blue);
  transform: rotate(-3deg);
}
.studio-invitation svg {
  width: 53px;
  height: 47px;
  color: #a97993;
  transform: rotate(-8deg);
}
.tiny-stamp {
  position: absolute;
  right: 0;
  bottom: 46px;
  width: 112px;
  height: auto;
  transform: rotate(9deg);
}
.studio-section {
  padding-block: 0 56px;
}
.studio-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(950px, 100%);
  margin: 0 auto 18px;
}
.studio-tabs button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 53px;
  padding: 10px 14px;
  font-size: 12px;
  color: var(--ink);
  border: 1px solid #c4d0e1;
  border-radius: 100px;
  background: transparent;
  transition: background 0.15s;
}
.studio-tabs button .art {
  width: 24px;
  height: 24px;
}
.studio-tabs button[aria-selected="true"] {
  background: #e9f0f9;
  border-color: var(--blue);
  color: var(--deep);
}
.studio-tabs button:hover:not([aria-selected="true"]) {
  background: var(--blush);
}
.studio-panel {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  border: 1px solid #cfd8e4;
  border-radius: 10px;
  background: #fffdfb;
  box-shadow: 6px 7px 0 #e5edf7;
}
.editor {
  padding: 38px 44px 32px;
  order: 1;
  min-width: 0;
}
.editor .eyebrow {
  font-size: 9px;
  color: var(--rose);
}
.editor h3 {
  font-size: 34px;
  margin-top: 15px;
}
.editor > p:not(.eyebrow) {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
  max-width: 420px;
}
.editor form {
  display: grid;
  gap: 16px;
  margin-top: 25px;
}
.editor label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
}
.editor input,
.editor textarea {
  width: 100%;
  max-width: 100%;
  color: var(--ink);
  background: white;
  border: 1px solid #c4cedb;
  border-radius: 5px;
  min-height: 44px;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}
.editor textarea {
  resize: vertical;
  min-height: 85px;
}
.demo-note {
  display: block;
  font-size: 10px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 18px;
}
.art-choices {
  display: flex;
  flex-wrap: wrap;
  border: 0;
  padding: 0;
  margin: 1px 0 0;
  gap: 8px;
}
.art-choices legend {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 9px;
}
.art-choices button {
  border: 1px solid #ced5df;
  background: transparent;
  border-radius: 100px;
  min-height: 36px;
  padding: 7px 12px;
  color: var(--muted);
  font-size: 11px;
}
.art-choices button[aria-pressed="true"] {
  background: var(--blush);
  border-color: #d8acbb;
  color: #8f4764;
}
.art-choices[hidden] {
  display: none;
}
.preview-stage {
  order: 0;
  min-height: 610px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 92px 38px 66px;
  border-right: 1px solid #cfd8e4;
  border-radius: 9px 0 0 9px;
  background-color: #dfeaf7;
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0 33px,
    #ffffff6e 33px 34px
  );
}
.preview-stage > .hand {
  position: absolute;
  top: 29px;
  left: 15px;
  right: 15px;
  text-align: center;
  font-size: 28px;
  color: #9d5772;
  transform: rotate(-3deg);
}
.preview-stage > .caption {
  position: absolute;
  bottom: 21px;
  left: 15px;
  right: 15px;
  text-align: center;
  font-size: 7px;
  letter-spacing: 0.05em;
  color: #5a687e;
}
.preview-stage[data-mode="today"] {
  background-color: #dfe8f6;
}
.preview-stage[data-mode="pantry"] {
  background-color: #f5dfe5;
}
.preview-stage[data-mode="chores"] {
  background-color: #e7eff8;
}
.paper {
  position: relative;
  width: 260px;
  max-width: 100%;
  flex-shrink: 0;
  background: var(--paper);
  color: #272426;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 5px 14px 26px #43395327;
  transform: rotate(-4deg);
  overflow-wrap: anywhere;
}
.paper::before {
  content: "";
  position: absolute;
  width: 72px;
  height: 25px;
  top: -13px;
  left: calc(50% - 36px);
  background: #e4bfcbd4;
  transform: rotate(8deg);
  clip-path: polygon(
    0 0,
    100% 3%,
    97% 31%,
    100% 70%,
    98% 100%,
    0 95%,
    3% 70%,
    0 33%
  );
}
.paper::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  right: 0;
  height: 8px;
  background:
    linear-gradient(135deg, var(--paper) 5px, transparent 0) 0 0/12px 12px,
    linear-gradient(225deg, var(--paper) 5px, transparent 0) 0 0/12px 12px;
}
.paper .kicker {
  font: 600 7px/1.5 var(--sans);
  letter-spacing: 0.1em;
}
.paper h4 {
  font-size: 34px;
  letter-spacing: -0.045em;
  line-height: 1.1;
  color: #272426;
}
.paper .art {
  width: 105px;
  height: 117px;
  margin: 19px auto 14px;
  stroke-width: 1.8;
}
.paper .message {
  font-size: 11px;
  line-height: 1.65;
  margin-top: 17px;
  white-space: pre-line;
}
.paper .paper-foot {
  font: 500 6px/1.6 var(--sans);
  letter-spacing: 0.06em;
  padding-top: 14px;
  border-top: 1px dashed #aaa2a4;
  margin-top: 24px;
  color: #494347;
}
.paper .checklist {
  list-style: none;
  padding: 0;
  margin: 22px 0 13px;
  display: grid;
  gap: 13px;
  text-align: left;
}
.paper .checklist li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 11px;
  line-height: 1.6;
}
.paper .checklist li::before {
  content: "";
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border: 1px solid #333;
  margin-top: 4px;
}
.paper.list h4 {
  font-size: 35px;
  margin-top: 20px;
}
.paper.list .art {
  width: 68px;
  height: 68px;
  margin-block: 20px;
}
.paper.label {
  outline: 1px solid #45423c;
  outline-offset: -10px;
  padding-block: 31px;
}
.paper.label::after {
  display: none;
}
.paper.label .art {
  width: 68px;
  height: 68px;
  margin-block: 20px 15px;
}
.paper.label h4 {
  font-size: 33px;
}
.paper.label .paper-foot {
  border: 0;
  margin-top: 8px;
  padding-top: 8px;
}
.paper.chores .art {
  width: 71px;
  height: 71px;
}
.paper.chores h4 {
  font-size: 28px;
}
.studio-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  margin-top: 25px;
  color: var(--muted);
  font-size: 12px;
}
.studio-foot a {
  text-decoration: underline;
  text-underline-offset: 5px;
  color: var(--deep);
  white-space: nowrap;
}
.value-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 68px;
  padding-block: 26px;
  border-block: 1px solid var(--line);
}
.value-strip p {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
}
.value-strip .art {
  width: 30px;
  height: 34px;
  color: var(--rose);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 38px;
}
.section-head .eyebrow {
  color: var(--rose);
  margin-bottom: 16px;
}
.section-head .hand {
  font-size: 28px;
  line-height: 1.2;
  transform: rotate(-4deg);
  color: var(--rose);
  padding: 0 23px 13px 0;
}
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.outcome {
  min-width: 0;
  display: block;
}
.outcome-photo {
  position: relative;
  margin-bottom: 25px;
}
.outcome-photo img {
  width: 100%;
  aspect-ratio: 1.13;
  object-fit: cover;
  border-radius: 5px 5px 46px 5px;
  background: var(--blush);
  transition: transform 0.2s;
}
.outcome:nth-child(2) .outcome-photo img {
  border-radius: 44px 5px 5px 5px;
}
.outcome:nth-child(3) .outcome-photo img {
  border-radius: 5px 44px 5px 5px;
}
.photo-tag {
  position: absolute;
  bottom: -11px;
  right: 13px;
  padding: 2px 13px 4px;
  background: #f7e8ed;
  color: #795568;
  font-size: 22px;
  transform: rotate(-4deg);
  box-shadow: 1px 2px 0 #4b334a0d;
}
.outcome:nth-child(2) .photo-tag {
  background: #e2e9f6;
  color: var(--deep);
  transform: rotate(3deg);
}
.outcome:nth-child(3) .photo-tag {
  background: #f9e4e9;
  color: var(--rose);
}
.outcome > .eyebrow {
  font-size: 8px;
  color: var(--rose);
  margin-bottom: 11px;
}
.outcome h3 {
  font-size: 27px;
}
.outcome > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 12px;
  margin-top: 10px;
}
.outcome-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 9px;
  margin-top: 22px;
  border-bottom: 1px solid var(--line);
  color: var(--deep);
  font-size: 12px;
}
.outcome:hover h3 {
  color: var(--blue);
}
.outcome:hover img {
  transform: translateY(-3px);
}
.heat-section {
  position: relative;
  background: var(--sky);
  border-block: 1px solid #d4deee;
}
.heat-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}
.heat-intro .eyebrow {
  color: var(--blue);
  margin-bottom: 19px;
}
.heat-intro > div > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
  margin-top: 24px;
  max-width: 430px;
}
.heat-artwork {
  margin: 0;
  text-align: center;
}
.heat-artwork img {
  display: block;
  width: 100%;
  height: auto;
}
.heat-artwork .hand {
  color: var(--rose);
  font-size: 29px;
  line-height: 1.2;
  transform: rotate(-3deg);
  margin-top: 12px;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
  margin-top: 57px;
  padding-top: 36px;
  border-top: 1px solid #c8d4e5;
}
.how-steps .eyebrow {
  font-size: 9px;
  color: var(--blue);
}
.how-steps h3 {
  font-size: 30px;
  margin-top: 11px;
}
.how-steps p:not(.eyebrow) {
  color: var(--muted);
  font-size: 13px;
  margin-top: 16px;
}
.setup-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid #c8d4e5;
  padding-top: 26px;
  margin-top: 37px;
  font-size: 12px;
}
.setup-note p {
  max-width: 850px;
  color: var(--muted);
}
.setup-note a {
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.questions {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}
.questions .eyebrow {
  color: var(--rose);
  margin-bottom: 18px;
}
.questions h2 {
  font-size: 46px;
}
.questions .hand {
  color: var(--blue);
  font-size: 28px;
  margin-top: 23px;
  transform: rotate(-4deg);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 23px 0;
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  font-weight: 500;
  list-style: none;
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  font-size: 20px;
  line-height: 1;
  color: var(--rose);
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list details > p {
  color: var(--muted);
  font-size: 13px;
  padding-top: 15px;
}
.faq-list a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.closing {
  position: relative;
  text-align: center;
  padding: 68px 50px 73px;
  border: 1px solid #cddbeb;
  background: var(--sky);
  border-radius: 8px;
}
.closing > .hand {
  display: block;
  font-size: 29px;
  color: var(--rose);
  margin-bottom: 20px;
  transform: rotate(-3deg);
}
.closing h2 {
  font-size: clamp(45px, 4.4vw, 64px);
}
.closing > .button {
  margin-top: 31px;
}
.closing-daisy {
  position: absolute;
  right: 55px;
  bottom: 55px;
  width: 84px;
  height: 117px;
  color: #a47994;
  stroke-width: 1.2;
  transform: rotate(9deg);
}
.footer {
  margin-top: 75px;
  padding-block: 32px 25px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.footer .brand-name {
  font-size: 25px;
}
.footer > p {
  font-size: 11px;
  color: var(--muted);
}
.footer nav {
  display: flex;
  gap: 26px;
  font-size: 11px;
}
.footer a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer .preview-footer {
  width: 100%;
  font-size: 9px;
  margin-top: 15px;
}
.preview-footer a {
  float: right;
}
.editorial-hero {
  position: relative;
  text-align: center;
  padding-block: 55px 58px;
}
.editorial-hero .eyebrow {
  margin-bottom: 20px;
  color: var(--rose);
}
.editorial-hero h1 {
  font-size: clamp(56px, 6vw, 82px);
}
.editorial-hero h1 em {
  color: var(--blue);
}
.editorial-hero > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
  margin: 25px auto 0;
  max-width: 730px;
}
.studio-outcomes {
  padding-top: 14px;
  padding-bottom: 95px;
}
.studio-outcomes .section-head h2 {
  font-size: 39px;
}
.outcome-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 43px 32px;
}
.outcome-photo img {
  aspect-ratio: 1.65;
}
.outcome:nth-child(4) .outcome-photo img {
  border-radius: 5px 5px 5px 44px;
}
.outcome:nth-child(4) .photo-tag {
  background: var(--sky);
  color: var(--deep);
}
.outcome h3 {
  font-size: 30px;
}
.outcome > p:not(.eyebrow) {
  font-size: 13px;
}
.stories {
  padding-block: 15px 0;
  border-top: 1px solid var(--line);
}
.stories-heading {
  padding-top: 55px;
  margin-bottom: 45px;
}
.story {
  display: grid;
  grid-template-columns: 1.38fr 1fr;
  align-items: center;
  gap: 68px;
  margin-block: 0 85px;
}
.story-visual {
  min-width: 0;
  position: relative;
  padding-bottom: 110px;
}
.story-image {
  aspect-ratio: 1.28;
  width: 100%;
  object-fit: cover;
  border-radius: 7px 7px 90px 7px;
  background: var(--blush);
}
.story-paper {
  position: absolute;
  bottom: -8px;
  left: -14px;
  width: 190px;
  padding: 20px 17px;
  transform: rotate(-7deg);
}
.story-paper h3 {
  font-size: 27px;
  line-height: 1;
  color: #272426;
}
.story-paper .kicker {
  font-size: 5px;
}
.story-paper .art {
  width: 57px;
  height: 59px;
  margin: 11px auto;
}
.story-paper .checklist {
  gap: 8px;
  margin-block: 16px 0;
}
.story-paper .checklist li {
  font-size: 8px;
  gap: 6px;
  line-height: 1.5;
}
.story-paper .checklist li::before {
  width: 7px;
  height: 7px;
  margin-top: 3px;
}
.story-paper .paper-foot {
  font-size: 4.5px;
  padding-top: 9px;
  margin-top: 13px;
}
.story-scribble {
  position: absolute;
  bottom: 22px;
  right: 5px;
  max-width: 230px;
  text-align: center;
  color: var(--rose);
  font-size: 27px;
  line-height: 1.1;
  transform: rotate(-4deg);
}
.story-copy {
  padding-bottom: 70px;
}
.story-copy .eyebrow {
  font-size: 9px;
  color: var(--rose);
  margin-bottom: 24px;
}
.story-copy h2 {
  font-size: clamp(39px, 4vw, 56px);
}
.story-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
  margin-top: 21px;
  max-width: 390px;
}
.story-copy > p + p {
  margin-top: 13px;
}
.story-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
  color: var(--deep);
  border-bottom: 1px solid #bbbfd4;
  padding-block: 9px;
  margin-top: 24px;
}
.story-link:hover {
  color: var(--rose);
  border-color: var(--rose);
}
.backyard-story {
  grid-template-columns: 1fr 1.38fr;
}
.backyard-story .story-visual {
  order: 1;
}
.backyard-story .story-image {
  border-radius: 80px 7px 7px 7px;
}
.backyard-story .story-paper {
  left: auto;
  right: -16px;
  transform: rotate(6deg);
}
.backyard-story .story-scribble {
  right: auto;
  left: 8px;
}
.backyard-story .story-copy {
  padding-left: 25px;
}
.hunt-paper h3 {
  margin-top: 12px;
}
.studio-heading {
  position: relative;
  text-align: center;
  margin-bottom: 34px;
  padding-top: 70px;
}
.studio-heading .eyebrow {
  color: var(--rose);
  margin-bottom: 15px;
}
.studio-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
  margin-top: 20px;
}
.studio-heading .hand {
  display: inline-block;
  color: var(--blue);
  font-size: 28px;
  transform: rotate(-3deg);
  margin-top: 20px;
}
.studio-heading h2 br {
  display: none;
}
.studio-tabs {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: 100%;
  gap: 9px;
}
.studio-tabs button {
  font-size: 10px;
  gap: 6px;
  padding-inline: 8px;
}
.hardware-section {
  background: #fae5e9;
  border-block: 1px solid #efd1db;
  padding-block: 70px;
}
.hardware-inner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 60px;
  align-items: center;
}
.hardware-photo img {
  width: 100%;
  aspect-ratio: 1.24;
  object-fit: cover;
  border-radius: 6px 70px 6px 6px;
}
.hardware-photo figcaption {
  font-size: 9px;
  color: var(--muted);
  margin-top: 13px;
}
.hardware-copy .eyebrow {
  color: var(--rose);
  margin-bottom: 18px;
}
.hardware-copy h2 {
  font-size: clamp(37px, 3.8vw, 51px);
}
.hardware-copy > p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
  margin-top: 20px;
}
.hardware-copy strong {
  color: var(--ink);
}
.hardware-copy .button {
  margin-top: 25px;
}
.hardware-copy .availability {
  font-size: 11px;
  max-width: 470px;
  margin-top: 18px;
}
.hardware-path {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 22px 0 0;
  counter-reset: setup;
}
.hardware-path li {
  font-size: 10px;
  padding: 7px 10px;
  border: 1px solid #e1bdc9;
  border-radius: 100px;
  counter-increment: setup;
}
.hardware-path li::before {
  content: counter(setup) " · ";
  color: var(--rose);
  font-weight: 600;
}
@media (max-width: 1080px) {
  .story {
    gap: 42px;
  }
  .story-scribble {
    max-width: 145px;
    font-size: 25px;
  }
  .story-paper {
    width: 170px;
    left: -12px;
  }
  .story-copy h2 {
    font-size: 43px;
  }
  .hardware-inner {
    gap: 40px;
  }
  .header nav {
    gap: 20px;
  }
  .header {
    gap: 20px;
  }
  .header-cta {
    font-size: 11px;
    gap: 9px;
    padding-inline: 12px;
  }
  .brand-name {
    font-size: 27px;
  }
  .tiny-stamp {
    right: 0;
    bottom: 28px;
    width: 88px;
    height: auto;
  }
  .editor {
    padding: 33px 30px;
  }
  .editor h3 {
    font-size: 31px;
  }
  .preview-stage {
    padding-inline: 26px;
  }
  .value-strip {
    gap: 34px;
  }
  .outcome-grid {
    gap: 22px;
  }
  .outcome h3 {
    font-size: 24px;
  }
  .heat-intro,
  .questions {
    gap: 60px;
  }
  .footer > p:not(.preview-footer) {
    display: none;
  }
}
@media (max-width: 820px) {
  .editorial-hero {
    padding-top: 35px;
  }
  .editorial-hero h1 {
    font-size: 65px;
  }
  .editorial-hero .tiny-stamp {
    display: none;
  }
  .outcome-grid {
    gap: 34px 25px;
  }
  .story {
    gap: 29px;
  }
  .story-copy h2 {
    font-size: 36px;
  }
  .story-copy > p:not(.eyebrow) {
    font-size: 12px;
  }
  .story-image {
    aspect-ratio: 0.92;
  }
  .story-paper {
    width: 155px;
    padding: 18px 14px;
    left: -6px;
  }
  .story-paper h3 {
    font-size: 24px;
  }
  .story-scribble {
    font-size: 22px;
    max-width: 116px;
  }
  .backyard-story .story-paper {
    right: -8px;
  }
  .backyard-story .story-copy {
    padding-left: 0;
  }
  .studio-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hardware-inner {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 30px;
  }
  .hardware-copy h2 {
    font-size: 35px;
  }
  .hardware-copy > p:not(.eyebrow) {
    font-size: 12px;
  }
  .wrap {
    width: calc(100% - 56px);
  }
  .header {
    min-height: 98px;
  }
  .header nav {
    display: none;
  }
  .studio-hero {
    padding-top: 30px;
  }
  .studio-hero h1 {
    font-size: 65px;
  }
  .tiny-stamp {
    display: none;
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .studio-tabs button {
    font-size: 11px;
    gap: 7px;
    padding-inline: 8px;
  }
  .studio-tabs button .art {
    width: 20px;
  }
  .editor {
    padding: 28px 24px;
  }
  .editor h3 {
    font-size: 28px;
  }
  .editor > p:not(.eyebrow) {
    font-size: 12px;
  }
  .preview-stage {
    min-height: 630px;
  }
  .preview-stage > .hand {
    font-size: 25px;
  }
  .paper {
    width: 238px;
    padding-inline: 22px;
  }
  .paper h4 {
    font-size: 31px;
  }
  .studio-foot {
    font-size: 11px;
  }
  .value-strip {
    gap: 24px;
  }
  .value-strip p {
    font-size: 10px;
    gap: 8px;
  }
  .value-strip .art {
    width: 24px;
  }
  .space {
    padding-block: 75px;
  }
  .studio-section {
    padding-top: 0;
    padding-bottom: 45px;
  }
  .section-head .hand {
    font-size: 25px;
  }
  .outcome-grid {
    gap: 18px;
  }
  .outcome h3 {
    font-size: 23px;
  }
  .photo-tag {
    font-size: 18px;
    padding-inline: 8px;
    right: 4px;
  }
  .outcome-link {
    font-size: 11px;
    gap: 8px;
  }
  .heat-intro {
    gap: 40px;
  }
  .how-steps {
    gap: 27px;
  }
  .how-steps h3 {
    font-size: 26px;
  }
  .questions {
    gap: 40px;
  }
  .questions h2 {
    font-size: 37px;
  }
  .closing {
    padding-inline: 30px;
  }
  .closing-daisy {
    right: 23px;
    bottom: 32px;
    width: 57px;
  }
  .footer nav {
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .editorial-hero {
    padding-block: 27px 42px;
  }
  .editorial-hero h1 {
    font-size: clamp(43px, 11.2vw, 63px);
  }
  .editorial-hero .eyebrow {
    font-size: 8px;
  }
  .editorial-hero > p:not(.eyebrow) {
    font-size: 13px;
    max-width: 370px;
    margin-top: 20px;
  }
  .hero-invitation {
    font-size: 26px;
    margin-top: 20px;
  }
  .studio-outcomes.space {
    padding-block: 5px 60px;
  }
  .studio-outcomes .section-head h2 {
    font-size: 34px;
  }
  .outcome-photo img {
    aspect-ratio: 1.4;
  }
  .stories-heading {
    padding-top: 45px;
  }
  .story,
  .backyard-story {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    margin-bottom: 55px;
  }
  .story-visual {
    padding-bottom: 112px;
  }
  .story-image {
    aspect-ratio: 1.1;
  }
  .story-paper {
    width: 162px;
    bottom: -2px;
    left: 0;
  }
  .story-copy,
  .backyard-story .story-copy {
    padding: 0;
  }
  .story-copy h2 {
    font-size: 39px;
  }
  .story-copy h2 br {
    display: none;
  }
  .story-copy > p:not(.eyebrow) {
    font-size: 13px;
    max-width: none;
  }
  .story-copy .eyebrow {
    margin-bottom: 15px;
    font-size: 8px;
  }
  .story-link {
    margin-top: 18px;
    font-size: 13px;
  }
  .story-scribble {
    font-size: 24px;
    max-width: 140px;
  }
  .backyard-story .story-visual {
    order: 0;
  }
  .backyard-story .story-paper {
    right: 0;
  }
  .studio-heading {
    padding-top: 55px;
  }
  .studio-heading h2 {
    font-size: 38px;
  }
  .studio-heading h2 br {
    display: block;
  }
  .studio-heading > p:not(.eyebrow) {
    font-size: 13px;
  }
  .hardware-section {
    padding-block: 47px;
  }
  .hardware-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }
  .hardware-photo img {
    aspect-ratio: 1.4;
  }
  .hardware-copy h2 {
    font-size: 38px;
  }
  .hardware-copy > p:not(.eyebrow) {
    font-size: 13px;
  }
  .hardware-copy .availability {
    font-size: 11px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .header {
    min-height: 92px;
    gap: 12px;
  }
  .brand {
    gap: 8px;
  }
  .brand-name {
    font-size: 25px;
  }
  .brand > svg {
    width: 28px;
    height: 38px;
  }
  .brand small {
    font-size: 7px;
  }
  .header-cta {
    font-size: 10px;
    padding: 9px 11px;
    min-height: 40px;
  }
  .header-cta svg {
    display: none;
  }
  .studio-hero {
    padding-block: 28px 27px;
  }
  .studio-hero h1 {
    font-size: clamp(43px, 11.4vw, 63px);
  }
  .hero-copy .eyebrow {
    font-size: 8px;
    margin-bottom: 18px;
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 13px;
    margin-top: 21px;
    max-width: 365px;
  }
  .desktop-break {
    display: none;
  }
  .studio-invitation {
    margin-top: 25px;
    gap: 10px;
  }
  .studio-invitation .hand {
    font-size: 26px;
  }
  .studio-invitation svg {
    width: 33px;
    height: 34px;
  }
  .studio-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 15px;
  }
  .studio-tabs button {
    font-size: 12px;
    min-height: 47px;
    gap: 9px;
  }
  .studio-panel {
    grid-template-columns: minmax(0, 1fr);
    box-shadow: 4px 5px 0 #e5edf7;
  }
  .editor {
    order: 0;
    padding: 30px 26px;
  }
  .editor h3 {
    font-size: 31px;
  }
  .editor > p:not(.eyebrow) {
    font-size: 13px;
  }
  .editor input,
  .editor textarea {
    font-size: 16px;
  }
  .preview-stage {
    order: 1;
    min-height: 535px;
    border-right: 0;
    border-top: 1px solid #cfd8e4;
    border-radius: 0 0 9px 9px;
    padding-block: 90px 63px;
  }
  .preview-stage > .hand {
    font-size: 27px;
  }
  .paper {
    width: 250px;
    padding-inline: 24px;
  }
  .paper h4 {
    font-size: 33px;
  }
  .studio-foot {
    display: block;
    font-size: 11px;
  }
  .studio-foot a {
    display: inline-block;
    margin-top: 14px;
  }
  .value-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 22px 15px;
  }
  .value-strip p {
    font-size: 12px;
    gap: 15px;
  }
  .value-strip .art {
    width: 26px;
    height: 29px;
  }
  .space {
    padding-block: 66px;
  }
  .studio-section {
    padding-block: 0 40px;
  }
  .section-head {
    display: block;
    margin-bottom: 30px;
  }
  .section-head .eyebrow {
    font-size: 9px;
  }
  .section-head .hand {
    font-size: 26px;
    padding: 0;
    margin: 23px 0 0 7px;
  }
  .section-head .hand br {
    display: none;
  }
  .outcome-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 39px;
  }
  .outcome-photo {
    margin-bottom: 28px;
  }
  .outcome-photo img {
    aspect-ratio: 1.2;
  }
  .photo-tag {
    font-size: 25px;
    padding: 2px 13px 4px;
    right: 12px;
  }
  .outcome h3 {
    font-size: 30px;
  }
  .outcome > .eyebrow {
    font-size: 9px;
  }
  .outcome > p:not(.eyebrow) {
    font-size: 13px;
  }
  .outcome-link {
    font-size: 13px;
    margin-top: 16px;
  }
  .heat-intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }
  .heat-intro .eyebrow {
    font-size: 9px;
  }
  .how-steps {
    grid-template-columns: minmax(0, 1fr);
    gap: 29px;
    margin-top: 35px;
    padding-top: 29px;
  }
  .how-steps h3 {
    font-size: 31px;
  }
  .how-steps p:not(.eyebrow) {
    margin-top: 10px;
  }
  .setup-note {
    display: block;
    padding-top: 25px;
    font-size: 12px;
  }
  .setup-note a {
    display: inline-block;
    margin-top: 17px;
  }
  .questions {
    grid-template-columns: minmax(0, 1fr);
    gap: 31px;
  }
  .questions h2 {
    font-size: 40px;
  }
  .questions .hand {
    margin-top: 18px;
  }
  .faq-list details {
    padding-block: 21px;
  }
  .closing {
    padding: 46px 18px 54px;
  }
  .closing > .hand {
    font-size: 27px;
  }
  .closing h2 {
    font-size: 39px;
  }
  .closing-daisy {
    display: none;
  }
  .footer {
    margin-top: 55px;
    gap: 25px;
  }
  .footer nav {
    flex-wrap: wrap;
    font-size: 12px;
    gap: 17px;
    width: 100%;
  }
  .preview-footer a {
    float: none;
    display: block;
    margin-top: 10px;
  }
}
@media (max-width: 360px) {
  .brand-name {
    font-size: 22px;
  }
  .brand > svg {
    width: 24px;
  }
  .header-cta {
    padding-inline: 8px;
    font-size: 9px;
  }
  .studio-invitation .hand {
    font-size: 23px;
  }
  .preview-stage {
    padding-inline: 21px;
  }
  .paper {
    width: 232px;
    padding-inline: 20px;
  }
  .editor {
    padding-inline: 22px;
  }
  .closing h2 {
    font-size: 34px;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

/* Artwork and the waitlist share the studio's blue and blush palette. */
.brand-mark {
  width: 43px;
  height: 43px;
  object-fit: contain;
  flex: 0 0 auto;
}
.header-cta {
  background: var(--pink);
  border-color: #ddb7c5;
  color: var(--ink);
  font-family: var(--sans);
}
.header-cta:hover {
  background: #f7d9e2;
  text-decoration: none;
}
.header nav a[aria-current="page"] {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 7px;
  text-decoration-color: #d49aae;
}
.header-cta > span {
  font-size: 20px;
  line-height: 1;
}
.guide-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 30px;
  padding-block: 0 32px;
  font-size: 12px;
  color: var(--deep);
}
.guide-jump a {
  border-bottom: 1px solid #b9c8dd;
  padding-bottom: 5px;
}
.assistant-section {
  margin-block: 0 78px;
  padding: 48px 44px 32px;
  background: var(--blush);
  border: 1px solid #efd1db;
  border-radius: 20px 20px 70px 20px;
}
.assistant-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.assistant-heading h2 {
  font-size: clamp(32px, 3.5vw, 47px);
}
.assistant-heading p {
  color: var(--muted);
  font-size: 14px;
}
.assistant-request {
  text-align: center;
  font-size: 33px;
  color: var(--rose);
  margin: 25px 0 0;
  transform: rotate(-2deg);
}
.assistant-diagram {
  margin: 12px auto 24px;
  max-width: 880px;
}
.assistant-diagram img {
  display: block;
  width: 100%;
  height: auto;
}
.assistant-diagram figcaption {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  text-align: center;
  font-size: 12px;
  color: var(--deep);
  margin-top: 12px;
}
.assistant-future {
  font-size: 11px;
  color: var(--muted);
  max-width: 750px;
  text-align: center;
  margin: 0 auto;
  line-height: 1.7;
}
.studio-tabs button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: #f0c5d5;
  transform: scaleX(0);
  transform-origin: left;
}
.studio-tabs button[aria-selected="true"]::before {
  transform: scaleX(var(--tab-progress, 0));
}
.rotation-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  margin: -5px 0 15px;
  color: var(--muted);
  font-size: 11px;
}
.rotation-controls button {
  font: inherit;
  color: var(--deep);
  padding: 8px 0 8px 12px;
  border: 0;
  background: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.waitlist-open {
  overflow: hidden;
}
.waitlist-dialog {
  border: 1px solid #decbd4;
  border-radius: 20px;
  background: var(--cream);
  color: var(--ink);
  width: min(540px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 40px;
  margin: auto;
  overflow-y: auto;
  box-shadow: 0 25px 90px #25375340;
}
.waitlist-dialog::backdrop {
  background: #26384d80;
  backdrop-filter: blur(4px);
}
.waitlist-dialog [hidden] {
  display: none !important;
}
.dialog-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font: 28px var(--sans);
  background: transparent;
  color: var(--ink);
}
.dialog-close:hover {
  background: var(--pink);
}
.waitlist-flower {
  display: block;
  width: 51px;
  height: 51px;
  margin: 0 auto 12px;
}
.waitlist-dialog .hand {
  font-size: 25px;
  color: var(--rose);
  text-align: center;
}
.waitlist-dialog h2 {
  font-size: 34px;
  text-align: center;
  margin: 12px 0;
}
#waitlist-intro {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 24px;
}
.waitlist-field {
  display: block;
  font: 500 13px var(--sans);
  margin-bottom: 19px;
}
.waitlist-field input {
  display: block;
  width: 100%;
  border: 1px solid #bdcada;
  border-radius: 7px;
  background: white;
  font: 15px var(--sans);
  color: var(--ink);
  padding: 12px 14px;
  margin-top: 8px;
}
.waitlist-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  cursor: pointer;
}
.waitlist-check input,
.waitlist-radios input {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  accent-color: var(--blue);
  margin-top: 3px;
}
.waitlist-check small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.beta-details {
  border: 1px solid #e3c7d1;
  border-radius: 9px;
  margin: 22px 0 0;
  padding: 14px 18px 6px;
  background: #fff0f3;
}
.beta-details > legend {
  padding: 0 7px;
  font-size: 12px;
  color: var(--rose);
}
.waitlist-radios {
  border: 0;
  padding: 0;
  margin: 0 0 18px;
}
.waitlist-radios legend {
  font-size: 13px;
  font-weight: 600;
  padding: 0;
  margin-bottom: 10px;
}
.waitlist-radios label {
  display: flex;
  gap: 8px;
  font-size: 13px;
  align-items: flex-start;
  margin: 6px 0;
}
.optional {
  font-weight: 400;
  color: var(--muted);
}
.waitlist-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.waitlist-submit {
  width: 100%;
  justify-content: center;
  margin-top: 24px;
  font-family: var(--sans);
}
.waitlist-submit:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}
.waitlist-error {
  font-size: 12px;
  color: #9a2a45;
  margin-top: 15px;
}
.waitlist-privacy {
  font-size: 10px;
  color: var(--muted);
  margin-top: 16px;
  text-align: center;
  line-height: 1.6;
}
.waitlist-success {
  text-align: center;
  padding: 20px 0;
  outline: none;
}
.waitlist-success img {
  width: 132px;
  height: 132px;
  margin: 0 auto 20px;
}
.waitlist-success p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
}
.waitlist-success .button {
  margin-top: 7px;
  font-family: var(--sans);
}
@media (max-width: 820px) {
  .assistant-section {
    padding: 32px 25px;
  }
  .assistant-heading {
    gap: 24px;
  }
  .assistant-heading p {
    font-size: 12px;
  }
  .assistant-diagram figcaption {
    font-size: 10px;
    gap: 12px;
  }
}
@media (max-width: 600px) {
  .brand-mark {
    width: 33px;
    height: 33px;
  }
  .assistant-section {
    border-radius: 15px 15px 38px 15px;
    padding: 28px 18px;
    margin-bottom: 48px;
  }
  .assistant-heading {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }
  .assistant-request {
    font-size: 27px;
    margin-top: 18px;
  }
  .assistant-diagram figcaption {
    gap: 10px;
    font-size: 9px;
    line-height: 1.5;
  }
  .assistant-future {
    font-size: 10px;
  }
  .rotation-controls {
    justify-content: space-between;
    gap: 10px;
    font-size: 10px;
  }
  .rotation-controls span {
    max-width: 180px;
  }
  .heat-artwork .hand {
    font-size: 27px;
  }
  .waitlist-dialog {
    padding: 32px 22px 25px;
  }
  .waitlist-dialog h2 {
    font-size: 29px;
  }
  .waitlist-dialog .hand {
    font-size: 22px;
  }
}

.ways-section {
  background: #f0f5fb;
  border-block: 1px solid #d5e0ef;
}
.ways-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.ways-heading h2 {
  font-size: 39px;
}
.ways-heading .hand {
  color: var(--rose);
  font-size: 28px;
}
.ways-section .how-steps {
  margin-top: 32px;
}
#how-it-works {
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .ways-heading {
    display: block;
  }
  .ways-heading h2 {
    font-size: 34px;
  }
  .ways-heading .hand {
    font-size: 25px;
    margin-top: 16px;
  }
}

.joy-brand {
  gap: 0;
  flex-shrink: 0;
}
.joy-brand .brand-mark {
  width: 86px;
  height: 86px;
  margin-right: -9px;
}
.joy-brand .brand-name {
  display: block;
  width: 250px;
  line-height: 1;
  transform: translateY(13px);
}
.brand-wordmark {
  display: block;
  width: 100%;
  height: auto;
}
.header:has(.joy-brand) {
  min-height: 132px;
}
.footer .joy-brand .brand-mark {
  width: 75px;
  height: 75px;
  margin-right: -7px;
}
.footer .joy-brand .brand-name {
  width: 211px;
  transform: translateY(12px);
}
.waitlist-printer {
  display: block;
  width: 85px;
  height: 85px;
  margin: 0 auto 12px;
}
@media (max-width: 1080px) {
  .joy-brand .brand-mark {
    width: 79px;
    height: 79px;
  }
  .joy-brand .brand-name {
    width: 218px;
    transform: translateY(12px);
  }
}
@media (max-width: 600px) {
  .joy-brand .brand-mark {
    width: 61px;
    height: 61px;
    margin-right: -7px;
  }
  .joy-brand .brand-name {
    width: 165px;
    transform: translateY(9px);
  }
  .header:has(.joy-brand) {
    gap: 10px;
    min-height: 111px;
  }
}
@media (max-width: 360px) {
  .header:has(.joy-brand) {
    flex-wrap: wrap;
    justify-content: center;
    padding-block: 12px 18px;
    gap: 8px;
  }
  .header .joy-brand {
    justify-content: center;
    width: 100%;
  }
  .header:has(.joy-brand) .header-cta {
    padding-inline: 20px;
  }
}

.story-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: -12px 0 34px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.story-controls[hidden] {
  display: none;
}
.story-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.story-tabs button {
  position: relative;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font: 12px var(--sans);
  cursor: pointer;
}
.story-tabs button::before {
  position: absolute;
  content: "";
  inset: auto 0 -1px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--rose);
}
.story-tabs button[aria-selected="true"] {
  border-bottom-color: var(--blue);
  color: var(--deep);
}
.story-tabs button[aria-selected="true"]::before {
  transform: scaleX(var(--story-progress, 0));
}
.story-rotation-toggle {
  padding: 9px 0;
  color: var(--muted);
  background: none;
  border: 0;
  font: 11px var(--sans);
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
}
.story-carousel {
  margin-bottom: 58px;
}
.story-carousel[data-carousel-ready] .story-slides {
  display: grid;
}
.story-carousel[data-carousel-ready] .story {
  grid-area: 1 / 1;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.4s ease,
    transform 0.5s ease,
    visibility 0.5s;
}
.story-carousel[data-carousel-ready] .story.is-current {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.story-slides .backyard-story {
  grid-template-columns: 1.38fr 1fr;
}
.story-slides .backyard-story .story-visual {
  order: 0;
}
.story-slides .backyard-story .story-copy {
  padding-left: 0;
}
.story-copy button.story-link {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #bbbfd4;
  padding-inline: 0;
  font-family: var(--sans);
}
.cafe-menu {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  font-size: 9px;
  line-height: 1.7;
}
.cafe-menu li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  border-bottom: 1px dotted #bcb4b4;
  padding-block: 6px;
}
.cafe-paper h3 {
  text-align: center;
}
@media (max-width: 820px) {
  .story-tabs button {
    padding: 12px 0;
    font-size: 11px;
  }
  .story-tabs {
    gap: 18px;
  }
  .story-controls {
    gap: 12px;
  }
}
@media (max-width: 600px) {
  .story-controls {
    display: block;
    margin: -8px 0 26px;
  }
  .story-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 20px;
  }
  .story-tabs button {
    text-align: left;
    padding: 13px 0;
    font-size: 12px;
  }
  .story-rotation-toggle {
    display: block;
    margin: 5px 0 0 auto;
    font-size: 11px;
  }
  .story-slides .backyard-story {
    grid-template-columns: minmax(0, 1fr);
  }
  .story-carousel {
    margin-bottom: 45px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .story-carousel[data-carousel-ready] .story {
    transition: none;
    transform: none;
  }
}

.text-button {
  color: var(--deep);
  font: inherit;
  background: transparent;
  border: 0;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
.studio-foot .text-button {
  font-size: 12px;
}
.editor [hidden] {
  display: none;
}
.type-choices {
  border: 0;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.type-choices legend {
  font: 12px var(--sans);
  margin-bottom: 10px;
}
.type-choices button {
  border: 1px solid #bdcada;
  background: transparent;
  color: var(--deep);
  border-radius: 6px;
  padding: 7px 11px;
  font-size: 14px;
}
.type-choices [data-typeface="classic"] {
  font-family: Lora, Georgia, serif;
}
.type-choices [data-typeface="friendly"] {
  font-family: "Bree Serif", Georgia, serif;
}
.type-choices [data-typeface="handwritten"] {
  font-family: var(--hand);
  font-size: 18px;
  line-height: 1;
}
.type-choices button[aria-pressed="true"] {
  border-color: var(--blue);
  background: var(--sky);
  box-shadow: inset 0 0 0 1px var(--blue);
}
.header-cta {
  font-weight: 700;
  box-shadow: 2px 3px 0 #e6b7c7;
}
.editorial-hero {
  padding-bottom: 44px;
}
.joy-footer {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  align-items: start;
  gap: 38px;
  padding-block: 45px 23px;
}
.footer-intro > p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 18px;
}
.footer-column {
  padding-top: 17px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  font-size: 12px;
}
.footer-column h2 {
  font: 600 12px var(--sans);
  letter-spacing: 0;
  margin-bottom: 6px;
}
.joy-footer .footer-column nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 12px;
}
.footer-column .text-button {
  text-decoration: none;
}
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid var(--line);
  padding-top: 19px;
  color: var(--muted);
  font-size: 10px;
}
.waitlist-privacy a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 1100px) {
  .joy-footer {
    gap: 26px;
    grid-template-columns: 1.3fr 1fr 1fr;
  }
  .joy-footer .joy-brand .brand-name {
    width: 190px;
  }
}
@media (max-width: 820px) {
  .header:has(.joy-brand) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    padding-block: 12px 18px;
    gap: 14px 8px;
  }
  .header nav {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    gap: 32px;
  }
  .header .header-cta {
    grid-column: 2;
    grid-row: 1;
  }
}
@media (max-width: 600px) {
  .header:has(.joy-brand) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    padding-block: 12px 18px;
    gap: 15px 8px;
  }
  .header .joy-brand {
    width: auto;
    justify-content: flex-start;
  }
  .header nav {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    gap: 35px;
    font-size: 13px;
    padding: 7px 0 5px;
  }
  .header .header-cta {
    grid-column: 2;
    grid-row: 1;
    gap: 6px;
  }
  .header-cta > span {
    display: none;
  }
  .hero-title h1 {
    font-size: clamp(39px, 10.7vw, 56px);
  }
  .joy-footer {
    grid-template-columns: 1fr 1fr;
    gap: 27px;
    padding-top: 31px;
  }
  .footer-intro {
    grid-column: 1 / -1;
  }
  .footer-column {
    padding-top: 0;
    font-size: 11px;
  }
  .footer-column h2,
  .joy-footer .footer-column nav {
    font-size: 11px;
  }
}
@media (max-width: 360px) {
  .header .joy-brand .brand-mark {
    width: 48px;
    height: 48px;
  }
  .header .joy-brand .brand-name {
    width: 134px;
    transform: translateY(7px);
  }
  .header:has(.joy-brand) .header-cta {
    padding-inline: 9px;
    font-size: 9px;
  }
}
.paper[data-typeface="friendly"] h4 {
  font-family: "Bree Serif", Georgia, serif;
}
.paper[data-typeface="handwritten"] h4 {
  font-family: var(--hand);
  letter-spacing: 0;
}
.paper[data-typeface="handwritten"] .message {
  font-family: var(--hand);
  font-size: 22px;
  line-height: 1.3;
}

.studio-outcomes .section-head {
  align-items: center;
}
.art-story .story-visual {
  padding-bottom: 75px;
}
.art-story .story-image {
  aspect-ratio: 1.05;
  object-position: center;
  border-radius: 7px 70px 7px 7px;
}
.art-story .story-scribble {
  left: 0;
  right: 0;
  bottom: 14px;
  max-width: none;
  text-align: center;
}
@media (max-width: 600px) {
  .studio-outcomes .section-head {
    display: flex;
    gap: 14px;
  }
  .studio-outcomes .section-head h2 {
    font-size: 30px;
  }
  .art-story .story-visual {
    padding-bottom: 58px;
  }
  .art-story .story-image {
    aspect-ratio: 1.1;
  }
  .art-story .story-scribble {
    font-size: 25px;
    bottom: 8px;
  }
}
