/* LO REN FORGE — WordPress Theme Stylesheet
   Ported from the Claude Design prototype
   ============================================= */

/* ============ Tokens ============ */
:root {
  /* base palette — ember (default) */
  --bg:          #F4EFE6;
  --bg-cream:    #FBF8F2;
  --bg-paper:    #ECE5D8;
  --ink:         #1A1715;
  --ink-80:      #2c2723;
  --ink-60:      #5a5249;
  --ink-40:      #8a8278;
  --ink-20:      #c4bdb1;
  --ink-10:      #ddd6c8;
  --line:        rgba(26, 23, 21, 0.12);
  --line-strong: rgba(26, 23, 21, 0.22);
  --ember:       #B8462A;
  --ember-deep:  #8a3320;
  --ember-glow:  #d97540;
  --gold:        #B2954F;
  --gold-deep:   #8c7338;
  --wood:        #6B4423;
  --wood-deep:   #4a2e17;

  --accent:      var(--ember);
  --accent-deep: var(--ember-deep);

  /* typography */
  --f-display: "Cormorant Garamond", "Cormorant", "EB Garamond", Georgia, serif;
  --f-sans:    "Be Vietnam Pro", "Inter", system-ui, -apple-system, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, monospace;

  /* spacing */
  --pad-x:    clamp(20px, 4vw, 56px);
  --section-y: clamp(80px, 9vw, 140px);

  --radius:      2px;
  --radius-card: 4px;
}

/* Palette overrides */
[data-palette="ink"] {
  --accent:      var(--ink);
  --accent-deep: #000;
}
[data-palette="wood"] {
  --accent:      var(--wood);
  --accent-deep: var(--wood-deep);
}

/* Font pair override */
[data-font="playfair"] {
  --f-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
}

/* Marquee toggle */
[data-marquee="off"] .hero-marquee { display: none; }

/* ============ Reset ============ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--f-sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button  { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; padding: 0; }
a       { color: inherit; text-decoration: none; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: inherit; }
img, svg { max-width: 100%; }
h1, h2, h3, h4, h5, h6 { margin: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ============ Skip link ============ */
.skip-link { position: absolute; left: -999px; top: auto; width: 1px; height: 1px; overflow: hidden; z-index: -999; }
.skip-link:focus { position: fixed; top: 16px; left: 16px; width: auto; height: auto; padding: 12px 20px; background: var(--ink); color: var(--bg-cream); z-index: 9999; border-radius: var(--radius-card); }

/* ============ HEADER / NAV ============ */
.topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-cream);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.topnav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0;
  padding: 0 var(--pad-x);
  height: 64px;
  max-width: 1920px;
  margin: 0 auto;
}
.topnav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-line-1 {
  font-family: var(--f-mono);    /* "LO REN" — JetBrains Mono */
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--ink-60);
}
.brand-line-2 {
  font-family: var(--f-display); /* "FORGE" — Cormorant Garamond */
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-transform: none;
}
.topnav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.5vw, 40px);
}
.nav-link {
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-60);
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.is-active { color: var(--ink); }
.nav-link.is-active { color: var(--accent); }

.topnav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--ink-60);
  transition: color 0.15s;
}
.nav-icon:hover { color: var(--ink); }

.cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  background: transparent;
  transition: all 0.15s;
  cursor: pointer;
}
.cart-btn:hover { background: var(--bg-paper); border-color: var(--ink); }
.cart-count {
  font-family: var(--f-mono);
  font-size: 12px;
  min-width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--bg-cream);
  border-radius: 50%;
}
.nav-burger {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.2s;
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-60);
  padding: 6px 10px;
  border-radius: 100px;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  background: transparent;
  transition: background 0.15s;
}
.lang-toggle span.is-active { color: var(--ink); font-weight: 600; }
.lang-toggle:hover { background: var(--bg-paper); }
.lang-sep { opacity: 0.4; }

@media (max-width: 1100px) {
  .nav-burger        { display: flex; }
  .topnav-links      { display: none; }
  .topnav-inner      { grid-template-columns: auto auto 1fr auto; }
}

/* ============ MOBILE MENU ============ */
.mm-scrim {
  position: fixed; inset: 0;
  background: rgba(26, 23, 21, 0.45);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  z-index: 110;
}
.mm-scrim.is-open { opacity: 1; pointer-events: auto; }

.mobile-menu {
  position: fixed; top: 0; bottom: 0; left: 0;
  width: min(360px, 100vw);
  background: var(--bg-cream);
  z-index: 111;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.5, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 30px 0 80px -30px rgba(26, 14, 8, 0.3);
}
/* Ensure [hidden] wins over display:flex even with class specificity */
.mobile-menu[hidden] { display: none !important; }
.mobile-menu.is-open { transform: translateX(0); }

.mm-head {
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.mm-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: none; background: transparent; cursor: pointer;
  color: var(--ink-60);
}
.mm-close:hover { color: var(--ink); }

.mm-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 8px 0;
}
.mm-link {
  display: block;
  padding: 16px 28px;
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color 0.15s, padding-left 0.15s;
}
.mm-link:hover { color: var(--accent); padding-left: 36px; }
.mm-link.is-active { color: var(--accent); }

