:root {
  --bg: #f4efe8;
  --bg-soft: #fbf8f3;
  --panel: rgba(255, 255, 255, 0.76);
  --panel-strong: rgba(255, 255, 255, 0.92);
  --text: #17131b;
  --text-soft: #5e5561;
  --line: rgba(23, 19, 27, 0.08);
  --line-strong: rgba(23, 19, 27, 0.12);
  --dark: #17131b;
  --dark-2: #231a2d;
  --gold: #c7a26a;
  --gold-deep: #a88049;
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-soft: 0 18px 50px rgba(21, 17, 28, 0.08);
  --shadow-card: 0 28px 80px rgba(21, 17, 28, 0.12);
  --shell: 1260px;
  --header-h: 82px;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(199, 162, 106, 0.15), transparent 28%),
    radial-gradient(circle at top right, rgba(23, 19, 27, 0.05), transparent 24%),
    var(--bg);
  line-height: 1.55;
}
body.nav-open,
body.modal-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.shell {
  width: min(calc(100% - 32px), var(--shell));
  margin: 0 auto;
}
.narrow-shell { max-width: 820px; }
.section { padding: 32px 0 84px; }
.compact-top { padding-top: calc(var(--header-h) + 40px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: currentColor;
}

h1, h2, h3, blockquote { margin: 0; }
p { margin: 0; color: var(--text-soft); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px 0 0;
}
.site-header.solid,
.site-header.scrolled {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(251, 248, 243, 0.78);
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(23, 19, 27, 0.06);
}
.brand { flex: 0 0 auto; }
.brand img { height: 42px; width: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-nav a {
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text-soft);
}
.site-nav a:hover { background: rgba(23, 19, 27, 0.05); color: var(--text); }
.site-nav .nav-cta {
  background: var(--dark);
  color: white;
}
.site-nav .nav-cta:hover { background: var(--dark-2); color: white; }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--dark);
  margin: 4px auto;
  border-radius: 3px;
}

.hero { padding-top: 22px; padding-bottom: 40px; }
.hero-grid,
.page-hero-grid,
.process-grid,
.use-cases-grid,
.detail-grid,
.bundle-grid,
.footer-grid,
.form-layout,
.product-modal-body,
.sample-grid,
.buyer-flow-grid,
.testimonial-layout {
  display: grid;
  gap: 18px;
}
.hero-grid-v10 { grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr); gap: clamp(28px, 3.8vw, 46px); align-items: center; }
.hero-copy h1,
.page-hero h1,
.info-card h2,
.info-card h3,
.sample-panel h2,
.video-band-copy h2,
.cta-panel h2,
.prose-card h1 {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 4.5vw, 4.2rem);
  line-height: 0.99;
  letter-spacing: -0.04em;
}
.page-hero h1 { max-width: 10.4ch; }
.hero-text,
.page-hero p {
  margin-top: 16px;
  max-width: 540px;
  font-size: 1.02rem;
}
.hero-actions,
.cta-actions,
.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-dark { background: var(--dark); color: white; }
.btn-dark:hover { background: var(--dark-2); }
.btn-light { background: rgba(255,255,255,0.8); color: var(--text); border-color: var(--line); }
.btn-light:hover { background: white; }
.btn-gold { background: linear-gradient(135deg, #d6b17a, #b78d55); color: white; }
.btn-submit { width: 100%; }
.text-link {
  color: var(--dark);
  font-weight: 700;
}
.hero-note {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.64);
  border: 1px solid var(--line);
  max-width: 470px;
}
.hero-note strong {
  display: block;
  font-size: 0.96rem;
}
.hero-note p { margin-top: 8px; font-size: 0.95rem; }
.hero-note-page { margin-top: 24px; }

.hero-copy-refined { padding-top: 26px; }
.hero-copy-refined h1 { max-width: 14.4ch; }
.hero-copy-refined h1 span { display: block; }
.hero-copy-refined .hero-text { max-width: 32ch; font-size: 1rem; }
.hero-showcase-refined {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 500px;
  margin-left: auto;
}
.hero-showcase-refined .showcase-card { aspect-ratio: 1 / 0.86; }
.hero-showcase-refined .showcase-card img { transition: transform 0.45s ease; }
.hero-showcase-refined .showcase-card:hover img { transform: scale(1.03); }
.hero-card-bags img { object-position: 55% 52%; }
.hero-card-packaging img { object-position: center center; }
.hero-card-gifts img { object-position: center 42%; }
.hero-card-stationery img { object-position: center center; }
.quick-links-head-refined { margin-bottom: 10px; }
.category-rail-shell {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.44);
  border: 1px solid rgba(23, 19, 27, 0.06);
}
.quick-links-head-refined p { max-width: none; white-space: nowrap; }
.testimonial-layout-refined {
  grid-template-columns: 1.04fr 0.96fr;
  gap: 16px;
  align-items: stretch;
}
.insight-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--text-soft);
}
.insight-card li + li { margin-top: 10px; }
.testimonial-section-refined .quote-highlight blockquote {
  max-width: 14ch;
  font-size: clamp(1.6rem, 2.5vw, 2.05rem);
}
.testimonial-section-refined .quote-highlight .eyebrow { color: rgba(255,255,255,0.72); }

