/* ============================================================================
   MADURAI HERITAGE · LH design system (v12 — premium editorial)
   Mobile-first · restrained luxury · Aesop + Apple + Aman + museum
   Namespace: .lh-* for new components, keeps old style.css working alongside.
   ========================================================================== */

/* ─────────────────────────────────────────────────────────────
   1 · DESIGN TOKENS
   ───────────────────────────────────────────────────────────── */
.lh, .lh * { box-sizing: border-box; }
body.lh-body {
  /* Palette — heritage tones, restrained */
  --lh-ivory:        #F5EFE2;   /* page bg */
  --lh-ivory-deep:   #ECE3D0;
  --lh-paper:        #FCFAF4;   /* card bg */
  --lh-paper-warm:   #F8F2E1;
  --lh-sand:         #C6B58A;   /* muted sandstone — used very sparingly */
  --lh-maroon:       #6E2528;   /* deep Madurai maroon */
  --lh-maroon-deep:  #561C20;
  --lh-brass:        #8E7233;   /* antique brass */
  --lh-brass-deep:   #6B5524;
  --lh-charcoal:     #1A1410;   /* warm charcoal — primary text */
  --lh-charcoal-soft:#3D332B;
  --lh-mute:         #6B5E51;   /* secondary text */
  --lh-faint:        #9D8E7E;   /* tertiary text */
  --lh-hairline:     rgba(26, 20, 16, 0.08);
  --lh-hairline-strong: rgba(26, 20, 16, 0.16);

  /* Type — Cormorant (editorial heritage serif) + Outfit (clean modern sans) + Geist Mono */
  --lh-serif: "Cormorant", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --lh-sans:  "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --lh-mono:  "Geist Mono", "JetBrains Mono", ui-monospace, monospace;

  /* Spacing scale (8px base) */
  --lh-s-1: 4px;
  --lh-s-2: 8px;
  --lh-s-3: 12px;
  --lh-s-4: 16px;
  --lh-s-5: 24px;
  --lh-s-6: 32px;
  --lh-s-7: 48px;
  --lh-s-8: 64px;
  --lh-s-9: 96px;
  --lh-s-10: 128px;

  /* Radii */
  --lh-r-sm: 4px;
  --lh-r-md: 10px;
  --lh-r-lg: 18px;
  --lh-r-pill: 999px;

  /* Motion */
  --lh-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --lh-t-fast: 180ms;
  --lh-t-base: 320ms;
  --lh-t-slow: 600ms;

  /* Shadows — used VERY sparingly */
  --lh-shadow-card-hover: 0 12px 32px -12px rgba(26, 20, 16, 0.10);

  background: var(--lh-ivory);
  color: var(--lh-charcoal);
  font-family: var(--lh-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ─────────────────────────────────────────────────────────────
   2 · TYPOGRAPHY
   ───────────────────────────────────────────────────────────── */
.lh-display {
  font-family: var(--lh-serif);
  font-weight: 500;
  font-weight: 500;
  font-size: clamp(2.5rem, 11vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--lh-charcoal);
}
.lh-display em { font-style: italic; color: var(--lh-maroon); font-weight: 400; }

.lh-h1 {
  font-family: var(--lh-serif);
  font-weight: 500;
  font-weight: 500;
  font-size: clamp(2rem, 7vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--lh-charcoal);
  margin: 0;
}
.lh-h1 em { font-style: italic; color: var(--lh-maroon); font-weight: 400; }

.lh-h2 {
  font-family: var(--lh-serif);
  font-weight: 500;
  font-weight: 500;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  line-height: 1.12;
  letter-spacing: -0.018em;
  color: var(--lh-charcoal);
  margin: 0;
}

.lh-h3 {
  font-family: var(--lh-serif);
  font-size: clamp(1.25rem, 3.5vw, 1.6rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--lh-charcoal);
  margin: 0;
}

.lh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--lh-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lh-mute);
  margin: 0 0 var(--lh-s-5);
}
.lh-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
}

