:root {
  color-scheme: light;
  /* Ink + neutrals */
  --ink: #3f362c;
  --body: #5f5347;
  --muted: #8b7d6e;
  /* Paper / canvas */
  --ivory: #f7f0e1;
  --cream: #fcf7ec;
  --linen: #efe3cd;
  /* Botanical palette (sage / mustard / cream / peach + lavender) */
  --sage: #9cae87;
  --sage-deep: #5f7050;
  --sage-soft: #e6ece0;
  --mustard: #c9a227;
  --mustard-soft: #f0e3c2;
  --peach: #e8b894;
  --peach-soft: #f6e4d4;
  --lavender: #b5a8cb;
  --lavender-soft: #ece7f1;
  --plum: #7a6388; /* deep lavender for small accents + eyebrows */
  --clay: #b07a4f;
  --sold: #ad8d88; /* muted mauve for sold-out tags */
  /* Legacy aliases so existing rules pick up the new palette */
  --rose: var(--plum);
  --rose-soft: var(--peach-soft);
  --line: rgba(95, 80, 60, 0.18);
  --shadow: 0 18px 44px rgba(95, 70, 45, 0.12);
  /* Type */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "EB Garamond", Georgia, serif;
  --font-script: "Dancing Script", "Brush Script MT", cursive;
  --font-ui: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(244, 234, 220, 0.78), rgba(255, 253, 248, 0.96) 36%, var(--ivory)),
    var(--ivory);
  color: var(--ink);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

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

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

.page-shell {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 241, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 86px;
  padding-block: 14px;
}

.brand {
  display: grid;
  gap: 1px;
  min-width: 230px;
}

.brand-name,
.footer-brand {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-name {
  font-size: 1.95rem;
  line-height: 0.94;
}

.brand-note {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: wrap;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--body);
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--sage-soft);
}

.site-nav .nav-button {
  margin-left: 6px;
  color: #fffdf8;
  background: var(--sage);
}

.site-nav .nav-button:hover,
.site-nav .nav-button:focus-visible,
.site-nav .nav-button[aria-current="page"] {
  color: #fffdf8;
  background: color-mix(in srgb, var(--sage) 86%, black);
}

.home-hero {
  position: relative;
  min-height: min(690px, calc(100vh - 86px));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fffdf8;
}

.home-hero-image,
.home-hero-overlay {
  position: absolute;
  inset: 0;
}

.home-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-overlay {
  background:
    linear-gradient(90deg, rgba(47, 39, 35, 0.8), rgba(47, 39, 35, 0.54) 46%, rgba(47, 39, 35, 0.12)),
    linear-gradient(180deg, rgba(47, 39, 35, 0.05), rgba(47, 39, 35, 0.58));
}

.home-hero-content {
  position: relative;
  z-index: 1;
  padding-block: 92px 76px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-hero .eyebrow {
  color: #efd2ce;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 22px;
  font-size: clamp(3.25rem, 8vw, 6.8rem);
}

.home-hero h1 {
  color: #fffdf8;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.35rem, 4.2vw, 3.95rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.72rem;
}

p {
  color: var(--body);
}

.home-hero p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 30px;
  color: #f8eee4;
  font-size: 1.2rem;
}

.hero-actions,
.cta-actions,
.manager-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: #fffdf8;
  background: var(--sage);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: color-mix(in srgb, var(--sage) 84%, black);
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(255, 253, 248, 0.55);
  background: rgba(255, 253, 248, 0.84);
}

.section {
  padding-block: 60px;
}

.intro-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: -38px;
  position: relative;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.intro-panel article {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.intro-panel article:last-child {
  border-right: 0;
}

.intro-panel span,
.live-card span,
.buy-guide-grid span,
.values-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--rose);
  font-weight: 900;
}

.intro-panel h2 {
  font-size: 1.8rem;
}

.intro-panel p,
.product-card p,
.faq-list p,
.buy-guide-grid p,
.values-grid p {
  margin-bottom: 0;
}

