/* ═══════════════════════════════════════════════════════════════
   landman.store — extends landman.directory Redwood / Strata system
   Print-shop sibling: same palette, punchier display type.
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Big+Shoulders+Display:wght@600;700;800;900&family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&family=Special+Elite&family=Alfa+Slab+One&display=swap');

:root {
  /* ─ Inherited palette from landman.directory ─ */
  --navy: #2D2D28;
  --navy-light: #3D3D35;
  --navy-deep: #1F1F1B;
  --copper: #B85C3C;
  --copper-light: #CD8B6C;
  --copper-deep: #8A4129;
  --copper-glow: rgba(184, 92, 60, 0.15);
  --cream: #FAF5EF;
  --cream-warm: #F4EBDB;
  --sand: #EDE4D8;
  --sand-dark: #D4C8B8;
  --ink: #14140F;

  --text: #1E293B;
  --text-light: #475569;
  --text-muted: #94A3B8;
  --border: #E2E8F0;
  --border-warm: #DFD2BD;

  /* Shop-specific accents */
  --tag: #6B8E4E;          /* sage — "in stock" pills */
  --tag-bg: #E8EFDF;

  --shadow-sm: 0 1px 2px rgba(40,28,18,0.06);
  --shadow: 0 4px 12px -2px rgba(40,28,18,0.10), 0 2px 4px -1px rgba(40,28,18,0.05);
  --shadow-md: 0 14px 24px -8px rgba(40,28,18,0.14), 0 6px 10px -4px rgba(40,28,18,0.06);
  --shadow-lg: 0 24px 40px -8px rgba(40,28,18,0.18), 0 12px 16px -8px rgba(40,28,18,0.08);

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  min-height: 100vh;
  position: relative;
}

/* Subtle paper grain on the background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(184,92,60,0.04) 0, transparent 35%),
    radial-gradient(circle at 85% 75%, rgba(45,45,40,0.04) 0, transparent 35%);
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; display: block; }
a { color: var(--copper); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--copper-deep); }

/* ─── Typography ─── */
h1, h2, h3, h4 { font-family: 'Inter', sans-serif; font-weight: 700; color: var(--navy); line-height: 1.2; letter-spacing: -0.4px; }
h1 { font-size: 2.75rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-weight: 600;
  color: var(--copper);
}

.serif { font-family: 'Old Standard TT', Georgia, serif; }

/* ─── Layout ─── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.section-bg-navy { background: var(--navy); color: var(--cream); }
.section-bg-sand { background: var(--sand); }

/* ─── Nav ─── */
.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 200;
  background: var(--copper);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: var(--radius);
  font-family: Inter, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  transition: top var(--transition);
}
.skip-link:focus {
  top: 12px;
  outline: 2px solid var(--cream);
  outline-offset: 2px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(45, 45, 40, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  min-height: 68px;
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: 0.5px;
  line-height: 1;
}

.nav-logo span { color: var(--copper-light); font-weight: 700; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--sand);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  transition: color var(--transition);
}

.nav-links a:hover, .nav-links a.active { color: var(--cream); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--copper-light);
  transition: width var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cart {
  background: var(--copper);
  color: var(--cream);
  padding: 9px 18px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition);
}

.nav-cart:hover { background: var(--copper-light); color: var(--cream); }

/* Hamburger toggle (mobile only — shown via the 900px media query) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Share button (product page) */
.btn-share {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 6px 2px;
  background: none;
  border: none;
  color: var(--copper);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: color var(--transition);
}
.btn-share:hover { color: var(--copper-deep); }
.btn-share svg { width: 16px; height: 16px; }

/* ─── Hero ─── */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--cream);
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(184, 92, 60, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(205,139,108,0.10) 0%, transparent 50%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.018) 0px, rgba(255,255,255,0.018) 1px, transparent 1px, transparent 6px);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .eyebrow { color: var(--copper-light); margin-bottom: 18px; display: block; }

.hero h1 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--cream);
  line-height: 0.95;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.hero h1 .accent { color: var(--copper-light); font-style: normal; }

