/* ===============================================================
   Leda Art Supply — 2026 Mockup Stylesheet
   Maps to Shopify OS 2.0 section/block architecture (annotated).
   Tokens follow the "Bone / Ink / Stone / Terracotta / Forest" palette
   from 2026-UX-DesignStrategy-LedaArtSupply.md §5.9.
   =============================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Color */
  --bone:        #F4EFE6;
  --bone-deep:   #EAE2D2;
  --ink:         #1A1A1A;
  --ink-soft:    #2B2A28;
  --stone:       #5F584E;
  --stone-mid:   #8C857A;
  --stone-light: #C8BFB1;
  --terracotta:  #B5503C;
  --terracotta-deep: #993F2D;
  --forest:      #3F4D3D;
  --linen:       #FBF8F2;
  --paper-white: #FFFEFB;

  /* Type */
  --serif: "Fraunces", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Scale */
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-py: clamp(56px, 8vw, 112px);

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

/* ---------- Type scale ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; line-height: 1.1; margin: 0 0 0.4em; }
h1 { font-size: clamp(40px, 6vw, 76px); font-weight: 350; }
h2 { font-size: clamp(28px, 3.6vw, 46px); font-weight: 350; }
h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 400; }
h4 { font-size: 18px; font-weight: 500; font-family: var(--sans); }
p { margin: 0 0 1em; color: var(--ink-soft); }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 14px;
  display: inline-block;
}
.eyebrow--ink { color: var(--ink); }
.lede { font-size: clamp(17px, 1.4vw, 19px); line-height: 1.55; color: var(--ink-soft); max-width: 56ch; }

/* ---------- Container ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.container-wide { max-width: 1480px; margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-py); }
.section--tight { padding-block: clamp(40px, 5vw, 72px); }
.section--bone-deep { background: var(--bone-deep); }
.section--ink { background: var(--ink); color: var(--linen); }
.section--ink p { color: rgba(251, 248, 242, 0.78); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  cursor: pointer;
}
.btn-primary { background: var(--ink); color: var(--linen); }
.btn-primary:hover { background: var(--terracotta); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--linen); }
.btn-light { background: var(--linen); color: var(--ink); }
.btn-light:hover { background: var(--terracotta); color: var(--linen); }
.btn-link { padding: 0; background: none; color: var(--ink); border: 0; border-bottom: 1px solid var(--ink); border-radius: 0; padding-bottom: 4px; letter-spacing: .04em; text-transform: uppercase; font-size: 12px; }
.btn-link:hover { color: var(--terracotta); border-color: var(--terracotta); }
.btn--lg { padding: 18px 36px; font-size: 15px; }
.btn--icon svg { width: 16px; height: 16px; stroke-width: 1.5; }

/* ---------- Announcement bar ---------- */
/* Shopify section: announcement-bar */
.announcement {
  background: var(--ink);
  color: var(--linen);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 9px var(--gutter);
  display: flex; justify-content: center; align-items: center; gap: 32px;
  font-family: var(--sans);
}
.announcement a { text-decoration: underline; text-underline-offset: 3px; }
.announcement .swan { color: var(--terracotta); }
@media (max-width: 700px) {
  .announcement .a-extra { display: none; }
}

/* ---------- Header ---------- */
/* Shopify section: header */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--bone);
  border-bottom: 1px solid rgba(26,26,26,0.08);
  backdrop-filter: saturate(140%);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px var(--gutter);
}
.header-nav { display: flex; gap: 28px; align-items: center; }
.header-nav a {
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 500; color: var(--ink);
  position: relative; padding: 6px 0;
}
.header-nav a:hover { color: var(--terracotta); }
.header-utility { display: flex; gap: 18px; justify-content: flex-end; align-items: center; }
.header-utility button {
  background: transparent; border: 0; padding: 8px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; letter-spacing: 0.04em;
}
.header-utility svg { width: 18px; height: 18px; stroke: var(--ink); fill: none; stroke-width: 1.5; }
.header-utility button:hover svg { stroke: var(--terracotta); }
.cart-count { display: inline-flex; align-items: center; justify-content: center; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 99px; background: var(--terracotta); color: var(--linen); font-size: 10px; font-weight: 600; margin-left: 4px; }
.logo { display: inline-flex; align-items: center; gap: 10px; line-height: 1; font-family: var(--serif); letter-spacing: 0.02em; font-weight: 400; }
.logo img { display: block; }
/* Classic full-logo image (V2) */
.logo-img { height: 56px; width: auto; }
.logo-img--footer { height: 72px; width: auto; margin-bottom: 12px; }
/* Monogram + typeset wordmark lockup (V1) */
.logo-mark-img { height: 36px; width: auto; }
.logo-mark-img--lg { height: 52px; }
.logo-wordmark { font-family: var(--serif); font-size: 22px; font-weight: 400; letter-spacing: 0.02em; line-height: 1; color: var(--ink); white-space: nowrap; }
.logo-wordmark--lg { font-size: 28px; }
/* Version toggle (dev only) */
.version-toggle { position: fixed; top: 12px; left: 12px; z-index: 200; background: var(--ink); color: var(--linen); padding: 6px 0; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; display: flex; align-items: stretch; border-radius: 99px; overflow: hidden; }
.version-toggle a { padding: 6px 14px; color: var(--linen); opacity: 0.55; }
.version-toggle a.active { background: var(--terracotta); opacity: 1; }
.version-toggle .label { padding: 6px 12px 6px 14px; opacity: 0.6; border-right: 1px solid rgba(251,248,242,0.15); }