.mm-footer {
  padding: 24px 28px;
  border-top: 1px solid var(--line);
}
.mm-tagline {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-40);
  text-transform: uppercase;
}

/* ============ CART DRAWER ============ */
.cart-scrim {
  position: fixed; inset: 0;
  background: rgba(26, 23, 21, 0.5);
  z-index: 200; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.cart-scrim.is-open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed; top: 0; right: 0;
  width: 90%; max-width: 440px; height: 100vh;
  background: var(--bg-cream);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.5, 0, 0.2, 1);
  display: flex; flex-direction: column;
  box-shadow: -4px 0 32px -8px rgba(0,0,0,0.2);
}
/* Ensure [hidden] wins over display:flex even with class specificity */
.cart-drawer[hidden] { display: none !important; }
.cart-drawer.is-open { transform: translateX(0); }

.cart-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.cart-title {
  font-family: var(--f-display);
  font-size: 24px; font-weight: 500; margin: 0;
}
.cart-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-60); cursor: pointer;
}
.cart-close:hover { color: var(--ink); }

.cart-body {
  flex: 1; overflow-y: auto;
  padding: 20px 28px;
}
.cart-empty {
  text-align: center; padding: 60px 20px;
}
.cart-empty p { font-size: 16px; color: var(--ink-60); margin: 0 0 24px; }

.cart-footer {
  padding: 24px 28px;
  border-top: 1px solid var(--line);
  background: var(--bg-paper);
  flex-shrink: 0;
}
.cart-subtotal {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 16px;
}
.cart-subtotal > span:first-child {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.14em; color: var(--ink-60); text-transform: uppercase;
}
.cart-subtotal-price {
  font-family: var(--f-display); font-size: 28px; font-weight: 500;
}
.cart-note {
  font-size: 12px; color: var(--ink-60);
  text-align: center; margin: 12px 0 0;
}

/* Cart item */
.cart-item {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 14px; padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.ci-thumb {
  width: 80px; height: 80px;
  border-radius: var(--radius); overflow: hidden;
  background: var(--bg-paper);
}
.ci-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ci-info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.ci-title {
  font-family: var(--f-display); font-size: 16px; font-weight: 500; margin: 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ci-variant { font-size: 13px; color: var(--ink-60); margin: 0; }
.ci-maker {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.12em; color: var(--accent); text-transform: uppercase;
}
.ci-actions {
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.ci-price { font-family: var(--f-display); font-size: 18px; font-weight: 500; }
.qty-control {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--line-strong); border-radius: 100px; padding: 2px;
}
.qty-btn {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border: none; background: transparent; cursor: pointer;
  color: var(--ink-80); border-radius: 50%;
}
.qty-btn:hover { background: var(--bg-paper); color: var(--ink); }
.qty-display {
  font-family: var(--f-mono); font-size: 13px;
  min-width: 24px; text-align: center;
}
.ci-remove {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-40); cursor: pointer;
}
.ci-remove:hover { color: var(--accent); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: clamp(500px, 70vh, 800px);
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; background: var(--bg);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 880px;
  padding: clamp(60px, 8vw, 120px) var(--pad-x);
  color: var(--bg-cream);
}
.hero-title {
  font-family: var(--f-display);
  font-size: clamp(56px, 10vw, 160px);
  font-weight: 400; line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 clamp(24px, 3vw, 48px);
}
.hero-lede {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 32px);
  line-height: 1.4; color: rgba(251,248,242,0.8);
  margin: 0 0 clamp(32px, 4vw, 60px);
  max-width: 50ch; margin-inline: auto;
  margin-bottom: clamp(32px, 4vw, 60px);
}
.hero-cta { display: inline-flex; }

/* Marquee */
.marquee {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 50px; overflow: hidden; pointer-events: none; opacity: 0.4;
}
.marquee-inner {
  display: flex; gap: 80px;
  animation: marquee-scroll 40s linear infinite;
  white-space: nowrap;
}
.marquee-inner span {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.3em; color: rgba(251,248,242,0.6);
  text-transform: uppercase; padding: 0 40px;
  line-height: 50px;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Ember backdrop */
.ember-backdrop {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: var(--ember-intensity, 0.8);
  z-index: 0;
}
.ember-svg { width: 100%; height: 100%; display: block; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px;
  font-family: var(--f-sans); font-size: 14px; font-weight: 500;
  text-decoration: none; border-radius: 100px; cursor: pointer;
  transition: all 0.15s; border: none; white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--bg-cream); }
.btn-primary:hover { background: var(--accent); }
.btn-primary:disabled { background: var(--ink-40); cursor: not-allowed; }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--bg-paper); }
.btn-large  { padding: 16px 32px; font-size: 15px; }
.btn-full   { width: 100%; }

