:root {
  --cream: #f7f3ec;
  --paper: #fffcf6;
  --ink: #4d3a2c;
  --muted: #786d62;
  --warm-brown: #8a684a;
  --kraft: #b38a63;
  --gold: #c6a368;
  --focus-gold: #f3cc7a;
  --dusty-rose: #f8e2d8;
  --sage: #a8b29a;
  --sage-tint: #e9ede2;
  --blue-gray: #5f7558;
  --button-brown: #725238;
  --line: #e5dacb;
  --shadow: 0 22px 60px rgba(95, 83, 65, 0.13);
  --editorial-cream: #fbf6ed;
  --editorial-paper: #fffaf1;
  --editorial-brown: #4b2f21;
  --editorial-tan: #d8c4a8;
  --editorial-sepia: #8b6a50;
  --editorial-line: #dbc8af;
  --admin-bg: #fbf6ed;
  --admin-panel: #fffaf1;
  --admin-panel-soft: #f7efe4;
  --admin-ink: #4b2f21;
  --admin-muted: #7b6958;
  --admin-border: #dbc8af;
  --admin-sage: #a8b29a;
  --admin-sage-deep: #5f7558;
  --admin-gold: #c6a368;
  --admin-shadow: 0 20px 52px rgba(75, 47, 33, 0.11);
  --homepage-section-y: 26px;
  --homepage-section-y-mobile: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--editorial-cream);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--focus-gold);
  outline-offset: 3px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 10px 40px;
  background: rgba(251, 246, 237, 0.96);
  color: var(--editorial-brown);
  border-bottom: 1px solid rgba(139, 106, 80, 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.brand-wordmark {
  display: inline-block;
  max-width: none;
  color: var(--editorial-sepia);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.brand-wordmark span,
.brand-wordmark em {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.brand-wordmark em {
  font-style: normal;
}

.brand-mark {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  object-fit: contain;
  object-position: center;
  filter: none;
  opacity: 0.92;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--editorial-brown);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links .mobile-nav-blog {
  display: none;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  color: var(--editorial-brown);
}

.header-actions a {
  display: inline-flex;
  min-width: 0;
  height: 28px;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
  color: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-actions a:last-child {
  font-size: 11px;
}

.header-actions .faq-shortcut-icon {
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(75, 47, 33, 0.42);
  border-radius: 6px;
  background: transparent;
  color: var(--editorial-brown);
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-open .menu-toggle span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .menu-toggle span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links a,
.text-link {
  text-decoration: none;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--editorial-sepia);
}

.editorial-hero {
  position: relative;
  background: var(--editorial-paper);
  border-bottom: 1px solid var(--editorial-line);
  overflow: hidden;
}

.editorial-hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 250, 241, 0.9) 0%, rgba(255, 250, 241, 0.7) 31%, rgba(255, 250, 241, 0.16) 58%, rgba(255, 250, 241, 0) 100%);
  pointer-events: none;
}

.editorial-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(75, 47, 33, 0.025);
  pointer-events: none;
}

.editorial-hero-full-image {
  display: block;
  width: 100%;
  height: clamp(620px, 48vw, 700px);
  object-fit: cover;
  object-position: center;
  filter: sepia(0.15) saturate(0.88);
}

.editorial-hero-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: clamp(28px, 7.2vw, 106px);
  width: min(520px, 46vw);
  transform: translateY(-52%);
  pointer-events: auto;
}

.editorial-hero-copy h1,
.editorial-hero-copy .hero-copy,
.editorial-hero-copy .hero-support {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  border: 0;
}

.editorial-hero .hero-image-cta {
  position: static;
  width: clamp(168px, 18.8vw, 244px);
  min-height: clamp(42px, 3.8vw, 54px);
  margin-top: clamp(22px, 2.2vw, 34px);
  transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #fffaf2;
  background: var(--editorial-brown);
  border: 1px solid var(--editorial-brown);
  border-radius: 0;
  box-shadow: 0 10px 24px rgba(75, 47, 33, 0.16);
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.editorial-hero .hero-image-cta:hover {
  background: #372218;
  border-color: #372218;
}

.editorial-hero .hero-image-cta:focus-visible {
  color: #fffaf2;
  background: var(--editorial-brown);
  border-color: var(--editorial-brown);
}

.editorial-hero h1 {
  color: var(--editorial-brown);
  max-width: 520px;
  font-size: clamp(44px, 4.6vw, 64px);
  line-height: 0.98;
  text-shadow: 0 1px 0 rgba(255, 250, 241, 0.5);
}

.editorial-hero h1 .hero-h1-sub {
  display: block;
  margin-top: clamp(8px, 1vw, 14px);
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: var(--editorial-brown);
  opacity: 0.82;
}

.section-heading h2 .h2-keyword-lead {
  display: block;
  margin-bottom: clamp(6px, 0.8vw, 10px);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--editorial-brown);
  opacity: 0.72;
}

.editorial-hero .hero-copy {
  max-width: 450px;
  margin-top: 14px;
  margin-bottom: 14px;
  color: #5c4638;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1.22;
}

.editorial-hero .hero-support {
  max-width: 360px;
  color: #5f4a3a;
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.55;
}

.editorial-hero .hero-copy span {
  font-style: italic;
}

.hero-support {
  max-width: 440px;
  color: #5d4536;
  font-size: 18px;
  line-height: 1.55;
}

.editorial-quote-band {
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 22px 24px 24px;
  color: var(--editorial-brown);
  background: var(--editorial-cream);
  border-bottom: 1px solid rgba(139, 106, 80, 0.16);
  text-align: center;
}

.editorial-quote-band p,
.editorial-quote-band strong {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 43px);
  font-weight: 500;
  line-height: 1.12;
}

.editorial-quote-band strong {
  color: var(--editorial-sepia);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 400;
}

.editorial-quote-band span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.quote-band-cta {
  margin-top: 12px;
  color: var(--editorial-sepia);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-band-cta:hover {
  color: var(--editorial-brown);
}

.story-paths-section,
.loved-collections-section {
  padding: var(--homepage-section-y) 40px;
  background: var(--editorial-paper);
}

.loved-collections-section {
  padding-top: 30px;
}

.story-paths-section .section-heading,
.centered-heading {
  text-align: center;
}

.story-paths-section .section-heading {
  margin-bottom: 20px;
}

.story-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1360px, 100%);
  margin: 0 auto;
}

.story-path-card {
  position: relative;
  display: flex;
  justify-content: flex-end;
  min-height: 395px;
  background: #fffaf2;
  border: 1px solid var(--editorial-line);
  box-shadow: none;
  overflow: hidden;
}

.story-path-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(139, 106, 80, 0.18);
  pointer-events: none;
}

.story-path-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.16) saturate(0.82);
}

.story-path-card .story-path-icon {
  width: 38px;
  height: 38px;
  margin: 0 auto 14px;
  object-fit: contain;
  filter: none;
}

.story-path-card div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(44%, 205px);
  min-width: 0;
  padding: 30px 20px 28px;
  background: rgba(255, 250, 242, 0.94);
  border-left: 1px solid rgba(139, 106, 80, 0.18);
  text-align: center;
}

.story-path-ongoing {
  justify-content: flex-start;
}

.story-path-ongoing div {
  border-right: 1px solid rgba(139, 106, 80, 0.18);
  border-left: 0;
}

.story-path-keepsake {
  justify-content: flex-start;
}

.story-path-keepsake > img {
  object-position: 72% center;
}

.story-path-keepsake div {
  border-right: 1px solid rgba(139, 106, 80, 0.18);
  border-left: 0;
}

.story-path-gifts {
  justify-content: flex-start;
}

.story-path-gifts > img {
  object-position: 70% center;
}

.story-path-gifts div {
  border-right: 1px solid rgba(139, 106, 80, 0.18);
  border-left: 0;
}

.story-path-card h3 {
  color: var(--editorial-brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.25;
}

.story-path-card ul {
  display: grid;
  gap: 6px;
  margin: 20px 0 26px;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
  list-style: none;
}

.story-path-card .text-link,
.centered-link {
  color: var(--editorial-sepia);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.founder-story-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  background: linear-gradient(90deg, rgba(75, 47, 33, 0.05), var(--editorial-cream));
  border-top: 1px solid rgba(139, 106, 80, 0.16);
  border-bottom: 1px solid rgba(139, 106, 80, 0.16);
}

.founder-story-band > img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center 38%;
  filter: sepia(0.18) saturate(0.78);
}

.founder-story-copy {
  width: min(520px, 100%);
  padding: var(--homepage-section-y) 40px;
}

.founder-story-copy blockquote {
  width: auto;
  margin-bottom: 24px;
  color: var(--editorial-brown);
  font-size: clamp(34px, 4.2vw, 52px);
}

.founder-story-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 17px;
}

.loved-collection-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  width: min(1180px, 100%);
  margin: 0 auto 18px;
}

.loved-collection-card {
  display: grid;
  gap: 8px;
  color: var(--editorial-brown);
  text-align: center;
  text-decoration: none;
}

.loved-collection-card img {
  width: 100%;
  aspect-ratio: 1 / 0.92;
  object-fit: cover;
  border: 1px solid var(--editorial-line);
  border-radius: 6px;
  box-shadow: none;
  filter: sepia(0.16) saturate(0.84);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.loved-collection-card:hover img {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(75, 47, 33, 0.14);
}

.loved-collection-card strong {
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
}

.loved-collection-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.centered-link {
  display: table;
  margin: 0 auto;
}

.editorial-how-it-works {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  align-items: center;
  gap: 40px;
  padding: var(--homepage-section-y) 40px var(--homepage-section-y) max(40px, calc((100vw - 1180px) / 2));
  background: var(--editorial-cream);
  border-top: 1px solid rgba(139, 106, 80, 0.16);
}

.editorial-steps {
  max-width: 780px;
}

.editorial-step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.editorial-step {
  position: relative;
  text-align: center;
}

.editorial-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 16px;
  right: -20px;
  color: var(--editorial-sepia);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1;
}

.how-step-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.editorial-step h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.editorial-step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.editorial-how-it-works > img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  filter: sepia(0.16) saturate(0.82);
}