@media (max-width: 1000px) {
  .header-nav { display: none; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .logo { justify-self: start; }
}

/* ---------- HERO (homepage) ---------- */
/* Shopify section: hero */
.hero {
  position: relative;
  min-height: clamp(560px, 78vh, 820px);
  background: var(--ink);
  color: var(--linen);
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.hero-image {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.78) saturate(1.05);
}
.hero-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.55) 100%);
}
.hero-content {
  position: relative;
  padding: var(--gutter);
  padding-bottom: clamp(48px, 7vw, 96px);
  max-width: 760px;
}
.hero h1 { color: var(--linen); margin-bottom: 18px; font-weight: 350; }
.hero h1 em { font-style: italic; color: var(--bone); }
.hero-sub { font-size: clamp(15px, 1.3vw, 18px); color: rgba(251, 248, 242, 0.86); max-width: 52ch; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-proof {
  position: absolute; right: var(--gutter); bottom: clamp(48px, 7vw, 96px);
  text-align: right;
  color: rgba(251, 248, 242, 0.86);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  line-height: 1.8;
}
.hero-proof strong { display: block; font-family: var(--serif); font-size: clamp(28px, 3vw, 40px); color: var(--linen); letter-spacing: -0.01em; text-transform: none; font-weight: 350; }
@media (max-width: 800px) {
  .hero-proof { display: none; }
}

/* ---------- Press bar ---------- */
/* Shopify section: press-marquee */
.press-bar {
  border-top: 1px solid rgba(26,26,26,0.1);
  border-bottom: 1px solid rgba(26,26,26,0.1);
  padding: 28px var(--gutter);
  display: flex; align-items: center; justify-content: center; gap: clamp(28px, 5vw, 64px);
  flex-wrap: wrap;
  background: var(--bone);
}
.press-logo {
  font-family: var(--serif); font-style: italic; font-size: 18px;
  color: var(--stone); white-space: nowrap;
  letter-spacing: 0;
}
.press-logo em { font-weight: 500; color: var(--ink); font-style: normal; }
.press-logo--small { font-size: 13px; font-family: var(--mono); letter-spacing: 0.14em; text-transform: uppercase; font-style: normal; }

/* ---------- Section header ---------- */
.section-head { margin-bottom: clamp(40px, 5vw, 64px); display: flex; align-items: end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.section-head .head-text { max-width: 60ch; }
.section-head h2 { margin-bottom: 8px; }

/* ---------- Shop by Medium ---------- */
/* Shopify section: medium-grid */
.medium-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(8px, 1vw, 14px);
}
.medium-tile {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
}
.medium-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); filter: brightness(0.85) saturate(1.05); }
.medium-tile:hover img { transform: scale(1.05); }
.medium-tile-content {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  color: var(--linen);
  z-index: 2;
}
.medium-tile-content::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.75) 100%);
  z-index: -1;
}
.medium-tile-content h3 { color: var(--linen); font-family: var(--serif); font-size: 22px; margin-bottom: 4px; }
.medium-tile-content p { color: rgba(251, 248, 242, 0.78); font-size: 12px; margin: 0; font-family: var(--mono); letter-spacing: 0.14em; text-transform: uppercase; }
@media (max-width: 1000px) { .medium-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Bestseller cards ---------- */
/* Shopify section: featured-products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.product-card {
  display: flex; flex-direction: column;
  background: var(--linen);
  cursor: pointer;
  transition: transform .35s var(--ease);
}
.product-card:hover { transform: translateY(-4px); }
.product-card:hover .product-cover img { transform: scale(1.04); }
.product-cover { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--bone-deep); }
.product-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.product-cover .badge { position: absolute; top: 14px; left: 14px; background: var(--forest); color: var(--linen); font-family: var(--mono); font-size: 10px; padding: 4px 8px; letter-spacing: 0.12em; text-transform: uppercase; }
.product-meta { padding: 18px 20px 24px; }
.product-meta .pname { font-family: var(--serif); font-size: 19px; font-weight: 400; line-height: 1.2; margin-bottom: 2px; color: var(--ink); }
.product-meta .petym { font-family: var(--serif); font-style: italic; font-size: 13px; color: var(--terracotta); margin-bottom: 8px; line-height: 1.3; }
.product-meta .pspec { font-family: var(--mono); font-size: 11px; color: var(--stone); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.product-meta .price-row { display: flex; align-items: baseline; justify-content: space-between; margin-top: 12px; }
.product-meta .price { font-size: 16px; font-weight: 500; color: var(--ink); }
.product-meta .stars { color: var(--terracotta); font-size: 13px; letter-spacing: 0; }
.product-meta .stars span { color: var(--stone); margin-left: 4px; font-family: var(--mono); font-size: 11px; }
@media (max-width: 1000px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Tactile evidence (PDP) ---------- */
/* Shopify section: tactile-evidence */
.tactile-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
.tactile-grid .t-tile { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: var(--bone-deep); }
.tactile-grid .t-tile img { width: 100%; height: 100%; object-fit: cover; }
.tactile-grid .t-tile.full { grid-column: 1 / -1; aspect-ratio: 16 / 7; }
.tactile-grid .t-tile .label { position: absolute; left: 16px; bottom: 16px; color: var(--linen); font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; background: rgba(26,26,26,0.6); padding: 5px 10px; }

/* ---------- Sample swatch CTA ---------- */
/* Shopify section: swatch-banner */
.swatch-cta {
  background: var(--bone-deep);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
}
.swatch-cta .copy { padding: clamp(40px, 5vw, 80px); display: flex; flex-direction: column; justify-content: center; }
.swatch-cta .copy h2 em { font-style: italic; color: var(--terracotta); }
.swatch-cta .image { background-size: cover; background-position: center; min-height: 320px; }
.swatch-row { display: flex; align-items: center; gap: 28px; margin-top: 20px; flex-wrap: wrap; }
.swatch-row .price-tag { font-family: var(--mono); font-size: 12px; color: var(--ink); letter-spacing: 0.08em; }
.swatch-row .price-tag strong { font-family: var(--serif); font-size: 28px; font-weight: 350; display: block; letter-spacing: -0.01em; }
@media (max-width: 1000px) {
  .swatch-cta { grid-template-columns: 1fr; }
}

/* ---------- The Studio (editorial cards) ---------- */
/* Shopify section: studio-feed */
.studio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 32px); }
.studio-card { display: flex; flex-direction: column; }
.studio-card .img { aspect-ratio: 5 / 4; overflow: hidden; background: var(--ink); }
.studio-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.studio-card:hover .img img { transform: scale(1.04); }
.studio-card .meta { padding-top: 18px; }
.studio-card .cat { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 6px; }
.studio-card .h { font-family: var(--serif); font-size: 22px; font-weight: 400; line-height: 1.25; margin-bottom: 8px; color: var(--ink); }
.studio-card .meta p { font-size: 14px; color: var(--stone); }
@media (max-width: 1000px) { .studio-grid { grid-template-columns: 1fr; } }