.lh-lede {
  font-family: var(--lh-serif);
  font-variation-settings: "opsz" 32, "wght" 400;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  color: var(--lh-charcoal-soft);
  margin: 0;
}
.lh-lede em { font-style: italic; color: var(--lh-maroon); }

.lh-body { font-size: 16px; line-height: 1.6; color: var(--lh-charcoal-soft); margin: 0; }
.lh-small { font-size: 14px; line-height: 1.5; color: var(--lh-mute); margin: 0; }
.lh-caption {
  font-family: var(--lh-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lh-brass);
}
.lh-tamil {
  font-family: var(--lh-serif);
  font-style: italic;
  font-variation-settings: "opsz" 144;
  color: var(--lh-brass);
}

/* ─────────────────────────────────────────────────────────────
   3 · LAYOUT
   ───────────────────────────────────────────────────────────── */
.lh-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .lh-container { padding: 0 32px; } }
@media (min-width: 1100px) { .lh-container { padding: 0 56px; } }

.lh-container-narrow {
  width: 100%; max-width: 880px;
  margin: 0 auto; padding: 0 20px;
}
@media (min-width: 768px) { .lh-container-narrow { padding: 0 32px; } }

.lh-section { padding: var(--lh-s-8) 0; }
@media (min-width: 768px) { .lh-section { padding: var(--lh-s-9) 0; } }
@media (min-width: 1100px) { .lh-section { padding: var(--lh-s-10) 0; } }

.lh-section-head { margin-bottom: var(--lh-s-7); max-width: 720px; }
@media (min-width: 768px) { .lh-section-head { margin-bottom: var(--lh-s-8); } }

.lh-divider {
  height: 1px;
  background: var(--lh-hairline);
  border: 0;
  margin: 0;
}

/* ─────────────────────────────────────────────────────────────
   4 · BUTTONS
   ───────────────────────────────────────────────────────────── */
.lh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: var(--lh-r-pill);
  font-family: var(--lh-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--lh-t-fast) var(--lh-ease),
              color var(--lh-t-fast) var(--lh-ease),
              transform var(--lh-t-fast) var(--lh-ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.lh-btn:active { transform: scale(0.985); }

.lh-btn-primary {
  background: var(--lh-maroon);
  color: var(--lh-paper-warm);
}
.lh-btn-primary:hover { background: var(--lh-maroon-deep); }

.lh-btn-ghost {
  background: transparent;
  color: var(--lh-charcoal);
  border-color: var(--lh-hairline-strong);
}
.lh-btn-ghost:hover { background: rgba(26, 20, 16, 0.04); border-color: var(--lh-charcoal); }

.lh-btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--lh-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--lh-maroon);
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 2px;
}
.lh-btn-text::after {
  content: '';
  position: absolute;
  left: 0; right: 28px; bottom: -1px;
  height: 1px;
  background: var(--lh-maroon);
  transition: right var(--lh-t-base) var(--lh-ease);
}
.lh-btn-text:hover::after { right: 0; }
.lh-btn-text .lh-arrow { transition: transform var(--lh-t-base) var(--lh-ease); }
.lh-btn-text:hover .lh-arrow { transform: translateX(4px); }

/* ─────────────────────────────────────────────────────────────
   5 · HEADER + MOBILE DRAWER
   ───────────────────────────────────────────────────────────── */
.lh-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(245, 239, 226, 0.85);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background var(--lh-t-base) var(--lh-ease),
              border-color var(--lh-t-base) var(--lh-ease);
}
.lh-header.is-scrolled { border-bottom-color: var(--lh-hairline); }

.lh-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 20px;
  max-width: 1240px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .lh-header-inner { height: 68px; padding: 0 32px; }
}
@media (min-width: 1100px) {
  .lh-header-inner { padding: 0 56px; }
}