.welcome-section {
  background:
    linear-gradient(90deg, rgba(231, 237, 225, 0.62), transparent),
    var(--ivory);
}

.welcome-grid,
.live-layout,
.custom-layout,
.maker-layout,
.contact-layout,
.cta-layout {
  display: grid;
  gap: 46px;
  align-items: center;
}

.welcome-grid,
.live-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.72fr);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 740px;
  margin-bottom: 0;
}

.text-link {
  color: var(--sage);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.product-row,
.product-list {
  display: grid;
  gap: 22px;
}

.product-row {
  grid-template-columns: repeat(3, 1fr);
}

.product-list {
  grid-template-columns: repeat(2, 1fr);
}

.product-list .product-card:first-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 1fr);
}

.product-list .product-card:first-child .product-photo {
  min-height: 100%;
  aspect-ratio: auto;
}

.product-card,
.live-card,
.faq-list article,
.values-grid article,
.buy-guide-grid article,
.contact-panel,
.contact-form,
.manager-card,
.json-output {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.product-card {
  overflow: hidden;
}

.product-photo {
  position: relative;
  display: block;
  aspect-ratio: 1 / 0.82;
  background: var(--linen);
  overflow: hidden;
}

.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-card:hover .product-photo img {
  transform: scale(1.03);
}

.status-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fffdf8;
  background: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-sold-out {
  background: var(--rose);
}

.status-custom-order {
  background: var(--clay);
}

.product-body {
  padding: 24px;
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.product-topline span {
  color: var(--rose);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-topline strong {
  min-width: 72px;
  display: inline-flex;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fffdf8;
  background: var(--clay);
  font-size: 0.98rem;
}

.product-detail {
  margin-top: -8px;
  margin-bottom: 16px;
}

.product-gallery {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.product-gallery img {
  width: 64px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
}

.product-meta-line {
  margin: 18px 0 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--sage);
  font-weight: 900;
}

.buy-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.buy-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--sage);
  font-weight: 900;
}

.buy-links .buy-now-link {
  color: #fffdf8;
  border-color: transparent;
  background: var(--rose);
}

.buy-links a:hover,
.buy-links a:focus-visible {
  border-color: var(--sage);
}

.live-section {
  background: var(--sage-soft);
}

.live-card {
  padding: 32px;
}

.live-card h3 {
  font-size: 2.25rem;
}

.shop-path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.shop-path-grid a {
  min-height: 178px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.55), var(--cream)),
    var(--cream);
  box-shadow: var(--shadow);
  color: var(--body);
  font-weight: 700;
}

.shop-path-grid span {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.page-hero {
  padding-block: 74px 24px;
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  font-size: 1.15rem;
}

.how-buy-section,
.review-section {
  background: var(--cream);
}

.trust-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid article,
.review-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ivory);
  box-shadow: var(--shadow);
}

.review-grid p {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.18;
}

.review-grid span {
  color: var(--muted);
  font-weight: 900;
}

.signup-section {
  background: var(--sage-soft);
}

.signup-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(320px, 0.7fr);
  gap: 34px;
  align-items: center;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.signup-form {
  display: grid;
  gap: 14px;
}

.signup-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 900;
}

.signup-form input,
.signup-form select {
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
}

.checkout-section {
  padding-top: 36px;
}

.checkout-card {
  display: grid;
  gap: 26px;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(231, 237, 225, 0.72), transparent 58%),
    var(--cream);
  box-shadow: var(--shadow);
}

.checkout-card h2 {
  max-width: 760px;
}

.checkout-detail {
  grid-template-columns: minmax(0, 1fr);
}

.checkout-product {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.checkout-product img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  border-radius: 8px;
}

.checkout-price {
  display: inline-flex;
  margin-top: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #fffdf8;
  background: var(--clay);
  font-size: 1.1rem;
}

.payment-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
}

.payment-panel h3 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.payment-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.checkout-note,
.checkout-disclaimer {
  margin-bottom: 0;
  color: var(--body);
  font-weight: 800;
}

.checkout-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
  color: var(--body);
}