/* ---------- Founder block ---------- */
/* Shopify section: founder-story */
.founder-block { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(28px, 5vw, 80px); align-items: center; }
.founder-block .image { aspect-ratio: 4 / 5; background-size: cover; background-position: center; }
.founder-block .content h2 { margin-bottom: 18px; }
.founder-block .content blockquote { font-family: var(--serif); font-size: clamp(20px, 1.8vw, 24px); line-height: 1.4; color: var(--ink); margin: 18px 0; padding-left: 18px; border-left: 2px solid var(--terracotta); font-style: italic; }
.founder-sig { font-family: var(--serif); font-style: italic; font-size: 18px; margin-top: 18px; color: var(--stone); }
@media (max-width: 1000px) { .founder-block { grid-template-columns: 1fr; } }

/* ---------- Reviews wall ---------- */
/* Shopify section: reviews-wall */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.review-tile {
  background: var(--linen);
  padding: 24px 22px;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 220px;
}
.review-tile .stars { color: var(--terracotta); font-size: 15px; }
.review-tile q { font-family: var(--serif); font-size: 17px; line-height: 1.5; color: var(--ink); quotes: '"' '"'; }
.review-tile q::before { content: open-quote; }
.review-tile q::after { content: close-quote; }
.review-tile .who { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); margin-top: auto; }
.review-tile.image { padding: 0; aspect-ratio: 1; }
.review-tile.image img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 1100px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Newsletter ---------- */
/* Shopify section: newsletter */
.newsletter {
  text-align: center;
  background: var(--ink);
  color: var(--linen);
  padding-block: clamp(64px, 9vw, 128px);
}
.newsletter h2 { color: var(--linen); margin-bottom: 12px; }
.newsletter p { color: rgba(251, 248, 242, 0.7); max-width: 56ch; margin: 0 auto 32px; }
.newsletter form { display: flex; gap: 0; max-width: 480px; margin: 0 auto; border-bottom: 1px solid rgba(251, 248, 242, 0.4); }
.newsletter input { flex: 1; background: transparent; border: 0; color: var(--linen); padding: 14px 4px; font-family: var(--sans); font-size: 15px; outline: none; }
.newsletter input::placeholder { color: rgba(251,248,242,0.5); }
.newsletter button { background: transparent; border: 0; color: var(--linen); padding: 14px 8px; font-family: var(--mono); letter-spacing: 0.14em; text-transform: uppercase; font-size: 12px; cursor: pointer; }
.newsletter button:hover { color: var(--terracotta); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bone-deep); padding: 80px var(--gutter) 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px; margin-bottom: 56px; }
.footer-grid h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); margin-bottom: 16px; font-weight: 500; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; font-size: 14px; }
.footer-grid li a:hover { color: var(--terracotta); }
.footer-brand p { font-size: 14px; color: var(--stone); max-width: 30ch; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid rgba(26,26,26,0.1); font-size: 12px; color: var(--stone); font-family: var(--mono); letter-spacing: 0.06em; flex-wrap: wrap; gap: 18px; }
@media (max-width: 1000px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ===============================================================
   PDP (product detail page) styles
   =============================================================== */

/* Breadcrumb */
.crumbs { padding: 18px var(--gutter); font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone); }
.crumbs a { color: var(--stone); }
.crumbs a:hover { color: var(--ink); }
.crumbs .sep { margin: 0 10px; color: var(--stone-light); }

/* Buy panel */
.pdp { padding-block: clamp(20px, 4vw, 40px); }
.pdp-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(40px, 5vw, 72px); align-items: flex-start; }
@media (max-width: 1100px) { .pdp-grid { grid-template-columns: 1fr; } }

/* Gallery */
.gallery { display: grid; grid-template-columns: 88px 1fr; gap: 16px; }
.gallery .thumbs { display: flex; flex-direction: column; gap: 12px; }
.gallery .thumb { width: 88px; aspect-ratio: 1; overflow: hidden; background: var(--bone-deep); cursor: pointer; border: 1.5px solid transparent; transition: border-color .2s var(--ease); }
.gallery .thumb.active { border-color: var(--ink); }
.gallery .thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery .main { aspect-ratio: 4/5; overflow: hidden; background: var(--bone-deep); position: relative; }
.gallery .main img { width: 100%; height: 100%; object-fit: cover; }
.gallery .main .video-flag { position: absolute; right: 16px; top: 16px; padding: 6px 10px; background: rgba(26,26,26,0.7); color: var(--linen); font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; display: flex; align-items: center; gap: 6px; }

