:root {
  --peach: #f7e2cf;
  --peach-deep: #e7cdb9;
  --cream: #fbfbef;
  --paper: #fffdf7;
  --charcoal: #585858;
  --ink: #2f302f;
  --sage: #b9c7b0;
  --sage-deep: #7b9076;
  --lilac: #c9bdd8;
  --sand: #d8b99e;
  --line: rgba(47, 48, 47, 0.16);
  --shadow: 0 26px 60px rgba(61, 48, 37, 0.16);
  --radius-lg: 42px;
  --radius-md: 28px;
  --shell: min(1180px, calc(100% - 48px));
  --font: "Avenir Next", Avenir, "Nunito Sans", "Segoe UI", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
p, h1, h2, h3 { margin-top: 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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.announcement {
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 6px 20px;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.announcement p { margin: 0; }
.announcement span { margin: 0 10px; color: var(--peach-deep); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(47, 48, 47, 0.08);
  background: rgba(255, 233, 214, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease;
}
.site-header.scrolled { box-shadow: 0 8px 30px rgba(54, 44, 35, 0.08); }
.nav-shell {
  width: var(--shell);
  min-height: 76px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  position: relative;
  z-index: 2;
  width: 260px;
  display: flex;
  align-items: center;
  line-height: 0;
}
.wordmark-word { width: 214px; height: auto; transform: translateY(7px); }
.wordmark-circle { position: relative; z-index: 1; width: 50px; height: 50px; margin-left: -5px; flex: 0 0 auto; filter: drop-shadow(0 4px 6px rgba(61,48,37,.18)); }

.site-nav { display: flex; align-items: center; gap: 32px; font-size: 0.86rem; font-weight: 650; }
.site-nav > a:not(.nav-cta) { position: relative; }
.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.site-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 19px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(47, 48, 47, 0.18); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: calc(100vh - 114px);
  overflow: hidden;
  background: var(--peach);
}
.hero::before {
  position: absolute;
  top: -24%;
  left: -10%;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(47, 48, 47, 0.08);
  border-radius: 50%;
  content: "";
}
.hero::after {
  position: absolute;
  right: -130px;
  bottom: -210px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--peach-deep);
  content: "";
  opacity: 0.5;
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  pointer-events: none;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}
.hero-shell {
  position: relative;
  z-index: 2;
  width: var(--shell);
  min-height: calc(100vh - 114px);
  margin: auto;
  padding: 64px 0 72px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 56px;
}
.eyebrow {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--charcoal);
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow > span { width: 30px; height: 1px; background: currentColor; }
.hero h1, .section-heading h2, .how-heading h2, .shop-window h2, .final-card h2 {
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 6vw, 5.75rem);
  font-weight: 550;
  line-height: 0.98;
  letter-spacing: -0.07em;
}
.hero h1 em, .final-card h2 em { color: var(--sage-deep); font-family: Georgia, serif; font-weight: 400; }
.hero-intro {
  max-width: 570px;
  margin-bottom: 32px;
  color: rgba(47, 48, 47, 0.76);
  font-size: 1.08rem;
  line-height: 1.75;
}
.hero-actions { display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.87rem;
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-3px); }
.button-dark { background: var(--ink); color: var(--cream); box-shadow: 0 13px 25px rgba(47, 48, 47, 0.16); }
.button-dark:hover { box-shadow: 0 17px 30px rgba(47, 48, 47, 0.23); }
.button-outline { border-color: var(--ink); background: transparent; }
.button-outline:hover { background: var(--ink); color: var(--cream); }
.button-cream { background: var(--cream); color: var(--ink); }
.button-cream:hover { box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); }
.text-link {
  display: inline-flex;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
}
.quick-facts {
  margin: 44px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(47, 48, 47, 0.18);
  display: flex;
  gap: 24px;
  list-style: none;
  color: rgba(47, 48, 47, 0.68);
  font-size: 0.72rem;
  font-weight: 700;
}
.quick-facts li::before { margin-right: 8px; color: var(--sage-deep); content: "●"; font-size: 0.55rem; }