.checkout-steps strong {
  color: var(--ink);
}

.checkout-followup {
  box-shadow: none;
}

.checkout-followup .button-secondary {
  border-color: var(--line);
}

.custom-layout {
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 0.7fr);
}

.custom-layout img {
  width: 100%;
  aspect-ratio: 1 / 0.9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.price-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.price-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

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

.price-list strong {
  color: var(--clay);
}

.maker-layout {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 0.88fr);
}

.photo-stack {
  position: relative;
  min-height: 470px;
}

.photo-stack img {
  position: absolute;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.photo-large {
  inset: 0 9% 13% 0;
  width: 82%;
  height: 78%;
}

.photo-small {
  right: 0;
  bottom: 0;
  width: 48%;
  aspect-ratio: 1 / 1;
  border: 8px solid var(--cream);
}

.values-grid,
.buy-guide-grid,
.faq-list {
  display: grid;
  gap: 18px;
}

.values-grid,
.buy-guide-grid {
  grid-template-columns: repeat(3, 1fr);
}

.faq-list {
  grid-template-columns: repeat(2, 1fr);
}

.values-grid article,
.buy-guide-grid article,
.faq-list article {
  padding: 28px;
}

.faq-list h2 {
  font-size: 2rem;
}

.contact-layout {
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  align-items: start;
}

.contact-panel {
  padding: 28px;
  background: var(--sage-soft);
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-links a {
  display: grid;
  gap: 3px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 900;
}

.contact-links span {
  color: var(--rose);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mini-note {
  margin-top: 24px;
  padding: 16px;
  border-radius: 8px;
  color: var(--body);
  background: rgba(255, 253, 248, 0.72);
}

.mini-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 28px;
}

.form-title,
.full-field {
  grid-column: 1 / -1;
}

.form-title {
  margin-bottom: 0;
}

.contact-form label,
.catalog-editor label,
.json-output label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.catalog-editor input,
.catalog-editor textarea,
.json-output textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.contact-form textarea,
.catalog-editor textarea,
.json-output textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.catalog-editor input:focus,
.catalog-editor textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(127, 144, 121, 0.16);
}

.form-status,
.manager-note {
  min-height: 1.4em;
  margin: 0;
  color: var(--body);
  font-weight: 800;
}

.manager-section {
  padding-top: 36px;
}

.manager-actions {
  margin-bottom: 20px;
}

.catalog-editor {
  display: grid;
  gap: 18px;
}

.manager-card {
  padding: 24px;
}

.manager-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.manager-card h2 {
  margin-bottom: 0;
  font-size: 2.2rem;
}

.manager-field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.manager-checks {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.manager-checks label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.text-button {
  border: 0;
  color: var(--rose);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.json-output {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding: 24px;
}

.empty-state {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.site-footer {
  padding-block: 54px 28px;
  border-top: 1px solid var(--line);
  background: #2f2723;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(230px, auto);
  gap: 42px;
  align-items: start;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--cream);
  font-size: 1.7rem;
}

.footer-grid p {
  color: rgba(255, 253, 248, 0.72);
}

.footer-grid nav,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-grid a {
  color: rgba(255, 253, 248, 0.82);
  font-weight: 800;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: #fff;
}

.copyright {
  margin-top: 34px;
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.56);
  font-size: 0.92rem;
}

.mobile-cta-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 250, 241, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.mobile-cta-bar a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fffdf8;
  background: var(--sage);
  font-weight: 900;
}

@media (max-width: 980px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .intro-panel,
  .product-row,
  .product-list,
  .product-list .product-card:first-child,
  .checkout-product,
  .shop-path-grid,
  .trust-grid,
  .values-grid,
  .buy-guide-grid,
  .faq-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .welcome-grid,
  .live-layout,
  .signup-panel,
  .custom-layout,
  .maker-layout,
  .contact-layout,
  .cta-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 17px;
  }

  .page-shell {
    width: min(100% - 28px, var(--max));
  }

  .header-inner {
    min-height: auto;
  }

  .brand-name {
    font-size: 1.75rem;
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .site-nav a,
  .site-nav .nav-button {
    margin-left: 0;
  }

  .home-hero {
    min-height: 620px;
  }

  .home-hero-overlay {
    background:
      linear-gradient(180deg, rgba(47, 39, 35, 0.77), rgba(47, 39, 35, 0.62)),
      linear-gradient(90deg, rgba(47, 39, 35, 0.72), rgba(47, 39, 35, 0.32));
  }

  .home-hero-content {
    padding-block: 74px 52px;
  }

  h1 {
    font-size: 3rem;
  }

  h2,
  .page-hero h1 {
    font-size: 2.35rem;
  }

  .section {
    padding-block: 58px;
  }

  .intro-panel {
    margin-top: 0;
  }

  .intro-panel,
  .product-row,
  .product-list,
  .product-list .product-card:first-child,
  .checkout-product,
  .shop-path-grid,
  .trust-grid,
  .review-grid,
  .values-grid,
  .buy-guide-grid,
  .faq-list,
  .footer-grid,
  .contact-form,
  .manager-field-grid {
    grid-template-columns: 1fr;
  }

  body {
    padding-bottom: 78px;
  }

  .mobile-cta-bar {
    display: grid;
  }

  .intro-panel article,
  .intro-panel article:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-panel article:last-child {
    border-bottom: 0;
  }

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

  .photo-stack {
    min-height: 350px;
  }

  .photo-large {
    width: 88%;
    height: 70%;
  }

  .photo-small {
    width: 52%;
  }
}

/* =====================================================================
   Vintage cottage refresh (v7)
   Soft cream + sage, mustard / peach / lavender accents, pressed-botanical
   touches, and a flowing script for small flourishes.
   ===================================================================== */

body {
  font-family: var(--font-body);
  background:
    radial-gradient(1100px 460px at 50% -8%, rgba(156, 174, 135, 0.18), transparent 62%),
    linear-gradient(180deg, var(--ivory), var(--cream) 42%, var(--ivory));
  background-color: var(--ivory);
}

/* Clean sans for interface bits; serif stays for reading + display */
.site-nav,
.button,
.eyebrow,
.status-badge,
.product-topline span,
.product-meta-line,
.footer-grid nav,
.footer-contact,
.mobile-cta-bar,
.contact-form,
.signup-form,
.catalog-editor,
.json-output,
.manager-card-head,
.price-list span,
.bundle-tiers,
.workshop-meta {
  font-family: var(--font-ui);
}

/* Softer rounding throughout */
.button,
.site-nav a,
.buy-links a,
.contact-form input,
.contact-form select,
.contact-form textarea,
.catalog-editor input,
.catalog-editor textarea,
.json-output textarea {
  border-radius: 12px;
}

.product-card,
.live-card,
.faq-list article,
.values-grid article,
.buy-guide-grid article,
.contact-panel,
.contact-form,
.manager-card,
.json-output,
.intro-panel,
.shop-path-grid a,
.trust-grid article,
.review-grid article,
.signup-panel,
.checkout-card,
.empty-state {
  border-radius: 16px;
}

/* Brand lockup with the moth mark */
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: auto;
}