/* Buy panel content */
.buy-title { font-size: clamp(28px, 3vw, 38px); margin-bottom: 4px; line-height: 1.1; }
.buy-sub { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); margin-bottom: 18px; }
.rating-row { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; font-size: 13px; }
.rating-row .stars { color: var(--terracotta); font-size: 16px; }
.rating-row .count { color: var(--stone); font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.rating-row .source { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); padding-left: 12px; border-left: 1px solid var(--stone-light); }
.price-display { font-family: var(--serif); font-size: 30px; font-weight: 350; color: var(--ink); margin-bottom: 4px; }
.price-display small { font-family: var(--mono); font-size: 11px; color: var(--stone); margin-left: 8px; letter-spacing: 0.1em; text-transform: uppercase; }
.short-desc { color: var(--ink-soft); margin: 18px 0 28px; max-width: 50ch; line-height: 1.6; }

.option-group { margin-bottom: 24px; }
.option-label { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); margin-bottom: 12px; }
.option-label .helper { color: var(--stone); text-transform: none; letter-spacing: 0.04em; }
.size-row { display: flex; gap: 8px; flex-wrap: wrap; }
.size-pill {
  border: 1px solid var(--stone-light);
  background: var(--bone);
  padding: 12px 14px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  cursor: pointer;
  text-align: center;
  display: flex; flex-direction: column; gap: 2px; align-items: center; min-width: 92px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.size-pill strong { font-family: var(--serif); font-size: 14px; font-weight: 400; letter-spacing: -0.01em; color: var(--ink); }
.size-pill:hover { border-color: var(--ink); }
.size-pill.active { border-color: var(--ink); background: var(--ink); color: var(--linen); }
.size-pill.active strong { color: var(--linen); }
.size-pill.disabled { color: var(--stone-light); border-style: dashed; cursor: not-allowed; text-decoration: line-through; }

.qty-add { display: grid; grid-template-columns: 100px 1fr; gap: 10px; margin-bottom: 14px; }
.qty { display: flex; border: 1px solid var(--stone-light); background: var(--bone); align-items: stretch; }
.qty button { flex: 0 0 32px; background: transparent; border: 0; font-size: 18px; color: var(--ink); }
.qty input { flex: 1; border: 0; background: transparent; text-align: center; font-family: var(--serif); font-size: 16px; min-width: 0; outline: none; }
.cart-btn { width: 100%; background: var(--terracotta); color: var(--linen); border-color: var(--terracotta); }
.cart-btn:hover { background: var(--terracotta-deep); border-color: var(--terracotta-deep); }

.shop-pay { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px; background: var(--linen); margin-bottom: 24px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.shop-pay strong { background: #5A31F4; color: white; padding: 4px 8px; border-radius: 3px; font-weight: 600; letter-spacing: 0; text-transform: none; }

.reassurance { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; padding-top: 24px; border-top: 1px solid var(--stone-light); }
.reassurance .item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 10px 8px; }
.reassurance svg { width: 22px; height: 22px; stroke: var(--ink); fill: none; stroke-width: 1.4; }
.reassurance .label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); line-height: 1.3; }

/* Three benefit pillars */
/* Shopify section: pillars */
.pillars { background: var(--bone-deep); padding-block: clamp(48px, 6vw, 88px); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 56px); }
.pillar { text-align: left; }
.pillar .num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; color: var(--terracotta); margin-bottom: 12px; }
.pillar h3 { font-family: var(--serif); font-size: clamp(20px, 2vw, 26px); margin-bottom: 8px; }
.pillar p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }
@media (max-width: 800px) { .pillars-grid { grid-template-columns: 1fr; } }

/* Spec table */
/* Shopify section: spec-table */
.specs-block { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(40px, 5vw, 80px); align-items: flex-start; }
.specs-block .head h2 { margin-bottom: 16px; }
.specs-block .head p { color: var(--ink-soft); max-width: 36ch; }
.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; font-family: var(--sans); }
.spec-table tr { border-top: 1px solid var(--stone-light); }
.spec-table tr:last-child { border-bottom: 1px solid var(--stone-light); }
.spec-table td { padding: 14px 0; vertical-align: top; }
.spec-table td:first-child { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone); width: 35%; }
.spec-table td:last-child { color: var(--ink); font-weight: 400; }
@media (max-width: 1000px) { .specs-block { grid-template-columns: 1fr; } }

/* Best for matrix */
/* Shopify section: best-for-matrix */
.best-for { background: var(--linen); padding: clamp(32px, 4vw, 56px); }
.best-for h3 { font-family: var(--serif); margin-bottom: 6px; }
.best-for p { color: var(--stone); margin-bottom: 24px; font-size: 14px; }
.best-for table { width: 100%; border-collapse: collapse; }
.best-for td { padding: 10px 0; border-bottom: 1px solid var(--stone-light); font-size: 14px; }
.best-for td:first-child { color: var(--ink); }
.best-for td:last-child { text-align: right; font-family: var(--mono); font-size: 13px; letter-spacing: 0.04em; }
.checks { color: var(--terracotta); letter-spacing: 0.08em; }
.checks.dim { color: var(--stone-light); }
.dash { color: var(--stone-light); font-family: var(--sans); font-style: italic; }

/* Compare strip */
/* Shopify section: comparator */
.comparator { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--stone-light); border: 1px solid var(--stone-light); }
.comparator .col { background: var(--linen); padding: 28px 22px; }
.comparator .col.us { background: var(--ink); color: var(--linen); }
.comparator .col.us h4, .comparator .col.us .row { color: var(--linen); }
.comparator h4 { font-family: var(--serif); font-size: 18px; font-weight: 400; margin-bottom: 4px; line-height: 1.2; }
.comparator .price { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--stone); margin-bottom: 18px; text-transform: uppercase; }
.comparator .col.us .price { color: rgba(251,248,242,0.6); }
.comparator .row { font-size: 13px; padding: 8px 0; border-top: 1px solid rgba(140,133,122,0.25); display: flex; justify-content: space-between; gap: 6px; }
.comparator .row .k { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); }
.comparator .col.us .row .k { color: rgba(251,248,242,0.5); }
@media (max-width: 1000px) { .comparator { grid-template-columns: repeat(2, 1fr); } }