.hero-sub {
  font-family: 'Old Standard TT', Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(250, 245, 239, 0.82);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-visual {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Split hero — activated once the lifestyle photo actually loads, so a missing
   image just leaves the original centered text hero untouched. */
.hero-grid.hero-split { grid-template-columns: 1.02fr 0.98fr; text-align: left; gap: 56px; }
.hero-grid.hero-split .hero-content { align-items: flex-start; }
.hero-grid.hero-split .hero-sub { margin-left: 0; margin-right: 0; }
.hero-grid.hero-split .hero-ctas { justify-content: flex-start; }
.hero-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(223, 210, 189, 0.22);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 11 / 9;
  object-fit: cover;
}
@media (max-width: 860px) {
  .hero-grid.hero-split { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .hero-grid.hero-split .hero-content { align-items: center; }
  .hero-grid.hero-split .hero-sub { margin: 0 auto 36px; }
  .hero-grid.hero-split .hero-ctas { justify-content: center; }
  .hero-photo { max-width: 460px; margin: 0 auto; }
}

/* ─── Vintage Plat Map Widget ─── */
.vintage-map-card {
  background: rgba(61, 61, 53, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(223, 210, 189, 0.25);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 480px;
  border-bottom: 2px solid rgba(223, 210, 189, 0.35);
}

.map-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(31, 31, 27, 0.7);
  border-bottom: 1px solid rgba(223, 210, 189, 0.15);
  font-size: 0.72rem;
  font-family: monospace;
  color: var(--sand-dark);
}

.dot-indicator {
  width: 7px;
  height: 7px;
  background-color: var(--copper-light);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--copper-light);
  animation: blink 2s infinite ease-in-out;
}

@keyframes blink {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.map-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--cream);
}

.map-coords {
  font-family: monospace;
  color: var(--copper-light);
}

.map-card-body {
  position: relative;
  background: #1e1e1a;
  display: flex;
  flex-direction: column;
}

#hero-interactive-map {
  display: block;
  width: 100%;
  background: #1e1e1a;
  cursor: crosshair;
}

.map-overlay-hud {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(31, 31, 27, 0.95);
  border-top: 1px solid rgba(223, 210, 189, 0.15);
  padding: 12px;
  gap: 8px;
}

.hud-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0; /* allows text truncation */
}

.hud-label {
  font-size: 0.62rem;
  color: var(--sand-dark);
  opacity: 0.6;
  font-family: monospace;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.hud-val {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cream);
  font-family: monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.status-tag {
  font-size: 0.7rem;
  font-weight: 700;
  font-family: monospace;
  padding: 1px 6px;
  border-radius: 3px;
  text-transform: uppercase;
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.status-open {
  background: rgba(223, 210, 189, 0.08);
  color: var(--sand-dark);
  border: 1px solid rgba(223, 210, 189, 0.2);
}

.status-leased {
  background: rgba(107, 142, 78, 0.12);
  color: #a3c485;
  border: 1px solid rgba(107, 142, 78, 0.3);
}

.status-curative {
  background: rgba(184, 92, 60, 0.12);
  color: var(--copper-light);
  border: 1px solid rgba(184, 92, 60, 0.35);
}

/* On large screens, split the layout */
@media (min-width: 992px) {
  .hero {
    padding: 110px 0 130px;
  }
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    text-align: left;
    gap: 56px;
  }
  .hero-content {
    align-items: flex-start;
  }
  .hero h1 {
    font-size: 4.8rem;
  }
  .hero-sub {
    font-size: 1.35rem;
    margin: 0 0 36px 0;
  }
  .hero-ctas {
    justify-content: flex-start;
  }
  .vintage-map-card {
    max-width: 100%;
  }
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary { background: var(--copper); color: var(--cream); }
.btn-primary:hover { background: var(--copper-light); color: var(--cream); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline { background: transparent; color: var(--cream); border-color: rgba(250,245,239,0.4); }
.btn-outline:hover { background: rgba(250,245,239,0.08); border-color: var(--cream); color: var(--cream); }

.btn-dark { background: var(--navy); color: var(--cream); }
.btn-dark:hover { background: var(--navy-light); color: var(--cream); transform: translateY(-1px); }

.btn-lg { padding: 16px 36px; font-size: 1.02rem; }

/* ─── Section headers ─── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .eyebrow { display: inline-block; margin-bottom: 12px; }
.section-header h2 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.section-header p {
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ─── Product card ─── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.product-card {
  background: var(--white, #fff);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--copper-light);
}

.product-card a { color: inherit; display: block; }

.product-card-mockup {
  aspect-ratio: 1 / 1;
  background: var(--cream-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card-mockup::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(184,92,60,0.025) 0 1px, transparent 1px 14px);
  pointer-events: none;
}

.product-card-mockup svg {
  width: 78%;
  height: 78%;
  position: relative;
  z-index: 1;
}

.product-card-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.product-card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-sku {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--copper);
  font-weight: 700;
  margin-bottom: 6px;
}

.product-card-title {
  font-family: 'Old Standard TT', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 10px;
}

.product-card-foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 12px;
  border-top: 1px solid var(--border-warm);
}

.product-card-price {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
}

.product-card-cta {
  font-size: 0.78rem;
  color: var(--copper);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ─── Filter bar ─── */
.filter-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.filter-chip {
  background: transparent;
  border: 1.5px solid var(--border-warm);
  color: var(--navy);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.filter-chip:hover { border-color: var(--copper-light); color: var(--copper); }
.filter-chip.active { background: var(--navy); border-color: var(--navy); color: var(--cream); }

/* ─── Product detail ─── */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 56px 0 80px;
}

.product-detail-mockup {
  background: var(--cream-warm);
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-warm);
}

.product-detail-mockup::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(184,92,60,0.03) 0 1px, transparent 1px 16px);
}

