:root {
  --paper: #fbf4e9;
  --paper-soft: #fffaf2;
  --cream: #f1e0ca;
  --ink: #15191b;
  --muted: #627169;
  --line: #dfd1bd;
  --sage: #5d8369;
  --sage-dark: #2e5b46;
  --tomato: #d8674c;
  --blue: #47758b;
  --marigold: #d6a443;
  --plum: #6c536d;
  --kraft: #a0713b;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(38, 29, 18, 0.16);
  --radius: 8px;
  --content: min(1160px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper-soft);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::selection {
  background: rgba(216, 103, 76, 0.28);
}

section {
  scroll-margin-top: 92px;
}

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

button,
.button {
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 0 max(20px, calc((100vw - 1160px) / 2));
  border-bottom: 1px solid rgba(21, 25, 27, 0.08);
  background: rgba(255, 250, 242, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper-soft);
  font-family: Fraunces, Georgia, serif;
  font-weight: 800;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: #27312c;
  font-size: 0.92rem;
  font-weight: 800;
}

.primary-nav a,
.site-footer a,
.text-link {
  position: relative;
}

.primary-nav a::after,
.site-footer a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--tomato);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.site-footer a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
}

.shopping-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-link,
.cart-link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(21, 25, 27, 0.14);
  border-radius: 50%;
  background: var(--white);
}

.cart-link {
  position: relative;
}

.cart-link span {
  position: absolute;
  right: -3px;
  top: -3px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--tomato);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 900;
}

.icon-link svg,
.cart-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: min(760px, calc(100svh - 86px));
  overflow: hidden;
  background: #eadfce;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.96) 0%, rgba(255, 250, 242, 0.82) 38%, rgba(255, 250, 242, 0.2) 75%),
    linear-gradient(0deg, rgba(21, 25, 27, 0.16), rgba(21, 25, 27, 0));
}

.hero-content {
  width: var(--content);
  align-self: center;
  margin: 0 auto;
  padding: 68px 0 108px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sage-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.maker-copy h2,
.calendar-copy h2 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-weight: 800;
  line-height: 0.96;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3.8rem, 7.8vw, 8.8rem);
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: #303832;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
}

.primary-button {
  background: var(--tomato);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(171, 75, 50, 0.2);
}

.primary-button:hover {
  background: #c9583f;
}

.secondary-button {
  background: var(--ink);
  color: var(--paper-soft);
}

.secondary-button:hover {
  background: #2a3032;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 640px;
  margin: 34px 0 0;
}

.hero-stats div {
  min-width: 142px;
  padding: 14px 16px;
  border: 1px solid rgba(21, 25, 27, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.76);
  box-shadow: 0 10px 26px rgba(42, 34, 24, 0.07);
}

.hero-stats dt {
  font-family: Fraunces, Georgia, serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-note {
  position: absolute;
  right: max(20px, calc((100vw - 1160px) / 2));
  bottom: 116px;
  display: grid;
  gap: 4px;
  max-width: 292px;
  padding: 16px 18px;
  border-left: 4px solid var(--marigold);
  background: rgba(255, 250, 242, 0.9);
  box-shadow: var(--shadow);
}

.note-label {
  color: var(--tomato);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-note strong {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.25rem;
}

.hero-note span:last-child {
  color: var(--muted);
  font-size: 0.92rem;
}

.rituals,
.marketplace,
.maker-row,
.phone-free-kits,
.calendar-wall {
  padding: 86px 0;
}

.rituals {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0) 0%, rgba(241, 224, 202, 0.68) 100%);
}

.marketplace {
  background: var(--paper-soft);
}