.client-proof-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
  align-items: stretch;
}
.compact-quote {
  padding: 28px;
  min-height: 100%;
}
.compact-quote blockquote {
  max-width: 12ch;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
}
.mini-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.mini-case-card {
  padding: 22px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(23, 19, 27, 0.07);
  box-shadow: var(--shadow-soft);
}
.mini-case-kicker {
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 800;
}
.mini-case-card h3 {
  margin-top: 12px;
  font-size: 1.1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.mini-case-card p {
  margin-top: 10px;
}
.page-products .page-hero h1 { max-width: 10.5ch; }
.page-products .page-hero p { max-width: 43ch; }
.sample-pack-showcase {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-areas:
    'feature mini1'
    'feature note';
  gap: 14px;
  max-width: 560px;
  margin-left: auto;
}
.sample-pack-feature,
.sample-pack-mini,
.sample-pack-note {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(23, 19, 27, 0.07);
  box-shadow: var(--shadow-soft);
}
.sample-pack-feature {
  grid-area: feature;
  min-height: 430px;
}
.sample-pack-feature img,
.sample-pack-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sample-pack-feature img { object-position: center 46%; }
.sample-pack-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(18, 14, 23, 0.82);
  color: white;
  backdrop-filter: blur(10px);
}
.sample-pack-copy span {
  display: block;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
}
.sample-pack-copy strong {
  display: block;
  margin-top: 8px;
  line-height: 1.15;
  font-size: 1rem;
}
.sample-pack-mini { min-height: 208px; }
.sample-pack-mini:nth-child(2) { grid-area: mini1; }
.sample-pack-mini img { object-position: center 50%; }
.sample-pack-label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(18, 14, 23, 0.78);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
}
.sample-pack-note {
  grid-area: note;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sample-pack-note .eyebrow::before { width: 22px; }
.sample-pack-note h3 {
  margin-top: 12px;
  font-size: 1.16rem;
  letter-spacing: -0.02em;
}
.sample-pack-note p {
  margin-top: 10px;
  font-size: 0.95rem;
}

.hero-showcase,
.page-hero-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.page-hero-showcase {
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-areas:
    'wide side1'
    'wide side2';
}
.showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--panel-strong);
  border: 1px solid rgba(23, 19, 27, 0.07);
  box-shadow: var(--shadow-card);
  aspect-ratio: 1 / 0.94;
}
.showcase-card-wide { aspect-ratio: 1 / 0.82; }
.page-hero-showcase .showcase-card-wide {
  grid-area: wide;
  aspect-ratio: auto;
}
.page-hero-showcase .showcase-card:nth-child(2) { grid-area: side1; }
.page-hero-showcase .showcase-card:nth-child(3) { grid-area: side2; }
.showcase-card img,
.page-hero-card img,
.category-tile img,
.collection-card img,
.sample-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showcase-label,
.hero-card-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(18, 14, 23, 0.78);
  color: white;
  font-size: 0.84rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}