.brand-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
}

.brand-text {
  display: grid;
  gap: 0;
}

.brand-name {
  font-size: 1.62rem;
  line-height: 1;
}

.brand-note {
  margin-top: 2px;
  color: var(--plum);
  font-family: var(--font-script);
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

/* Softer, warmer headings */
h1 {
  font-size: clamp(2.8rem, 6.4vw, 5rem);
}

h2 {
  font-size: clamp(2.05rem, 3.6vw, 3.3rem);
}

.home-hero h1 {
  font-size: clamp(2.7rem, 6vw, 4.7rem);
}

/* Hero: warm the overlay so it feels light and cottage, not moody */
.home-hero-overlay {
  background:
    linear-gradient(90deg, rgba(63, 54, 44, 0.66), rgba(63, 54, 44, 0.34) 52%, rgba(63, 54, 44, 0.06)),
    linear-gradient(180deg, rgba(63, 54, 44, 0.02), rgba(95, 112, 80, 0.34));
}

.home-hero .eyebrow {
  color: #f4e7d3;
}

.hero-mark {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
}

/* Buttons / links in the new palette */
.button-primary {
  background: var(--sage-deep);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: color-mix(in srgb, var(--sage-deep) 88%, black);
}

.site-nav .nav-button {
  background: var(--sage-deep);
}

.text-link {
  color: var(--sage-deep);
}

.buy-links .buy-now-link {
  background: var(--sage-deep);
}

.buy-links a {
  color: var(--sage-deep);
}

/* Status tags: available = sage, sold-out = muted mauve, custom = mustard */
.status-sold-out {
  background: var(--sold);
}

.status-custom-order {
  background: var(--mustard);
  color: var(--ink);
}

.footer-grid .footer-brand {
  font-family: var(--font-display);
}

/* Deep-sage footer grounds the soft palette */
.site-footer {
  background: var(--sage-deep);
}

/* Pressed-botanical divider — drop <div class="botanical-divider"><img src="assets/sprig.svg" alt=""></div> between sections */
.botanical-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 4px auto 0;
}