.section-heading,
.ritual-grid,
.market-grid,
.maker-row,
.kit-grid,
.calendar-wall,
.site-footer {
  width: var(--content);
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading h2,
.maker-copy h2,
.calendar-copy h2 {
  max-width: 860px;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.text-link {
  color: var(--sage-dark);
  font-weight: 900;
  white-space: nowrap;
}

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

.ritual-tile {
  display: grid;
  min-height: 238px;
  align-content: space-between;
  padding: 18px;
  border: 1px solid rgba(21, 25, 27, 0.1);
  border-radius: var(--radius);
  color: var(--white);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.ritual-tile:hover {
  box-shadow: 0 18px 44px rgba(34, 26, 18, 0.14);
  transform: translateY(-3px);
}

.journal-tile {
  background: var(--sage-dark);
}

.calendar-tile {
  background: var(--blue);
}

.tracker-tile {
  background: var(--tomato);
}

.planner-tile {
  background: var(--plum);
}

.letter-tile {
  background: var(--kraft);
}

.kit-tile {
  background: #28383b;
}

.ritual-tile strong {
  display: block;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.48rem;
  line-height: 1.05;
}

.ritual-tile small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.ritual-icon {
  position: relative;
  display: block;
  width: 82px;
  height: 92px;
}

.ritual-icon::before,
.ritual-icon::after {
  position: absolute;
  display: block;
  border-radius: 6px;
  background: rgba(255, 250, 242, 0.94);
  box-shadow: 0 12px 30px rgba(21, 25, 27, 0.16);
  content: "";
}

.journal-icon::before {
  inset: 8px 24px 8px 8px;
  transform: rotate(-9deg);
}

.journal-icon::after {
  inset: 0 10px 16px 28px;
  opacity: 0.75;
  transform: rotate(6deg);
}

.calendar-icon::before {
  inset: 10px 6px 4px 8px;
}

.calendar-icon::after {
  inset: 20px 14px 12px 16px;
  background:
    repeating-linear-gradient(90deg, rgba(71, 117, 139, 0.35), rgba(71, 117, 139, 0.35) 2px, transparent 2px, transparent 12px),
    repeating-linear-gradient(0deg, rgba(71, 117, 139, 0.35), rgba(71, 117, 139, 0.35) 2px, transparent 2px, transparent 12px);
  box-shadow: none;
}

.tracker-icon::before {
  inset: 18px 20px 10px 6px;
}

.tracker-icon::after {
  inset: 8px 6px 26px 26px;
  background: #f4c8b8;
}

.planner-icon::before {
  inset: 16px 8px 8px 8px;
}

.planner-icon::after {
  inset: 28px 16px 18px 16px;
  background: repeating-linear-gradient(0deg, rgba(108, 83, 109, 0.34), rgba(108, 83, 109, 0.34) 2px, transparent 2px, transparent 12px);
  box-shadow: none;
}

.letter-icon::before {
  inset: 30px 4px 18px 8px;
  transform: rotate(-6deg);
}

.letter-icon::after {
  inset: 10px 22px 22px 24px;
  transform: rotate(8deg);
}

.kit-icon::before {
  inset: 24px 4px 10px 6px;
  background: #e8c89b;
}

.kit-icon::after {
  inset: 8px 20px 28px 18px;
}

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

.market-card {
  display: grid;
  grid-template-rows: 220px 1fr auto;
  min-height: 468px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(42, 34, 24, 0.07);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.market-card:hover {
  border-color: rgba(46, 91, 70, 0.34);
  box-shadow: 0 22px 54px rgba(42, 34, 24, 0.12);
  transform: translateY(-3px);
}

.product-scene {
  position: relative;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(251, 244, 233, 0.95), rgba(235, 242, 236, 0.94)),
    repeating-linear-gradient(0deg, transparent, transparent 23px, rgba(21, 25, 27, 0.04) 24px);
  overflow: hidden;
}

.product-scene::before {
  position: absolute;
  inset: auto 24px 18px;
  height: 12px;
  border-radius: 50%;
  background: rgba(21, 25, 27, 0.12);
  filter: blur(8px);
  content: "";
}

.journal-cover,
.wall-calendar,
.tracker-card,
.open-planner,
.envelope,
.note-card,
.kit-box,
.kit-paper {
  position: absolute;
  border-radius: 7px;
  box-shadow: 0 18px 38px rgba(21, 25, 27, 0.18);
}

.journal-cover {
  width: 92px;
  height: 126px;
  background: var(--sage);
  transform: rotate(-11deg) translate(-28px, 9px);
}

.journal-cover.dark {
  background: #202729;
  transform: rotate(7deg) translate(34px, -2px);
}

.journal-cover::after {
  position: absolute;
  inset: 14px auto 14px 14px;
  width: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.55);
  content: "";
}

.page-ribbon {
  position: absolute;
  width: 7px;
  height: 106px;
  border-radius: 99px;
  background: var(--tomato);
  transform: rotate(7deg) translate(48px, 8px);
}

.wall-calendar {
  width: 158px;
  height: 132px;
  background: var(--white);
}

.wall-calendar::before {
  position: absolute;
  inset: 18px 16px 14px;
  background:
    repeating-linear-gradient(90deg, rgba(71, 117, 139, 0.28), rgba(71, 117, 139, 0.28) 2px, transparent 2px, transparent 20px),
    repeating-linear-gradient(0deg, rgba(71, 117, 139, 0.28), rgba(71, 117, 139, 0.28) 2px, transparent 2px, transparent 20px);
  content: "";
}

.calendar-pin {
  position: absolute;
  top: 44px;
  width: 64px;
  height: 12px;
  border-radius: 99px;
  background: var(--marigold);
}

.tracker-card {
  width: 118px;
  height: 86px;
  background: var(--white);
  transform: rotate(-5deg) translate(-28px, -4px);
}

.tracker-card::before {
  position: absolute;
  top: 20px;
  right: 18px;
  left: 18px;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 17px rgba(71, 117, 139, 0.35), 0 34px rgba(71, 117, 139, 0.35);
  content: "";
}

.coral-card {
  width: 96px;
  height: 74px;
  background: #f2b1a0;
  transform: rotate(9deg) translate(44px, 26px);
}

.paper-clip {
  position: absolute;
  width: 56px;
  height: 12px;
  border-radius: 99px;
  background: var(--marigold);
  transform: translate(-12px, -54px);
}

.open-planner {
  width: 172px;
  height: 116px;
  background:
    linear-gradient(90deg, #fff 0 49%, #e7dbc9 49% 51%, #fff 51% 100%);
  transform: rotate(-3deg);
}

.open-planner::before {
  position: absolute;
  inset: 24px 22px;
  background: repeating-linear-gradient(0deg, rgba(71, 117, 139, 0.32), rgba(71, 117, 139, 0.32) 2px, transparent 2px, transparent 15px);
  content: "";
}

.planner-tab {
  position: absolute;
  right: 60px;
  top: 50px;
  width: 36px;
  height: 18px;
  border-radius: 4px;
  background: var(--tomato);
}

.envelope {
  width: 142px;
  height: 84px;
  background: #f5e1c2;
  transform: rotate(-7deg) translate(-24px, 18px);
}

.envelope::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(32deg, transparent 49%, rgba(160, 113, 59, 0.22) 50%, transparent 51%),
    linear-gradient(-32deg, transparent 49%, rgba(160, 113, 59, 0.22) 50%, transparent 51%);
  content: "";
}

.note-card {
  width: 94px;
  height: 120px;
  background: var(--white);
  transform: rotate(9deg) translate(40px, -8px);
}

.ink-pen {
  position: absolute;
  width: 138px;
  height: 10px;
  border-radius: 99px;
  background: #202729;
  box-shadow: 0 12px 28px rgba(21, 25, 27, 0.2);
  transform: rotate(-26deg) translate(-4px, -8px);
}

.ink-pen::after {
  position: absolute;
  right: -13px;
  width: 23px;
  height: 10px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: var(--marigold);
  content: "";
}

.kit-box {
  width: 150px;
  height: 104px;
  background: #d9b778;
  transform: rotate(-4deg);
}

.kit-paper {
  width: 86px;
  height: 116px;
  background: var(--white);
  transform: rotate(8deg) translate(42px, -8px);
}

.phone-tag {
  position: absolute;
  width: 82px;
  height: 24px;
  border-radius: 6px;
  background: var(--ink);
  transform: rotate(-11deg) translate(-32px, 46px);
}

.market-meta {
  padding: 18px 18px 10px;
}

.market-meta p {
  margin: 0 0 8px;
  color: var(--sage-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.market-meta h3 {
  min-height: 54px;
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.16;
}

.market-detail {
  display: block;
  min-height: 48px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.price-row span {
  color: var(--ink);
  font-weight: 900;
}

.price-row small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.market-card button {
  margin: 0 18px 18px;
  background: var(--ink);
  color: var(--white);
}

.market-card button:hover {
  background: var(--sage-dark);
}

.maker-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 62px;
  align-items: start;
  padding-top: 92px;
  padding-bottom: 92px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(93, 131, 105, 0.12), rgba(255, 250, 242, 0));
}

.maker-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.maker-list {
  display: grid;
  gap: 12px;
}

.maker-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 6px 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.78);
}

.maker-list span {
  display: grid;
  grid-row: span 2;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper-soft);
  font-family: Fraunces, Georgia, serif;
  font-weight: 800;
}