.product-detail-mockup svg {
  width: 76%;
  height: 76%;
  position: relative;
  z-index: 1;
}

.product-detail-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.product-detail-info .eyebrow { display: block; margin-bottom: 14px; }
.product-detail-info h1 {
  font-family: 'Old Standard TT', Georgia, serif;
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.product-detail-price {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--copper);
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

/* Color swatches (apparel) */
.product-colors {
  margin-bottom: 24px;
}
.product-colors-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 10px;
}
.product-colors-label strong {
  color: var(--navy);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
}
.product-swatches {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.swatch {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--swatch, #ccc);
  border: 1px solid rgba(45, 45, 40, 0.35);
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: transform 120ms ease, box-shadow 120ms ease;
  box-shadow: 0 1px 3px rgba(45, 45, 40, 0.18);
}
.swatch:hover {
  transform: scale(1.08);
}
.swatch.is-active {
  box-shadow: 0 0 0 2px var(--copper);
  border-color: var(--copper);
}

.product-detail-story {
  font-family: 'Old Standard TT', Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-light);
  border-left: 3px solid var(--copper);
  padding-left: 18px;
  margin-bottom: 28px;
}

.product-detail-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: var(--cream-warm);
  padding: 18px 22px;
  border-radius: var(--radius);
  margin-bottom: 28px;
  border: 1px solid var(--border-warm);
}

.product-detail-meta-item .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 2px;
}

.product-detail-meta-item .value {
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 600;
}

.product-detail-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--border-warm);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.qty-stepper button {
  background: transparent;
  border: none;
  font-size: 1.15rem;
  padding: 10px 16px;
  cursor: pointer;
  color: var(--navy);
  font-weight: 700;
  font-family: inherit;
}

.qty-stepper button:hover { color: var(--copper); }

.qty-stepper input {
  width: 38px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  font-family: inherit;
}

.product-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-detail-list li {
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 7px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px dashed var(--border-warm);
}

.product-detail-list li:last-child { border-bottom: none; }

.product-detail-list li::before {
  content: '✦';
  color: var(--copper);
  font-size: 0.9rem;
  margin-top: 1px;
}

/* ─── Featured strip on homepage ─── */
.featured-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 16px;
}

/* ─── Voice block (homepage) ─── */
.voice {
  background: var(--cream-warm);
  border-top: 1px solid var(--border-warm);
  border-bottom: 1px solid var(--border-warm);
  padding: 64px 0;
  text-align: center;
}

.voice blockquote {
  font-family: 'Old Standard TT', Georgia, serif;
  font-style: italic;
  font-size: 1.55rem;
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto;
  color: var(--navy);
  position: relative;
  padding: 0 30px;
}

.voice blockquote::before, .voice blockquote::after {
  font-family: 'Old Standard TT', serif;
  color: var(--copper);
  font-size: 3.5rem;
  line-height: 0;
  position: relative;
}
.voice blockquote::before { content: '“'; top: 0.4em; margin-right: 4px; }
.voice blockquote::after  { content: '”'; top: 0.4em; margin-left: 4px; }

.voice cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ─── Promise strip (FAQ-style trust bar) ─── */
.promises {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.promise {
  text-align: center;
  padding: 8px;
}

.promise-icon {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--copper);
  display: inline-block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  border: 2px solid var(--copper);
  border-radius: 50%;
  margin-bottom: 14px;
}

.promise h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--navy);
}

.promise p {
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ─── Cart page ─── */
.cart-empty {
  text-align: center;
  padding: 60px 20px;
  font-family: 'Old Standard TT', Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-light);
  background: var(--cream-warm);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-warm);
}