/* ============ SECTION SHARED ============ */
.section-container { max-width: 1680px; margin: 0 auto; }
.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.section-eyebrow {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.section-title {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400; line-height: 1;
  letter-spacing: -0.015em; margin: 0;
}
.section-title em { font-style: italic; }
.page-title {
  font-family: var(--f-display);
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 400; line-height: 0.95;
  letter-spacing: -0.02em;
}
.page-title em { font-style: italic; }

/* ============ FEATURED PRODUCTS ============ */
.featured-section {
  padding: var(--section-y) var(--pad-x);
  background: var(--bg-paper);
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 3vw, 40px);
}
.featured-footer {
  text-align: center;
  margin-top: clamp(40px, 5vw, 60px);
}

/* ============ PRODUCT CARD ============ */
.product-card {
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  border-radius: var(--radius-card); overflow: hidden;
  background: var(--bg-cream);
  transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px -8px rgba(26, 23, 21, 0.16);
}
.product-thumb {
  position: relative;
  aspect-ratio: 1;
  background: var(--bg-paper);
  overflow: hidden;
}
.product-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-thumb img { transform: scale(1.04); }

.product-batch {
  position: absolute; top: 12px; right: 12px;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.15em; padding: 4px 8px;
  background: var(--bg-cream); color: var(--accent);
  border-radius: 2px;
}
.product-sold-out-badge {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.12em; padding: 4px 8px;
  background: var(--ink-40); color: var(--bg-cream);
  border-radius: 2px; text-transform: uppercase;
}
.product-info { padding: clamp(16px, 2vw, 24px); }
.product-category {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 6px;
}
.product-name {
  font-family: var(--f-display); font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 500; line-height: 1.15; margin-bottom: 6px;
}
.product-subtitle {
  font-size: 13px; color: var(--ink-60); margin: 0 0 10px;
}
.product-meta {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px; flex-wrap: wrap;
}
.product-maker {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.12em; color: var(--ink-60); text-transform: uppercase;
}
.product-run {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.1em; color: var(--ink-60); text-transform: uppercase;
}
.product-stock {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.1em; color: #4a7c59; text-transform: uppercase;
}
.product-stock--out { color: var(--ink-40); }
.product-price .price {
  font-family: var(--f-display); font-size: 22px; font-weight: 500;
}
/* Override WooCommerce price HTML */
.product-price .woocommerce-Price-amount { font-family: var(--f-display); font-size: 22px; font-weight: 500; }
.product-price ins { text-decoration: none; }
.product-price del { font-size: 15px; color: var(--ink-40); margin-left: 6px; }

/* ============ STORY BLOCK ============ */
.story-block { padding: var(--section-y) var(--pad-x); background: var(--bg-paper); }
.sb-grid {
  max-width: 1480px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.sb-image {
  aspect-ratio: 4/3; border-radius: var(--radius-card);
  overflow: hidden; background: #1a1310; position: relative;
}
.sb-text { max-width: 560px; }
.sb-body {
  font-size: 16px; line-height: 1.75;
  color: var(--ink-80); margin: 18px 0 28px;
}
@media (max-width: 1000px) {
  .sb-grid { grid-template-columns: 1fr; }
}

/* ============ CRAFT PREVIEW ============ */
.craft-preview { padding: var(--section-y) var(--pad-x); }
.cp-container { max-width: 1280px; margin: 0 auto; }
.cp-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin: clamp(40px, 5vw, 60px) 0;
}
.cp-step {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 24px 16px;
  border: 1px solid var(--line); border-radius: var(--radius-card);
  background: var(--bg-cream); text-align: center;
  transition: border-color 0.15s, background 0.15s;
}
.cp-step:hover { border-color: var(--accent); background: var(--bg-paper); }
.cp-n { font-family: var(--f-display); font-size: 32px; font-weight: 400; color: var(--accent); line-height: 1; }
.cp-label { font-family: var(--f-sans); font-size: 13px; color: var(--ink-80); }
.cp-cta { text-align: center; margin-top: clamp(40px, 5vw, 60px); }

/* ============ MATERIALS BLOCK ============ */
.materials-block { padding: var(--section-y) var(--pad-x); background: var(--bg-paper); }
.mb-container { max-width: 1080px; margin: 0 auto; }
.mb-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 3vw, 40px);
  margin-top: clamp(40px, 5vw, 60px);
}
.mb-card {
  padding: 40px 32px;
  border: 1px solid var(--line); border-radius: var(--radius-card);
  background: var(--bg); text-align: center;
  transition: border-color 0.15s;
}
.mb-card:hover { border-color: var(--accent); }
.mb-icon { width: 48px; height: 48px; margin: 0 auto 24px; }
.mb-title { font-family: var(--f-display); font-size: 24px; font-weight: 500; margin: 0 0 12px; }
.mb-desc { font-size: 14px; line-height: 1.7; color: var(--ink-80); margin: 0; }

/* ============ PROMISE BLOCK ============ */
.promise-block { padding: var(--section-y) var(--pad-x); }
.pb-container { max-width: 1280px; margin: 0 auto; }
.pb-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(28px, 4vw, 48px);
  margin-top: clamp(40px, 5vw, 60px);
}
.pb-item { text-align: center; }
.pb-n {
  font-family: var(--f-display); font-size: 56px; font-weight: 400;
  color: var(--accent); line-height: 1; margin-bottom: 16px; opacity: 0.4;
}
.pb-item h4 { font-family: var(--f-display); font-size: 22px; font-weight: 500; margin: 0 0 12px; }
.pb-item p  { font-size: 14px; line-height: 1.7; color: var(--ink-80); margin: 0; max-width: 32ch; margin-inline: auto; }