.category-rail-shell { margin-top: 24px; }
.quick-links-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 16px;
}
.quick-links-head p,
.section-side-copy {
  font-size: 0.95rem;
}
.category-rail,
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.category-rail a,
.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
}
.filter-chip { cursor: pointer; }
.filter-chip.active,
.category-rail a:hover,
.filter-chip:hover {
  background: var(--dark);
  color: white;
}
.filter-bar.sticky {
  position: sticky;
  top: 92px;
  z-index: 10;
  padding: 12px;
  background: rgba(244,239,232,0.84);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  margin-bottom: 36px;
}

.filter-bar {
  margin-bottom: 24px;
}
.gallery-section .filter-bar {
  margin-bottom: 34px;
}
.products-page .filter-bar.sticky {
  margin-bottom: 42px;
}
.product-grid {
  margin-top: 0;
}
.product-grid-large { margin-top: 10px; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 24px;
}
.section-head.compact h2,
.quote-highlight blockquote,
.sample-panel h2,
.video-band-copy h2,
.cta-panel h2 {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.45vw, 2.45rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.section-head-tight { margin-bottom: 20px; }
.centered { justify-content: center; text-align: center; }

.collection-card,
.category-tile,
.material-card,
.process-card,
.use-cases-grid article,
.detail-card,
.bundle-card,
.info-card,
.page-hero-card,
.prose-card,
.quote-form,
.product-card,
.cta-panel,
.sample-stack article,
.hero-note,
.showcase-card {
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(23, 19, 27, 0.07);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}
.dark-card {
  background: linear-gradient(180deg, rgba(23, 19, 27, 0.99), rgba(35, 26, 45, 0.99));
  color: white;
}
.dark-card p,
.dark-card li,
.dark-card .quote-attribution { color: rgba(255,255,255,0.82); }

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.category-grid-v10 .category-tile {
  min-height: unset;
  overflow: hidden;
}
.category-grid-v10 .category-tile img { height: 244px; }
.category-tile-copy { padding: 17px 18px 20px; }
.category-tile h3,
.process-card h3,
.detail-card h3,
.bundle-card h3,
.material-card h3,
.info-card h3,
.product-card h3 { font-size: 1.18rem; letter-spacing: -0.02em; }
.category-tile p,
.material-card p,
.process-card p,
.detail-card p,
.bundle-card p,
.info-card p,
.product-card p { margin-top: 10px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product-card {
  overflow: hidden;
  position: relative;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease, background 0.26s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 90px rgba(21, 17, 28, 0.16);
  border-color: rgba(199, 162, 106, 0.28);
  background: rgba(255,255,255,0.86);
}
.product-card-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  color: inherit;
}
.product-card-media {
  position: relative;
  aspect-ratio: 1 / 0.88;
  overflow: hidden;
  margin: 12px 12px 0;
  border-radius: 22px;
  background: #f6f1ea;
}
.product-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(23,19,27,0.09));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.product-card:hover .product-card-media img { transform: scale(1.04); }
.product-card:hover .product-card-media::after { opacity: 1; }
.product-card-copy { padding: 16px 18px 22px; }
.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.74rem;
  color: var(--gold-deep);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.product-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(199, 162, 106, 0.1);
  border: 1px solid rgba(199, 162, 106, 0.16);
}
.product-card h3 {
  margin-top: 12px;
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-size: 1.28rem;
}
.product-card p {
  margin-top: 10px;
  max-width: 32ch;
}
.product-use {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--text-soft);
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.tag-row span {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(23, 19, 27, 0.08);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.buyer-flow-grid { grid-template-columns: 0.9fr 1.1fr; align-items: stretch; }
.buyer-flow-panel {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.buyer-flow-panel p { margin-top: 16px; max-width: 34ch; }
.buyer-flow-panel .btn { margin-top: 24px; width: fit-content; }
.process-grid { grid-template-columns: repeat(4, 1fr); }
.process-card { padding: 22px; min-height: 100%; }
.process-card span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(199, 162, 106, 0.14);
  color: var(--gold-deep);
  font-weight: 800;
}
.process-card h3 { margin-top: 18px; }
.buyer-process-grid .process-card { min-height: 100%; }

.testimonial-layout { grid-template-columns: 1.02fr 0.98fr; align-items: stretch; }
.quote-highlight {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quote-highlight blockquote {
  margin-top: 18px;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
}
.quote-attribution {
  margin-top: 18px;
  font-size: 0.96rem;
  font-weight: 600;
}
.quote-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.detail-card,
.bundle-card,
.use-cases-grid article { padding: 20px; }

.video-band {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.compact-video-band { min-height: 360px; }
.video-band video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}
.video-band-copy {
  position: relative;
  z-index: 1;
  padding: 54px;
  max-width: 620px;
}
.video-band-copy p { margin-top: 18px; max-width: 46ch; }
.cta-panel {
  padding: 30px 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.78));
}

