@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=DM+Serif+Display:ital@0;1&family=Patrick+Hand&display=swap');

:root {
  --cream: #f6f0e5;
  --paper: #fffaf2;
  --brown: #4b382f;
  --ink: #282521;
  --olive: #778062;
  --olive-dark: #5c654c;
  --blue: #9db3c6;
  --blue-light: #c7d5df;
  --yellow: #efd67f;
  --rust: #aa7259;
  --line: rgba(75, 56, 47, .18);
  --shadow: 0 18px 50px rgba(75, 56, 47, .10);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; }
button, input { font: inherit; }

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  opacity: .18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 50;
}

.wordmark {
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -.06em;
  font-size: 1.55rem;
}
.wordmark span { color: var(--olive-dark); }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .92rem;
}
.nav a {
  text-decoration: none;
  position: relative;
}
.nav > a:not(.nav-pill)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: var(--olive);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav > a:hover::after { transform: scaleX(1); }

.nav-pill {
  border: 1px solid var(--brown);
  border-radius: 999px;
  padding: 9px 14px;
  transition: .2s ease;
}
.nav-pill:hover { background: var(--brown); color: var(--paper); transform: translateY(-2px); }

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  text-decoration: underline;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 76px 20px auto;
  z-index: 60;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.mobile-nav.open { display: grid; gap: 14px; }
.mobile-nav a { text-decoration: none; padding: 6px; }

.hero {
  min-height: 690px;
  padding: 78px 0 86px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 62px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--olive-dark);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.mini-sun { margin-right: 6px; color: #c5a438; }

.hero h1, h2, h3 {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
}
.hero h1 {
  margin: 0;
  font-size: clamp(3.5rem, 6.8vw, 6.6rem);
  line-height: .94;
  letter-spacing: -.055em;
  color: var(--brown);
}
.scribble-circle {
  position: relative;
  display: inline-block;
  color: var(--olive-dark);
  font-style: italic;
}
.scribble-circle::after {
  content: "";
  position: absolute;
  inset: -7% -5% -15% -4%;
  border: 2px solid rgba(119, 128, 98, .78);
  border-radius: 50% 44% 52% 46%;
  transform: rotate(-2deg);
  pointer-events: none;
}

.hero-sub {
  max-width: 690px;
  margin: 31px 0 26px;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: #594f48;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-3px) rotate(-.4deg); box-shadow: 0 10px 20px rgba(75,56,47,.12); }
.button-primary { background: var(--olive-dark); color: #fffdf8; }
.button-brown { background: var(--brown); color: white; }
.button-outline { border: 1px solid var(--brown); }
.text-link {
  font-weight: 700;
  text-underline-offset: 5px;
}
.tiny-note {
  margin: 18px 0 0 8px;
  color: var(--rust);
  font-size: 1.08rem;
}
.handwriting { font-family: "Patrick Hand", "Comic Sans MS", cursive; }
.olive-ink { color: var(--olive-dark); }

.hero-collage {
  min-height: 515px;
  position: relative;
}
.paper { background: var(--paper); box-shadow: var(--shadow); }

.photo-card {
  position: absolute;
  width: min(330px, 75%);
  right: 10px;
  top: 16px;
  padding: 15px 15px 18px;
  transform: rotate(3.2deg);
  transition: transform .3s ease;
}
.photo-card:hover { transform: rotate(.5deg) translateY(-5px); }
.photo-placeholder {
  height: 300px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(157,179,198,.60), rgba(239,214,127,.55)),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.9), transparent 45%);
  color: rgba(75,56,47,.7);
  text-align: center;
  font-weight: 700;
}
.photo-caption { margin: 11px 4px 0; font-size: 1.15rem; text-align: center; }
.tape {
  position: absolute;
  width: 88px;
  height: 28px;
  background: rgba(239,214,127,.58);
  filter: saturate(.7);
}
.tape-top {
  top: -10px;
  left: 43%;
  transform: rotate(-3deg);
}