/* ============ NEWSLETTER ============ */
.newsletter { padding: var(--section-y) var(--pad-x); background: var(--ink); color: var(--bg-cream); }
.nl-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px); align-items: center;
}
.nl-title {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400; line-height: 1; letter-spacing: -0.015em;
  margin: 0 0 18px; color: var(--bg-cream);
}
.nl-title em { font-style: italic; color: var(--ink-20); }
.nl-lede { font-size: 16px; color: var(--ink-20); margin: 0; line-height: 1.6; max-width: 50ch; }
.nl-row {
  display: flex; gap: 10px;
  padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.18);
}
.nl-row input {
  flex: 1; background: transparent; border: none;
  color: var(--bg-cream); font-size: 16px; outline: none; padding: 8px 0;
}
.nl-row input::placeholder { color: var(--ink-40); }
.nl-row .btn { white-space: nowrap; background: var(--gold); color: var(--ink); }
.nl-row .btn:hover { background: var(--gold-deep); }
.nl-fine {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.1em; color: var(--ink-40);
  margin: 14px 0 0; text-transform: uppercase;
}
.nl-success { color: var(--gold); font-family: var(--f-display); font-size: 20px; }
@media (max-width: 900px) { .nl-grid { grid-template-columns: 1fr; } }

/* ============ FOOTER ============ */
.site-footer { background: var(--ink); color: var(--bg-cream); padding: var(--section-y) var(--pad-x) clamp(40px, 5vw, 80px); }
.footer-top {
  max-width: 1680px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr;
  gap: clamp(40px, 6vw, 120px);
  padding-bottom: clamp(40px, 5vw, 80px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: clamp(32px, 4vw, 48px);
}
.footer-brand { display: flex; align-items: flex-start; gap: 16px; }
.footer-wordmark {
  font-family: var(--f-display); font-size: 24px; font-weight: 500;
  color: var(--bg-cream); letter-spacing: 0.05em;
}
.footer-tag {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.18em; color: var(--ink-40);
  text-transform: uppercase; margin-top: 4px;
}
.footer-cols {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(24px, 3vw, 40px);
}
.footer-col h5 {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-40); margin-bottom: 16px;
}
.footer-col a {
  display: block; color: var(--ink-20); font-size: 14px;
  text-decoration: none; margin-bottom: 10px;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--bg-cream); }
.footer-col p { color: var(--ink-20); font-size: 14px; line-height: 1.6; margin-bottom: 8px; }
.ci-label {
  display: block; font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.12em; color: var(--ink-40); text-transform: uppercase; margin-bottom: 2px;
}
.footer-bottom {
  max-width: 1680px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.08em; color: var(--ink-40);
}
.footer-mono { text-transform: uppercase; letter-spacing: 0.2em; }
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ============ FORMS ============ */
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.14em; color: var(--ink-60); text-transform: uppercase;
}
.form-field input,
.form-field textarea,
.form-field select {
  padding: 12px 16px;
  border: 1px solid var(--line-strong); border-radius: var(--radius-card);
  font-family: var(--f-sans); font-size: 15px;
  background: var(--bg); outline: none;
  transition: border-color 0.15s; width: 100%;
  color: var(--ink);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--ink); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ============ RICH TEXT ============ */
.rte { font-size: 16px; line-height: 1.75; color: var(--ink-80); }
.rte h1, .rte h2, .rte h3, .rte h4 {
  font-family: var(--f-display); font-weight: 500; color: var(--ink); margin: 32px 0 16px;
}
.rte h1 { font-size: 40px; }
.rte h2 { font-size: 32px; }
.rte h3 { font-size: 24px; }
.rte p  { margin: 0 0 16px; }
.rte a  { color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--accent); }
.rte a:hover { color: var(--ink); border-color: var(--ink); }
.rte ul, .rte ol { margin: 0 0 16px; padding-left: 24px; list-style: revert; }
.rte li { margin-bottom: 8px; }
.rte .lede { font-family: var(--f-display); font-style: italic; font-size: clamp(20px, 2.5vw, 28px); line-height: 1.5; color: var(--ink); margin-bottom: 40px; }

/* ============ CONTENT PAGES ============ */
.content-page { max-width: 860px; margin: 0 auto; padding: var(--section-y) var(--pad-x); }
.content-page-header { margin-bottom: 40px; }
.content-page-body { }

/* ============ COLLECTION / SHOP ============ */
/* ============ SHOP HEADER ============ */
.shop-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px;
  padding: clamp(40px, 5vw, 80px) var(--pad-x) clamp(30px, 4vw, 48px);
  max-width: 1680px; margin: 0 auto;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