.lh-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--lh-charcoal);
}
.lh-brand-mark {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--lh-maroon);
  display: grid; place-items: center;
  color: var(--lh-paper-warm);
}
.lh-brand-mark svg { width: 18px; height: 18px; }
.lh-brand-text {
  font-family: var(--lh-serif);
  font-style: italic;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 144;
  line-height: 1;
}
@media (max-width: 380px) { .lh-brand-text { display: none; } }

.lh-nav-desktop {
  display: none;
}
@media (min-width: 920px) {
  .lh-nav-desktop {
    display: flex;
    gap: 36px;
    align-items: center;
  }
  .lh-nav-desktop a {
    font-family: var(--lh-sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--lh-charcoal-soft);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color var(--lh-t-fast);
  }
  .lh-nav-desktop a:hover { color: var(--lh-maroon); }
  .lh-nav-desktop a.is-active { color: var(--lh-maroon); }
}

.lh-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lh-icon-btn {
  width: 44px;
  height: 44px;
  display: grid; place-items: center;
  background: transparent;
  border: 0;
  border-radius: var(--lh-r-md);
  color: var(--lh-charcoal);
  cursor: pointer;
  position: relative;
  transition: background var(--lh-t-fast);
  text-decoration: none;
}
.lh-icon-btn:hover { background: rgba(26, 20, 16, 0.05); }
.lh-icon-btn svg { width: 20px; height: 20px; stroke-width: 1.5; }
.lh-cart-count {
  position: absolute;
  top: 6px; right: 6px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--lh-maroon);
  color: var(--lh-paper-warm);
  font-family: var(--lh-mono);
  font-size: 10px;
  font-weight: 600;
  display: grid; place-items: center;
  line-height: 1;
}

/* Mobile full-screen menu */
.lh-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--lh-ivory);
  display: flex; flex-direction: column;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--lh-t-base) var(--lh-ease),
              opacity var(--lh-t-base) var(--lh-ease);
}
.lh-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.lh-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  height: 60px;
  border-bottom: 1px solid var(--lh-hairline);
}
@media (min-width: 768px) { .lh-menu-top { height: 68px; padding: 14px 32px; } }
.lh-menu-list {
  padding: 32px 20px 40px;
  display: flex; flex-direction: column;
  gap: 4px;
}
@media (min-width: 768px) { .lh-menu-list { padding: 56px 32px 40px; } }
.lh-menu-list a {
  font-family: var(--lh-serif);
  font-weight: 500;
  font-size: clamp(28px, 7vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--lh-charcoal);
  text-decoration: none;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--lh-hairline);
  transition: color var(--lh-t-fast), padding var(--lh-t-fast);
}
.lh-menu-list a:hover, .lh-menu-list a:focus { color: var(--lh-maroon); }
.lh-menu-list a svg {
  width: 22px; height: 22px;
  stroke: var(--lh-faint); stroke-width: 1.5;
  transition: stroke var(--lh-t-fast), transform var(--lh-t-fast);
}
.lh-menu-list a:hover svg { stroke: var(--lh-maroon); transform: translateX(4px); }
.lh-menu-foot {
  margin-top: auto;
  padding: 24px 20px 32px;
  border-top: 1px solid var(--lh-hairline);
  font-family: var(--lh-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lh-mute);
  display: flex; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}
@media (min-width: 768px) { .lh-menu-foot { padding: 24px 32px 40px; } }
.lh-menu-foot a { color: inherit; text-decoration: none; }
.lh-menu-foot a:hover { color: var(--lh-maroon); }

body.lh-menu-open { overflow: hidden; }

/* ─────────────────────────────────────────────────────────────
   6 · HERO
   ───────────────────────────────────────────────────────────── */
.lh-hero {
  position: relative;
  min-height: calc(100vh - 60px);
  padding: 48px 0 64px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--lh-ivory);
}
@media (min-width: 768px) {
  .lh-hero { min-height: calc(100vh - 68px); padding: 80px 0; }
}
.lh-hero-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(142, 114, 51, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse 80% 50% at 0% 100%, rgba(110, 37, 40, 0.06) 0%, transparent 55%);
}
.lh-hero-inner {
  position: relative; z-index: 1;
  width: 100%; max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) { .lh-hero-inner { padding: 0 32px; gap: 64px; } }