.currently-note {
  position: absolute;
  width: 300px;
  left: -6px;
  bottom: 7px;
  padding: 24px 24px 18px;
  transform: rotate(-3deg);
  border: 1px solid rgba(75,56,47,.07);
}
.pin {
  width: 12px; height: 12px;
  background: var(--rust);
  border-radius: 50%;
  position: absolute;
  top: 11px; left: 50%;
  box-shadow: 0 3px 4px rgba(0,0,0,.18);
}
.note-label {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--olive-dark);
}
.currently-note ul {
  list-style: none;
  padding: 0;
  margin: 13px 0 11px;
  font-size: .92rem;
}
.currently-note li { margin: 8px 0; }
.currently-note li span { color: var(--olive-dark); margin-right: 5px; }
.currently-note .handwriting { font-size: 1.08rem; margin: 10px 0 0; }

.doodle-star {
  position: absolute;
  font-size: 2rem;
  color: var(--rust);
}
.star-one { right: -12px; bottom: 80px; transform: rotate(10deg); }
.star-two { left: 10px; top: 90px; color: var(--olive-dark); font-size: 2.6rem; }
.doodle-arrow {
  position: absolute;
  right: 8px;
  bottom: 8px;
  color: var(--brown);
  font-size: 1.05rem;
  transform: rotate(-6deg);
}

.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(75,56,47,.24);
  background: rgba(255,250,242,.55);
}
.ticker-track {
  width: max-content;
  display: flex;
  gap: 80px;
  padding: 13px 0;
  animation: ticker 30s linear infinite;
  text-transform: lowercase;
  color: var(--brown);
  font-family: "Patrick Hand", cursive;
  font-size: 1.1rem;
}
@keyframes ticker { to { transform: translateX(-50%); } }