.shop-header-text { flex: 1; }
.shop-title {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400; line-height: 0.95;
  letter-spacing: -0.02em; margin: 12px 0 20px;
}
.shop-title em { font-style: italic; }
.shop-lede {
  font-size: clamp(14px, 1.2vw, 16px); line-height: 1.7;
  color: var(--ink-60); max-width: 640px;
}
.shop-counter {
  display: flex; align-items: baseline; justify-content: flex-end;
  gap: 14px; flex-shrink: 0;
}
.counter-num {
  font-family: var(--f-display);
  font-size: clamp(56px, 6vw, 88px); font-weight: 400;
  line-height: 0.9; letter-spacing: -0.02em; color: var(--accent);
}
.counter-label {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-60); text-align: left;
  line-height: 1.5;
}

/* ============ SHOP CONTROLS ============ */
.shop-controls {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 0 var(--pad-x);
  max-width: 1680px; margin: 0 auto;
  margin-bottom: 40px;
}
.cat-tabs { display: flex; gap: 4px; flex-wrap: wrap; }
.cat-tab {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.06em;
  color: var(--ink-60); background: transparent; cursor: pointer;
  text-decoration: none; transition: all 0.15s; white-space: nowrap;
}
.cat-tab:hover { border-color: var(--ink-60); color: var(--ink); }
.cat-tab.is-active { background: var(--ink); color: var(--bg-cream); border-color: var(--ink); }
.cat-tab-count {
  font-size: 10px; opacity: 0.6;
}
.shop-tools { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.view-toggle { display: flex; border: 1px solid var(--line); border-radius: var(--radius-card); overflow: hidden; }
.vt-btn {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 34px; padding: 0;
  background: transparent; border: none; cursor: pointer;
  color: var(--ink-40); transition: all 0.15s;
}
.vt-btn:hover { color: var(--ink); }
.vt-btn.is-active { background: var(--ink); color: var(--bg-cream); }
.sort-select {
  padding: 8px 32px 8px 14px;
  border: 1px solid var(--line); border-radius: var(--radius-card);
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 10px center;
  -webkit-appearance: none; appearance: none;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.06em;
  color: var(--ink-60); cursor: pointer;
}
.sort-form { display: contents; }

/* ============ COLLECTION LAYOUT ============ */
.collection-layout { padding: 0 var(--pad-x) var(--section-y); max-width: 1680px; margin: 0 auto; }

/* Grid view */
.cp-grid.view-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  column-gap: clamp(20px, 2.5vw, 36px);
  row-gap: clamp(40px, 5vw, 60px);
}
.cp-grid.view-grid .product-row { display: none; }
.cp-grid.view-grid .product-card { display: flex; }

/* List view */
.cp-grid.view-list {
  display: flex; flex-direction: column;
  gap: 0;
}
.cp-grid.view-list .product-card { display: none; }
.cp-grid.view-list .product-row { display: grid; }

/* ── Product grid card hover overlay ── */
.product-hover-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: rgba(26, 19, 10, 0.55);
  color: var(--bg-cream);
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.1em;
  opacity: 0; transition: opacity 0.2s;
  pointer-events: none;
}
.product-card:hover .product-hover-overlay { opacity: 1; }
.product-info-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 12px; margin-bottom: 8px;
}
.product-info-top .product-price { text-align: right; flex-shrink: 0; }