.botanical-divider::before,
.botanical-divider::after {
  content: "";
  height: 1px;
  width: min(130px, 24vw);
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.botanical-divider img {
  width: 34px;
  height: 34px;
  opacity: 0.9;
}

/* Faint sprig watermarks on a couple of sections */
.review-section,
.welcome-section {
  position: relative;
  overflow: hidden;
}

.review-section::before,
.welcome-section::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: url("assets/sprig.svg") no-repeat center / contain;
  opacity: 0.42;
  pointer-events: none;
}

.review-section::before {
  right: -34px;
  top: -26px;
  transform: rotate(12deg);
}

.welcome-section::after {
  left: -40px;
  bottom: -40px;
  transform: rotate(-18deg) scaleX(-1);
}

/* Epic Bundles pricing tiers (Shop) */
.bundles-section {
  background: var(--mustard-soft);
}

.bundle-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.bundle-tiers article {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 26px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--cream);
  box-shadow: var(--shadow);
  text-align: center;
}

.bundle-tiers article span {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.bundle-tiers article strong {
  display: inline-flex;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--sage-deep);
  color: var(--cream);
  font-size: 1.35rem;
}

.bundle-note {
  grid-column: 1 / -1;
  margin: 6px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
  text-align: center;
}

.bundle-note strong {
  color: var(--sage-deep);
}

/* Featured testimonial */
.review-feature {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto 30px;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--cream);
  box-shadow: var(--shadow);
  text-align: center;
}

.review-feature p {
  margin-bottom: 14px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.2;
}

.review-feature span {
  color: var(--plum);
  font-family: var(--font-ui);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.review-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.review-grid article {
  flex: 1 1 230px;
  max-width: 320px;
}

/* Workshops / teaching */
.workshop-list {
  display: grid;
  gap: 20px;
}

.workshop-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.workshop-date {
  display: grid;
  justify-items: center;
  gap: 2px;
  padding: 16px 10px;
  border-radius: 14px;
  background: var(--sage-soft);
  color: var(--sage-deep);
  text-align: center;
}

.workshop-date .wd-month {
  font-family: var(--font-ui);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.workshop-date .wd-day {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
}

.workshop-body h3 {
  margin-bottom: 6px;
}

.workshop-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 10px;
  color: var(--plum);
  font-weight: 700;
  font-size: 0.92rem;
}

.workshop-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.workshop-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--peach-soft);
  color: var(--clay);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.workshop-card.is-past {
  opacity: 0.72;
}

.workshop-card.is-past .workshop-date {
  background: var(--linen);
  color: var(--muted);
}

/* Short About card */
.about-card {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--cream);
  box-shadow: var(--shadow);
  text-align: center;
}

.about-card .about-mark {
  width: 84px;
  height: 84px;
}