.ordinary-section { padding: 115px 0; }
.ordinary-card {
  background: var(--olive);
  color: #fffdf8;
  border-radius: 36px;
  min-height: 515px;
  padding: clamp(34px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 65px rgba(92,101,76,.17);
}
.ordinary-card::before {
  content: "✦";
  position: absolute;
  right: 5%;
  top: 6%;
  font-size: 80px;
  opacity: .08;
}
.ordinary-card .eyebrow { color: #f5e6ad; }
.ordinary-card h2 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: .97;
  margin: 0 0 24px;
  letter-spacing: -.035em;
}
.ordinary-card h2 em { color: #f7e7a9; font-weight: 400; }
.ordinary-copy { max-width: 650px; }
.ordinary-copy p { max-width: 590px; }
.microcopy { font-size: .78rem; opacity: .78; margin: 10px 0 0; }

.guide-preview {
  min-height: 380px;
  position: relative;
}
.guide-sheet {
  position: absolute;
  width: min(285px, 72%);
  aspect-ratio: .77;
  left: 50%;
  top: 50%;
  border-radius: 4px;
  box-shadow: 0 14px 30px rgba(45,50,37,.18);
}
.guide-back { background: var(--blue-light); transform: translate(-39%, -46%) rotate(10deg); }
.guide-middle { background: #f1d985; transform: translate(-55%, -48%) rotate(-7deg); }
.guide-front {
  background: var(--paper);
  color: var(--brown);
  transform: translate(-49%, -50%) rotate(1.5deg);
  padding: 34px 30px;
}
.guide-kicker {
  text-transform: uppercase;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--olive-dark);
}
.guide-front h3 {
  font-size: 3.1rem;
  line-height: .9;
  margin: 55px 0 20px;
}
.guide-line { width: 60px; height: 3px; background: var(--olive); margin: 14px 0; }
.guide-front p { font-size: .84rem; max-width: 180px; }
.guide-sun {
  position: absolute;
  right: 26px; bottom: 24px;
  width: 48px; height: 48px;
  border: 1.5px solid var(--rust);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--rust);
}
.guide-note {
  position: absolute;
  right: -2px;
  bottom: 8px;
  color: #fff8e8;
  font-size: 1.15rem;
  transform: rotate(-6deg);
}

.currently-section { padding: 40px 0 120px; }
.section-heading { margin-bottom: 44px; max-width: 720px; }
.section-heading h2, .beliefs-intro h2 {
  margin: 0;
  color: var(--brown);
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -.04em;
}
.section-heading > p:last-child { color: #655a52; }

.experiment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.experiment-card {
  min-height: 360px;
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: transform .25s ease;
  border: 1px solid rgba(75,56,47,.12);
}
.experiment-card:hover { transform: translateY(-7px) rotate(-.5deg); }
.experiment-card.olive { background: #d7dccd; }
.experiment-card.blue { background: #d8e2e8; }
.experiment-card.yellow { background: #f4e8b8; }
.experiment-number {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: grid; place-items: center;
  font-size: .78rem;
}
.card-kicker {
  margin-top: 44px;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .68rem;
  font-weight: 700;
}
.experiment-card h3 {
  margin: 6px 0 14px;
  font-size: 2rem;
  color: var(--brown);
}
.experiment-card p:not(.card-kicker):not(.card-note) { color: #554b45; }
.card-note {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 1.1rem;
  transform: rotate(-4deg);
  color: var(--olive-dark);
}

.beliefs-wrap {
  background: #e8e1d4;
  border-block: 1px solid rgba(75,56,47,.12);
}
.beliefs {
  min-height: 710px;
  padding: 105px 0;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 55px;
  align-items: center;
}
.beliefs-intro p:last-child { color: var(--rust); font-size: 1.08rem; max-width: 360px; }
.belief-board {
  position: relative;
  min-height: 500px;
  border-radius: 30px;
  background:
    linear-gradient(rgba(255,255,255,.22), rgba(255,255,255,.22)),
    repeating-linear-gradient(0deg, transparent, transparent 31px, rgba(75,56,47,.055) 32px);
  border: 1px solid rgba(75,56,47,.14);
  box-shadow: inset 0 0 40px rgba(75,56,47,.04);
}
.paper-note {
  position: absolute;
  width: 255px;
  min-height: 150px;
  padding: 25px;
  background: var(--paper);
  box-shadow: 0 13px 25px rgba(75,56,47,.10);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: "Patrick Hand", cursive;
  font-size: 1.25rem;
}
.note-a { left: 6%; top: 7%; transform: rotate(-4deg); }
.note-b { right: 7%; top: 13%; transform: rotate(4deg); background: #eef2f3; }
.note-c { left: 16%; bottom: 8%; transform: rotate(2deg); background: #f8edc3; }
.note-d { right: 4%; bottom: 9%; transform: rotate(-5deg); }
.board-arrow {
  position: absolute;
  right: 29%;
  bottom: 0;
  color: var(--rust);
  transform: rotate(-8deg);
}

.field-section { padding: 120px 0 110px; }
.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.note-card {
  padding: 30px 28px 38px;
  min-height: 330px;
}
.note-card + .note-card { border-left: 1px solid var(--line); }
.note-meta {
  font-size: .67rem;
  letter-spacing: .12em;
  font-weight: 700;
  color: var(--olive-dark);
}
.note-card h3 { font-size: 1.9rem; line-height: 1.05; margin: 38px 0 14px; color: var(--brown); }
.note-card p { color: #655a52; }
.fake-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--rust);
  font-family: "Patrick Hand", cursive;
  font-size: 1.08rem;
}
.instagram-row {
  margin-top: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.instagram-row p { font-family: "Patrick Hand", cursive; font-size: 1.15rem; }

.work-section { padding: 10px 0 125px; }
.work-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: clamp(36px, 7vw, 78px);
  background: var(--blue);
  color: #263038;
}
.work-card .eyebrow { color: #485d6b; }
.work-card h2 { font-size: clamp(3.2rem, 6vw, 5.8rem); line-height: .92; margin: 0 0 22px; color: #253239; }
.work-card > p:not(.eyebrow) { max-width: 670px; font-size: 1.07rem; }
.email-link {
  display: inline-block;
  margin-top: 24px;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  text-underline-offset: 7px;
}
.work-star { right: 8%; top: 14%; color: #f8edc3; font-size: 6rem; opacity: .8; }

.footer {
  padding: 0 0 45px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  color: #665c55;
  font-size: .82rem;
}
.footer p { margin: 7px 0 0; }
.footer-right { display: flex; gap: 18px; flex-wrap: wrap; justify-content: flex-end; }
.footer-right a { text-underline-offset: 4px; }

/* dedicated landing page */
.landing-page main { min-height: 100vh; }
.landing-hero {
  padding: 70px 0 100px;
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 60px;
  align-items: center;
}
.landing-hero h1 {
  font-family: "DM Serif Display", Georgia, serif;
  color: var(--brown);
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: .82;
  letter-spacing: -.06em;
  margin: 0 0 26px;
}
.landing-hero h1 em { color: var(--olive-dark); }
.landing-copy { font-size: 1.08rem; max-width: 660px; }
.signup-box {
  margin-top: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.signup-box p { margin-top: 0; }
.signup-fallback {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.signup-fallback a { width: fit-content; }
.kit-slot {
  border: 1.5px dashed rgba(75,56,47,.25);
  border-radius: 16px;
  padding: 18px;
  color: #756a63;
  font-size: .85rem;
  background: rgba(246,240,229,.6);
}
.what-you-get {
  padding: 40px 0 100px;
}
.checklist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.check-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
}
.check-card strong { display: block; font-family: "DM Serif Display", Georgia, serif; font-size: 1.55rem; margin: 10px 0; color: var(--brown); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2,.8,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .menu-button { display: block; }
  .hero { grid-template-columns: 1fr; padding-top: 55px; }
  .hero-collage { min-height: 500px; }
  .ordinary-card, .beliefs, .landing-hero { grid-template-columns: 1fr; }
  .ordinary-card { gap: 20px; }
  .guide-preview { min-height: 420px; }
  .experiment-grid, .notes-grid, .checklist { grid-template-columns: 1fr; }
  .experiment-card { min-height: 300px; }
  .beliefs { gap: 30px; }
  .notes-grid { border-bottom: 0; }
  .note-card { border-bottom: 1px solid var(--line); min-height: auto; }
  .note-card + .note-card { border-left: 0; }
  .landing-hero { padding-top: 40px; }
}
@media (max-width: 620px) {
  .section-shell, .site-header { width: min(100% - 30px, 1180px); }
  .site-header { height: 72px; }
  .hero { min-height: auto; padding-bottom: 70px; }
  .hero h1 { font-size: clamp(3.3rem, 16vw, 5rem); }
  .hero-collage { min-height: 470px; }
  .photo-card { width: 76%; }
  .photo-placeholder { height: 255px; }
  .currently-note { width: 73%; }
  .ordinary-section, .field-section { padding-block: 80px; }
  .ordinary-card { padding: 32px 24px; border-radius: 28px; }
  .ordinary-card h2 { font-size: 2.8rem; }
  .guide-preview { min-height: 360px; }
  .guide-sheet { width: 68%; }
  .beliefs { padding-block: 80px; min-height: 820px; }
  .belief-board { min-height: 610px; }
  .paper-note { width: 225px; font-size: 1.1rem; }
  .note-a { left: 3%; }
  .note-b { right: 1%; top: 27%; }
  .note-c { left: 4%; bottom: 20%; }
  .note-d { right: 3%; bottom: 2%; }
  .board-arrow { display: none; }
  .instagram-row, .footer { align-items: flex-start; flex-direction: column; }
  .footer-right { justify-content: flex-start; }
  .work-star { font-size: 3.5rem; }
}