/* Bundle strip */
/* Shopify section: bundle */
.bundle { background: var(--bone-deep); padding: clamp(28px, 4vw, 48px); display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; }
.bundle .b-images { display: flex; gap: 8px; }
.bundle .b-images .img { width: 96px; aspect-ratio: 4/5; background-size: cover; background-position: center; background-color: var(--linen); }
.bundle .b-images .plus { font-family: var(--serif); font-size: 30px; color: var(--stone); align-self: center; padding: 0 4px; }
.bundle h4 { font-family: var(--serif); font-size: 22px; font-weight: 400; margin-bottom: 4px; }
.bundle p { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone); margin: 0; }
.bundle .price-line { font-family: var(--serif); font-size: 26px; font-weight: 350; }
.bundle .price-line s { color: var(--stone); margin-right: 10px; font-size: 17px; }
@media (max-width: 1000px) {
  .bundle { grid-template-columns: 1fr; text-align: left; }
  .bundle .b-images { justify-content: flex-start; }
}

/* Q&A teaser */
/* Shopify section: qa */
.qa-grid { display: grid; grid-template-columns: 1fr 2fr; gap: clamp(28px, 4vw, 64px); }
.qa-list .q { padding: 18px 0; border-top: 1px solid var(--stone-light); }
.qa-list .q:last-child { border-bottom: 1px solid var(--stone-light); }
.qa-list .q-text { display: flex; align-items: baseline; gap: 14px; font-family: var(--serif); font-size: 17px; cursor: pointer; }
.qa-list .q-text::before { content: 'Q.'; font-family: var(--mono); font-size: 11px; color: var(--terracotta); letter-spacing: 0.12em; flex-shrink: 0; }
.qa-list .q-author { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); margin-top: 8px; }
@media (max-width: 1000px) { .qa-grid { grid-template-columns: 1fr; } }

/* Sticky add-to-cart bar (mobile) */
.sticky-buy {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: var(--ink); color: var(--linen);
  padding: 12px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-buy .name { font-family: var(--serif); font-size: 15px; }
.sticky-buy .price { font-family: var(--mono); font-size: 12px; opacity: 0.7; letter-spacing: 0.1em; }
.sticky-buy button { background: var(--terracotta); border: 0; color: var(--linen); padding: 12px 22px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }
@media (max-width: 800px) {
  .sticky-buy { display: flex; }
  body { padding-bottom: 76px; }
}

/* ---------- Misc ---------- */
.divider { height: 1px; background: rgba(26,26,26,0.1); margin-block: 0; }
.flair-rule { display: inline-block; width: 28px; height: 1px; background: var(--terracotta); vertical-align: middle; margin-right: 12px; }

/* ---------- Mockup callout banner (dev only — strip in production) ---------- */
.mockup-banner { position: fixed; top: 12px; right: 12px; z-index: 200; background: var(--terracotta); color: var(--linen); padding: 8px 14px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }

/* ===============================================================
   ABOUT PAGE styles
   =============================================================== */

/* about hero — same hero shell, slightly shorter */
.hero--about { min-height: clamp(440px, 60vh, 620px); }

/* ===============================================================
   COLLECTION (PLP) page styles
   =============================================================== */

/* Collection hero — light, typographic, no full-bleed image */
.collection-hero {
  background: var(--bone-deep);
  padding: clamp(48px, 7vw, 96px) var(--gutter) clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
.collection-hero h1 { font-size: clamp(40px, 5.5vw, 68px); font-weight: 350; line-height: 1.05; margin-bottom: 16px; }
.collection-hero h1 em { color: var(--terracotta); font-style: italic; }
.collection-hero p { font-size: clamp(15px, 1.3vw, 18px); color: var(--ink-soft); max-width: 56ch; line-height: 1.55; }
.collection-hero .ch-meta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); padding-bottom: 18px; border-bottom: 1px solid var(--stone-light); }
.collection-hero .ch-meta strong { display: block; font-family: var(--serif); font-size: clamp(28px, 3vw, 40px); font-weight: 350; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 4px; text-transform: none; }
@media (max-width: 1000px) { .collection-hero { grid-template-columns: 1fr; } }

/* Filter bar */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 18px var(--gutter);
  border-bottom: 1px solid var(--stone-light);
  background: var(--bone);
  position: sticky;
  top: 80px; /* below sticky header */
  z-index: 20;
}
.filter-bar .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-right: 8px;
}
.filter-bar .pill {
  background: transparent;
  border: 1px solid var(--stone-light);
  padding: 8px 14px;
  font-family: var(--sans);
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.filter-bar .pill svg { width: 12px; height: 12px; stroke: var(--ink); fill: none; stroke-width: 1.6; }
.filter-bar .pill.active { background: var(--ink); color: var(--linen); border-color: var(--ink); }
.filter-bar .pill.active svg { stroke: var(--linen); }
.filter-bar .pill:hover { border-color: var(--ink); }
.filter-bar .sep { width: 1px; height: 20px; background: var(--stone-light); margin: 0 4px; }
.filter-bar .sort { margin-left: auto; }
@media (max-width: 800px) { .filter-bar { top: 0; padding: 14px var(--gutter); } .filter-bar .label { display: none; } }

/* PLP product grid — larger, with more breathing room */
.plp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 36px); padding: clamp(40px, 5vw, 72px) var(--gutter); }
.plp-grid .product-card .product-cover { aspect-ratio: 4/5; }
.plp-grid .product-card .pname { font-size: 22px; }
@media (max-width: 1100px) { .plp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .plp-grid { grid-template-columns: 1fr; } }