.footer-grid {
  grid-template-columns: 1.35fr 0.7fr 1fr;
  padding: 34px 0 58px;
  border-top: 1px solid var(--line);
}
.site-footer a,
.site-footer span,
.site-footer p {
  display: block;
  margin-top: 10px;
  color: var(--text-soft);
}
.site-footer h3 { font-size: 1rem; }
.footer-logo { height: 32px; width: auto; }

.page-hero-grid { grid-template-columns: 1fr 0.92fr; align-items: center; }
.page-hero-grid-v10 { gap: 32px; }
.page-hero-actions { margin-top: 24px; }
.page-hero-showcase { max-width: 500px; margin-left: auto; }
.form-hero-grid { align-items: start; }
.page-hero-card { overflow: hidden; }
.sample-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.sample-stack article { overflow: hidden; aspect-ratio: 0.9; }
.form-layout { grid-template-columns: 0.7fr 1.3fr; }
.form-side { display: grid; gap: 18px; }
.info-card { padding: 22px; }
.info-card ul { padding-left: 18px; margin: 16px 0 0; }
.info-card li { margin-top: 8px; }
.quote-form { padding: 24px; }
.field-grid { display: grid; gap: 14px; margin-bottom: 14px; }
.two-up { grid-template-columns: repeat(2, 1fr); }
.quote-form label { display: block; margin-bottom: 14px; }
.quote-form span { display: block; margin-bottom: 8px; font-weight: 600; }
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(23, 19, 27, 0.12);
  background: rgba(255,255,255,0.78);
  padding: 14px 16px;
  color: var(--text);
}
.quote-form textarea { min-height: 160px; resize: vertical; }
.prose-card { padding: 28px; }
.prose-card p + p,
.prose-card p + h2,
.prose-card h2 + p { margin-top: 14px; }
.prose-card h2 { margin-top: 22px; font-size: 1.1rem; letter-spacing: -0.02em; }
.prose-card a { text-decoration: underline; }
.bundle-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
.bundle-grid-v10 .bundle-card { min-height: 100%; }

.product-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 80;
}
.product-modal.open { display: block; }
.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 11, 18, 0.6);
  backdrop-filter: blur(10px);
}
.product-modal-panel {
  position: relative;
  width: min(calc(100% - 24px), 980px);
  margin: 40px auto;
  background: #fffdf8;
  border-radius: 32px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.24);
  overflow: hidden;
}
.product-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(23,19,27,0.08);
  background: rgba(255,255,255,0.84);
  font-size: 1.6rem;
}
.product-modal-body { grid-template-columns: 1fr 0.9fr; }
.modal-media img { width: 100%; height: 100%; object-fit: cover; min-height: 640px; }
.modal-copy { padding: 42px 34px; }
.modal-copy h2 {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}
.modal-copy p { margin-top: 14px; }
.modal-list { display: grid; gap: 14px; margin-top: 24px; }
.modal-list strong {
  display: block;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-deep);
}
.modal-list span { display: block; margin-top: 6px; color: var(--text-soft); }