/* ── Product list row (view-list) ── */
.product-row {
  display: none; /* shown by .view-list */
  grid-template-columns: 90px 60px 1.5fr 1fr 1fr 0.8fr auto 30px;
  gap: 18px;
  align-items: center;
  padding: 18px 8px; border-bottom: 1px solid var(--line);
  text-decoration: none; color: var(--ink);
  transition: background 0.15s;
  cursor: pointer;
}
.product-row:hover { background: var(--bg-paper); }
.product-row:hover .prow-arrow { transform: translateX(4px); color: var(--ink); }
.prow-num {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.08em;
  color: var(--ink-40); white-space: nowrap;
}
.prow-thumb {
  position: relative;
  width: 60px; height: 50px; flex-shrink: 0;
  border-radius: 2px; overflow: hidden; background: #1a1310;
}
.prow-thumb img { width: 100%; height: 100%; object-fit: cover; }
.prow-name { min-width: 0; }
.prow-name h3 { font-family: var(--f-display); font-size: 20px; font-weight: 500; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.prow-name p { font-size: 12px; color: var(--ink-60); margin: 2px 0 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.prow-spec, .prow-maker, .prow-run {
  font-family: var(--f-mono); font-size: 11px; color: var(--ink-60);
  letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.prow-price { font-family: var(--f-mono); font-size: 13px; text-align: right; white-space: nowrap; }
.prow-arrow { color: var(--ink-60); flex-shrink: 0; transition: transform 0.15s; }

/* ── legacy collection-header (keep for other pages) ── */
.collection-header {
  padding: clamp(40px, 5vw, 80px) var(--pad-x) clamp(30px, 4vw, 60px);
  text-align: center; max-width: 920px; margin: 0 auto;
}
.ch-description { font-size: 16px; line-height: 1.7; color: var(--ink-80); margin-top: 20px; }

/* Pagination */
.pagination, .woocommerce-pagination {
  display: flex; justify-content: center; gap: 8px;
  margin-top: clamp(48px, 6vw, 80px);
}
.pagination a, .pagination span,
.woocommerce-pagination a, .woocommerce-pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px;
  border: 1px solid var(--line-strong); border-radius: var(--radius-card);
  font-family: var(--f-mono); font-size: 13px; color: var(--ink-60);
  text-decoration: none; transition: all 0.15s;
}
.pagination a:hover, .woocommerce-pagination a:hover { border-color: var(--ink); color: var(--ink); }
.pagination .current, .woocommerce-pagination .current { background: var(--ink); color: var(--bg-cream); border-color: var(--ink); }

/* ============ PRODUCT DETAIL ============ */
.product-detail {
  padding: clamp(40px, 5vw, 80px) var(--pad-x) var(--section-y);
  max-width: 1480px; margin: 0 auto;
}
.pd-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px); align-items: start;
}
.pd-main-image {
  aspect-ratio: 1; background: #1a1310;
  border-radius: var(--radius-card); overflow: hidden;
}
.pd-main-image img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumbnails {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-top: 16px;
}
.pd-thumb {
  aspect-ratio: 1; background: var(--bg-paper);
  border: 1px solid var(--line); border-radius: 2px;
  cursor: pointer; overflow: hidden; padding: 0;
}
.pd-thumb.is-active { border-color: var(--ink); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-category {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.pd-title {
  font-family: var(--f-display); font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; margin: 0 0 12px;
}
.pd-subtitle {
  font-family: var(--f-display); font-style: italic;
  font-size: 20px; color: var(--ink-80);
}
.pd-price {
  display: flex; align-items: baseline; gap: 14px;
  padding: 20px 0; border-bottom: 1px solid var(--line); margin: 24px 0;
}
.pd-price .price, .pd-price .woocommerce-Price-amount { font-family: var(--f-display); font-size: 32px; font-weight: 500; }
.pd-price .price-compare, .pd-price del .woocommerce-Price-amount { font-size: 16px; color: var(--ink-40); }
.pd-price del { font-family: var(--f-mono); font-size: 16px; color: var(--ink-60); text-decoration: line-through; }
.pd-qty-row {
  display: grid; grid-template-columns: 140px 1fr;
  gap: 14px; margin: 24px 0;
}
.qty-input {
  text-align: center; border: 1px solid var(--line-strong);
  border-radius: 100px; padding: 8px 16px;
  font-family: var(--f-mono); font-size: 14px; width: 100%;
}
.pd-specs {
  padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 24px 0;
}
.spec-line { display: flex; justify-content: space-between; padding: 10px 0; font-size: 14px; }
.spec-k { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-60); }
.spec-v { font-family: var(--f-display); font-size: 16px; }
.pd-description { font-size: 15px; line-height: 1.7; color: var(--ink-80); margin-top: 24px; }
.product-recommendations {
  padding: var(--section-y) 0 0;
  border-top: 1px solid var(--line); margin-top: var(--section-y);
}
@media (max-width: 900px) { .pd-grid { grid-template-columns: 1fr; } }

/* WooCommerce add-to-cart button override */
.single_add_to_cart_button.button {
  background: var(--ink) !important; color: var(--bg-cream) !important;
  padding: 16px 32px; font-family: var(--f-sans); font-size: 15px; font-weight: 500;
  border-radius: 100px; border: none; cursor: pointer; width: 100%;
  transition: background 0.15s;
}
.single_add_to_cart_button.button:hover { background: var(--accent) !important; }
.cart { display: flex; gap: 14px; margin: 24px 0; }
.cart .qty {
  padding: 14px 16px; border: 1px solid var(--line-strong);
  border-radius: 100px; width: 80px; text-align: center;
  font-family: var(--f-mono); font-size: 14px;
}

/* ============ BLOG ============ */
.content-wrap { max-width: 1280px; margin: 0 auto; padding: var(--section-y) var(--pad-x); }
.archive-header { text-align: center; margin-bottom: clamp(40px, 5vw, 80px); }
.posts-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(24px, 3vw, 40px);
}
.post-card {
  display: flex; flex-direction: column;
  background: var(--bg-cream); border-radius: var(--radius-card); overflow: hidden;
}
.post-card-thumb img { width: 100%; height: 220px; object-fit: cover; display: block; }
.post-card-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.post-card-meta { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--ink-40); text-transform: uppercase; }
.post-card-title { font-family: var(--f-display); font-size: 24px; font-weight: 500; line-height: 1.2; }
.post-card-title a { color: var(--ink); text-decoration: none; }
.post-card-title a:hover { color: var(--accent); }
.post-card-excerpt { font-size: 14px; line-height: 1.65; color: var(--ink-80); flex: 1; }