.maker-list strong {
  font-size: 1.05rem;
}

.maker-list p {
  margin: 0;
  color: var(--muted);
}

.phone-free-kits {
  background: #f6ebdc;
}

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

.kit-card {
  min-height: 268px;
  padding: 24px;
  border: 1px solid rgba(21, 25, 27, 0.1);
  border-radius: var(--radius);
  background: var(--paper-soft);
  box-shadow: 0 14px 38px rgba(42, 34, 24, 0.08);
}

.kit-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 99px;
  background: rgba(216, 103, 76, 0.15);
  color: var(--tomato);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.kit-card h3 {
  margin: 22px 0 10px;
  font-family: Fraunces, Georgia, serif;
  font-size: 2rem;
  line-height: 1.02;
}

.kit-card p {
  margin: 0;
  color: var(--muted);
}

.kit-card a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--sage-dark);
  font-weight: 900;
}

.calendar-wall {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.9fr);
  gap: 54px;
  align-items: center;
  background: #172326;
  color: var(--paper-soft);
}

.calendar-wall .eyebrow {
  color: #a8c4ae;
}

.calendar-copy p:not(.eyebrow) {
  max-width: 610px;
  margin: 24px 0 30px;
  color: rgba(255, 250, 242, 0.76);
  font-size: 1.08rem;
}