@media (max-width: 1120px) {
  .hero-grid,
  .page-hero-grid,
  .buyer-flow-grid,
  .testimonial-layout,
  .form-layout,
  .product-modal-body,
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-layout-refined { grid-template-columns: 1fr 1fr; }
  .testimonial-layout-refined .quote-highlight { grid-column: 1 / -1; }
  .client-proof-grid { grid-template-columns: 1fr; }
  .mini-case-grid { grid-template-columns: 1fr 1fr; }
  .sample-pack-showcase { grid-template-columns: 1fr 1fr; grid-template-areas: "feature feature" "mini1 note"; max-width: none; }
  .sample-pack-feature { min-height: 360px; }
  .category-grid,
  .product-grid,
  .bundle-grid,
  .process-grid,
  .detail-grid { grid-template-columns: 1fr 1fr; }
  .page-hero-showcase { grid-template-columns: 1fr 1fr; grid-template-areas: 'wide wide' 'side1 side2'; }
  .page-hero-showcase .showcase-card-wide { aspect-ratio: 1 / 0.65; }
  .modal-media img { min-height: 420px; }
}

@media (max-width: 840px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 92px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 28px;
    background: rgba(251, 248, 243, 0.97);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
  }
  .site-nav.open { display: flex; }
  .site-nav a { width: 100%; }
  .hero-grid,
  .page-hero-grid,
  .buyer-flow-grid,
  .testimonial-layout,
  .form-layout,
  .category-grid,
  .product-grid,
  .bundle-grid,
  .process-grid,
  .detail-grid,
  .footer-grid,
  .product-modal-body,
  .sample-stack,
  .two-up,
  .mini-case-grid,
  .sample-pack-showcase { grid-template-columns: 1fr; }
  .header-shell { min-height: 62px; }
  .brand img { height: 32px; }
  .hero { padding-top: 8px; }
  .showcase-card,
  .showcase-card-wide { aspect-ratio: 1 / 0.9; }
  .hero-showcase-refined .showcase-card { aspect-ratio: 1 / 0.88; }
  .page-hero-showcase { grid-template-columns: 1fr; grid-template-areas: unset; }
  .page-hero-showcase .showcase-card,
  .page-hero-showcase .showcase-card-wide { aspect-ratio: 1 / 0.78; }
  .sample-pack-showcase { grid-template-areas: unset; }
  .sample-pack-feature,
  .sample-pack-mini { min-height: 240px; }
  .section { padding: 26px 0 68px; }
  .hero-copy h1,
  .page-hero h1 { font-size: clamp(2.55rem, 14vw, 4rem); }
  .section-head,
  .quick-links-head { flex-direction: column; align-items: start; }
  .category-rail-shell { padding: 20px; }
  .cta-panel { flex-direction: column; align-items: start; }
  .filter-bar.sticky { top: 86px; border-radius: 24px; }
  .product-modal-panel { width: min(calc(100% - 16px), 980px); margin: 16px auto; }
  .modal-copy { padding: 30px 22px; }
}

@media (max-width: 560px) {
  .shell { width: min(calc(100% - 20px), var(--shell)); }
  .header-shell { padding: 10px 12px; }
  .site-header { padding-top: 10px; }
  .brand img { height: 28px; }
  .showcase-label,
  .hero-card-label { left: 12px; bottom: 12px; }
  .category-grid-v10 .category-tile img { height: 208px; }
  .hero-copy-refined { padding-top: 0; }
  .product-card-media { aspect-ratio: 1 / 0.94; margin: 10px 10px 0; }
  .video-band { min-height: 320px; }
  .video-band-copy { padding: 28px 22px; }
  .quote-highlight,
  .buyer-flow-panel,
  .cta-panel { padding: 26px 20px; }
}

@media (max-width: 980px) {
  .hero-copy-refined h1 { max-width: 12ch; }
  .quick-links-head-refined p { white-space: normal; }
}