/* PLP educational module */
.plp-edu { background: var(--bone-deep); padding: clamp(48px, 6vw, 96px) var(--gutter); }
.plp-edu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: center; max-width: 1280px; margin: 0 auto; }
.plp-edu-grid .image { aspect-ratio: 4/3; background-size: cover; background-position: center; background-color: var(--linen); }
@media (max-width: 1000px) { .plp-edu-grid { grid-template-columns: 1fr; } }

/* ===============================================================
   STUDIO (editorial / blog landing) page styles
   =============================================================== */

/* Studio featured article (full-width hero card) */
.studio-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--ink);
  color: var(--linen);
  margin-bottom: clamp(40px, 5vw, 80px);
  overflow: hidden;
}
.studio-feature .image { aspect-ratio: 4/3; background-size: cover; background-position: center; }
.studio-feature .copy { padding: clamp(40px, 5vw, 80px); display: flex; flex-direction: column; justify-content: center; }
.studio-feature .copy .cat { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 16px; }
.studio-feature .copy h2 { color: var(--linen); font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 16px; line-height: 1.1; }
.studio-feature .copy p { color: rgba(251, 248, 242, 0.78); font-size: 16px; line-height: 1.55; max-width: 50ch; margin-bottom: 24px; }
.studio-feature .copy .meta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(251, 248, 242, 0.55); margin-top: 14px; }
@media (max-width: 1000px) { .studio-feature { grid-template-columns: 1fr; } }

/* Category nav (pills) */
.category-nav { padding: 0 var(--gutter) clamp(32px, 4vw, 56px); border-bottom: 1px solid var(--stone-light); margin-bottom: clamp(40px, 5vw, 64px); }
.category-pills { display: flex; gap: 8px; flex-wrap: wrap; padding-bottom: 16px; }
.category-pills .pill {
  background: transparent;
  border: 1px solid var(--stone-light);
  padding: 10px 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.category-pills .pill.active, .category-pills .pill:hover { background: var(--ink); color: var(--linen); border-color: var(--ink); }

/* Studio article grid (mid-density) */
.studio-articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 48px) clamp(20px, 2.5vw, 32px);
  padding: 0 var(--gutter) clamp(40px, 5vw, 80px);
}
.studio-articles .studio-card .img { aspect-ratio: 4/3; }
@media (max-width: 1000px) { .studio-articles { grid-template-columns: 1fr; } }

/* Studio author block */
.author-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--stone-light);
}
.author-avatar { width: 36px; height: 36px; border-radius: 50%; background-size: cover; background-position: center; flex-shrink: 0; background-color: var(--bone-deep); }
.author-name { font-size: 13px; color: var(--ink); font-weight: 500; }
.author-meta { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }

/* myth block — large mark + editorial text */
.myth-block { display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(40px, 5vw, 96px); align-items: center; }
.myth-block .myth-mark { padding: clamp(20px, 4vw, 60px); display: flex; align-items: center; justify-content: center; }
.myth-block .myth-mark img { width: 100%; max-width: 360px; height: auto; opacity: 0.92; }
.myth-block .myth-text h2 { margin-bottom: 18px; }
.myth-block .myth-text p { color: var(--ink-soft); }
@media (max-width: 1000px) { .myth-block { grid-template-columns: 1fr; } .myth-block .myth-mark img { max-width: 200px; } }

/* prose block (origin story) */
.prose-block { max-width: 1080px; margin: 0 auto; }
.prose-block h2 { margin-bottom: 28px; max-width: 22ch; }
.prose-cols { columns: 2; column-gap: clamp(28px, 4vw, 56px); }
.prose-cols p { font-size: 16px; line-height: 1.6; color: var(--ink-soft); break-inside: avoid; }
.prose-cols p:first-child { font-family: var(--serif); font-size: 19px; line-height: 1.45; color: var(--ink); }
.prose-cols p:first-child::first-letter { font-family: var(--serif); float: left; font-size: 4.5em; line-height: 0.85; padding-right: 8px; padding-top: 6px; color: var(--terracotta); font-weight: 350; }
@media (max-width: 1000px) { .prose-cols { columns: 1; } }

/* founders grid */
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); }
.founder-card { background: var(--linen); display: flex; flex-direction: column; }
.founder-card .founder-photo { aspect-ratio: 4/5; background-size: cover; background-position: center; background-color: var(--bone-deep); }
.founder-card .founder-body { padding: clamp(28px, 3.5vw, 48px); }
.founder-eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 8px; }
.founder-card h3 { font-family: var(--serif); font-size: clamp(28px, 3vw, 40px); font-weight: 350; margin-bottom: 6px; line-height: 1; }
.founder-role { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--ink-soft); margin-bottom: 22px; line-height: 1.4; }
.founder-card p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; }
.founder-quote { font-family: var(--serif); font-size: 19px; line-height: 1.45; padding: 20px 0 20px 22px; margin: 22px 0; border-left: 2px solid var(--terracotta); font-style: italic; color: var(--ink); quotes: '"' '"'; }
.founder-quote::before { content: open-quote; }
.founder-quote::after { content: close-quote; }
@media (max-width: 1000px) { .founders-grid { grid-template-columns: 1fr; } }

/* craft grid */
.craft-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
.craft-grid .craft-image { aspect-ratio: 4/5; background-size: cover; background-position: center; background-color: var(--bone-deep); }
.craft-grid .craft-text h2 { margin-bottom: 18px; }
.craft-specs { margin-top: 28px; padding: 0; }
.craft-row { display: grid; grid-template-columns: 1fr 1.4fr; gap: 18px; padding: 18px 0; border-top: 1px solid var(--stone-light); }
.craft-row:last-child { border-bottom: 1px solid var(--stone-light); }
.craft-row dt { font-family: var(--serif); font-size: 18px; font-weight: 400; color: var(--ink); line-height: 1.25; }
.craft-row dd { margin: 0; color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; }
@media (max-width: 1000px) { .craft-grid { grid-template-columns: 1fr; } .craft-row { grid-template-columns: 1fr; gap: 4px; } }