@media (min-width: 1100px) {
  .lh-hero-inner {
    padding: 0 56px;
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }
}
.lh-hero-text { max-width: 640px; }
.lh-hero h1 { margin-bottom: 28px; max-width: 13ch; }
.lh-hero .lh-lede { max-width: 540px; margin-bottom: 36px; }
.lh-hero-cta-row {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.lh-hero-meta {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--lh-hairline);
  display: flex; gap: 32px; flex-wrap: wrap;
  font-family: var(--lh-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lh-mute);
}
.lh-hero-meta div { display: flex; flex-direction: column; gap: 4px; }
.lh-hero-meta strong {
  font-family: var(--lh-serif);
  font-variation-settings: "opsz" 144;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--lh-charcoal);
  text-transform: none;
}

.lh-hero-art {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-width: 480px;
  border-radius: var(--lh-r-lg);
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 80% at 30% 30%, rgba(255, 255, 255, 0.35) 0%, transparent 50%),
    linear-gradient(160deg, #C9B57F 0%, #8E7233 50%, #5A4220 100%);
  align-self: flex-start;
}
@media (min-width: 1100px) { .lh-hero-art { max-width: none; width: 42%; aspect-ratio: 4 / 5.4; } }
.lh-hero-art::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.07) 1px, transparent 1.2px);
  background-size: 18px 18px;
  opacity: 0.4;
}
.lh-hero-art-label {
  position: absolute;
  bottom: 24px; left: 24px;
  font-family: var(--lh-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(252, 250, 244, 0.92);
  padding: 8px 14px;
  background: rgba(26, 20, 16, 0.35);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: var(--lh-r-pill);
}

/* ─────────────────────────────────────────────────────────────
   7 · CHAPTER (editorial section pattern)
   ───────────────────────────────────────────────────────────── */
.lh-chapter-num {
  font-family: var(--lh-serif);
  font-style: italic;
  font-variation-settings: "opsz" 144;
  font-size: 14px;
  color: var(--lh-brass);
  letter-spacing: 0.02em;
}

/* Heritage list (editorial chapters not bright tiles) */
.lh-heritage-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--lh-hairline);
}
.lh-heritage-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--lh-hairline);
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: background var(--lh-t-base) var(--lh-ease);
}
.lh-heritage-item:hover { background: rgba(110, 37, 40, 0.02); }
@media (min-width: 768px) {
  .lh-heritage-item {
    grid-template-columns: 80px 1fr 1.4fr auto;
    gap: 36px;
    padding: 36px 0;
  }
}
.lh-heritage-item .lh-h-num {
  display: none;
  font-family: var(--lh-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--lh-faint);
  letter-spacing: 0.18em;
}
@media (min-width: 768px) {
  .lh-heritage-item .lh-h-num { display: block; }
}
.lh-heritage-item .lh-h-name {
  font-family: var(--lh-serif);
  font-variation-settings: "opsz" 144;
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 500;
  color: var(--lh-charcoal);
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.lh-heritage-item .lh-h-name em { font-style: italic; color: var(--lh-brass); }
.lh-heritage-item .lh-h-desc {
  font-size: 14px;
  color: var(--lh-mute);
  margin: 6px 0 0;
  line-height: 1.5;
  display: none;
}
@media (min-width: 768px) {
  .lh-heritage-item .lh-h-desc { display: block; margin: 0; font-size: 15px; }
}
.lh-heritage-item .lh-h-arrow {
  width: 20px; height: 20px;
  color: var(--lh-faint);
  transition: color var(--lh-t-fast), transform var(--lh-t-fast);
}
.lh-heritage-item:hover .lh-h-arrow {
  color: var(--lh-maroon);
  transform: translateX(4px);
}

/* ─────────────────────────────────────────────────────────────
   8 · FEATURED COLLECTION
   ───────────────────────────────────────────────────────────── */
.lh-feature {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 900px) {
  .lh-feature {
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }
}
.lh-feature-art {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--lh-r-lg);
  background:
    radial-gradient(ellipse 60% 70% at 20% 30%, rgba(255,255,255,0.35) 0%, transparent 55%),
    linear-gradient(165deg, #8E7233 0%, #5A4220 65%, #2F1F0E 100%);
  position: relative; overflow: hidden;
}
@media (min-width: 900px) { .lh-feature-art { width: 50%; aspect-ratio: 4 / 5; } }
.lh-feature-art::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.06) 0.8px, transparent 1px);
  background-size: 14px 14px; opacity: 0.4;
}
.lh-feature-text { max-width: 500px; }
.lh-feature-text h2 { margin: 12px 0 24px; }
.lh-feature-text .lh-lede { margin-bottom: 32px; }