/* ============ JOURNAL SINGLE ============ */
.journal-article { max-width: 760px; margin: 0 auto; padding: var(--section-y) var(--pad-x); }
.journal-hero { text-align: center; margin-bottom: 60px; }
.journal-meta { display: flex; justify-content: center; gap: 24px; font-family: var(--f-mono); font-size: 12px; color: var(--ink-40); margin-top: 16px; text-transform: uppercase; letter-spacing: 0.1em; }
.journal-feat-img { margin-top: 40px; border-radius: var(--radius-card); overflow: hidden; }
.journal-feat-img img { width: 100%; height: auto; }
.journal-body { margin-top: 40px; }
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 80px; padding-top: 40px; border-top: 1px solid var(--line); }
.post-nav-link { display: flex; flex-direction: column; gap: 6px; text-decoration: none; color: inherit; }
.post-nav-next { text-align: right; }
.post-nav-dir { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--ink-40); text-transform: uppercase; }
.post-nav-title { font-family: var(--f-display); font-size: 20px; color: var(--ink); }
.post-nav-link:hover .post-nav-title { color: var(--accent); }

/* ============ 404 ============ */
.error-page { text-align: center; padding: var(--section-y) var(--pad-x); max-width: 600px; margin: 0 auto; }
.error-page .page-title { margin-bottom: 24px; }

/* ============ STORY PAGE ============ */
.story-page { max-width: 920px; margin: 0 auto; padding: var(--section-y) var(--pad-x); }
.story-hero { text-align: center; margin-bottom: clamp(60px, 8vw, 100px); }
.story-body { font-size: 17px; line-height: 1.85; color: var(--ink-80); }
.story-body h2 { font-family: var(--f-display); font-size: 32px; font-weight: 500; color: var(--ink); margin: 48px 0 20px; }
.story-body p { margin: 0 0 20px; }
.story-cta-strip { display: flex; justify-content: center; gap: 16px; margin-top: 60px; flex-wrap: wrap; }

/* ============ CRAFT PAGE ============ */
.craft-page { max-width: 1280px; margin: 0 auto; padding: var(--section-y) var(--pad-x); }
.craft-hero { text-align: center; margin-bottom: clamp(60px, 8vw, 100px); }
.craft-hero .hero-lede { color: var(--ink-80); font-size: clamp(18px, 2.5vw, 24px); }
.craft-steps { display: flex; flex-direction: column; gap: 0; }
.craft-step {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 32px; padding: clamp(28px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--line); align-items: start;
}
.cs-number { padding-top: 4px; }
.cs-n { font-family: var(--f-display); font-size: 48px; font-weight: 400; color: var(--accent); line-height: 1; opacity: 0.5; }
.cs-title { font-family: var(--f-display); font-size: clamp(24px, 3vw, 36px); font-weight: 500; margin-bottom: 12px; }
.cs-desc { font-size: 15px; line-height: 1.75; color: var(--ink-80); max-width: 70ch; }
.craft-closing { padding: var(--section-y) var(--pad-x); background: var(--bg-paper); margin: var(--section-y) calc(var(--pad-x) * -1) 0; }
.craft-closing-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.craft-closing h2 { font-family: var(--f-display); font-size: clamp(36px, 5vw, 64px); font-weight: 400; margin-bottom: 20px; }
.craft-closing p { font-size: 16px; line-height: 1.75; color: var(--ink-80); margin-bottom: 40px; }
.craft-closing-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============ ARTISANS PAGE ============ */
.artisans-page { max-width: 1280px; margin: 0 auto; padding: var(--section-y) var(--pad-x); }
.artisans-hero { text-align: center; margin-bottom: clamp(60px, 8vw, 100px); }
.artisans-hero .hero-lede { color: var(--ink-80); }
.artisans-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(28px, 4vw, 48px);
}
.artisan-card { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--bg-cream); }
.artisan-avatar { margin-bottom: 20px; }
.artisan-avatar-inner {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--bg-paper); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.artisan-since { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em; color: var(--accent); text-transform: uppercase; margin-bottom: 8px; }
.artisan-name { font-family: var(--f-display); font-size: 26px; font-weight: 500; margin-bottom: 6px; }
.artisan-role { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--ink-60); text-transform: uppercase; margin-bottom: 16px; }
.artisan-bio { font-size: 14px; line-height: 1.7; color: var(--ink-80); margin-bottom: 20px; }
.artisan-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.artisan-badge { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em; padding: 4px 10px; border: 1px solid var(--line-strong); border-radius: 2px; color: var(--ink-60); }
.artisans-workshop-cta { margin-top: var(--section-y); padding: var(--section-y) var(--pad-x); background: var(--ink); color: var(--bg-cream); border-radius: var(--radius-card); text-align: center; }
.workshop-cta-inner { max-width: 600px; margin: 0 auto; }
.workshop-cta-inner h2 { font-family: var(--f-display); font-size: clamp(28px, 4vw, 48px); font-weight: 400; color: var(--bg-cream); margin-bottom: 16px; }
.workshop-cta-inner p { font-size: 15px; line-height: 1.7; color: var(--ink-20); margin-bottom: 32px; }