.editorial-how-it-works > img.how-it-works-product-photo {
  object-fit: contain;
  object-position: center;
  filter: sepia(0.08) saturate(0.94) contrast(1.02);
}

.closing-memory-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  align-items: center;
  min-height: 230px;
  color: var(--editorial-brown);
  background: #f3eadc;
  border-top: 1px solid rgba(139, 106, 80, 0.16);
  overflow: hidden;
}

.closing-memory-band blockquote {
  width: min(620px, 100%);
  padding: 34px 40px 34px max(40px, calc((100vw - 1180px) / 2));
  font-size: clamp(30px, 4vw, 48px);
}

.closing-memory-band img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  filter: sepia(0.2) saturate(0.78);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  padding: 96px 40px 64px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 243, 236, 0.96) 0%, rgba(247, 243, 236, 0.88) 38%, rgba(247, 243, 236, 0.36) 100%),
    linear-gradient(0deg, var(--cream) 0%, rgba(247, 243, 236, 0) 28%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-content {
  position: relative;
  width: min(650px, 100%);
  margin: 0 auto 0 max(0px, calc((100vw - 1180px) / 2));
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: 52px;
  align-items: center;
  width: min(1180px, calc(100% - 80px));
  min-height: 560px;
  margin: 0 auto;
  padding: 64px 0 50px;
}

.subpage-copy {
  max-width: 650px;
}

.subpage-art img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--paper);
}

.little-moments-main-photo {
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  object-position: center;
}

.logo-art {
  display: grid;
  place-items: center;
  min-height: 180px;
}

.logo-art img {
  width: clamp(112px, 15vw, 150px);
  height: clamp(112px, 15vw, 150px);
  max-width: none;
  object-fit: contain;
  object-position: center;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.collection-hero-art {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
}

.collection-hero-art img {
  aspect-ratio: 5 / 7;
  height: auto;
  object-fit: cover;
}

.collection-hero-art img:last-child {
  margin-top: 40px;
}

.legacy-hero .subpage-art img {
  aspect-ratio: 4 / 3;
  max-width: 520px;
  margin: 0 auto;
  object-fit: contain;
  border: 0;
  box-shadow: none;
  background: transparent;
  mix-blend-mode: multiply;
}

.story-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  width: min(1180px, calc(100% - 80px));
  min-height: 660px;
  margin: 0 auto;
  padding: 82px 0;
}

.our-story-page .story-hero {
  min-height: 590px;
  padding: 56px 0 42px;
}

.story-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 560px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-photo::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
}

.story-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
}

.story-copy {
  max-width: 680px;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 54px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.story-text p,
.story-note p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
}

.story-text p {
  margin-bottom: 22px;
}

.our-story-page .story-text p {
  margin-bottom: 18px;
}

.story-text .story-emphasis {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.45;
}

.story-notes {
  display: grid;
  gap: 20px;
  align-self: start;
  margin-top: 105px;
}

.story-note + .story-note {
  margin-top: 85px;
}

.blog-page .story-note + .story-note {
  margin-top: 0;
}

.story-note {
  align-self: start;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.our-story-page .quote-band,
.our-story-page .join-section,
.our-story-page .subscribe-section {
  padding-top: 22px;
  padding-bottom: 22px;
}

.our-story-page .quote-band {
  background: var(--paper);
  color: var(--editorial-brown);
  border-top: 0;
  border-bottom: 0;
}

.our-story-page .join-section,
.our-story-page .subscribe-section {
  border-top: 0;
  border-bottom: 0;
}

.our-story-page .coming-soon-signup,
.our-story-page .coming-soon-signup .giftable-card,
.our-story-page .signup-form.coming-soon-wide-form {
  background: var(--editorial-paper);
}

.our-story-page .coming-soon-signup {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

.our-story-page .signup-form.coming-soon-wide-form {
  padding-right: 0;
  padding-left: 0;
  border: 0;
  background: transparent;
}

.page-stack {
  position: relative;
  min-height: 560px;
}

.page-stack img {
  position: absolute;
  aspect-ratio: 5 / 7;
  object-fit: cover;
}

.page-stack img:first-child {
  top: 0;
  left: 0;
  width: 72%;
  transform: rotate(-3deg);
}

.page-stack img:last-child {
  right: 0;
  bottom: 0;
  width: 72%;
  transform: rotate(3deg);
}

.eyebrow,
.section-kicker,
.plan-label {
  margin: 0 0 14px;
  color: var(--warm-brown);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: 64px;
}

h2 {
  margin-bottom: 18px;
  font-size: 44px;
}

h3 {
  margin-bottom: 12px;
  font-size: 27px;
}

.hero-copy {
  max-width: 590px;
  color: var(--muted);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.subscription-summary {
  margin: 30px 0 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--sage);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.82);
  box-shadow: 0 14px 34px rgba(95, 83, 65, 0.09);
}

.subscription-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.subscription-price strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.subscription-price strong span {
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.subscription-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 14px;
  margin: 16px 0 0;
  padding: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

.subscription-facts li {
  position: relative;
  padding-left: 18px;
}

.subscription-facts li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue-gray);
}

.subscription-contents {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.subscription-contents .plan-label {
  margin: 0 0 10px;
}

.compact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 20px;
  margin: 0;
}

.compact-list li {
  margin: 0;
  font-size: 14px;
}

