:root {
  --oat: #f8f3e9;
  --oat-deep: #eee6d7;
  --teal-dark: #173d40;
  --teal: #1d8e88;
  --teal-soft: #d9efea;
  --coral: #f48660;
  --coral-dark: #d85f41;
  --ink-soft: #506366;
  --muted: #687978;
  --line: #ded9cb;
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --shadow-soft: 0 16px 50px rgba(29, 58, 61, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--oat);
  color: var(--teal-dark);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
button, a, input { font: inherit; -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
svg { display: block; }

.prinmart-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 92% 4%, rgba(245, 129, 89, .08), transparent 24rem),
    radial-gradient(circle at 4% 38%, rgba(54, 164, 157, .08), transparent 26rem),
    var(--oat);
}
.grain::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: .038;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.3'/%3E%3C/svg%3E");
}
.container { width: min(1280px, calc(100% - 40px)); margin: 0 auto; }
.coral { color: var(--coral); }
.teal { color: var(--teal); }
.label, .eyebrow, .vertical-note, .field-note, .footer-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.promo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 34px;
  padding: 8px 20px;
  background: var(--teal-dark);
  color: var(--oat);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-align: center;
  text-transform: uppercase;
}
.promo-bar span { opacity: .7; }
.promo-bar b { color: var(--coral); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(222, 217, 203, .8);
  background: rgba(248, 243, 233, .9);
  backdrop-filter: blur(18px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.06em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: var(--coral);
  color: var(--teal-dark);
  box-shadow: 4px 4px 0 var(--coral-dark);
  transition: transform .25s ease;
}
.brand:hover .brand-mark { transform: translateY(-2px); }
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}
.desktop-nav a, .footer-links a, .footer-links button { transition: color .2s ease; }
.desktop-nav a:hover, .footer-links a:hover, .footer-links button:hover { color: var(--coral); }
.header-actions { display: flex; align-items: center; gap: 6px; }
.icon-button, .menu-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--teal-dark);
  transition: background .2s ease, transform .2s ease;
}
.icon-button:hover { background: #e9e2d4; transform: translateY(-1px); }
.badge-button { overflow: visible; }
.count-badge {
  position: absolute;
  top: 0;
  right: -1px;
  display: grid;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  place-items: center;
  border-radius: 99px;
  background: var(--coral);
  color: var(--teal-dark);
  font-size: 9px;
  font-weight: 700;
}
.cart-count { background: var(--teal); color: var(--oat); }
.menu-button {
  display: none;
  margin-left: 4px;
  background: var(--teal-dark);
  color: var(--oat);
}
.search-bar, .mobile-nav {
  border-top: 1px solid var(--line);
  background: #f5efe3;
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px max(20px, calc((100% - 1280px) / 2));
}
.search-leading { color: var(--teal); }
.search-bar input {
  flex: 1;
  min-width: 0;
  padding: 8px 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--teal-dark);
  font-size: 14px;
}
.search-bar input::placeholder { color: #8a9998; }
.clear-button { display: grid; place-items: center; border: 0; background: transparent; color: var(--teal-dark); }
.mobile-nav { padding: 12px 20px 16px; }
.mobile-nav a { display: block; padding: 11px 12px; border-radius: 12px; font-size: 15px; font-weight: 700; }
.mobile-nav a:hover { background: #ece4d5; }

.hero-section { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero-grid {
  display: grid;
  min-height: 610px;
  align-items: center;
  grid-template-columns: .93fr 1.07fr;
  gap: 32px;
  padding-top: 64px;
  padding-bottom: 64px;
}
.eyebrow { display: flex; align-items: center; gap: 8px; color: var(--teal); }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-display); }
h1 {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(3.55rem, 8vw, 7.25rem);
  font-weight: 600;
  letter-spacing: -.085em;
  line-height: .89;
}
.hero-description {
  max-width: 430px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 36px; }
.primary-button, .dark-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease;
}
.primary-button {
  padding: 14px 24px;
  background: var(--coral);
  color: var(--teal-dark);
  box-shadow: 5px 5px 0 var(--coral-dark);
}
.primary-button:hover { transform: translate(-1px, -2px); box-shadow: 7px 7px 0 var(--coral-dark); }
.text-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 8px;
  border: 0;
  background: transparent;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--teal);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
.text-button:hover { color: var(--teal); }
.trust-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 54px;
  color: #7b8a89;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-icon { color: var(--teal); }