/* ─────────────────────────────────────────────────────────────
   9 · PRODUCT CARDS — artifact style, NOT shopify
   ───────────────────────────────────────────────────────────── */
.lh-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 16px;
}
@media (min-width: 640px) { .lh-products { grid-template-columns: repeat(3, 1fr); gap: 32px 20px; } }
@media (min-width: 1000px) { .lh-products { grid-template-columns: repeat(4, 1fr); gap: 48px 28px; } }

.lh-product-card {
  display: flex; flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.lh-product-art {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--lh-r-md);
  overflow: hidden;
  position: relative;
  background: var(--lh-paper-warm);
  transition: transform var(--lh-t-base) var(--lh-ease);
}
.lh-product-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--lh-t-slow) var(--lh-ease);
}
.lh-product-card:hover .lh-product-art img { transform: scale(1.025); }

.lh-product-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
.lh-product-name {
  font-family: var(--lh-serif);
  font-variation-settings: "opsz" 144;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--lh-charcoal);
  margin: 0;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) { .lh-product-name { font-size: 17px; } }
.lh-product-price {
  font-family: var(--lh-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--lh-charcoal);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.lh-product-sub {
  font-size: 13px;
  color: var(--lh-mute);
  line-height: 1.4;
  margin: 0;
}
.lh-product-sub .lh-dot {
  margin: 0 6px;
  color: var(--lh-faint);
}
.lh-product-detail {
  font-family: var(--lh-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lh-brass);
  margin: 2px 0 0;
}

/* ─────────────────────────────────────────────────────────────
   10 · ARTISAN STORY
   ───────────────────────────────────────────────────────────── */
.lh-artisan {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: var(--lh-paper);
  border-radius: var(--lh-r-lg);
  border: 1px solid var(--lh-hairline);
  overflow: hidden;
}
@media (min-width: 900px) {
  .lh-artisan { flex-direction: row; }
}
.lh-artisan-art {
  width: 100%; aspect-ratio: 1 / 1;
  background:
    radial-gradient(ellipse 70% 60% at 30% 30%, rgba(255,255,255,0.4) 0%, transparent 55%),
    linear-gradient(165deg, #B98442 0%, #6B5524 60%, #3D2F18 100%);
  position: relative;
}
@media (min-width: 900px) { .lh-artisan-art { width: 45%; aspect-ratio: 4 / 5; min-height: 540px; } }
.lh-artisan-art::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.07) 0.8px, transparent 1px);
  background-size: 14px 14px; opacity: 0.45;
}
.lh-artisan-text {
  padding: 32px 28px 36px;
  display: flex; flex-direction: column;
  gap: 24px;
  align-self: center;
  flex: 1;
}
@media (min-width: 900px) { .lh-artisan-text { padding: 56px 56px 56px 0; max-width: 540px; } }
.lh-artisan-text .lh-caption { margin-bottom: 4px; }
.lh-artisan-quote {
  font-family: var(--lh-serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "wght" 400;
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.4;
  color: var(--lh-charcoal);
  margin: 0;
}
.lh-artisan-attr {
  font-family: var(--lh-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lh-mute);
  margin: 0;
}
.lh-artisan-attr b { color: var(--lh-charcoal); font-weight: 600; }
.lh-artisan-meta {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--lh-hairline);
}
.lh-artisan-meta div { display: flex; flex-direction: column; gap: 4px; }
.lh-artisan-meta strong {
  font-family: var(--lh-serif);
  font-variation-settings: "opsz" 144;
  font-size: 22px;
  font-weight: 500;
  color: var(--lh-charcoal);
  letter-spacing: -0.01em;
}
.lh-artisan-meta span {
  font-family: var(--lh-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lh-mute);
}