/* ============ SERVICE PAGE ============ */
.service-page { max-width: 1280px; margin: 0 auto; padding: var(--section-y) var(--pad-x); }
.service-hero { text-align: center; margin-bottom: clamp(60px, 8vw, 100px); }
.service-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; margin-bottom: var(--section-y); }
.service-card { padding: 36px 32px; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--bg-cream); }
.sc-icon { margin-bottom: 20px; }
.service-card h2 { font-family: var(--f-display); font-size: 28px; font-weight: 500; margin-bottom: 12px; }
.service-card p { font-size: 14px; line-height: 1.7; color: var(--ink-80); margin-bottom: 20px; }
.sc-list { list-style: none; padding: 0; margin: 0 0 24px; }
.sc-list li { font-size: 13px; color: var(--ink-80); padding: 8px 0; border-bottom: 1px solid var(--line); display: flex; align-items: flex-start; gap: 8px; }
.sc-list li::before { content: '—'; color: var(--accent); flex-shrink: 0; }
.care-guide { padding: var(--section-y) var(--pad-x); background: var(--bg-paper); margin: 0 calc(var(--pad-x) * -1); }
.cg-inner { max-width: 900px; margin: 0 auto; }
.cg-steps { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.cg-step { display: flex; gap: 24px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--line); }
.cg-n { font-family: var(--f-display); font-size: 32px; font-weight: 400; color: var(--accent); opacity: 0.4; line-height: 1; flex-shrink: 0; width: 48px; }
.cg-text { font-size: 15px; line-height: 1.7; color: var(--ink-80); padding-top: 4px; }

/* ============ CONTACT PAGE ============ */
.contact-page { max-width: 1280px; margin: 0 auto; padding: var(--section-y) var(--pad-x); }
.contact-hero { text-align: center; margin-bottom: clamp(60px, 8vw, 100px); }
.contact-grid { display: grid; grid-template-columns: 360px 1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.contact-info { }
.ci-block { margin-bottom: 40px; }
.ci-block h3 { font-family: var(--f-display); font-size: 24px; font-weight: 500; margin-bottom: 16px; }
.ci-block p { font-size: 14px; line-height: 1.7; color: var(--ink-80); margin-bottom: 12px; }
.ci-block a { color: var(--accent); text-decoration: none; }
.ci-block a:hover { color: var(--ink); }
.ci-note { font-style: italic; color: var(--ink-60) !important; }
.contact-success, .form-success { text-align: center; padding: 40px; border: 1px solid var(--line); border-radius: var(--radius-card); }
.contact-success h3 { font-family: var(--f-display); font-size: 28px; margin-bottom: 12px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ============ COMMISSION PAGE ============ */
.commission-page { max-width: 1280px; margin: 0 auto; padding: var(--section-y) var(--pad-x); }
.commission-hero { text-align: center; margin-bottom: clamp(60px, 8vw, 100px); }
.commission-hero .hero-lede { color: var(--ink-80); }
.commission-steps { margin-bottom: var(--section-y); }
.commission-steps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.commission-step { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--bg-cream); }
.commission-step .cs-n { font-family: var(--f-display); font-size: 40px; font-weight: 400; color: var(--accent); opacity: 0.4; line-height: 1; margin-bottom: 12px; display: block; }
.commission-step .cs-title { font-family: var(--f-display); font-size: 22px; font-weight: 500; margin-bottom: 8px; }
.commission-step .cs-desc { font-size: 13px; line-height: 1.65; color: var(--ink-80); }
.commission-pricing { padding: var(--section-y) var(--pad-x); background: var(--bg-paper); margin: 0 calc(var(--pad-x) * -1) var(--section-y); }
.cp-inner { max-width: 960px; margin: 0 auto; }
.price-table { border: 1px solid var(--line); border-radius: var(--radius-card); overflow: hidden; margin-top: 40px; }
.pt-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; }
.pt-header { background: var(--bg-paper); font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-60); }
.pt-row span { padding: 14px 20px; border-bottom: 1px solid var(--line); font-size: 14px; color: var(--ink-80); }
.pt-header span { color: var(--ink-60); }
.pt-row:last-child span { border-bottom: none; }
.cp-note { font-size: 13px; color: var(--ink-60); margin-top: 20px; font-style: italic; }
.commission-form-section { }
.cfs-inner { max-width: 720px; }
.commission-form { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
@media (max-width: 700px) { .pt-row { grid-template-columns: 1fr 1fr; } }

/* ============ WOOCOMMERCE OVERRIDES ============ */
.woocommerce-wrapper { }
.woocommerce-pagination ul { display: flex; gap: 8px; list-style: none; padding: 0; justify-content: center; margin-top: 60px; }
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px;
  border: 1px solid var(--line-strong); border-radius: var(--radius-card);
  font-family: var(--f-mono); font-size: 13px; color: var(--ink-60); text-decoration: none;
}
.woocommerce-pagination ul li a:hover { border-color: var(--ink); color: var(--ink); }
.woocommerce-pagination ul li span.current { background: var(--ink); color: var(--bg-cream); border-color: var(--ink); }
.woocommerce-ordering select {
  border: 1px solid var(--line-strong); border-radius: var(--radius-card);
  padding: 8px 12px; font-family: var(--f-sans); font-size: 13px; background: var(--bg);
}
.wc-block-product-template { list-style: none; padding: 0; margin: 0; }

/* ============ ACCESSIBILITY ============ */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  white-space: nowrap;
  height: 1px; width: 1px;
  overflow: hidden;
}
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