.cart-table {
  background: var(--white, #fff);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}

.cart-row {
  display: grid;
  grid-template-columns: 96px 1fr auto 100px 32px;
  gap: 18px;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-warm);
  position: relative;
}
.cart-row:last-child { border-bottom: none; }

.cart-row-mockup {
  width: 96px; height: 96px;
  background: var(--cream-warm);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.cart-row-mockup svg { width: 84%; height: 84%; }
.cart-row-mockup img { width: 100%; height: 100%; object-fit: cover; }

.cart-row-meta {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--copper);
  font-weight: 700;
  margin-bottom: 4px;
}
.cart-row-title {
  font-family: 'Old Standard TT', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 2px;
}
.cart-row-unit {
  font-size: 0.82rem;
  color: var(--text-light);
}

.cart-row-line {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  text-align: right;
}

.cart-row-remove {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1.05rem;
  padding: 4px 6px;
  transition: color var(--transition);
}
.cart-row-remove:hover { color: var(--copper); }

.cart-summary {
  background: var(--cream-warm);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
}

.cart-summary-line {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--navy);
  border-bottom: 1px dashed var(--border-warm);
}
.cart-summary-line.muted { color: var(--text-light); font-size: 0.88rem; }
.cart-summary-line.total {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  border-bottom: none;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 2px solid var(--navy);
}

.cart-summary-fine {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 14px;
  font-style: italic;
}

@media (max-width: 640px) {
  .cart-row {
    grid-template-columns: 72px 1fr auto;
    grid-template-areas:
      "img body remove"
      "img qty  line";
    gap: 12px;
  }
  .cart-row-mockup { grid-area: img; width: 72px; height: 72px; }
  .cart-row-body { grid-area: body; }
  .cart-row-qty { grid-area: qty; }
  .cart-row-line { grid-area: line; }
  .cart-row-remove { grid-area: remove; align-self: start; }
}

/* ─── Prose (about/policy/privacy/terms) ─── */
.prose {
  font-family: 'Old Standard TT', Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text);
}
.prose p { margin-bottom: 18px; }
.prose a { color: var(--copper); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.prose a:hover { color: var(--copper-deep); }
.prose-h3 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  color: var(--navy);
  margin: 36px 0 14px;
}
.prose-list, .prose-numbered {
  padding-left: 24px;
  margin: 0 0 18px;
}
.prose-list li, .prose-numbered li { margin-bottom: 8px; }
.prose-list { list-style: none; }
.prose-list li::before {
  content: '✦';
  color: var(--copper);
  display: inline-block;
  width: 1.2em;
  margin-left: -1.2em;
}
.prose-numbered { list-style-type: decimal; }
.prose strong { color: var(--navy); font-weight: 700; }

.contact-card {
  background: var(--cream-warm);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 24px 0 36px;
  text-align: center;
}
.contact-email {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 1.95rem;
  font-weight: 800;
  color: var(--copper);
  letter-spacing: -0.3px;
  text-decoration: none;
}
.contact-email:hover { color: var(--copper-deep); text-decoration: underline; }

/* ─── Breadcrumbs ─── */
.crumbs {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  padding: 16px 0 0;
}
.crumbs a { color: var(--text-light); }
.crumbs a:hover { color: var(--copper); }
.crumbs span { color: var(--border-warm); margin: 0 8px; }

/* ─── Footer ─── */
.footer {
  background: var(--navy-deep);
  color: var(--sand);
  padding: 56px 0 28px;
  margin-top: 64px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-brand-name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: 0.3px;
  margin-bottom: 12px;
}
.footer-brand-name span { color: var(--copper-light); }

.footer-brand-tag {
  font-family: 'Old Standard TT', Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--sand-dark);
  line-height: 1.5;
  margin-bottom: 14px;
  max-width: 320px;
}

.footer-sibling {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--copper-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(205,139,108,0.4);
  padding: 6px 12px;
  border-radius: var(--radius-full);
}
.footer-sibling:hover { background: var(--copper); color: var(--cream); border-color: var(--copper); }