.hero-visual { position: relative; min-height: 510px; }
.hero-disc {
  position: absolute;
  top: 6%;
  right: 3%;
  width: min(420px, 55vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--teal-soft);
}
.hero-ring {
  position: absolute;
  bottom: 2%;
  left: 4%;
  width: 140px;
  aspect-ratio: 1;
  border: 14px solid rgba(244, 134, 96, .25);
  border-radius: 50%;
}
.vertical-note {
  position: absolute;
  top: 11%;
  right: 14%;
  z-index: 2;
  color: var(--teal);
  letter-spacing: .24em;
  writing-mode: vertical-rl;
}
.hero-printer {
  position: absolute;
  top: 9%;
  left: 3%;
  z-index: 1;
  width: 98%;
  max-width: 610px;
  height: auto;
  mix-blend-mode: multiply;
  animation: drift 7s ease-in-out infinite;
}
.rating-card {
  position: absolute;
  bottom: 7%;
  left: 5%;
  z-index: 3;
  padding: 12px 16px;
  border: 1px solid #d9d2c4;
  border-radius: 16px;
  background: rgba(248, 243, 233, .9);
  box-shadow: 0 10px 30px rgba(29, 61, 64, .1);
  backdrop-filter: blur(8px);
}
.stars { display: flex; gap: 2px; margin-bottom: 4px; color: var(--coral); }
.rating-card p { margin: 0; font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hero-section::after { content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: rgba(29, 142, 136, .3); }

.section { padding-top: 112px; padding-bottom: 112px; }
.section-heading, .shop-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 40px; }
.section-heading h2, .shop-heading h2, .why-copy h2, .journal-copy h2, .recommendation-card h2 {
  margin: 0;
  font-size: clamp(2.35rem, 4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -.06em;
  line-height: .96;
}
.section-heading > p, .shop-heading > p { max-width: 260px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  overflow: hidden;
  padding: 0;
  border: 2px solid #c9c2b0;
  border-radius: 24px;
  text-align: left;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  will-change: transform;
  transform: translateZ(0);
}
.category-card:hover { transform: translateY(-4px) translateZ(0); border-color: var(--teal); box-shadow: var(--shadow-soft); }
.category-visual { position: relative; flex: 1 1 auto; min-height: 200px; overflow: hidden; }
.category-icon { position: absolute; top: 18px; left: 18px; z-index: 2; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(248, 243, 233, .85); color: var(--teal-dark); }
.category-content { position: relative; z-index: 2; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; padding: 18px 20px 22px; background: inherit; }
.category-text { display: flex; flex-direction: column; min-width: 0; }
.category-text strong { display: block; margin: 0; font-size: 26px; font-weight: 700; letter-spacing: -.05em; line-height: 1.08; color: var(--ink); word-wrap: break-word; }
.category-text span { display: block; margin: 6px 0 0; color: var(--ink-soft); font-size: 13px; line-height: 1.45; word-wrap: break-word; }
.category-art { position: absolute; inset: 0; width: 100%; height: 100%; padding: 14px; object-fit: contain; object-position: center 65%; mix-blend-mode: multiply; opacity: .9; transition: transform .5s cubic-bezier(.2,.75,.25,1); will-change: transform; }
.category-card:hover .category-art { transform: scale(1.06) rotate(1deg); }
.category-arrow { position: relative; z-index: 2; flex: 0 0 auto; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(248, 243, 233, .9); transition: transform .25s ease; }
.category-card:hover .category-arrow { transform: translateX(4px); }

.shop-section { padding: 112px 0; background: var(--teal-dark); color: var(--oat); }
.shop-heading { margin-bottom: 28px; }
.shop-heading h2 { font-size: clamp(2.75rem, 5vw, 4.5rem); color: var(--oat); }
.icon-label { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.shop-heading > p { color: #b4c4be; }
.filter-tabs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px; }
.filter-tab { white-space: nowrap; padding: 9px 16px; border: 1px solid #446466; border-radius: 99px; background: transparent; color: #b4c4be; font-size: 12px; font-weight: 700; transition: .2s ease; }
.filter-tab:hover { border-color: #c3ddd7; color: var(--oat); }
.filter-tab.active { border-color: var(--coral); background: var(--coral); color: var(--teal-dark); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 24px; }
.product-card { overflow: hidden; border-radius: 22px; background: var(--oat); color: var(--teal-dark); transition: transform .3s ease, box-shadow .3s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,.18); }
.product-art { position: relative; display: flex; align-items: center; justify-content: center; aspect-ratio: 1; overflow: hidden; }
.product-tag { position: absolute; top: 16px; left: 16px; z-index: 2; padding: 6px 12px; border-radius: 99px; background: var(--teal-dark); color: var(--oat); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.wishlist-product { position: absolute; top: 16px; right: 16px; z-index: 2; display: grid; place-items: center; width: 36px; height: 36px; border: 0; border-radius: 50%; background: rgba(248,243,233,.85); color: var(--teal-dark); transition: background .2s ease; }
.wishlist-product:hover, .wishlist-product.is-saved { background: var(--coral); }
.product-image { width: 92%; height: 88%; object-fit: contain; mix-blend-mode: multiply; transition: transform .45s cubic-bezier(.2,.75,.25,1); }
.product-card:hover .product-image { transform: translateY(-7px) scale(1.035); }
.product-content { padding: 20px; }
.product-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 8px; color: var(--coral); }
.product-rating small { margin-left: 4px; color: var(--muted); font-size: 11px; font-weight: 700; }
.product-content h3 { margin: 0; font-size: 22px; font-weight: 600; letter-spacing: -.05em; }
.product-kind { margin: 4px 0 20px; color: var(--muted); font-size: 12px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: var(--font-display); font-size: 18px; font-weight: 700; }
.add-button { display: grid; place-items: center; width: 36px; height: 36px; border: 0; border-radius: 50%; background: var(--teal); color: var(--oat); transition: transform .2s ease; }
.add-button:hover { transform: scale(1.08); }
.empty-state { margin-top: 24px; padding: 64px 24px; border: 1px dashed #557273; border-radius: 24px; text-align: center; }
.empty-state > span { display: block; margin: 0 auto 16px; color: var(--coral); }
.empty-state h3 { margin: 0; font-size: 24px; }
.empty-state p { margin: 8px 0 0; color: #b4c4be; font-size: 14px; }
.coral-button { margin-top: 18px; color: var(--coral); }
.center-action { display: flex; justify-content: center; margin-top: 40px; }
.footer-link-button, .subscribe-link { display: inline-flex; align-items: center; gap: 12px; padding: 0; border: 0; background: transparent; color: var(--oat); font-size: 14px; font-weight: 700; text-decoration: underline; text-decoration-color: var(--coral); text-decoration-thickness: 2px; text-underline-offset: 8px; }
.footer-link-button:hover span, .subscribe-link:hover span { transform: translateX(4px); }
.footer-link-button span, .subscribe-link span { transition: transform .2s ease; }

.why-section { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 48px; }
.why-copy > p:not(.label) { max-width: 340px; margin: 28px 0 0; color: var(--muted); font-size: 14px; line-height: 2; }
.why-copy .text-button { margin-top: 22px; }
.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.benefit-card { padding: 24px; border: 1px solid var(--line); border-radius: 22px; background: #f5efe4; }
.benefit-icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--teal-soft); color: var(--teal); }
.benefit-card h3 { margin: 32px 0 8px; font-size: 20px; font-weight: 600; letter-spacing: -.04em; }
.benefit-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.journal-section { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--oat-deep); }
.journal-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 40px; padding-top: 96px; padding-bottom: 96px; }
.journal-art { position: relative; min-height: 320px; }
.journal-disc { position: absolute; top: 5%; left: 8%; width: 360px; aspect-ratio: 1; border-radius: 50%; background: #cce5df; }
.journal-ring { position: absolute; top: 12%; left: 13%; width: 315px; aspect-ratio: 1; border: 1px solid rgba(29,142,136,.3); border-radius: 50%; }
.journal-card { position: absolute; top: 23%; left: 29%; z-index: 2; width: 190px; height: 220px; padding: 12px; transform: rotate(-8deg); background: var(--oat); box-shadow: 10px 14px 0 var(--coral); }
.journal-card > div, .journal-card { }
.journal-card::before { content: ""; position: absolute; inset: 12px; border: 1px solid #d8d2c4; pointer-events: none; }
.journal-card > span, .journal-card > strong, .journal-card > i, .journal-card > small { position: relative; z-index: 1; display: block; }
.journal-card > span { padding: 5px 6px; color: var(--coral); font-family: var(--font-display); font-size: 7px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.journal-card strong { margin: 22px 0 0 6px; font-family: var(--font-display); font-size: 30px; line-height: .86; letter-spacing: -.08em; }
.journal-card em { color: var(--teal); font-style: normal; }
.journal-card i { height: 1px; margin: 16px 6px 8px; background: rgba(23,61,64,.3); }
.journal-card small { margin-left: 6px; font-size: 7px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.field-note { position: absolute; bottom: 3%; left: 3%; z-index: 3; padding: 8px 12px; border-radius: 99px; background: var(--teal-dark); color: var(--oat); font-size: 9px; letter-spacing: .14em; }
.journal-copy { max-width: 450px; }
.journal-copy h2 { margin-top: 0; font-size: clamp(2.4rem, 4vw, 3.5rem); }
.journal-copy > p:not(.label) { margin: 24px 0 0; color: var(--muted); font-size: 15px; line-height: 1.85; }
.dark-button { margin-top: 28px; padding: 14px 20px; background: var(--teal-dark); color: var(--oat); }
.dark-button:hover { transform: translateY(-2px); }
.recommendation-card { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 48px 64px; border-radius: 28px; background: var(--coral); }
.recommendation-card .label { color: var(--teal-dark); opacity: .7; }
.recommendation-card h2 { margin-top: 10px; font-size: clamp(2.4rem, 4.5vw, 3.5rem); }
.recommendation-card .dark-button { flex: 0 0 auto; margin-top: 0; }

.site-footer { padding: 64px 0; background: var(--teal-dark); color: var(--oat); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-brand { font-size: 20px; }
.footer-brand .brand-mark { width: 36px; height: 36px; border-radius: 11px; box-shadow: none; }
.footer-intro { max-width: 250px; margin: 20px 0 0; color: #b4c4be; font-size: 14px; line-height: 1.7; }
.footer-label { margin: 0 0 20px; color: var(--coral); font-size: 10px; letter-spacing: .18em; }
.footer-links { display: flex; flex-direction: column; gap: 12px; color: #d3ded8; font-size: 14px; }
.footer-links button { padding: 0; border: 0; background: none; color: inherit; text-align: left; }
.subscribe-link { margin-top: 16px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 12px; margin-top: 56px; padding-top: 24px; border-top: 1px solid #3c6161; color: #89a09b; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

.toast { position: fixed; bottom: 20px; left: 50%; z-index: 50; display: flex; align-items: center; gap: 12px; max-width: calc(100% - 32px); padding: 12px 20px; transform: translateX(-50%); border-radius: 99px; background: var(--teal-dark); color: var(--oat); box-shadow: 0 12px 35px rgba(0,0,0,.2); font-size: 14px; font-weight: 700; animation: toast-in .35s cubic-bezier(.2,.75,.25,1) both; }
.toast > span:first-child { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: var(--coral); color: var(--teal-dark); }

.reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-visible { animation: reveal-up .7s cubic-bezier(.2,.75,.25,1) forwards; }
.reveal-delay-1 { animation-delay: .08s; }
.reveal-delay-2 { animation-delay: .16s; }
.reveal-delay-3 { animation-delay: .24s; }
.reveal-delay-4 { animation-delay: .32s; }
@keyframes reveal-up { to { opacity: 1; transform: translateY(0); } }
@keyframes drift { 0%,100% { transform: translate3d(0,0,0) rotate(-3deg); } 50% { transform: translate3d(0,-10px,0) rotate(-1deg); } }
@keyframes toast-in { from { opacity: 0; transform: translate(-50%, 12px) scale(.97); } to { opacity: 1; transform: translate(-50%, 0) scale(1); } }

@media (max-width: 1020px) {
  .desktop-nav { gap: 18px; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .product-grid, .category-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card { min-height: 300px; }
}
@media (max-width: 760px) {
  .container, .header-inner { width: min(100% - 40px, 640px); }
  .desktop-nav { display: none; }
  .menu-button { display: grid; }
  .hero-grid { display: block; min-height: 0; padding-top: 56px; padding-bottom: 0; }
  h1 { max-width: 590px; font-size: clamp(3.2rem, 16vw, 5.25rem); }
  .hero-description { font-size: 16px; }
  .trust-row { margin-top: 42px; }
  .trust-secondary { display: none !important; }
  .hero-visual { min-height: 380px; margin-top: 20px; }
  .hero-disc { top: 8%; right: 5%; width: 330px; }
  .hero-printer { top: 10%; left: 1%; width: 105%; }
  .hero-ring { width: 90px; height: 90px; border-width: 10px; }
  .section, .shop-section { padding-top: 80px; padding-bottom: 80px; }
  .section-heading, .shop-heading { display: block; }
  .section-heading > p, .shop-heading > p { margin-top: 18px; }
  .why-section, .journal-grid { display: block; }
  .benefit-grid { margin-top: 42px; }
  .journal-art { margin-bottom: 42px; }
  .recommendation-card { display: block; padding: 36px 28px; }
  .recommendation-card .dark-button { margin-top: 28px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .footer-bottom { display: block; line-height: 1.8; }
  .footer-bottom span { display: block; }
  .footer-bottom span + span { margin-top: 8px; }
}
@media (max-width: 520px) {
  .promo-bar { gap: 7px; font-size: 10px; letter-spacing: .1em; }
  .header-inner { height: 76px; }
  .brand { font-size: 21px; }
  .brand-mark { width: 40px; height: 40px; }
  .icon-button { width: 36px; height: 36px; }
  .category-grid, .product-grid, .benefit-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 280px; }
  .product-grid { gap: 14px; }
  .journal-disc { width: 270px; }
  .journal-ring { width: 235px; }
  .journal-card { left: 29%; width: 150px; height: 180px; }
  .journal-card strong { font-size: 25px; }
  .desktop-break { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