.about-card .artist-name {
  font-family: var(--font-script);
  font-size: 1.7rem;
  color: var(--plum);
}

/* Legal pages spacing */
.compact-top {
  padding-top: 28px;
}

/* Manager portal extras */
.manager-intro {
  max-width: 760px;
}

.manager-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.manager-tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  background: var(--cream);
  color: var(--body);
  font-family: var(--font-ui);
  font-weight: 800;
  cursor: pointer;
}

.manager-tab.is-active {
  background: var(--sage-deep);
  border-color: var(--sage-deep);
  color: var(--cream);
}

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

.download-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.field-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.field-inline label {
  flex: 1 1 180px;
}

.manager-help {
  padding: 16px 18px;
  border-left: 3px solid var(--sage);
  border-radius: 10px;
  background: var(--sage-soft);
  color: var(--ink);
}

.cta-band {
  padding-block: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(120deg, var(--sage-soft), var(--peach-soft));
}

@media (max-width: 860px) {
  .bundle-tiers {
    grid-template-columns: repeat(2, 1fr);
  }

  .workshop-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .workshop-date {
    justify-self: start;
    padding: 10px 18px;
  }
}

/* Scroll-in reveal — sections gently rise + fade as they enter the viewport */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   Photo-forward junk-journal rehaul (v8)
   Taped polaroids, kraft tags, stitch lines, collage hero.
   ============================================================ */

/* Washi-tape strip (decorative) */
.tape {
  position: absolute;
  width: 92px;
  height: 28px;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 0 6px, rgba(255, 255, 255, 0) 6px 12px),
    linear-gradient(120deg, rgba(181, 168, 203, 0.72), rgba(156, 174, 135, 0.66));
  box-shadow: 0 3px 7px rgba(78, 55, 44, 0.14);
  opacity: 0.9;
  z-index: 3;
}
.tape::before,
.tape::after {
  content: "";
  position: absolute;
  inset: 0 -1px;
  background: inherit;
}
.tape-peach {
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.28) 0 6px, rgba(255, 255, 255, 0) 6px 12px),
    linear-gradient(120deg, rgba(232, 184, 148, 0.8), rgba(201, 162, 39, 0.6));
}

/* Taped polaroid photo */
.polaroid {
  margin: 0;
  padding: 12px 12px 40px;
  background: #fffdf8;
  border-radius: 3px;
  box-shadow: 0 16px 32px rgba(78, 55, 44, 0.22);
  position: relative;
}
.polaroid img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  border-radius: 2px;
  background: var(--linen);
}
.polaroid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  text-align: center;
  color: var(--plum);
  font-family: var(--font-script);
  font-size: 1.15rem;
  line-height: 1;
}

/* Kraft price tag */
.price-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px 8px 24px;
  background: #d8c3a0;
  color: var(--ink);
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 16% 100%, 0 50%);
  box-shadow: 0 4px 9px rgba(78, 55, 44, 0.22);
}
.price-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 7px;
  margin-left: -8px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: inset 0 0 0 1.6px rgba(63, 54, 44, 0.4);
}

/* Stitched (dashed) divider */
.stitch-divider {
  width: min(220px, 60%);
  margin: 0 auto;
  border: 0;
  border-top: 2px dashed var(--sage);
  opacity: 0.55;
}

/* ---- Collage hero ---- */
.hero-collage {
  padding-block: clamp(32px, 4.5vw, 56px) clamp(36px, 5vw, 64px);
  background:
    radial-gradient(900px 380px at 18% 0%, rgba(181, 168, 203, 0.18), transparent 60%),
    linear-gradient(160deg, var(--sage-soft), var(--cream) 55%, var(--peach-soft));
  overflow: hidden;
}
.hero-collage-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.hero-copy .hero-mark {
  width: 60px;
  height: 60px;
  margin-bottom: 14px;
}
.hero-copy h1 {
  margin-bottom: 18px;
}
.hero-lead {
  max-width: 30ch;
  font-size: 1.2rem;
}
.hero-stack {
  position: relative;
  min-height: 440px;
}
.hero-stack .polaroid {
  position: absolute;
  width: 47%;
}
.hero-stack .p1 {
  top: 0;
  left: 4%;
  transform: rotate(-6deg);
  z-index: 1;
}
.hero-stack .p2 {
  top: 8%;
  right: 2%;
  transform: rotate(5deg);
  z-index: 2;
}
.hero-stack .p3 {
  bottom: -2%;
  left: 26%;
  transform: rotate(-2deg);
  z-index: 3;
}
.hero-stack .tape-a {
  top: -6px;
  left: 30%;
  transform: rotate(-8deg);
  z-index: 4;
}