/* ─────────────────────────────────────────────────────────────
   11 · JOURNAL
   ───────────────────────────────────────────────────────────── */
.lh-journal {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--lh-hairline);
}
.lh-journal-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--lh-hairline);
  text-decoration: none;
  color: inherit;
  transition: background var(--lh-t-base) var(--lh-ease);
  align-items: center;
}
.lh-journal-item:hover { background: rgba(110, 37, 40, 0.02); }
@media (min-width: 768px) {
  .lh-journal-item {
    grid-template-columns: 160px 1fr auto;
    gap: 32px;
    padding: 32px 0;
  }
}
.lh-journal-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--lh-r-md);
  background:
    radial-gradient(ellipse 60% 80% at 30% 30%, rgba(255,255,255,0.3) 0%, transparent 55%),
    linear-gradient(160deg, #C0B070 0%, #6E5026 70%, #2F1F0E 100%);
  position: relative;
}
.lh-journal-thumb::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.06) 0.8px, transparent 1px);
  background-size: 10px 10px; opacity: 0.45;
  border-radius: var(--lh-r-md);
}
@media (min-width: 768px) { .lh-journal-thumb { aspect-ratio: 4 / 3; } }
.lh-journal-body { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.lh-journal-cat {
  font-family: var(--lh-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lh-brass);
}
.lh-journal-title {
  font-family: var(--lh-serif);
  font-variation-settings: "opsz" 144;
  font-size: clamp(16px, 3vw, 22px);
  font-weight: 500;
  line-height: 1.25;
  color: var(--lh-charcoal);
  letter-spacing: -0.012em;
  margin: 0;
}
.lh-journal-lede {
  display: none;
  font-family: var(--lh-serif);
  font-variation-settings: "opsz" 24;
  font-size: 14px;
  color: var(--lh-mute);
  margin: 6px 0 0;
  line-height: 1.5;
}
@media (min-width: 768px) { .lh-journal-lede { display: block; } }
.lh-journal-time {
  font-family: var(--lh-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lh-faint);
  white-space: nowrap;
}

/* ─────────────────────────────────────────────────────────────
   12 · TRUST STRIP
   ───────────────────────────────────────────────────────────── */
.lh-trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--lh-hairline);
  border-radius: var(--lh-r-lg);
  background: var(--lh-paper);
  overflow: hidden;
}
@media (min-width: 720px) { .lh-trust { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .lh-trust { grid-template-columns: repeat(4, 1fr); } }
.lh-trust-cell {
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 8px;
  border-bottom: 1px solid var(--lh-hairline);
}
@media (min-width: 720px) {
  .lh-trust-cell:nth-child(odd) { border-right: 1px solid var(--lh-hairline); }
}
@media (min-width: 1000px) {
  .lh-trust-cell:nth-child(odd) { border-right: 0; }
  .lh-trust-cell { border-right: 1px solid var(--lh-hairline); }
  .lh-trust-cell:last-child { border-right: 0; }
}
.lh-trust-cell:last-child { border-bottom: 0; }
@media (min-width: 720px) {
  .lh-trust-cell:nth-last-child(-n+2):not(:last-child) { border-bottom: 0; }
}
@media (min-width: 1000px) {
  .lh-trust-cell { border-bottom: 0; }
}
.lh-trust-icon {
  width: 24px; height: 24px;
  color: var(--lh-brass);
  stroke-width: 1.5;
}
.lh-trust-head {
  font-family: var(--lh-serif);
  font-variation-settings: "opsz" 144;
  font-size: 17px;
  font-weight: 500;
  color: var(--lh-charcoal);
  letter-spacing: -0.01em;
  margin: 0;
}
.lh-trust-sub {
  font-size: 13.5px;
  color: var(--lh-mute);
  line-height: 1.5;
  margin: 0;
}

/* ─────────────────────────────────────────────────────────────
   13 · FOOTER
   ───────────────────────────────────────────────────────────── */
.lh-footer {
  background: var(--lh-paper-warm);
  border-top: 1px solid var(--lh-hairline);
  padding: 56px 0 32px;
  margin-top: 64px;
}
@media (min-width: 768px) { .lh-footer { padding: 96px 0 48px; } }

.lh-footer-newsletter {
  max-width: 560px;
  margin-bottom: 56px;
}
.lh-footer-newsletter h3 {
  font-family: var(--lh-serif);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--lh-charcoal);
}
.lh-footer-newsletter p {
  font-size: 14px;
  color: var(--lh-mute);
  margin: 0 0 20px;
}
.lh-footer-newsletter form {
  display: flex;
  gap: 6px;
  background: var(--lh-paper);
  border: 1px solid var(--lh-hairline-strong);
  border-radius: var(--lh-r-pill);
  padding: 5px 5px 5px 20px;
}
.lh-footer-newsletter input {
  flex: 1; min-width: 0;
  background: transparent; border: 0;
  font-family: var(--lh-sans);
  font-size: 14px;
  color: var(--lh-charcoal);
  padding: 11px 8px 11px 0;
  outline: none;
}
.lh-footer-newsletter input::placeholder { color: var(--lh-mute); }
.lh-footer-newsletter button {
  border: 0; background: var(--lh-maroon);
  color: var(--lh-paper-warm);
  padding: 11px 22px;
  border-radius: var(--lh-r-pill);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--lh-sans);
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background var(--lh-t-fast);
}
.lh-footer-newsletter button:hover { background: var(--lh-maroon-deep); }