.footer-signup { margin-top: 20px; max-width: 320px; }
.footer-signup label {
  display: block;
  font-family: 'Old Standard TT', Georgia, serif;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--sand-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.footer-signup-row { display: flex; gap: 8px; }
.footer-signup-row input {
  flex: 1;
  min-width: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--cream);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-full);
  padding: 8px 14px;
}
.footer-signup-row input::placeholder { color: var(--text-muted); }
.footer-signup-row input:focus {
  outline: 2px solid var(--copper-light);
  outline-offset: 1px;
}
.footer-signup-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--copper);
  border: none;
  border-radius: var(--radius-full);
  padding: 8px 16px;
  cursor: pointer;
  transition: background var(--transition);
}
.footer-signup-btn:hover { background: var(--copper-light); }
.footer-signup-btn:disabled { opacity: 0.6; cursor: default; }
.footer-signup-note {
  font-size: 0.78rem;
  color: var(--sand-dark);
  margin-top: 8px;
  min-height: 1em;
}

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cream);
  margin-bottom: 14px;
  font-weight: 600;
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--sand-dark);
}
.footer-col a:hover { color: var(--copper-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero h1 { font-size: 3rem; }
  .hero-sub { font-size: 1.15rem; }
  .product-detail { grid-template-columns: 1fr; gap: 36px; }
  .featured-strip { grid-template-columns: repeat(2, 1fr); }
  .promises { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* Mobile nav: hamburger reveals a dropdown panel instead of hiding links */
  .nav-toggle { display: inline-flex; margin-left: auto; margin-right: 12px; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(45, 45, 40, 0.99);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: var(--shadow-lg);
    padding: 6px 28px 16px;
    display: none;
  }
  .nav.nav-open .nav-links { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 13px 2px; font-size: 1.02rem; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .nav-links a::after { display: none; }
}

@media (max-width: 560px) {
  .hero { padding: 80px 0 90px; }
  .hero h1 { font-size: 2.4rem; }
  .section { padding: 56px 0; }
  .featured-strip { grid-template-columns: 1fr 1fr; gap: 16px; }
  .promises { grid-template-columns: 1fr 1fr; gap: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .section-header h2 { font-size: 2rem; }
}

/* ─── Product Sizing ─── */
.product-sizes {
  margin-bottom: 24px;
}
.product-sizes-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.product-sizes-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
}
.product-sizes-label strong {
  color: var(--navy);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
}
.size-guide-btn {
  background: none;
  border: none;
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  font-family: inherit;
  transition: color var(--transition);
}
.size-guide-btn:hover {
  color: var(--copper-deep);
}
.product-size-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.size-btn {
  min-width: 44px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border-warm);
  background: transparent;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}
.size-btn:hover {
  border-color: var(--copper-light);
  color: var(--copper);
}
.size-btn.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
}

/* ─── Size Guide Dialog ─── */
.size-guide-dialog {
  border: none;
  border-radius: var(--radius-lg);
  padding: 0;
  max-width: 500px;
  width: 90%;
  box-shadow: var(--shadow-lg);
  background: var(--cream);
  overflow: hidden;
  margin: auto;
  outline: none;
}
.size-guide-dialog::backdrop {
  background: rgba(31, 31, 27, 0.6);
  backdrop-filter: blur(8px);
}
.dialog-content {
  display: flex;
  flex-direction: column;
}
.dialog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-warm);
  background: var(--cream-warm);
}
.dialog-header h2 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.dialog-close-btn {
  background: transparent;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--text-light);
  cursor: pointer;
  padding: 0 4px;
  transition: color var(--transition);
}
.dialog-close-btn:hover {
  color: var(--copper);
}
.dialog-body {
  padding: 24px;
}
.size-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 2px solid var(--border-warm);
  margin-bottom: 20px;
}
.size-tab-btn {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 8px 16px;
  margin-bottom: -2px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
}
.size-tab-btn:hover {
  color: var(--copper);
}
.size-tab-btn.is-active {
  color: var(--navy);
  border-bottom-color: var(--copper);
}
.size-tab-content {
  display: none;
}
.size-tab-content.is-active {
  display: block;
}
.size-tab-content h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--navy);
}
.size-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 18px;
}
.table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border-warm);
  border-radius: var(--radius);
  background: var(--white, #fff);
}
.size-tab-content table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}
.size-tab-content th, .size-tab-content td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border-warm);
}
.size-tab-content th {
  background: var(--cream-warm);
  font-weight: 600;
  color: var(--navy);
}
.size-tab-content tr:last-child td {
  border-bottom: none;
}

/* ─── Wholesale Page ─── */
.wholesale-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.wholesale-features {
  padding-right: 12px;
}
.wholesale-form-card {
  background: var(--cream-warm);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.wholesale-form-card h3 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  color: var(--navy);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white, #fff);
  border: 1.5px solid var(--border-warm);
  border-radius: var(--radius-sm);
  color: var(--navy);
  transition: all var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px var(--copper-glow);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

@media (max-width: 800px) {
  .wholesale-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