/* ---- Lookbook gallery ---- */
.lookbook {
  background: var(--ivory);
}
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 4vw, 48px);
  padding-top: 12px;
}
.lookbook-grid .polaroid {
  justify-self: center;
  width: min(320px, 100%);
}
.lookbook-grid .polaroid:nth-child(odd) {
  transform: rotate(-3deg);
}
.lookbook-grid .polaroid:nth-child(even) {
  transform: rotate(2.5deg);
  margin-top: 20px;
}
.lookbook-grid .polaroid::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  width: 86px;
  height: 26px;
  transform: translateX(-50%) rotate(-4deg);
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.28) 0 6px, rgba(255, 255, 255, 0) 6px 12px),
    linear-gradient(120deg, rgba(232, 184, 148, 0.8), rgba(156, 174, 135, 0.6));
  box-shadow: 0 3px 7px rgba(78, 55, 44, 0.14);
}

/* ---- Image-forward product cards + kraft tag ---- */
.product-photo {
  aspect-ratio: 1 / 0.95;
}
.product-card .price-tag {
  position: absolute;
  right: 12px;
  bottom: 12px;
  transform: rotate(-4deg);
  z-index: 2;
}
.product-topline {
  margin-bottom: 8px;
}

/* ---- Reviews as taped paper notes ---- */
.review-grid article {
  position: relative;
  background: var(--cream);
  transform: rotate(-1.4deg);
}
.review-grid article:nth-child(even) {
  transform: rotate(1.6deg);
}
.review-grid article::before {
  content: "";
  position: absolute;
  top: -11px;
  left: 50%;
  width: 78px;
  height: 24px;
  transform: translateX(-50%) rotate(-5deg);
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.28) 0 6px, rgba(255, 255, 255, 0) 6px 12px),
    linear-gradient(120deg, rgba(181, 168, 203, 0.7), rgba(156, 174, 135, 0.55));
  box-shadow: 0 3px 7px rgba(78, 55, 44, 0.14);
}
.review-grid p {
  font-size: 1.32rem;
}

@media (max-width: 860px) {
  .hero-collage-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-stack {
    min-height: 360px;
    max-width: 460px;
    margin-inline: auto;
    width: 100%;
  }
  .lookbook-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
    gap: 30px;
  }
  .lookbook-grid .polaroid:nth-child(even) {
    margin-top: 0;
  }
}

/* ============================================================
   Calmer, smaller headings (v8) — toned down across every page
   ============================================================ */
h1 {
  font-size: clamp(1.4rem, 1.9vw, 1.8rem);
  line-height: 1.2;
}
h2 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.15;
}
h3 {
  font-size: clamp(1.1rem, 1.5vw, 1.28rem);
}
.home-hero h1,
.hero-collage h1 {
  font-size: clamp(1.5rem, 2.1vw, 1.9rem);
}
.page-hero h1 {
  font-size: clamp(1.35rem, 1.8vw, 1.6rem);
}
.section-heading h2 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}
.intro-panel h2 {
  font-size: 1.35rem;
}
.faq-list h2 {
  font-size: 1.4rem;
}
.manager-card h2 {
  font-size: 1.5rem;
}
.live-card h3 {
  font-size: 1.5rem;
}
.shop-path-grid span {
  font-size: 1.45rem;
}
.review-feature p {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
}
.workshop-date .wd-day {
  font-size: 2rem;
}
.bundle-tiers article span {
  font-size: 1.3rem;
}