.lh-footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--lh-hairline);
}
@media (min-width: 768px) { .lh-footer-cols { grid-template-columns: repeat(4, 1fr); gap: 32px; } }
.lh-footer-col h4 {
  font-family: var(--lh-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lh-charcoal);
  margin: 0 0 16px;
}
.lh-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.lh-footer-col a {
  font-family: var(--lh-sans);
  font-size: 14px;
  color: var(--lh-mute);
  text-decoration: none;
  transition: color var(--lh-t-fast);
}
.lh-footer-col a:hover { color: var(--lh-maroon); }

.lh-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 28px;
  font-family: var(--lh-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--lh-mute);
}
.lh-footer-bottom a { color: inherit; text-decoration: none; }
.lh-footer-bottom a:hover { color: var(--lh-maroon); }
.lh-footer-socials {
  display: flex; gap: 16px; align-items: center;
}
.lh-footer-socials a { display: grid; place-items: center; width: 32px; height: 32px; }
.lh-footer-socials svg { width: 18px; height: 18px; stroke-width: 1.5; }

/* ─────────────────────────────────────────────────────────────
   14 · A11Y + MOTION
   ───────────────────────────────────────────────────────────── */
.lh a:focus-visible, .lh button:focus-visible, .lh input:focus-visible {
  outline: 2px solid var(--lh-maroon);
  outline-offset: 3px;
  border-radius: 6px;
}
@media (prefers-reduced-motion: reduce) {
  .lh, .lh * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
.lh-reveal { opacity: 0; transform: translateY(12px); transition: opacity 700ms var(--lh-ease), transform 700ms var(--lh-ease); }
.lh-reveal.is-in { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────────────────────────
   15 · BACKWARDS-COMPAT — minimal overrides so old templates still render
   ───────────────────────────────────────────────────────────── */
body.lh-body .container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { body.lh-body .container { padding: 0 32px; } }