.purchase-note {
  max-width: 590px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.purchase-note a {
  color: var(--ink);
  font-weight: 700;
}

.subscription-summary + .hero-actions {
  margin-top: 0;
}

.checkout-form {
  display: grid;
  gap: 10px;
  margin: 0;
}

.personalization-cta {
  display: grid;
  gap: 7px;
  justify-items: start;
}

.personalization-open {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 14px;
}

.personalization-summary {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.personalization-panel {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}

.personalization-panel[hidden] {
  display: none;
}

.personalization-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(47, 38, 31, 0.42);
}

.personalization-modal {
  position: relative;
  z-index: 1;
  width: min(94vw, 520px);
  max-height: min(90vh, 720px);
  overflow: auto;
  padding: 24px;
  border: 1px solid rgba(114, 82, 56, 0.2);
  border-radius: 8px;
  background: #fffcf6;
  box-shadow: 0 24px 70px rgba(47, 38, 31, 0.24);
  color: var(--ink);
}

.personalization-modal-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.personalization-modal-heading h2 {
  margin: 3px 0 0;
  font-size: clamp(24px, 4vw, 32px);
}

.personalization-close {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(114, 82, 56, 0.18);
  border-radius: 50%;
  background: #fff8ef;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.personalization-panel label {
  display: grid;
  gap: 6px;
  margin: 12px 0;
}

.personalization-toggle,
.personalization-ack {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 9px;
}

.personalization-toggle input,
.personalization-ack input {
  margin-top: 3px;
}

.personalization-fields input,
.personalization-fields select {
  width: 100%;
  border: 1px solid rgba(74, 61, 50, 0.25);
  border-radius: 6px;
  font: inherit;
  padding: 11px 12px;
}

.personalization-help,
.personalization-meter,
.personalization-warning {
  margin: 8px 0;
  font-size: 14px;
}

.personalization-help {
  color: var(--muted);
}

.personalization-meter {
  font-weight: 700;
}

.personalization-warning {
  color: #8a2f22;
  font-weight: 700;
}

.personalization-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.personalization-modal-actions [hidden] {
  display: none !important;
}

.modal-open {
  overflow: hidden;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--warm-brown);
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button.primary {
  background: var(--button-brown);
  border-color: var(--button-brown);
  color: #fff;
}

.button.secondary {
  background: rgba(255, 252, 246, 0.74);
  color: var(--warm-brown);
}

.hero-back-cta {
  align-self: flex-start;
  min-height: 48px;
  padding: 13px 18px;
  font-size: 14px;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled,
.button[aria-busy="true"] {
  opacity: 0.76;
  transform: none;
}

.button:disabled {
  cursor: not-allowed;
}

.button[aria-busy="true"] {
  cursor: wait;
}

.button.primary:hover {
  background: var(--warm-brown);
  border-color: var(--gold);
}

.button.secondary:hover {
  color: var(--ink);
  border-color: var(--gold);
}

.billing-note {
  margin: 28px auto 0;
  max-width: 620px;
  padding: 24px;
  background: var(--sage-tint);
  border: 1px solid rgba(95, 117, 88, 0.24);
  border-radius: 8px;
  color: var(--muted);
  text-align: left;
}

.billing-note p {
  margin: 0;
}

.billing-note p + p {
  margin-top: 14px;
}

.intro-band,
.section,
.product-section,
.heirloom-band,
.quote-band,
.subscribe-section,
.join-section {
  padding: var(--homepage-section-y) 40px;
}

.intro-grid,
.two-column,
.product-section,
.heirloom-band,
.subscribe-section,
.join-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 64px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro-band {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ritual-band {
  background: var(--sage-tint);
  border-top-color: rgba(95, 117, 88, 0.26);
  border-bottom-color: rgba(95, 117, 88, 0.26);
}

.intro-grid p:not(.section-kicker),
.product-copy p,
.heirloom-content p,
.subscribe-copy p,
.join-copy p,
.step p,
.plan-card p {
  color: var(--muted);
  font-size: 17px;
}

.step-list {
  display: grid;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  column-gap: 22px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.step:last-child {
  border-bottom: 1px solid var(--line);
}

.step-number {
  color: var(--sage);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.step h3,
.step p {
  grid-column: 2;
}

.product-section {
  align-items: center;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 13px;
  height: 13px;
  border: 2px solid var(--sage);
  border-radius: 50%;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: center;
}

.product-gallery img,
.heirloom-band img {
  aspect-ratio: 5 / 7;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--paper);
}

.product-gallery img:nth-child(2) {
  transform: translateY(28px);
}

.heirloom-band {
  align-items: center;
  background: var(--sage-tint);
  border-top: 1px solid rgba(95, 117, 88, 0.26);
  border-bottom: 1px solid rgba(95, 117, 88, 0.26);
}

.heirloom-content {
  max-width: 540px;
}

.section-heading {
  width: min(1180px, 100%);
  margin: 0 auto 34px;
}

.collection-feature {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, 100%);
  margin: 0 auto 18px;
  padding: 30px;
  background: var(--sage-tint);
  border: 1px solid rgba(95, 117, 88, 0.26);
  border-radius: 8px;
}

.collection-feature h3 {
  margin: 0;
  font-size: 36px;
}

.collection-feature p:not(.plan-label) {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.plan-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--sage);
  border-radius: 8px;
}

.collection-card {
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.collection-card:hover {
  transform: translateY(-3px);
  border-color: rgba(198, 163, 104, 0.78);
  box-shadow: var(--shadow);
}

.featured-plan {
  border-color: rgba(198, 163, 104, 0.78);
  border-top-color: var(--gold);
  box-shadow: var(--shadow);
}

.plan-card .text-link {
  margin-top: auto;
  color: var(--warm-brown);
  font-weight: 800;
}

.collection-card .price-note {
  margin-top: auto;
  margin-bottom: 12px;
}

.collection-card .text-link {
  margin-top: 0;
}

.subscription-logo {
  display: block;
  width: 94px;
  height: 94px;
  max-width: none;
  object-fit: contain;
  object-position: center;
  margin: 0 auto 16px;
  background: transparent;
}

.subscription-duration {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  margin-top: 6px;
}

.plan-grid.subscription-grid {
  align-items: stretch;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.subscription-grid .collection-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.subscription-grid .collection-card .price-note {
  margin-top: 12px;
  margin-bottom: 0;
}

.subscription-grid .text-link {
  margin-top: auto;
  padding-top: 18px;
}

.subscription-detail-logo {
  width: min(300px, 72%);
  aspect-ratio: 1;
  object-fit: contain;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.subscription-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.subscription-title-row h1 {
  margin-bottom: 0;
}

.subscription-title-logo {
  flex: 0 0 auto;
  display: block;
  width: 56px;
  height: 56px;
  max-width: none;
  object-fit: contain;
  object-position: center;
  margin: 0 0 2px;
  opacity: 0.68;
}

.subscription-detail-page .subscription-title-logo,
.keepsake-detail-page .subscription-title-logo {
  width: 112px;
  height: 112px;
}

.keepsake-detail-page .logo-art img {
  width: clamp(224px, 30vw, 300px);
  height: clamp(224px, 30vw, 300px);
}

.subscription-logo-top-hero .subscription-hero-photo-art {
  align-self: center;
}

.subscription-hero-photo-art {
  aspect-ratio: 3 / 2;
  width: min(100%, 560px);
  justify-self: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--paper);
}

.little-moments-detail-page .subscription-hero-photo-art {
  aspect-ratio: 4 / 3;
}

.subscription-hero-photo-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.subscription-photo-slider {
  position: relative;
  display: grid;
  place-items: center;
}

.subscription-photo-slider img {
  grid-area: 1 / 1;
}

.subscription-photo-slider img[hidden] {
  display: none;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0 0 4px;
  color: var(--editorial-brown);
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(75, 47, 33, 0.18);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(75, 47, 33, 0.14);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.slider-arrow:hover {
  color: #fffaf2;
  background: var(--editorial-brown);
  transform: translateY(-50%) scale(1.04);
}

.slider-arrow-prev {
  left: 12px;
}

.slider-arrow-next {
  right: 12px;
}

.subscription-photo-slider.is-single-slide .slider-arrow {
  display: none;
}

.subscription-logo-top-hero {
  align-items: start;
}

.subscription-hero-logo-art {
  align-self: start;
  justify-content: center;
  min-height: 180px;
  padding-top: 0;
}

.subscription-hero-logo-art .subscription-detail-logo {
  width: min(112px, 30vw);
  max-width: 112px;
  opacity: 0.72;
}

.giftable-kits {
  padding-top: 26px;
}

.giftable-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.keepsake-page .giftable-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1080px;
}

.giftable-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1180px;
  margin-inline: auto;
}

.giftable-page .giftable-kits {
  background: var(--editorial-cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.giftable-page .giftable-card {
  background: var(--editorial-paper);
  border-top-color: rgba(139, 106, 80, 0.32);
}

.giftable-page .featured-giftable {
  border-top-color: var(--gold);
}

.giftable-page .coming-soon-signup {
  background: var(--editorial-cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.giftable-page .collection-faq {
  background: var(--editorial-paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.giftable-page .faq-list summary::after {
  color: var(--button-brown);
}

.coming-soon-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.giftable-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 320px;
  padding: 28px;
  color: inherit;
  text-decoration: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--sage);
  border-radius: 8px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.featured-giftable {
  border-color: rgba(198, 163, 104, 0.78);
  border-top-color: var(--gold);
  box-shadow: var(--shadow);
}

.giftable-card:hover {
  transform: translateY(-3px);
  border-color: rgba(198, 163, 104, 0.78);
  box-shadow: var(--shadow);
}

.giftable-card-link {
  cursor: pointer;
}

.kit-symbol {
  margin-bottom: 20px;
  font-size: 34px;
  line-height: 1;
}

.kit-logo {
  display: block;
  width: 94px;
  height: 94px;
  max-width: none;
  object-fit: contain;
  object-position: center;
  margin: 0 auto 16px;
  background: transparent;
}

.keepsake-page .kit-logo {
  width: 112px;
  height: 112px;
  filter: contrast(1.18);
}

.giftable-card h3 {
  margin-bottom: 14px;
  font-size: 25px;
}

.giftable-card h3 a {
  color: inherit;
  text-decoration: none;
}

.giftable-card h3 a:hover {
  color: var(--editorial-brown);
}

.giftable-card p:not(.plan-label) {
  color: var(--muted);
}

.giftable-card .card-personalization-note {
  margin: -4px 0 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.keepsake-page .subpage-hero {
  min-height: 500px;
  padding: 44px 0 34px;
}

.keepsake-page .collections-directory {
  padding-top: 36px;
  padding-bottom: 36px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.keepsake-page .intro-band {
  padding-top: 32px;
  padding-bottom: 32px;
  background: transparent;
  border-top: 0;
  border-bottom: 0;
}

.keepsake-page .giftable-card .plan-label + h3,
.keepsake-page .giftable-card .price-note + .inventory-status {
  margin-top: 0;
}

.keepsake-page .giftable-card .price-note {
  margin-top: -8px;
}

.keepsake-page .giftable-card .kit-price {
  margin-top: 4px;
  font-size: 24px;
}

.keepsake-page .giftable-card .text-link {
  margin-top: auto;
}

.keepsake-page .faq-section {
  padding-top: 34px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.keepsake-detail-page .collection-faq,
.subscription-detail-page .collection-faq {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.inventory-status {
  min-height: 24px;
  margin: 18px 0 0;
  color: var(--blue-gray);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.inventory-status.sold-out {
  color: #8a684a;
}

.inventory-status.low-stock {
  color: var(--warm-brown);
}

.giftable-card.is-sold-out {
  opacity: 0.72;
}

.price-note {
  color: var(--blue-gray);
  font-size: 14px;
  font-weight: 800;
}

.subpage-copy > .price-note {
  display: block;
  margin: 18px 0 0;
  padding: 0;
  color: var(--button-brown);
  font-size: 15px;
  line-height: 1.35;
  background: transparent;
  border: 0;
}

.personalization-price-note {
  max-width: 520px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.detail-item {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--sage);
  border-radius: 8px;
}

.detail-item p:not(.plan-label) {
  color: var(--muted);
  font-size: 17px;
}

.blog-topic-hub {
  border-top: 1px solid var(--editorial-line);
}

.blog-topic-hub .section-heading > p:last-child {
  max-width: 650px;
  margin: 14px auto 0;
}

.blog-topic-lanes {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 30px;
  border-top: 1px solid var(--editorial-line);
}

.blog-topic-lane {
  display: grid;
  gap: 10px;
  min-height: 170px;
  padding: 24px 20px;
  border-right: 1px solid var(--editorial-line);
  color: var(--editorial-brown);
  text-decoration: none;
}

.blog-topic-lane:last-child {
  border-right: 0;
}

.blog-topic-lane span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.12;
}

.blog-topic-lane small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.blog-topic-lane:hover {
  background: rgba(216, 196, 168, 0.18);
}

.product-story-grid,
.product-audience-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.56fr) minmax(0, 1.44fr);
  gap: 58px;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.product-story-copy {
  max-width: 780px;
}

.product-story-copy p {
  color: var(--muted);
  font-size: 18px;
}

.product-story-copy p + p {
  margin-top: 16px;
}

.product-story-callout {
  color: var(--button-brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.25;
}

.product-included-section {
  background: var(--paper);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.included-card {
  min-height: 220px;
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.included-card h3 {
  margin-top: 8px;
  font-size: 24px;
}

.included-card p:not(.plan-label) {
  color: var(--muted);
  font-size: 16px;
}

.closing-keepsake-quote {
  background: var(--editorial-cream);
}

.closing-keepsake-quote blockquote {
  max-width: 820px;
}

.faq-section {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.collection-faq {
  margin-top: 0;
  background: var(--sage-tint);
  border-top: 1px solid rgba(95, 117, 88, 0.24);
}

.legacy-kept-detail-page .subscription-summary {
  border-left-color: var(--button-brown);
}

.legacy-kept-detail-page .detail-item {
  border-top-color: var(--button-brown);
}

.legacy-kept-detail-page .product-story-band,
.legacy-kept-detail-page .product-audience-section,
.legacy-kept-detail-page .legacy-personalization-section,
.legacy-kept-detail-page .collection-faq,
.legacy-kept-detail-page .closing-keepsake-quote {
  background: var(--editorial-cream);
  border-color: var(--line);
}

.legacy-kept-detail-page .product-included-section {
  background: var(--paper);
}

.legacy-kept-detail-page .included-card {
  border-top: 3px solid rgba(75, 47, 33, 0.18);
}

.legacy-kept-detail-page .faq-list summary::after {
  color: var(--button-brown);
}

.legacy-story-quote blockquote {
  color: var(--brown);
}

.within-these-walls-detail-page .detail-item {
  border-top-color: var(--button-brown);
}

.within-these-walls-detail-page .product-story-band,
.within-these-walls-detail-page .product-audience-section,
.within-these-walls-detail-page .collection-faq,
.within-these-walls-detail-page .closing-keepsake-quote {
  background: var(--editorial-cream);
  border-color: var(--line);
}

.within-these-walls-detail-page .product-included-section {
  background: var(--paper);
}

.within-these-walls-detail-page .included-card {
  border-top: 3px solid rgba(75, 47, 33, 0.18);
}

.within-these-walls-detail-page .faq-list summary::after {
  color: var(--button-brown);
}

.home-memory-quote blockquote {
  color: var(--brown);
}

.before-we-meet-you-detail-page .detail-item {
  border-top-color: var(--button-brown);
}

.before-we-meet-you-detail-page .product-story-band,
.before-we-meet-you-detail-page .product-audience-section,
.before-we-meet-you-detail-page .collection-faq,
.before-we-meet-you-detail-page .closing-keepsake-quote {
  background: var(--editorial-cream);
  border-color: var(--line);
}

.before-we-meet-you-detail-page .product-included-section {
  background: var(--paper);
}

.before-we-meet-you-detail-page .included-card {
  border-top: 3px solid rgba(75, 47, 33, 0.18);
}

.before-we-meet-you-detail-page .faq-list summary::after {
  color: var(--button-brown);
}

.before-meet-quote blockquote {
  color: var(--brown);
}

.becoming-you-detail-page .subscription-summary {
  border-left-color: var(--button-brown);
}

.becoming-you-detail-page .detail-item {
  border-top-color: var(--button-brown);
}

.becoming-you-detail-page .product-story-band,
.becoming-you-detail-page .product-audience-section,
.becoming-you-detail-page .collection-faq,
.becoming-you-detail-page .closing-keepsake-quote {
  background: var(--editorial-cream);
  border-color: var(--line);
}

.becoming-you-detail-page .product-included-section {
  background: var(--paper);
}

.becoming-you-detail-page .included-card {
  border-top: 3px solid rgba(75, 47, 33, 0.18);
}

.becoming-you-detail-page .faq-list summary::after {
  color: var(--button-brown);
}

.becoming-you-quote blockquote {
  color: var(--brown);
}

.little-moments-detail-page .subscription-summary {
  border-left-color: var(--button-brown);
}

.little-moments-detail-page .detail-item {
  border-top-color: var(--button-brown);
}

.little-moments-detail-page .product-story-band,
.little-moments-detail-page .product-audience-section,
.little-moments-detail-page .collection-faq,
.little-moments-detail-page .closing-keepsake-quote {
  background: var(--editorial-cream);
  border-color: var(--line);
}

.little-moments-detail-page .product-included-section {
  background: var(--paper);
}

.little-moments-detail-page .included-card {
  border-top: 3px solid rgba(75, 47, 33, 0.18);
}

.little-moments-detail-page .faq-list summary::after {
  color: var(--button-brown);
}

.little-moments-quote blockquote {
  color: var(--brown);
}

.little-paws-detail-page .subscription-summary {
  border-left-color: var(--button-brown);
}

.little-paws-detail-page .detail-item {
  border-top-color: var(--button-brown);
}

.little-paws-detail-page .product-story-band,
.little-paws-detail-page .product-audience-section,
.little-paws-detail-page .collection-faq,
.little-paws-detail-page .closing-keepsake-quote {
  background: var(--editorial-cream);
  border-color: var(--line);
}

.little-paws-detail-page .product-included-section {
  background: var(--paper);
}

.little-paws-detail-page .included-card {
  border-top: 3px solid rgba(75, 47, 33, 0.18);
}

.little-paws-detail-page .faq-list summary::after {
  color: var(--button-brown);
}

.little-paws-quote blockquote {
  color: var(--brown);
}

.best-friend-detail-page .detail-item {
  border-top-color: var(--button-brown);
}

.best-friend-detail-page .product-story-band,
.best-friend-detail-page .product-audience-section,
.best-friend-detail-page .collection-faq,
.best-friend-detail-page .closing-keepsake-quote {
  background: var(--editorial-cream);
  border-color: var(--line);
}

.best-friend-detail-page .product-included-section {
  background: var(--paper);
}

.best-friend-detail-page .included-card {
  border-top: 3px solid rgba(75, 47, 33, 0.18);
}

.best-friend-detail-page .faq-list summary::after {
  color: var(--button-brown);
}

.best-friend-quote blockquote {
  color: var(--brown);
}

.before-forever-detail-page .detail-item {
  border-top-color: var(--button-brown);
}

.before-forever-detail-page .product-story-band,
.before-forever-detail-page .product-audience-section,
.before-forever-detail-page .collection-faq,
.before-forever-detail-page .closing-keepsake-quote {
  background: var(--editorial-cream);
  border-color: var(--line);
}

.before-forever-detail-page .product-included-section {
  background: var(--paper);
}

.before-forever-detail-page .included-card {
  border-top: 3px solid rgba(75, 47, 33, 0.18);
}

.before-forever-detail-page .faq-list summary::after {
  color: var(--button-brown);
}

.before-forever-quote blockquote {
  color: var(--brown);
}

.personalization-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.personalization-grid li {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(75, 47, 33, 0.16);
  border-radius: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.2;
}

.personalization-grid.perfect-for-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  margin: 20px 0 0;
}

.pathway-grid li {
  gap: 12px;
}

.pathway-grid li::before {
  content: "\2661";
  flex: 0 0 auto;
  color: var(--button-brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1;
}

.faq-list {
  width: min(900px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.2;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--sage);
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-size: 30px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 17px;
}

.error-page {
  min-height: calc(100vh - 97px);
  display: grid;
  place-items: center;
  padding: 80px 40px;
}

.error-content {
  width: min(720px, 100%);
  text-align: center;
}

.error-content img {
  width: 160px;
  margin: 0 auto 26px;
  mix-blend-mode: multiply;
}

.quote-band {
  background: var(--blue-gray);
  color: #fffdf8;
  text-align: center;
}

.quote-band.closing-keepsake-quote {
  background: var(--editorial-cream);
  color: var(--brown);
}

blockquote {
  width: min(850px, 100%);
  margin: 0 auto;
  font-size: 42px;
}

.quote-attribution {
  margin: 24px 0 10px;
  color: rgba(255, 253, 248, 0.82);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  color: #fffdf8;
  border: 1px solid rgba(255, 253, 248, 0.62);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.quote-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.join-section {
  align-items: center;
  background: var(--sage-tint);
  border-top: 1px solid rgba(95, 117, 88, 0.26);
  border-bottom: 1px solid rgba(95, 117, 88, 0.26);
}

.contact-section {
  background: transparent;
  border-top: 0;
  border-bottom: 0;
}

.community-paper-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.subscribe-section {
  align-items: center;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.subscribe-panel {
  justify-self: end;
  width: min(430px, 100%);
}

.subscribe-panel .button {
  margin-top: 38px;
}

.subscribe-panel .compact-list li::before {
  top: 50%;
  transform: translateY(-50%);
}

.join-page {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.75fr);
  gap: 64px;
  align-items: center;
  width: min(1180px, calc(100% - 80px));
  min-height: 680px;
  margin: 0 auto;
  padding: 88px 0;
}

.intro-only-page {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  min-height: auto;
}

.intro-only-page .join-copy {
  text-align: center;
}

.intro-only-page .check-list {
  width: min(620px, 100%);
  margin: 28px auto 0;
  text-align: left;
}

.coming-soon-signup {
  display: block;
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  background: var(--editorial-paper);
}

.coming-soon-signup .join-copy {
  width: min(780px, 100%);
  margin: 0 auto 24px;
  text-align: center;
}

.coming-soon-signup .coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.coming-soon-signup .signup-form {
  width: min(1220px, 100%);
  margin: 24px auto 0;
}

.coming-soon-signup .giftable-card {
  position: relative;
  display: flex;
  justify-content: flex-start;
  min-height: 330px;
  padding: 0;
  overflow: hidden;
  background: #fffaf2;
}

.coming-soon-signup .giftable-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(139, 106, 80, 0.18);
  pointer-events: none;
}

.coming-soon-signup .giftable-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.14) saturate(0.86);
}

.coming-soon-signup .giftable-card > div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(42%, 178px);
  min-width: 0;
  padding: 26px 18px 22px;
  background: rgba(255, 250, 242, 0.94);
  border-right: 1px solid rgba(139, 106, 80, 0.18);
  text-align: center;
}

.coming-soon-signup .giftable-card h3 {
  margin-bottom: 10px;
  color: var(--editorial-brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.25;
}

.coming-soon-signup .giftable-card p:not(.plan-label) {
  font-size: 13px;
  line-height: 1.45;
}

.coming-soon-wide-form {
  display: grid;
  grid-template-columns: minmax(160px, 0.8fr) minmax(180px, 0.9fr) minmax(220px, 1.1fr) auto;
  gap: 12px 14px;
  align-items: end;
  padding: 22px;
  background: #fffaf2;
  border-color: rgba(139, 106, 80, 0.22);
  box-shadow: none;
}

.coming-soon-wide-form .wide-form-field {
  min-width: 0;
}

.coming-soon-wide-form label {
  margin-bottom: 6px;
  color: var(--editorial-brown);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coming-soon-wide-form input,
.coming-soon-wide-form select,
.coming-soon-wide-form textarea {
  min-height: 42px;
  padding-right: 12px;
  padding-left: 12px;
  background: #fffdf8;
  border-color: rgba(139, 106, 80, 0.24);
  border-radius: 6px;
  color: var(--editorial-brown);
  font-size: 14px;
}

.coming-soon-wide-form button {
  min-height: 42px;
  padding: 0 18px;
  background: var(--editorial-brown);
  border-color: var(--editorial-brown);
  border-radius: 6px;
  font-size: 12px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.coming-soon-wide-form textarea {
  min-height: 74px;
  padding-top: 10px;
}

.coming-soon-wide-form select {
  background-color: #fffdf8;
}

.coming-soon-wide-form .wide-form-note,
.coming-soon-wide-form .form-note {
  grid-column: 1 / -1;
}

.coming-soon-wide-form .form-note {
  margin-top: 0;
}

.cta-panel h3 {
  margin: 0 0 12px;
  font-size: 28px;
}

.cta-panel p:not(.section-kicker) {
  margin-bottom: 18px;
  color: var(--muted);
}

.signup-form {
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.signup-form.coming-soon-wide-form {
  padding: 22px;
  background: #fffaf2;
  border-color: rgba(139, 106, 80, 0.22);
  box-shadow: none;
}

.signup-form label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 800;
}

.coming-soon-wide-form label:not(:first-of-type) {
  margin-top: 0;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

input,
select,
textarea,
button {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  padding: 0 15px;
  color: var(--ink);
  background: #fffefb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

input,
select {
  min-height: 50px;
}

textarea {
  min-height: 118px;
  padding-top: 14px;
  line-height: 1.45;
  resize: vertical;
}

.signup-form label:not(:first-of-type) {
  margin-top: 16px;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--warm-brown) 50%),
    linear-gradient(135deg, var(--warm-brown) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 21px,
    calc(100% - 14px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

button {
  min-height: 50px;
  padding: 0 18px;
  color: #fffaf2;
  background: var(--warm-brown);
  border: 1px solid var(--warm-brown);
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.form-note a,
.faq-list a,
.legal-content a {
  color: var(--warm-brown);
  font-weight: 700;
  text-decoration: none;
}

.form-note a:hover,
.faq-list a:hover,
.legal-content a:hover {
  text-decoration: underline;
}

.site-footer {
  padding: 26px 40px 24px;
  color: rgba(255, 250, 242, 0.82);
  background: var(--editorial-brown);
  border-top: 1px solid rgba(139, 106, 80, 0.34);
}

.site-footer p {
  margin: 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) minmax(180px, 1fr) minmax(120px, 0.7fr) minmax(130px, 0.7fr) minmax(220px, 1fr);
  gap: 24px;
  align-items: start;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, "Times New Roman", serif;
  color: #fffdf8;
  text-decoration: none;
}

.footer-mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.footer-wordmark {
  color: #fffaf2;
  font-size: 24px;
}

.footer-tagline {
  max-width: 240px;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 250, 242, 0.26);
  color: rgba(255, 250, 242, 0.88);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.2;
}

.footer-column {
  display: grid;
  gap: 6px;
}

.footer-column h2 {
  margin: 0 0 2px;
  color: #fffaf2;
  font-size: 11px;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px 10px;
  margin-top: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.social-icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--editorial-brown);
  background: #fffaf2;
  border-radius: 50%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
}

.instagram-icon {
  font-size: 20px;
  font-weight: 700;
}

.x-icon {
  font-size: 14px;
  font-weight: 800;
}

.tiktok-icon {
  font-size: 16px;
  font-weight: 800;
}

.footer-email {
  font-weight: 700;
}

.site-footer a {
  color: #fffdf8;
  font-size: 13px;
  line-height: 1.25;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold);
  text-decoration: underline;
}

@media (min-width: 641px) and (max-width: 899px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 22px 30px;
  }

  .footer-brand,
  .footer-tagline,
  .footer-connect {
    grid-column: 1 / -1;
  }

  .footer-tagline {
    max-width: 320px;
    padding: 16px 0 0;
    border-top: 1px solid rgba(255, 250, 242, 0.22);
    border-left: 0;
  }
}

@media (min-width: 900px) {
  .footer-inner {
    grid-template-columns: minmax(320px, 1.2fr) minmax(120px, 0.65fr) minmax(140px, 0.75fr) minmax(240px, 1fr);
    gap: 18px 34px;
  }

  .footer-brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .footer-tagline {
    grid-column: 1;
    grid-row: 2;
    max-width: 280px;
    padding: 14px 0 0;
    border-top: 1px solid rgba(255, 250, 242, 0.22);
    border-left: 0;
  }

  .footer-column[aria-label="Shop"] {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .footer-column[aria-label="Company"] {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .footer-connect {
    grid-column: 4;
    grid-row: 1 / span 2;
  }
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 72px 22px;
  background:
    radial-gradient(circle at 20% 8%, rgba(198, 163, 104, 0.13), transparent 34%),
    linear-gradient(180deg, var(--admin-bg) 0%, #f4eadc 100%);
}

.admin-shell.wide {
  display: block;
  min-height: auto;
}

.admin-panel {
  width: min(760px, 100%);
  margin: 0 auto;
}

.admin-shell > .admin-panel {
  padding: 34px;
  background: rgba(255, 250, 241, 0.94);
  border: 1px solid var(--admin-border);
  border-top: 4px solid var(--admin-sage);
  border-radius: 8px;
  box-shadow: var(--admin-shadow);
}

.admin-login-logo {
  display: block;
  width: 124px;
  height: 124px;
  margin: 0 0 22px;
  object-fit: contain;
}

.admin-shell .signup-form {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.admin-dashboard {
  width: min(1240px, calc(100% - 80px));
  margin: 0 auto;
  padding: 54px 0 88px;
  color: var(--admin-ink);
}

.admin-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 26px;
  padding: 30px;
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.96) 0%, rgba(255, 250, 241, 0.82) 62%, rgba(232, 222, 207, 0.72) 100%);
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  box-shadow: var(--admin-shadow);
}

.admin-hero h1,
.admin-panel h2 {
  margin: 0;
}

.admin-hero h1 {
  font-size: 52px;
  color: var(--admin-ink);
}

.admin-subnav {
  margin-bottom: 18px;
  padding: 14px 16px;
  background: rgba(255, 250, 241, 0.94);
  border: 1px solid var(--admin-border);
  border-top: 4px solid rgba(168, 178, 154, 0.72);
  border-radius: 8px;
  box-shadow: var(--admin-shadow);
}

.admin-subnav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.admin-subnav-title {
  flex: 0 0 auto;
}

.admin-subnav h1 {
  margin: 0;
  color: var(--admin-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
  white-space: nowrap;
}

.admin-subnav-actions {
  flex: 1 1 auto;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 8px;
  margin: 0;
  overflow-x: auto;
  padding-bottom: 2px;
}

.admin-subnav-actions .button {
  min-height: 38px;
  padding: 10px 12px;
  white-space: nowrap;
  font-size: 12px;
}

.admin-subnav-search-row {
  display: grid;
  grid-template-columns: minmax(170px, 0.28fr) minmax(260px, 1fr);
  gap: 14px;
  align-items: end;
  margin-top: 14px;
  padding: 14px;
  background: rgba(255, 250, 241, 0.72);
  border: 1px solid rgba(219, 200, 175, 0.72);
  border-radius: 8px;
}

.admin-subnav-search-row .section-kicker {
  margin-bottom: 5px;
}

.admin-subnav-search-row .admin-note {
  margin: 0;
  font-size: 14px;
}

.admin-subnav .admin-alert {
  margin: 12px 0 0;
}

.admin-dashboard .admin-panel {
  width: 100%;
  padding: 26px;
  background: rgba(255, 250, 241, 0.92);
  border: 1px solid var(--admin-border);
  border-top: 4px solid rgba(168, 178, 154, 0.72);
  border-radius: 8px;
  box-shadow: var(--admin-shadow);
}

.fulfillment-panel {
  margin-bottom: 18px;
}

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

.fulfillment-card {
  padding: 20px;
  background: var(--admin-panel);
  border: 1px solid var(--admin-border);
  border-radius: 8px;
}

.fulfillment-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--admin-muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.fulfillment-card strong {
  display: block;
  color: var(--admin-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.fulfillment-card p {
  margin-bottom: 0;
  color: var(--admin-muted);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.admin-stat-card {
  padding: 22px;
  background: var(--admin-panel);
  border: 1px solid var(--admin-border);
  border-top: 4px solid rgba(198, 163, 104, 0.7);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(75, 47, 33, 0.07);
}

.admin-stat-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--admin-muted);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-stat-card strong {
  display: block;
  color: var(--admin-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.05;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  align-items: start;
}

.admin-side {
  display: grid;
  gap: 18px;
}

.product-signups-layout {
  grid-template-columns: 1fr;
}

.product-signup-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.admin-panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.admin-panel + .admin-panel {
  margin-top: 54px;
}

.admin-side .admin-panel + .admin-panel {
  margin-top: 0;
}

.admin-panel h1 {
  font-size: 44px;
}

.admin-panel h3 {
  margin: 0 0 8px;
  color: var(--admin-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.2;
}

.admin-note {
  color: var(--admin-muted);
  font-size: 17px;
}

.launch-panel,
.admin-mini-grid {
  margin-bottom: 18px;
}

.launch-alert-list,
.mini-list,
.mini-actions {
  display: grid;
  gap: 10px;
}

.launch-alert-list span,
.mini-list span {
  display: block;
  padding: 12px 14px;
  color: var(--admin-muted);
  background: var(--admin-panel);
  border: 1px solid var(--admin-border);
  border-radius: 8px;
}

.launch-alert-list span:first-child {
  color: var(--admin-ink);
}

.mini-list strong {
  color: var(--admin-ink);
}

.admin-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.admin-dashboard .mini-panel {
  margin: 0;
}

.admin-dashboard .mini-panel h2 {
  font-size: 25px;
}

.analytics-panel {
  margin-bottom: 18px;
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.analytics-grid article,
.analytics-list {
  padding: 18px;
  background: var(--admin-panel);
  border: 1px solid var(--admin-border);
  border-radius: 8px;
}

.analytics-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--admin-muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.analytics-grid strong {
  display: block;
  color: var(--admin-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.analytics-grid em {
  display: block;
  margin-top: 8px;
  color: var(--admin-muted);
  font-size: 14px;
  font-style: normal;
}

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

.analytics-list h3 {
  margin: 0 0 12px;
  color: var(--admin-ink);
  font-size: 17px;
}

.analytics-list-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  color: var(--admin-muted);
  border-bottom: 1px solid var(--admin-border);
}

.analytics-list-row:last-child {
  border-bottom: 0;
}

.analytics-list-row strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--admin-ink);
}

.analytics-list-row em {
  flex: 0 0 auto;
  color: var(--admin-muted);
  font-style: normal;
  font-weight: 800;
}

.trend-panel {
  margin-bottom: 18px;
}

.trend-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.trend-summary-grid article {
  padding: 18px;
  background: var(--admin-panel);
  border: 1px solid var(--admin-border);
  border-radius: 8px;
}

.trend-summary-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--admin-muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.trend-summary-grid strong {
  color: var(--admin-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.sparkline-bars {
  display: grid;
  grid-template-columns: repeat(12, minmax(18px, 1fr));
  gap: 8px;
  align-items: end;
  min-height: 112px;
  margin-bottom: 18px;
  padding: 18px;
  background: var(--admin-panel);
  border: 1px solid var(--admin-border);
  border-radius: 8px;
}

.sparkline-bars span {
  display: grid;
  grid-template-rows: 78px auto;
  gap: 8px;
  align-items: end;
  justify-items: center;
  min-width: 0;
}

.sparkline-bars progress {
  appearance: none;
  display: block;
  width: 100%;
  height: 72px;
  border: 0;
  background: transparent;
  color: rgba(137, 153, 126, 0.92);
  direction: rtl;
  writing-mode: vertical-lr;
}

.sparkline-bars progress::-webkit-progress-bar {
  background: rgba(137, 153, 126, 0.12);
  border-radius: 6px 6px 3px 3px;
}

.sparkline-bars progress::-webkit-progress-value {
  background: linear-gradient(180deg, rgba(137, 153, 126, 0.92), rgba(198, 163, 104, 0.82));
  border-radius: 6px 6px 3px 3px;
}

.sparkline-bars progress::-moz-progress-bar {
  background: linear-gradient(180deg, rgba(137, 153, 126, 0.92), rgba(198, 163, 104, 0.82));
  border-radius: 6px 6px 3px 3px;
}

.sparkline-bars em {
  color: var(--admin-muted);
  font-size: 12px;
  font-style: normal;
}

.compact-table-wrap {
  max-height: 420px;
}

.trend-table {
  min-width: 760px;
}

.time-metrics-grid {
  margin-bottom: 18px;
}

.mini-trend-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.mini-trend-list span {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  color: var(--admin-muted);
  border-bottom: 1px solid rgba(219, 200, 175, 0.74);
}

.mini-trend-list em {
  font-style: normal;
}

.admin-wide-search span {
  display: block;
  margin-bottom: 8px;
  color: var(--admin-ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-wide-search input {
  width: 100%;
}

.admin-subnav-search-row .admin-wide-search input {
  background: var(--admin-panel);
  border-color: var(--admin-border);
}

.resend-email-form {
  margin-top: 8px;
}

.text-admin-button {
  padding: 0;
  color: var(--editorial-sepia);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

.admin-muted {
  color: var(--admin-muted);
  font-size: 13px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.bulk-order-actions {
  align-items: end;
  position: sticky;
  top: 8px;
  z-index: 20;
  padding: 12px;
  border: 1px solid rgba(40, 49, 45, 0.14);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 20px rgba(40, 49, 45, 0.08);
}

.bulk-order-actions > .admin-muted {
  flex: 1 1 320px;
  align-self: center;
  max-width: 520px;
}

.table-select-all {
  display: inline-grid;
  grid-template-columns: 18px auto;
  align-items: center;
  gap: 8px;
  min-width: 86px;
  cursor: pointer;
}

.table-select-all input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--admin-ink);
}

#keepsake-orders,
[id^="keepsake-order-"] {
  scroll-margin-top: 24px;
}

.operations-command-center,
.data-freshness-panel {
  scroll-margin-top: 6rem;
}

.operations-queue-grid,
.freshness-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.operations-queue-grid a,
.freshness-grid article {
  display: grid;
  gap: 4px;
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(40, 49, 45, 0.16);
  border-radius: 6px;
  background: #fff;
  color: inherit;
  text-decoration: none;
}

.operations-queue-grid a:hover,
.operations-queue-grid a:focus-visible {
  border-color: #925f50;
  background: #fff9f6;
}

.operations-queue-grid strong,
.freshness-grid strong {
  font-size: 23px;
}

.freshness-grid article.is-healthy {
  border-left: 4px solid #3f7659;
}

.freshness-grid article.needs-attention {
  border-left: 4px solid #a14f46;
  background: #fff8f6;
}

.order-status-tabs a {
  color: inherit;
  text-decoration: none;
}

.order-status-tabs a[aria-current="page"] {
  border-color: #925f50;
  background: #fff4ef;
}

.admin-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  padding-top: 16px;
}

.admin-pagination a {
  min-width: 36px;
  padding: 7px 10px;
  border: 1px solid rgba(40, 49, 45, 0.2);
  border-radius: 4px;
  color: inherit;
  text-align: center;
  text-decoration: none;
}

.admin-pagination a[aria-current="page"] {
  background: #925f50;
  color: #fff;
}

.customer-timeline ol {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.customer-timeline li {
  display: grid;
  grid-template-columns: minmax(160px, 0.7fr) minmax(180px, 1fr) minmax(180px, 1.4fr);
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(40, 49, 45, 0.12);
}

.customer-timeline time,
.customer-timeline span {
  color: var(--admin-muted);
}

@media (max-width: 720px) {
  .customer-timeline li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.admin-save-toast {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 1000;
  max-width: min(420px, calc(100vw - 36px));
  margin: 0;
  padding: 12px 16px;
  color: var(--admin-ink);
  background: var(--admin-panel);
  border: 1px solid var(--admin-gold);
  border-radius: 8px;
  box-shadow: var(--admin-shadow);
  font-weight: 800;
}

.admin-hero .admin-actions {
  margin: 0;
}

.inline-admin-form {
  margin: 0;
}

.admin-toolbar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(190px, 0.4fr);
  gap: 12px;
  margin-bottom: 18px;
}

.fulfillment-toolbar {
  grid-template-columns: minmax(180px, 0.9fr) minmax(190px, 1fr) minmax(170px, 0.85fr) minmax(160px, 0.8fr) auto;
  align-items: end;
}

.admin-toolbar label span {
  display: block;
  margin-bottom: 8px;
  color: var(--admin-ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-email-link {
  color: var(--editorial-sepia);
  font-weight: 800;
  text-decoration: none;
}

.admin-email-link:hover {
  text-decoration: underline;
}

.admin-pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 4px 10px;
  color: var(--editorial-sepia);
  background: #f2e7d8;
  border: 1px solid #dcc8ad;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.admin-pill.success {
  color: var(--admin-sage-deep);
  background: #e9ede2;
  border-color: #c7d0ba;
}

.admin-pill.warning {
  color: #8a684a;
  background: #f8e2d8;
  border-color: #e9cabb;
}

.admin-breakdown,
.admin-source-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.breakdown-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px;
  gap: 10px;
  align-items: center;
}

.breakdown-row strong,
.breakdown-row span,
.breakdown-row em {
  display: block;
}

.breakdown-row strong {
  color: var(--admin-ink);
}

.breakdown-row span,
.breakdown-row em {
  color: var(--admin-muted);
  font-size: 14px;
  font-style: normal;
}

.breakdown-row meter {
  grid-column: 1 / -1;
  width: 100%;
  height: 9px;
}

.admin-source-list span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  color: var(--admin-muted);
  border-bottom: 1px solid var(--admin-border);
}

.admin-source-list strong {
  color: var(--admin-ink);
}

.csv-preview-label {
  display: block;
  margin-bottom: 10px;
  color: var(--admin-ink);
  font-weight: 800;
}

.csv-preview {
  width: 100%;
  min-height: 260px;
  padding: 16px;
  color: var(--admin-ink);
  background: #fffdf8;
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  font: 14px/1.5 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  resize: vertical;
}

.admin-alert {
  padding: 12px 14px;
  color: #8a684a;
  background: #f8e2d8;
  border: 1px solid #e9cabb;
  border-radius: 8px;
}

.privacy-reminder {
  margin: 14px 0 18px;
}

.privacy-reminder strong {
  color: var(--admin-ink);
}

.privacy-note {
  max-width: 760px;
  padding-left: 12px;
  border-left: 4px solid var(--gold);
}

.success-alert {
  color: var(--admin-sage-deep);
  background: #e9ede2;
  border-color: #ccd5c1;
}

.fulfillment-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.fulfillment-summary span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  color: var(--admin-muted);
  background: var(--admin-panel);
  border: 1px solid var(--admin-border);
  border-radius: 999px;
  font-size: 14px;
}

.fulfillment-summary strong {
  color: var(--admin-ink);
}

.inventory-alert-list .alert-danger {
  color: #744d3b;
  background: #f8e2d8;
  border-color: #e9cabb;
}

.inventory-alert-list .alert-warning {
  color: #765c2e;
  background: #f7efd8;
  border-color: #e3d0a3;
}

.inventory-runway-panel {
  margin-bottom: 18px;
}

.inventory-runway-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.inventory-runway-grid article {
  display: grid;
  gap: 8px;
  padding: 18px;
  color: var(--admin-muted);
  background: var(--admin-panel);
  border: 1px solid var(--admin-border);
  border-radius: 8px;
}

.inventory-runway-grid article.alert-danger {
  color: #744d3b;
  background: #f8e2d8;
  border-color: #e9cabb;
}

.inventory-runway-grid article.alert-warning {
  color: #765c2e;
  background: #f7efd8;
  border-color: #e3d0a3;
}

.inventory-runway-grid span {
  color: var(--admin-muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.inventory-runway-grid strong {
  color: var(--admin-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.inventory-runway-grid em,
.inventory-runway-grid small {
  color: inherit;
  font-size: 14px;
  font-style: normal;
  line-height: 1.45;
}

.admin-panel .signup-form {
  display: grid;
  gap: 12px;
}

.admin-table-wrap {
  overflow-x: auto;
  background: var(--admin-panel);
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(75, 47, 33, 0.08);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1080px;
}

.admin-table th,
.admin-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(219, 200, 175, 0.74);
}

.admin-table th {
  color: var(--editorial-sepia);
  background: #f5ecdf;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-table tbody tr:hover td {
  background: rgba(233, 237, 226, 0.36);
}

.admin-note-cell {
  min-width: 220px;
  max-width: 340px;
  color: var(--admin-muted);
}

.admin-address-cell {
  min-width: 210px;
  max-width: 300px;
  color: var(--admin-muted);
}

.fulfillment-edit-cell {
  min-width: 270px;
}

.fulfillment-edit-cell form {
  display: grid;
  gap: 10px;
}

.fulfillment-edit-cell label span {
  display: block;
  margin-bottom: 6px;
  color: var(--admin-ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.fulfillment-edit-cell select,
.fulfillment-edit-cell textarea {
  min-height: 44px;
}

.fulfillment-edit-cell textarea {
  min-height: 82px;
}

.compact-button {
  min-height: 40px;
  padding: 0 14px;
  justify-self: start;
}

.inventory-panel {
  margin-bottom: 18px;
}

.inventory-table {
  min-width: 1040px;
}

.inventory-table th:nth-child(1),
.inventory-table td:nth-child(1) {
  width: 28%;
}

.inventory-table th:nth-child(2),
.inventory-table td:nth-child(2) {
  width: 18%;
}

.inventory-row-form {
  display: grid;
  grid-template-columns: minmax(88px, 0.7fr) minmax(130px, 0.95fr) max-content auto;
  gap: 10px;
  align-items: end;
  min-width: 520px;
  max-width: 100%;
}

.inventory-row-form label span {
  display: block;
  margin-bottom: 6px;
  color: var(--admin-ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.inventory-row-form input[type="number"] {
  width: 100%;
  min-height: 42px;
}

.inventory-check {
  display: grid;
  grid-template-rows: auto 42px;
  justify-items: center;
  align-items: end;
  align-self: end;
  gap: 6px;
  color: var(--admin-ink);
  font-size: 14px;
  font-weight: 800;
}

.inventory-check span {
  display: block;
  margin-bottom: 0;
  font-size: 12px;
  text-transform: uppercase;
  white-space: nowrap;
}

.inventory-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  align-self: center;
  accent-color: var(--admin-sage);
}

.inventory-row-form .compact-button {
  justify-self: end;
  align-self: center;
  min-width: 96px;
}

.inventory-key {
  display: block;
  margin-top: 8px;
}

.manual-order-form {
  display: grid;
  gap: 16px;
  margin: 18px 0 22px;
  padding: 18px;
  background: var(--admin-panel-soft);
  border: 1px solid var(--admin-border);
  border-radius: 8px;
}

.manual-order-form .compact-heading {
  gap: 12px;
  margin-bottom: 0;
}

.manual-order-grid,
.manual-order-personalization {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 12px;
}

.manual-order-form label span {
  display: block;
  margin-bottom: 7px;
  color: var(--admin-ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.manual-order-form input,
.manual-order-form select,
.manual-order-form textarea {
  width: 100%;
  border: 1px solid var(--admin-border);
  border-radius: 6px;
  background: #fffaf1;
  color: var(--admin-ink);
  font: inherit;
}

.manual-order-form input,
.manual-order-form select {
  min-height: 42px;
  padding: 0 10px;
}

.manual-order-form textarea {
  padding: 10px;
  resize: vertical;
}

.manual-order-wide {
  grid-column: span 2;
}

.order-table {
  min-width: 1160px;
}

.customer-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.customer-detail-grid article {
  padding: 22px;
  background: var(--admin-panel);
  border: 1px solid var(--admin-border);
  border-radius: 8px;
}

.customer-detail-grid h2 {
  margin-bottom: 12px;
  font-size: 28px;
}

.customer-detail-grid p {
  color: var(--admin-muted);
}

.customer-detail-grid strong {
  color: var(--admin-ink);
}

.customer-detail-wide {
  grid-column: 1 / -1;
}

.email-preview-panel {
  padding: 18px;
}

.email-preview-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.email-preview-heading h2 {
  margin: 0 0 4px;
  color: var(--admin-ink);
}

.email-preview-frame {
  width: 100%;
  min-height: 760px;
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  background: var(--admin-bg);
}

.security-panel h2 {
  font-size: 32px;
}

.admin-dashboard > .security-panel {
  margin-top: 18px;
}

.cost-filter-toolbar {
  grid-template-columns: minmax(240px, 1fr) minmax(190px, 0.5fr) auto;
  align-items: end;
}

.cost-margin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.cost-margin-card {
  padding: 24px;
  background: #e9ede2;
  border: 1px solid var(--admin-sage);
  border-radius: 8px;
}

.cost-margin-card span,
.cost-margin-card strong {
  display: block;
}

.cost-margin-card span {
  color: var(--admin-muted);
  font-weight: 800;
}

.cost-margin-card strong {
  color: var(--admin-sage-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
}

.cost-comparison {
  margin-bottom: 18px;
}

.cost-comparison-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(2, minmax(180px, 1fr));
  overflow: hidden;
  border: 1px solid var(--admin-border);
  border-radius: 8px;
}

.cost-comparison-grid > div {
  display: grid;
  border-right: 1px solid var(--admin-border);
}

.cost-comparison-grid > div:last-child {
  border-right: 0;
}

.cost-comparison-grid strong,
.cost-comparison-grid span {
  padding: 11px 14px;
  border-bottom: 1px solid var(--admin-border);
}

.cost-comparison-grid strong {
  background: #e9ede2;
}

.cost-settings-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.cost-new-item {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(150px, 0.7fr));
  gap: 12px;
  margin-top: 18px;
}

.cost-new-item label {
  font-weight: 800;
}

.cost-new-item input,
.cost-new-item select {
  width: 100%;
}

.cost-settings-row label {
  font-weight: 800;
}

.cost-settings-row input,
.cost-table input {
  width: 100%;
}

.cost-table {
  min-width: 760px;
}

.cost-table + .button,
.cost-dashboard .admin-panel form > .button {
  margin-top: 18px;
}

.cost-batch-stats {
  margin-top: 18px;
}

.cost-calculator-form {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}

.cost-type-selector {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  border: 0;
}

.cost-type-selector legend {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.cost-type-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  min-height: 78px;
  padding: 16px;
  color: var(--admin-ink);
  background: #fffaf1;
  border: 2px solid var(--admin-border);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(75, 47, 33, 0.06);
  cursor: pointer;
  font: inherit;
  text-align: left;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.cost-type-card:hover {
  border-color: var(--admin-sage);
  box-shadow: 0 14px 30px rgba(75, 47, 33, 0.09);
  transform: translateY(-1px);
}

.cost-type-dot {
  width: 20px;
  height: 20px;
  border: 2px solid var(--admin-sage);
  border-radius: 50%;
  background: #fffaf1;
  margin-top: 2px;
  flex: 0 0 auto;
}

.cost-type-card > span:last-child {
  display: grid;
  gap: 4px;
}

.cost-type-card strong,
.cost-type-card em {
  display: block;
}

.cost-type-card strong {
  font-size: 15px;
  line-height: 1.15;
}

.cost-type-card em {
  color: var(--admin-muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.cost-type-card.is-active {
  color: #fffaf1;
  background: var(--admin-sage-deep);
  border-color: var(--admin-sage-deep);
  box-shadow: 0 16px 34px rgba(60, 82, 55, 0.22);
}

.cost-type-card.is-active .cost-type-dot {
  border-color: #fffaf1;
  background: radial-gradient(circle, #fffaf1 0 35%, transparent 40%);
}

.cost-type-card.is-active em {
  color: rgba(255, 250, 241, 0.78);
}

.cost-current-choice {
  margin: -4px 0 0;
  padding: 12px 14px;
  color: var(--admin-sage-deep);
  background: #e9ede2;
  border: 1px solid var(--admin-sage);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.cost-picker-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(180px, 0.4fr);
  gap: 12px;
  align-items: end;
}

.cost-picker-grid label span {
  display: block;
  margin-bottom: 8px;
  color: var(--admin-ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.cost-calculator-form > .button {
  justify-self: start;
}

.cost-report-panel {
  margin-bottom: 18px;
}

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

.cost-report-grid article {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: var(--admin-panel);
  border: 1px solid var(--admin-border);
  border-radius: 8px;
}

.cost-report-grid strong {
  color: var(--admin-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.cost-report-grid span {
  color: var(--admin-muted);
}

.cost-report-grid article div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cost-section-panel {
  margin-bottom: 18px;
}

.cost-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.cost-product-card {
  display: grid;
  gap: 7px;
  padding: 16px;
  color: var(--admin-muted);
  background: var(--admin-panel);
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  text-decoration: none;
}

.cost-product-card:hover {
  border-color: var(--admin-sage);
  box-shadow: var(--admin-shadow);
}

.cost-product-card strong {
  color: var(--admin-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.cost-product-card span,
.cost-product-card em {
  font-size: 14px;
  font-style: normal;
}

.cost-section-summary {
  margin-bottom: 0;
}

.packing-page {
  background: var(--paper);
}

.packing-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 34px;
}

.packing-item {
  display: grid;
  gap: 8px;
  padding: 16px;
  background: #fffefb;
  border: 1px solid var(--line);
  border-radius: 8px;
  break-inside: avoid;
}

.packing-item label {
  color: var(--warm-brown);
  font-weight: 800;
}

.packing-item strong {
  color: var(--ink);
  font-size: 18px;
}

.packing-item span,
.packing-item p {
  margin: 0;
  color: var(--muted);
}

@media print {
  .site-header,
  .no-print {
    display: none !important;
  }

  .legal-page {
    padding: 0;
  }

  .packing-item {
    box-shadow: none;
  }
}

@media (max-width: 760px) {
  .cost-filter-toolbar,
  .cost-margin-grid,
  .cost-settings-row,
  .cost-type-selector,
  .cost-picker-grid,
  .cost-report-grid {
    grid-template-columns: 1fr;
  }

  .admin-mini-grid {
    grid-template-columns: 1fr;
  }

  .manual-order-grid,
  .manual-order-personalization {
    grid-template-columns: 1fr;
  }

  .manual-order-wide {
    grid-column: auto;
  }

  .cost-new-item {
    grid-template-columns: 1fr;
  }

  .cost-comparison-grid {
    grid-template-columns: 1fr;
  }

  .cost-comparison-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

.legal-page {
  padding: 82px 40px;
}

.legal-content {
  width: min(880px, 100%);
  margin: 0 auto;
}

.legal-content p {
  color: var(--muted);
  font-size: 18px;
}

.legal-content h2 {
  margin-top: 42px;
  font-size: 32px;
}

@media (max-width: 920px) {
  .site-header {
    position: sticky;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 16px 22px;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px 18px;
  }

  .menu-ready .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .menu-ready .nav-links {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding-top: 12px;
    border-top: 1px solid rgba(75, 47, 33, 0.18);
  }

  .menu-ready .nav-open .nav-links {
    display: grid;
  }

  .menu-ready .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 4px;
  }

  .menu-ready .nav-links .mobile-nav-blog {
    display: flex;
  }

  .admin-dashboard {
    width: min(100% - 44px, 1240px);
    padding: 42px 0 68px;
  }

  .admin-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-hero h1 {
    font-size: 44px;
  }

  .admin-subnav-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-subnav-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .admin-subnav-search-row {
    width: 100%;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .admin-stats,
  .admin-layout,
  .analytics-grid,
  .analytics-list-grid,
  .trend-summary-grid,
  .fulfillment-grid {
    grid-template-columns: 1fr;
  }

  .sparkline-bars {
    grid-template-columns: repeat(6, minmax(18px, 1fr));
  }

  .product-signup-summary {
    grid-template-columns: 1fr;
  }

  .admin-toolbar {
    grid-template-columns: 1fr;
  }

  .fulfillment-toolbar {
    grid-template-columns: 1fr;
  }

  .collection-feature {
    align-items: flex-start;
    flex-direction: column;
  }

  .collection-hero-art img:last-child {
    margin-top: 0;
  }

  .hero {
    min-height: 680px;
    padding: 72px 22px 54px;
  }

  .editorial-hero,
  .founder-story-band,
  .closing-memory-band {
    grid-template-columns: 1fr;
  }

  .editorial-hero {
    min-height: auto;
  }

  .editorial-hero-full-image {
    height: 620px;
    object-position: 58% center;
  }

  .editorial-hero::before {
    background: linear-gradient(180deg, rgba(255, 250, 241, 0.92) 0%, rgba(255, 250, 241, 0.76) 35%, rgba(255, 250, 241, 0.08) 74%, rgba(255, 250, 241, 0) 100%);
  }

  .editorial-hero .hero-image-cta {
    width: 220px;
    min-height: 48px;
  }

  .editorial-hero-copy {
    top: 34px;
    left: 32px;
    width: min(420px, calc(100% - 64px));
    transform: none;
  }

  .editorial-hero-image {
    min-height: 430px;
  }

  .story-path-grid {
    grid-template-columns: 1fr;
  }

  .story-path-card {
    min-height: 390px;
  }

  .story-path-card div {
    width: min(40%, 300px);
  }

  .coming-soon-signup .coming-soon-grid,
  .coming-soon-wide-form {
    grid-template-columns: 1fr;
  }

  .coming-soon-signup .giftable-card {
    min-height: 300px;
  }

  .coming-soon-signup .giftable-card > div {
    width: min(50%, 360px);
  }

  .founder-story-band > img {
    height: 420px;
  }

  .founder-story-copy {
    width: min(100% - 44px, 680px);
    margin: 0 auto;
    padding: var(--homepage-section-y-mobile) 0;
  }

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

  .editorial-how-it-works {
    grid-template-columns: 1fr;
    padding: var(--homepage-section-y-mobile) 22px;
  }

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

  .editorial-step:not(:last-child)::after {
    display: none;
  }

  .editorial-how-it-works > img {
    height: 300px;
  }

  .editorial-how-it-works > img.how-it-works-product-photo {
    object-position: center;
  }

  .closing-memory-band blockquote {
    padding: var(--homepage-section-y-mobile) 22px 24px;
  }

  .subpage-hero {
    grid-template-columns: 1fr;
    gap: 34px;
    width: min(100% - 44px, 1180px);
    min-height: auto;
    padding: 64px 0;
  }

  .subscription-hero-logo-art {
    min-height: auto;
  }

  .subscription-hero-logo-art .subscription-detail-logo {
    width: min(96px, 28vw);
  }

  .join-page {
    grid-template-columns: 1fr;
    gap: 34px;
    width: min(100% - 44px, 1180px);
    min-height: auto;
    padding: 64px 0;
  }

  .story-hero,
  .story-section {
    grid-template-columns: 1fr;
    gap: 34px;
    width: min(100% - 44px, 1180px);
  }

  .story-hero {
    min-height: auto;
    padding: 64px 0;
  }

  .our-story-page .story-hero {
    padding: 44px 0 28px;
  }

  .story-notes {
    margin-top: 0;
  }

  .story-photo {
    min-height: 420px;
  }

  .page-stack {
    min-height: 470px;
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(247, 243, 236, 0.96) 0%, rgba(247, 243, 236, 0.76) 58%, rgba(247, 243, 236, 0.42) 100%),
      linear-gradient(0deg, var(--cream) 0%, rgba(247, 243, 236, 0) 30%);
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  .intro-band,
  .section,
  .product-section,
  .heirloom-band,
  .quote-band,
  .subscribe-section,
  .join-section {
    padding: var(--homepage-section-y-mobile) 22px;
  }

  .intro-grid,
  .two-column,
  .product-section,
  .heirloom-band,
  .subscribe-section,
  .join-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

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

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

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

  .product-story-grid,
  .product-audience-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

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

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

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

  .blog-topic-lane:nth-child(even) {
    border-right: 0;
  }

  .blog-topic-lane:nth-child(n + 3) {
    border-top: 1px solid var(--editorial-line);
  }

  blockquote {
    font-size: 34px;
  }
}

@media (max-width: 640px) {
  .blog-topic-lanes {
    grid-template-columns: 1fr;
  }

  .blog-topic-lane {
    min-height: 0;
    border-top: 1px solid var(--editorial-line);
    border-right: 0;
  }

  .blog-topic-lane:first-child {
    border-top: 0;
  }

  .site-header {
    gap: 10px;
    padding: 12px 16px;
  }

  .site-footer {
    padding: 28px 22px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 22px 28px;
  }

  .footer-brand,
  .footer-tagline,
  .footer-connect {
    grid-column: 1 / -1;
  }

  .footer-tagline {
    padding: 18px 0 0;
    border-top: 1px solid rgba(255, 250, 242, 0.22);
    border-left: 0;
  }

  .brand {
    gap: 8px;
    font-size: 17px;
  }

  .brand-wordmark {
    max-width: none;
    font-size: 18px;
  }

  .brand-wordmark span,
  .brand-wordmark em {
    font-size: inherit;
  }

  .footer-wordmark {
    font-size: 18px;
  }

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

  .subscription-title-logo {
    width: 48px;
    height: 48px;
    max-width: none;
  }

  .subscription-detail-page .subscription-title-logo,
  .keepsake-detail-page .subscription-title-logo {
    width: 96px;
    height: 96px;
  }

  .keepsake-detail-page .logo-art img {
    width: clamp(180px, 58vw, 240px);
    height: clamp(180px, 58vw, 240px);
  }

  .subscription-logo {
    width: 82px;
    height: 82px;
    max-width: none;
  }

  .kit-logo {
    width: 82px;
    height: 82px;
    max-width: none;
  }

  .header-actions {
    display: none;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .menu-ready .nav-links {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 640px;
  }

  .story-paths-section,
  .loved-collections-section {
    padding: var(--homepage-section-y-mobile) 18px;
  }

  .story-path-card {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .story-path-card > img {
    position: relative;
    inset: auto;
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .story-path-card .story-path-icon {
    aspect-ratio: 1;
    width: 36px;
    height: 36px;
  }

  .story-path-card div {
    width: 100%;
    padding: 24px;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(139, 106, 80, 0.18);
  }

  .loved-collection-grid,
  .editorial-step-grid {
    grid-template-columns: 1fr;
  }

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

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

  .personalization-grid.perfect-for-grid {
    grid-template-columns: 1fr;
  }

  .included-card {
    min-height: 0;
  }

  .editorial-hero h1 {
    font-size: clamp(42px, 8vw, 58px);
  }

  .editorial-hero::before {
    background: linear-gradient(180deg, rgba(255, 250, 241, 0.97) 0%, rgba(255, 250, 241, 0.92) 48%, rgba(255, 250, 241, 0.4) 72%, rgba(255, 250, 241, 0) 100%);
  }

  .editorial-hero .hero-support {
    max-width: 340px;
  }

  .editorial-hero .hero-image-cta {
    width: min(220px, calc(100% - 44px));
    min-height: 46px;
    transform: none;
    color: #fffaf2;
    background: var(--editorial-brown);
    border-color: var(--editorial-brown);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .editorial-quote-band {
    padding: 28px 18px;
  }

  .page-stack {
    min-height: 390px;
  }

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

  .keepsake-page .giftable-grid {
    grid-template-columns: 1fr;
  }

  .coming-soon-signup .giftable-card {
    grid-template-columns: 1fr;
    display: grid;
    min-height: 0;
  }

  .coming-soon-signup .giftable-card > img {
    position: relative;
    inset: auto;
    aspect-ratio: 16 / 10;
    height: auto;
    min-height: 0;
  }

  .coming-soon-signup .giftable-card > div {
    width: 100%;
    padding: 24px;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(139, 106, 80, 0.18);
  }

  .story-photo {
    min-height: 340px;
  }

  h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 31px;
  }

  h3 {
    font-size: 24px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  .subscription-price {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .subscription-facts,
  .compact-list {
    grid-template-columns: 1fr;
  }

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

  .step h3,
  .step p {
    grid-column: auto;
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }

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

  .plan-grid.subscription-grid {
    grid-template-columns: 1fr;
  }

  .product-gallery img:nth-child(2) {
    transform: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  button {
    width: 100%;
  }

  .footer-social {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