.hero-art { position: relative; height: min(590px, 64vw); min-height: 520px; }
.hero-pattern {
  position: absolute;
  inset: 2% -6% 1% 9%;
  border-radius: 52% 48% 48% 52% / 42% 40% 60% 58%;
  background: var(--peach) url("assets/background-wallpaper.jpg") center / 720px auto;
  box-shadow: inset 0 0 0 12px rgba(251, 251, 239, 0.5), var(--shadow);
  transform: rotate(4deg);
}
.hero-pattern::after {
  position: absolute;
  inset: 21%;
  border-radius: 50%;
  background: rgba(247, 226, 207, 0.9);
  content: "";
  box-shadow: 0 0 50px 35px rgba(247, 226, 207, 0.82);
}
.orbit { position: absolute; z-index: 1; border: 1px solid rgba(47, 48, 47, 0.23); border-radius: 50%; }
.orbit-one { top: 7%; left: 1%; width: 180px; height: 180px; }
.orbit-two { right: -2%; bottom: 5%; width: 120px; height: 120px; }
.planner-stack { position: absolute; z-index: 3; top: 9%; left: 22%; width: 57%; height: 79%; transform: rotate(3deg); }
.planner-shadow { position: absolute; inset: 4% -5% -4% 9%; border-radius: 32px; background: rgba(47, 48, 47, 0.19); filter: blur(22px); }
.planner-page { position: absolute; inset: 0; border-radius: 27px; }
.planner-page-back { background: var(--sage-deep); transform: rotate(-7deg) translate(-19px, 12px); }
.planner-page-main { padding: 37px 32px 25px; background: var(--cream); box-shadow: 0 22px 35px rgba(47, 48, 47, 0.2); }
.planner-binding { position: absolute; top: 20px; bottom: 20px; left: -11px; display: flex; flex-direction: column; justify-content: space-around; }
.planner-binding i { width: 25px; height: 8px; border-radius: 999px; background: var(--ink); box-shadow: 0 2px 4px rgba(0,0,0,.2); }
.planner-topline { display: flex; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid rgba(47,48,47,.3); font-size: .48rem; font-weight: 800; letter-spacing: .16em; }
.planner-title { padding: 30px 0 24px; color: var(--ink); font-family: Georgia, serif; font-size: clamp(1.5rem, 3.1vw, 2.5rem); line-height: 1.08; }
.planner-rule { width: 44px; height: 3px; margin-bottom: 27px; background: var(--sage-deep); }
.planner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.planner-grid div { min-height: 150px; padding: 17px; border: 1px solid rgba(47,48,47,.16); border-radius: 16px; }
.planner-grid small { display: block; margin-bottom: 18px; font-size: .54rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.planner-grid span { display: block; height: 1px; margin: 18px 0; background: rgba(47,48,47,.18); }
.planner-footer { position: absolute; right: 32px; bottom: 23px; left: 32px; text-align: center; font-family: Georgia, serif; font-size: .68rem; font-style: italic; }
.floating-note { position: absolute; z-index: 5; display: flex; align-items: center; gap: 11px; border: 1px solid rgba(47,48,47,.12); background: rgba(251,251,239,.94); box-shadow: 0 13px 28px rgba(47,48,47,.18); backdrop-filter: blur(8px); }
.note-one { right: -3%; bottom: 13%; padding: 12px 18px 12px 12px; border-radius: 18px; transform: rotate(-3deg); }
.note-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--sage); font-weight: 800; }
.floating-note strong, .floating-note small { display: block; }
.floating-note strong { font-size: .72rem; }
.floating-note small { margin-top: 2px; color: rgba(47,48,47,.6); font-size: .58rem; }
.note-two { top: 10%; left: 3%; padding: 12px 16px; border-radius: 999px; transform: rotate(-5deg); }
.note-two strong { white-space: nowrap; }
.note-dots { display: flex; gap: 4px; }
.note-dots i { width: 6px; height: 6px; border-radius: 50%; background: var(--charcoal); }