/* values grid (mission + AI) */
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 80px); }
.value-card h3 { font-family: var(--serif); font-size: clamp(22px, 2.4vw, 30px); font-weight: 350; line-height: 1.2; color: var(--linen); margin-bottom: 14px; }
.value-card p { color: rgba(251, 248, 242, 0.78); font-size: 15.5px; line-height: 1.6; }
@media (max-width: 1000px) { .values-grid { grid-template-columns: 1fr; } }

/* press quotes */
.press-quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 32px); }
.press-quote { background: var(--linen); padding: clamp(24px, 2.5vw, 36px); margin: 0; display: flex; flex-direction: column; gap: 18px; }
.press-quote blockquote { font-family: var(--serif); font-size: 19px; line-height: 1.4; color: var(--ink); margin: 0; quotes: '"' '"'; font-weight: 400; }
.press-quote blockquote::before { content: open-quote; }
.press-quote blockquote::after { content: close-quote; }
.press-quote figcaption { font-size: 13px; color: var(--ink-soft); margin-top: auto; padding-top: 12px; border-top: 1px solid var(--stone-light); }
.press-quote figcaption strong { display: block; font-family: var(--serif); font-style: italic; font-size: 16px; font-weight: 400; color: var(--ink); margin-bottom: 2px; }
@media (max-width: 1000px) { .press-quotes-grid { grid-template-columns: 1fr; } }

/* numbers row */
.numbers-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(20px, 3vw, 48px); align-items: center; }
.number-cell { text-align: left; padding: 12px 0; border-left: 1px solid var(--stone-light); padding-left: clamp(14px, 1.5vw, 22px); }
.number-cell:first-child { border-left: 0; padding-left: 0; }
.big-number { font-family: var(--serif); font-size: clamp(32px, 3.5vw, 52px); font-weight: 350; color: var(--ink); line-height: 1; letter-spacing: -0.02em; margin-bottom: 8px; }
.number-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
@media (max-width: 1000px) {
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .number-cell { border-left: 0; padding-left: 0; border-top: 1px solid var(--stone-light); padding-top: 18px; }
  .number-cell:first-child, .number-cell:nth-child(2) { border-top: 0; padding-top: 0; }
}

/* ===============================================================
   ADDED 2026 — secondary pages (swatch, compare, bundles,
   gift cards, brand, help, legal). Reuses tokens above.
   =============================================================== */

/* ---------- Shared: simple page hero (typographic, no full-bleed) ---------- */
.page-hero {
  background: var(--bone-deep);
  padding: clamp(56px, 8vw, 120px) var(--gutter) clamp(40px, 5vw, 72px);
  text-align: center;
}
.page-hero .inner { max-width: 760px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(40px, 5.5vw, 72px); font-weight: 350; line-height: 1.04; margin-bottom: 18px; }
.page-hero h1 em { color: var(--terracotta); font-style: italic; }
.page-hero p { font-size: clamp(16px, 1.4vw, 19px); color: var(--ink-soft); max-width: 60ch; margin: 0 auto; line-height: 1.55; }
.page-hero .eyebrow { margin-bottom: 18px; }

/* ---------- Legal / prose pages ---------- */
.legal { max-width: 820px; margin: 0 auto; padding: clamp(40px, 6vw, 88px) var(--gutter); }
.legal .updated { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone); margin-bottom: 40px; padding-bottom: 20px; border-bottom: 1px solid var(--stone-light); }
.legal h2 { font-size: clamp(22px, 2.4vw, 30px); margin: 44px 0 14px; }
.legal h3 { font-size: 19px; margin: 28px 0 8px; font-family: var(--serif); }
.legal p, .legal li { font-size: 16px; line-height: 1.65; color: var(--ink-soft); }
.legal ul, .legal ol { padding-left: 22px; margin: 0 0 1em; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--terracotta); border-bottom: 1px solid var(--terracotta); }
.legal .toc { background: var(--linen); padding: 24px 28px; margin-bottom: 40px; }
.legal .toc h4 { margin-bottom: 12px; }
.legal .toc ul { list-style: none; padding: 0; margin: 0; columns: 2; }
.legal .toc li { margin-bottom: 6px; font-size: 14px; }
.legal .toc a { color: var(--ink); border: 0; border-bottom: 1px solid transparent; }
.legal .toc a:hover { border-color: var(--terracotta); color: var(--terracotta); }

/* ---------- FAQ / accordion ---------- */
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-group { margin-bottom: 48px; }
.faq-group > h2 { font-size: clamp(20px, 2.2vw, 28px); margin-bottom: 8px; }
.faq-group > .group-note { color: var(--stone); font-size: 14px; margin-bottom: 20px; }
details.faq-item { border-top: 1px solid var(--stone-light); }
details.faq-item:last-child { border-bottom: 1px solid var(--stone-light); }
details.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  font-family: var(--serif); font-size: clamp(17px, 1.6vw, 20px); color: var(--ink);
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary .ico { flex-shrink: 0; width: 18px; height: 18px; position: relative; }
details.faq-item summary .ico::before,
details.faq-item summary .ico::after { content: ''; position: absolute; background: var(--terracotta); transition: transform .25s var(--ease); }
details.faq-item summary .ico::before { top: 8px; left: 0; width: 18px; height: 2px; }
details.faq-item summary .ico::after { top: 0; left: 8px; width: 2px; height: 18px; }
details.faq-item[open] summary .ico::after { transform: scaleY(0); }
details.faq-item .answer { padding: 0 0 24px; max-width: 64ch; }
details.faq-item .answer p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.65; margin: 0 0 .8em; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 5vw, 80px); align-items: start; }
.contact-info .ci-block { padding: 22px 0; border-top: 1px solid var(--stone-light); }
.contact-info .ci-block:last-child { border-bottom: 1px solid var(--stone-light); }
.contact-info .ci-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 6px; }
.contact-info .ci-value { font-family: var(--serif); font-size: 20px; color: var(--ink); }
.contact-info .ci-block p { font-size: 14px; color: var(--stone); margin: 4px 0 0; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); margin-bottom: 8px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; background: var(--linen); border: 1px solid var(--stone-light);
  padding: 14px 16px; font-family: var(--sans); font-size: 15px; color: var(--ink); outline: none;
  transition: border-color .2s var(--ease);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--ink); }