/* Framed business card (About page) */
.brand-card {
  margin: 8px 0 4px;
  padding: 10px;
  max-width: 440px;
  background: #fffdf8;
  border-radius: 4px;
  box-shadow: var(--shadow);
  transform: rotate(-1.4deg);
}
.brand-card img {
  display: block;
  width: 100%;
  border-radius: 2px;
}

/* ============================================================
   Mobile hamburger nav (v12) — collapses the menu on phones
   ============================================================ */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  cursor: pointer;
  flex: 0 0 auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 200ms ease, opacity 200ms ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    min-height: auto;
    gap: 10px;
    padding-block: 12px;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .brand-mark {
    width: 40px;
    height: 40px;
  }
  .brand-name {
    font-size: 1.3rem;
  }
  .brand-note {
    font-size: 0.92rem;
  }
  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 4px;
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav a,
  .site-nav .nav-button {
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
  }
}

/* ============================================================
   Responsive system v13 — one coherent mobile nav + balanced grids
   (authoritative; supersedes the older overlapping breakpoints)
   ============================================================ */

/* "How to buy" = 4 steps across one even row on desktop (no orphan card) */
.buy-guide-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* Phones + tablets (<=980): one tidy header row, nav collapses to the hamburger */
@media (max-width: 980px) {
  .header-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: auto;
    padding-block: 12px;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .brand-mark {
    width: 40px;
    height: 40px;
  }
  .brand-name {
    font-size: 1.3rem;
  }
  .brand-note {
    font-size: 0.92rem;
  }
  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 4px;
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav a,
  .site-nav .nav-button {
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
  }
  /* balanced grids: 4-up cards become 2x2, 3-up stays 3 across */
  .buy-guide-grid,
  .trust-grid,
  .shop-path-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Phones (<=600): single column card grids, full-width tap targets */
@media (max-width: 600px) {
  .buy-guide-grid,
  .trust-grid,
  .shop-path-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* "What's inside" / "What to expect" — pill list, a different rhythm from card rows */
.bundle-includes-section {
  background: var(--sage-soft);
}
.includes-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.includes-layout p {
  margin-bottom: 0;
}
.includes-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.includes-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  box-shadow: var(--shadow);
  color: var(--ink);
  font-family: var(--font-ui);
  font-weight: 600;
}
.includes-list li::before {
  content: "";
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  background: url("assets/sprig.svg") center / contain no-repeat;
}

@media (max-width: 860px) {
  .includes-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* Shop page — two-column hero with a real bundle photo (distinct from text-only heroes) */
.shop-hero-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.shop-hero-feature h1 {
  margin-bottom: 14px;
}
.shop-hero-feature p:not(.eyebrow) {
  margin-bottom: 0;
}
.shop-hero-photo {
  position: relative;
  margin: 0;
}
.shop-hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}
.shop-hero-photo .tape {
  top: -10px;
  left: 26px;
  transform: rotate(-6deg);
}

@media (max-width: 860px) {
  .shop-hero-feature {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .shop-hero-photo img {
    transform: none;
  }
}

/* Shop catalog (v16): smaller, uniform product cards — a tidy 3-up gallery,
   no oversized full-width feature card, shorter images */
.product-list {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product-list .product-card:first-child {
  grid-column: auto;
  display: block;
}
.product-list .product-card:first-child .product-photo {
  aspect-ratio: 1 / 0.72;
  min-height: 0;
}
.product-photo {
  aspect-ratio: 1 / 0.72;
}
.product-body {
  padding: 18px;
}
.product-body h3 {
  font-size: 1.18rem;
}

@media (max-width: 980px) {
  .product-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .product-list {
    grid-template-columns: 1fr;
  }
}

/* Even, roomier spacing in product descriptions (no cramped summary/detail) */
.product-card p {
  margin-bottom: 12px;
}
.product-card h3 {
  margin-bottom: 8px;
}
.product-detail {
  margin-top: 0;
  margin-bottom: 12px;
}