.ink-button {
  background: var(--paper-soft);
  color: var(--ink);
  box-shadow: none;
}

.ink-button:hover {
  background: #f1dcc8;
}

.calendar-board {
  position: relative;
  min-height: 390px;
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: var(--radius);
  background: #fff8ec;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
  transform: rotate(1deg);
}

.board-pin {
  position: absolute;
  top: 22px;
  left: 50%;
  width: 74px;
  height: 14px;
  border-radius: 99px;
  background: var(--marigold);
  transform: translateX(-50%);
}

.board-grid {
  position: absolute;
  inset: 62px 28px 88px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(4, 1fr);
  border-top: 2px solid rgba(71, 117, 139, 0.32);
  border-left: 2px solid rgba(71, 117, 139, 0.32);
}

.board-grid span {
  border-right: 2px solid rgba(71, 117, 139, 0.32);
  border-bottom: 2px solid rgba(71, 117, 139, 0.32);
}

.sticky-stack span {
  position: absolute;
  right: 26px;
  bottom: 28px;
  width: 86px;
  height: 42px;
  border-radius: 5px;
  background: #f4c8b8;
  box-shadow: 0 12px 24px rgba(21, 25, 27, 0.14);
}

.sticky-stack span:nth-child(2) {
  right: 116px;
  background: #cfe0d0;
  transform: rotate(-4deg);
}

.sticky-stack span:nth-child(3) {
  right: 206px;
  background: #efd58b;
  transform: rotate(3deg);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.site-footer div {
  display: flex;
  gap: 22px;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .ritual-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .market-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .primary-nav {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 250, 242, 0.94) 0%, rgba(255, 250, 242, 0.82) 54%, rgba(255, 250, 242, 0.2) 100%),
      linear-gradient(0deg, rgba(21, 25, 27, 0.12), rgba(21, 25, 27, 0));
  }

  .hero-content {
    align-self: start;
    padding-top: 58px;
  }

  .hero-note {
    bottom: 24px;
    right: 20px;
    left: 20px;
    max-width: none;
  }

  .maker-row,
  .calendar-wall {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  :root {
    --content: min(100vw - 28px, 1160px);
  }

  .site-header {
    min-height: 68px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .icon-link {
    display: none;
  }

  .cart-link {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 790px;
  }

  .hero-image {
    object-position: 60% 62%;
  }

  .hero-content {
    padding-top: 44px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 14vw, 5.2rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 280px;
  }

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

  .hero-stats div {
    min-width: 0;
    padding: 10px;
  }

  .hero-stats dt {
    font-size: 1.55rem;
  }

  .hero-stats dd {
    font-size: 0.66rem;
  }

  .hero-note {
    bottom: 14px;
    padding: 14px 16px;
  }

  .rituals,
  .marketplace,
  .maker-row,
  .phone-free-kits,
  .calendar-wall {
    padding: 58px 0;
  }

  .section-heading h2,
  .maker-copy h2,
  .calendar-copy h2 {
    font-size: clamp(2.08rem, 10vw, 3.2rem);
  }

  .split-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .ritual-grid,
  .market-grid {
    grid-template-columns: 1fr;
  }

  .ritual-tile {
    min-height: 206px;
  }

  .market-card {
    grid-template-rows: 210px 1fr auto;
    min-height: 452px;
  }

  .maker-list article {
    grid-template-columns: 42px 1fr;
  }

  .calendar-board {
    min-height: 320px;
  }

  .sticky-stack span {
    width: 68px;
  }

  .sticky-stack span:nth-child(2) {
    right: 98px;
  }

  .sticky-stack span:nth-child(3) {
    right: 170px;
  }

  .site-footer div {
    flex-wrap: wrap;
  }
}