.form-field textarea { min-height: 150px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ---------- Gift card ---------- */
.giftcard-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
.giftcard-visual {
  aspect-ratio: 8 / 5; background: linear-gradient(135deg, var(--ink) 0%, var(--terracotta-deep) 140%);
  color: var(--linen); padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.giftcard-visual .gv-mark { position: absolute; right: -30px; bottom: -30px; font-size: 220px; line-height: 1; color: rgba(251,248,242,0.06); font-family: var(--serif); }
.giftcard-visual .gv-brand { font-family: var(--serif); font-size: 26px; letter-spacing: 0.02em; }
.giftcard-visual .gv-amt { font-family: var(--serif); font-size: clamp(40px, 6vw, 64px); font-weight: 350; }
.giftcard-visual .gv-sub { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.8; }
.amount-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 10px 0 24px; }
.amount-pill { border: 1px solid var(--stone-light); background: var(--bone); padding: 12px 20px; font-family: var(--serif); font-size: 17px; cursor: pointer; transition: all .2s var(--ease); }
.amount-pill:hover { border-color: var(--ink); }
.amount-pill.active { background: var(--ink); color: var(--linen); border-color: var(--ink); }
@media (max-width: 900px) { .giftcard-grid { grid-template-columns: 1fr; } }

/* ---------- Compare matrix ---------- */
.compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 8px; }
.compare-matrix { border-collapse: collapse; width: 100%; min-width: 880px; font-size: 13.5px; }
.compare-matrix th, .compare-matrix td { padding: 16px 14px; text-align: left; border-bottom: 1px solid var(--stone-light); vertical-align: top; }
.compare-matrix thead th { position: sticky; top: 0; background: var(--bone); z-index: 2; }
.compare-matrix .row-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); white-space: nowrap; background: var(--bone); position: sticky; left: 0; z-index: 1; }
.compare-matrix thead .row-label { z-index: 3; }
.compare-matrix .prod-head h3 { font-family: var(--serif); font-size: 18px; font-weight: 400; margin: 0 0 2px; line-height: 1.15; }
.compare-matrix .prod-head .etym { font-family: var(--serif); font-style: italic; font-size: 12px; color: var(--terracotta); }
.compare-matrix .prod-head .pic { width: 100%; aspect-ratio: 4/5; max-width: 120px; object-fit: cover; background: var(--bone-deep); margin-bottom: 10px; }
.compare-matrix td .pill-buy { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; border-bottom: 1px solid var(--ink); padding-bottom: 2px; }
.compare-matrix tbody tr:hover td:not(.row-label) { background: var(--linen); }
.compare-matrix .best { color: var(--terracotta); }
.compare-matrix col.col-featured, .compare-matrix .featured { background: rgba(181,80,60,0.05); }

/* ---------- Retailer list ---------- */
.retailer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--stone-light); border: 1px solid var(--stone-light); }
.retailer-card { background: var(--bone); padding: 28px 24px; }
.retailer-card h3 { font-family: var(--serif); font-size: 20px; font-weight: 400; margin-bottom: 4px; }
.retailer-card .region { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 12px; }
.retailer-card p { font-size: 14px; color: var(--ink-soft); margin: 0 0 10px; }
.retailer-card .addr { font-size: 13px; color: var(--stone); line-height: 1.5; }
@media (max-width: 900px) { .retailer-grid { grid-template-columns: 1fr; } }

/* ---------- Wholesale / lead form callout ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
.split .img { aspect-ratio: 4/3; background-size: cover; background-position: center; background-color: var(--bone-deep); }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 32px); }
.stat-strip .cell { padding: 8px 0; }
.stat-strip .big { font-family: var(--serif); font-size: clamp(28px, 3.5vw, 48px); font-weight: 350; line-height: 1; color: var(--ink); margin-bottom: 6px; }
.stat-strip .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
@media (max-width: 700px) { .stat-strip { grid-template-columns: 1fr 1fr; gap: 24px; } }

/* ---------- Swatch program steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 48px); }
.step .n { font-family: var(--serif); font-size: 48px; font-weight: 350; color: var(--terracotta); line-height: 1; margin-bottom: 12px; }
.step h3 { font-family: var(--serif); font-size: 22px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }
@media (max-width: 800px) { .steps-grid { grid-template-columns: 1fr; } }
.swatch-papers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 800px) { .swatch-papers { grid-template-columns: 1fr; } }
.paper-chip { background: var(--linen); padding: 22px 22px; border-top: 3px solid var(--terracotta); }
.paper-chip h4 { font-family: var(--serif); font-size: 18px; font-weight: 400; margin-bottom: 6px; }
.paper-chip .ps { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--stone); text-transform: uppercase; margin-bottom: 10px; }
.paper-chip p { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* ---------- Bundles ---------- */
.bundle-stack { display: flex; flex-direction: column; gap: clamp(16px, 2vw, 24px); }
.bundle-stack .bundle { width: 100%; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); color: var(--linen); text-align: center; padding: clamp(56px, 8vw, 112px) var(--gutter); }
.cta-band h2 { color: var(--linen); margin-bottom: 16px; }
.cta-band p { color: rgba(251,248,242,0.72); max-width: 56ch; margin: 0 auto 32px; }