.ribbon { overflow: hidden; border-block: 1px solid rgba(47,48,47,.12); background: var(--cream); }
.ribbon-track { width: max-content; min-height: 58px; display: flex; color: var(--charcoal); font-family: Georgia, serif; font-size: 1rem; font-style: italic; animation: ticker 42s linear infinite; will-change: transform; }
.ribbon-group { min-width: 100vw; display: flex; flex: none; align-items: center; justify-content: space-around; gap: 28px; padding-right: 28px; }
.ribbon span { white-space: nowrap; }
.ribbon i { color: var(--sage-deep); font-family: var(--font); font-size: .7rem; font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: 120px 0; }
.section-shell { width: var(--shell); margin: auto; }
.section-heading { margin-bottom: 54px; display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 80px; }
.section-heading h2, .how-heading h2, .shop-window h2, .final-card h2 { font-size: clamp(2.7rem, 5vw, 4.65rem); }
.section-heading > p { max-width: 390px; margin-bottom: 14px; color: rgba(47,48,47,.68); line-height: 1.7; }

.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.collection-card { display: block; }
.collection-visual { position: relative; height: 410px; overflow: hidden; border-radius: var(--radius-lg); transition: transform 260ms ease, box-shadow 260ms ease; }
.collection-card:hover .collection-visual { transform: translateY(-7px); box-shadow: var(--shadow); }
.collection-sage .collection-visual { background: #c7d2c1; }
.collection-lilac .collection-visual { background: #d5cbe1; }
.collection-sand .collection-visual { background: #e5cdb7; }
.collection-visual::before { position: absolute; width: 300px; height: 300px; border: 1px solid rgba(47,48,47,.13); border-radius: 50%; content: ""; top: -90px; right: -80px; }
.card-number { position: absolute; top: 24px; left: 25px; color: rgba(47,48,47,.62); font-size: .68rem; font-weight: 800; letter-spacing: .14em; }
.collection-info { padding: 21px 5px 4px; display: flex; justify-content: space-between; align-items: center; }
.collection-info p { margin-bottom: 4px; color: rgba(47,48,47,.54); font-size: .65rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.collection-info h3 { margin-bottom: 0; font-size: 1.12rem; font-weight: 650; }
.circle-arrow { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(47,48,47,.25); border-radius: 50%; transition: background 180ms ease, color 180ms ease; }
.collection-card:hover .circle-arrow { background: var(--ink); color: var(--cream); }
.mini-tablet { position: absolute; top: 82px; right: 12%; width: 77%; height: 255px; padding: 12px; border-radius: 24px; background: var(--ink); box-shadow: 0 24px 35px rgba(47,48,47,.22); transform: rotate(4deg); }
.tablet-screen { height: 100%; padding: 28px 24px; border-radius: 15px; background: var(--cream); }
.tablet-screen small { font-size: .52rem; font-weight: 800; letter-spacing: .16em; }
.tablet-screen b { display: block; margin: 20px 0 28px; font-family: Georgia, serif; font-size: 1.3rem; font-weight: 400; line-height: 1.15; }
.tablet-screen i { display: block; height: 1px; margin: 16px 0; background: rgba(47,48,47,.18); }
.tablet-pencil { position: absolute; right: -15px; bottom: 9px; width: 9px; height: 190px; border-radius: 99px; background: #d5b184; transform: rotate(8deg); box-shadow: 0 8px 15px rgba(47,48,47,.24); }
.journal-cover { position: absolute; top: 65px; left: 20%; width: 61%; height: 290px; padding: 29px; border-radius: 10px 20px 20px 10px; background: #6e6877; color: var(--cream); box-shadow: -8px 8px 0 #4d4952, 0 25px 38px rgba(47,48,47,.26); transform: rotate(-5deg); }
.journal-cover::after { position: absolute; top: 0; bottom: 0; left: 14px; width: 1px; background: rgba(255,255,255,.2); content: ""; }
.journal-cover small { font-size: .5rem; letter-spacing: .16em; }
.journal-cover b { display: block; margin-top: 52px; font-family: Georgia, serif; font-size: 2rem; font-weight: 400; line-height: 1; }
.journal-flower { position: absolute; top: 35px; right: 30px; font-size: 1.7rem; }
.journal-cover i { position: absolute; right: 28px; bottom: 28px; font-family: Georgia, serif; font-size: .72rem; }
.notebook-stack { position: absolute; inset: 73px 14% 45px; }
.notebook { position: absolute; inset: 0; border-radius: 15px; }
.notebook-back { background: #6e594b; transform: rotate(10deg) translate(12px, -5px); box-shadow: 0 23px 35px rgba(47,48,47,.21); }
.notebook-front { padding: 35px 30px; background: var(--cream); transform: rotate(-4deg); box-shadow: 0 25px 36px rgba(47,48,47,.2); }
.notebook-front::before { position: absolute; inset: 0; border-radius: inherit; background: url("assets/background-wallpaper.jpg") center / 440px auto; content: ""; opacity: .11; }
.notebook-front small, .notebook-front b, .notebook-front i { position: relative; }
.notebook-front small { font-size: .52rem; font-weight: 800; letter-spacing: .15em; }
.notebook-front b { display: block; margin-top: 45px; font-family: Georgia, serif; font-size: 1.55rem; font-weight: 400; line-height: 1.15; }
.notebook-front i { display: block; width: 40px; height: 3px; margin-top: 25px; background: var(--sand); }
.center-action { margin-top: 54px; text-align: center; }

.approach { position: relative; overflow: hidden; padding: 105px 0; background: var(--peach); }
.approach-pattern { position: absolute; inset: 0 46% 0 0; background: url("assets/background-wallpaper.jpg") center / 680px auto; opacity: .82; }
.approach-pattern::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(247,226,207,.04), var(--peach)); content: ""; }
.approach-shell { position: relative; z-index: 2; width: var(--shell); margin: auto; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 10%; }
.approach-card { padding: 60px; border-radius: 54px 54px 54px 12px; background: rgba(251,251,239,.96); box-shadow: var(--shadow); }
.approach-quote { margin-bottom: 28px; font-size: clamp(2.8rem,5vw,4.4rem); font-weight: 550; line-height: .98; letter-spacing: -.06em; }
.approach-quote em { color: var(--sage-deep); font-family: Georgia, serif; font-weight: 400; }
.approach-copy { margin-bottom: 28px; color: rgba(47,48,47,.7); line-height: 1.75; }
.approach-values article { padding: 28px 0; border-bottom: 1px solid rgba(47,48,47,.18); display: grid; grid-template-columns: 50px 1fr; gap: 20px; }
.approach-values article:first-child { border-top: 1px solid rgba(47,48,47,.18); }
.approach-values article > span { font-size: .64rem; font-weight: 800; letter-spacing: .14em; }
.approach-values h3 { margin-bottom: 7px; font-family: Georgia, serif; font-size: 1.55rem; font-weight: 400; }
.approach-values p { margin-bottom: 0; color: rgba(47,48,47,.64); line-height: 1.6; }

.how { background: var(--cream); }
.how-heading { max-width: 760px; margin-bottom: 60px; }
.steps { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.step { position: relative; min-height: 330px; padding: 38px 36px; border-right: 1px solid var(--line); }
.step:last-child { border-right: 0; }
.step-icon { position: relative; width: 72px; height: 72px; margin-bottom: 47px; display: grid; place-items: center; border-radius: 50%; background: var(--peach); }
.step-number { position: absolute; top: 38px; right: 36px; font-size: .66rem; font-weight: 800; letter-spacing: .14em; }
.step h3 { margin-bottom: 10px; font-family: Georgia, serif; font-size: 1.55rem; font-weight: 400; }
.step p { max-width: 275px; margin-bottom: 0; color: rgba(47,48,47,.62); line-height: 1.65; }
.search-line { width: 23px; height: 23px; border: 2px solid var(--ink); border-radius: 50%; }
.search-line::after { position: absolute; width: 12px; height: 2px; background: var(--ink); content: ""; transform: translate(17px,20px) rotate(45deg); }
.search-dot { position: absolute; top: 22px; right: 20px; width: 5px; height: 5px; border-radius: 50%; background: var(--sage-deep); }
.download-arrow { font-family: Georgia, serif; font-size: 2rem; }
.pencil-line { width: 37px; height: 8px; border-radius: 9px; background: var(--ink); transform: rotate(-45deg); }
.pencil-line::after { position: absolute; right: -9px; border-block: 4px solid transparent; border-left: 10px solid var(--ink); content: ""; }

.shop-window { padding: 120px 0; overflow: hidden; background: var(--ink); color: var(--cream); }
.shop-window-shell { width: var(--shell); margin: auto; display: grid; grid-template-columns: .75fr 1.25fr; align-items: center; gap: 70px; }
.eyebrow-light { color: var(--peach); }
.shop-window h2 { margin-bottom: 25px; }
.shop-window-copy > p:not(.eyebrow) { margin-bottom: 32px; color: rgba(251,251,239,.68); line-height: 1.75; }
.browser-preview { position: relative; height: auto; overflow: hidden; border: 9px solid #151615; border-radius: 28px; background: white; box-shadow: 0 36px 70px rgba(0,0,0,.35); transform: rotate(2deg); transition: transform 300ms ease; }
.browser-preview:hover { transform: rotate(0) translateY(-8px); }
.browser-bar { height: 42px; padding: 0 15px; display: flex; align-items: center; gap: 7px; background: #f2eee9; }
.browser-bar > span { width: 8px; height: 8px; border-radius: 50%; background: #c6bbb1; }
.browser-bar p { width: 48%; margin: 0 auto; padding: 5px 12px; border-radius: 99px; background: white; color: #8b8179; text-align: center; font-size: .53rem; }
.browser-image { aspect-ratio: 1224 / 772; overflow: hidden; }
.browser-image img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.preview-badge { position: absolute; right: 20px; bottom: 18px; padding: 12px 12px 12px 18px; border-radius: 999px; background: var(--peach); color: var(--ink); font-size: .72rem; font-weight: 750; box-shadow: 0 12px 24px rgba(0,0,0,.2); }
.preview-badge i { width: 30px; height: 30px; margin-left: 9px; display: inline-grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--cream); font-style: normal; }

.final-cta { position: relative; min-height: 620px; padding: 90px 24px; display: grid; place-items: center; overflow: hidden; background: var(--peach); }
.final-pattern { position: absolute; inset: 0; background: url("assets/background-wallpaper.jpg") center / 760px auto; opacity: .9; }
.final-pattern::after { position: absolute; inset: 0; background: rgba(247,226,207,.18); content: ""; }
.final-card { position: relative; z-index: 2; width: min(760px, 100%); padding: 85px 50px 70px; border-radius: 90px 90px 90px 18px; background: rgba(251,251,239,.96); box-shadow: var(--shadow); text-align: center; }
.final-card .eyebrow { justify-content: center; }
.final-card h2 { margin-bottom: 35px; }

.site-footer { padding: 70px max(24px, calc((100% - 1180px) / 2)) 25px; background: #272827; color: var(--cream); }
.footer-main { padding-bottom: 60px; display: grid; grid-template-columns: 1fr .7fr 1.3fr; align-items: start; gap: 50px; }
.footer-brand { font-size: 1.55rem; font-weight: 700; }
.footer-main > p { color: rgba(251,251,239,.55); font-family: Georgia, serif; font-style: italic; }
.footer-links { display: grid; grid-template-columns: 1fr 1.6fr; gap: 16px 35px; font-size: .78rem; }
.footer-links a { color: rgba(251,251,239,.72); }
.footer-links a:hover { color: var(--peach); }
.footer-bottom { padding-top: 22px; border-top: 1px solid rgba(251,251,239,.13); display: flex; justify-content: space-between; gap: 20px; color: rgba(251,251,239,.42); font-size: .66rem; }
.footer-bottom p { margin: 0; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.collection-card:nth-child(2), .step:nth-child(2) { transition-delay: 80ms; }
.collection-card:nth-child(3), .step:nth-child(3) { transition-delay: 160ms; }

@media (max-width: 1020px) {
  :root { --shell: min(100% - 40px, 860px); }
  .site-nav { gap: 20px; }
  .site-nav > a:not(.nav-cta) { display: none; }
  .hero-shell { grid-template-columns: 1fr; padding-top: 80px; }
  .hero-copy { max-width: 690px; }
  .hero-art { width: min(720px, 100%); height: 620px; margin: 0 auto; }
  .collection-grid { grid-template-columns: 1fr 1fr; }
  .collection-card:last-child { grid-column: 1 / -1; width: calc(50% - 9px); margin: auto; }
  .approach-shell { gap: 45px; }
  .approach-card { padding: 45px; }
  .shop-window-shell { grid-template-columns: 1fr; }
  .shop-window-copy { max-width: 600px; }
  .browser-preview { width: 100%; }
}

@media (max-width: 720px) {
  :root { --shell: calc(100% - 32px); --radius-lg: 30px; }
  .announcement { font-size: .58rem; letter-spacing: .1em; }
  .nav-shell { min-height: 68px; }
  .wordmark { width: 222px; }
  .wordmark-word { width: 182px; }
  .wordmark-circle { width: 45px; height: 45px; margin-left: -5px; }
  .menu-toggle { position: relative; z-index: 3; width: 45px; height: 45px; display: block; border: 1px solid var(--line); border-radius: 50%; background: transparent; }
  .menu-toggle > span:not(.sr-only) { position: absolute; left: 12px; width: 20px; height: 1px; background: var(--ink); transition: transform 180ms ease, top 180ms ease; }
  .menu-toggle > span:nth-child(2) { top: 18px; }
  .menu-toggle > span:nth-child(3) { top: 25px; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { top: 22px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { top: 22px; transform: rotate(-45deg); }
  .site-nav { position: fixed; inset: 68px 0 auto; min-height: calc(100vh - 68px); padding: 60px 25px; display: flex; flex-direction: column; align-items: stretch; gap: 0; background: var(--cream); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity 180ms ease, transform 180ms ease, visibility 180ms; }
  .site-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav > a:not(.nav-cta) { padding: 20px 4px; border-bottom: 1px solid var(--line); display: block; font-family: Georgia, serif; font-size: 1.55rem; font-weight: 400; }
  .site-nav .nav-cta { margin-top: 30px; justify-content: center; }
  .hero { min-height: auto; }
  .hero-shell { min-height: auto; padding: 70px 0 55px; gap: 34px; }
  .hero h1 { font-size: clamp(3.1rem, 15vw, 4.6rem); }
  .hero-intro { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .quick-facts { flex-wrap: wrap; gap: 13px 18px; }
  .hero-art { min-height: 0; height: 450px; }
  .hero-pattern { inset: 2% -15% 1% 0; background-size: 520px auto; }
  .planner-stack { top: 10%; left: 18%; width: 65%; height: 77%; }
  .planner-page-main { padding: 28px 20px 20px; border-radius: 20px; }
  .planner-grid { gap: 9px; }
  .planner-grid div { min-height: 108px; padding: 10px; }
  .planner-title { padding: 22px 0 15px; }
  .planner-rule { margin-bottom: 17px; }
  .planner-footer { right: 20px; bottom: 15px; left: 20px; }
  .note-one { right: -4%; bottom: 10%; }
  .note-two { top: 2%; left: 0; }
  .section { padding: 82px 0; }
  .section-heading { margin-bottom: 38px; grid-template-columns: 1fr; gap: 6px; }
  .section-heading h2, .how-heading h2, .shop-window h2, .final-card h2 { font-size: clamp(2.55rem, 12vw, 3.7rem); }
  .collection-grid { grid-template-columns: 1fr; gap: 38px; }
  .collection-card:last-child { grid-column: auto; width: 100%; }
  .collection-visual { height: 380px; }
  .approach { padding: 80px 0; }
  .approach-pattern { inset: 0; opacity: .18; }
  .approach-shell { grid-template-columns: 1fr; gap: 50px; }
  .approach-card { padding: 45px 28px; border-radius: 38px 38px 38px 8px; }
  .approach-quote { font-size: 3.1rem; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 280px; border-right: 0; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: 0; }
  .shop-window { padding: 82px 0; }
  .shop-window-shell { gap: 48px; }
  .browser-preview { border-width: 6px; border-radius: 20px; transform: rotate(1deg); }
  .browser-bar p { width: 65%; }
  .final-cta { min-height: 580px; padding-inline: 16px; }
  .final-card { padding: 75px 23px 55px; border-radius: 50px 50px 50px 10px; }
  .footer-main { grid-template-columns: 1fr; gap: 25px; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 410px) {
  .wordmark { width: 198px; }
  .wordmark-word { width: 161px; }
  .wordmark-circle { width: 41px; height: 41px; margin-left: -4px; }
  .hero-art { height: 410px; }
  .note-one { padding-right: 12px; }
  .note-one small { display: none; }
  .collection-visual { height: 350px; }
  .mini-tablet { height: 235px; }
  .journal-cover { height: 265px; }
}

@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; }
}
