:root {
  --bg: #11110f;
  --bg-soft: #181714;
  --panel: rgba(23, 22, 19, 0.86);
  --panel-strong: #1e1b17;
  --panel-light: #e8decc;
  --text: #f4efe5;
  --muted: #b7ab98;
  --line: rgba(255, 241, 216, 0.12);
  --gold: #b89b63;
  --gold-soft: rgba(184, 155, 99, 0.18);
  --red: #a45449;
  --red-soft: rgba(164, 84, 73, 0.16);
  --green: #6f8f85;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Public Sans', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(184, 155, 99, 0.16), transparent 30%),
    radial-gradient(circle at top right, rgba(111, 143, 133, 0.14), transparent 26%),
    linear-gradient(180deg, #13120f 0%, #0b0b0a 100%);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

main,
.topbar,
.site-header,
.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

main {
  padding-bottom: 80px;
}

.section,
.hero-section,
.feature-strip,
.story-layout,
.cta-panel,
.archive-hero,
.product-detail,
.cart-layout,
.checkout-layout,
.confirmation-layout {
  margin-top: 28px;
}

.eyebrow,
.footer-kicker {
  margin: 0 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: '';
  position: fixed;
  inset: auto auto 12% -120px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(184, 155, 99, 0.12), transparent 68%);
  filter: blur(28px);
  pointer-events: none;
}

.site-shell::after {
  inset: 14% -120px auto auto;
  background: radial-gradient(circle, rgba(164, 84, 73, 0.1), transparent 65%);
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 16px;
  color: var(--muted);
  font-size: 0.88rem;
}

.topbar-links {
  display: flex;
  gap: 18px;
}

.site-header {
  position: sticky;
  top: 10px;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(13, 13, 11, 0.8);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(184, 155, 99, 0.24), rgba(184, 155, 99, 0.06));
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1rem;
  font-weight: 600;
}

.brand-copy em {
  color: var(--muted);
  font-size: 0.8rem;
  font-style: normal;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.site-nav a,
.cart-link {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--muted);
  transition: background-color 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.cart-link:hover,
.cart-link.is-active {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.header-search input,
.field-group input,
.field-group select,
.checkout-form input,
.checkout-form textarea,
.cart-item input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 13px 14px;
}

.header-search input {
  min-width: 210px;
  border: 0;
  background: transparent;
  padding: 10px 12px;
}

.header-search button {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(184, 155, 99, 0.18);
  color: var(--text);
}

.cart-link span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-left: 8px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 0.82rem;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
}

.flash {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto 20px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.flash-success {
  background: rgba(111, 143, 133, 0.14);
}

.flash-error {
  background: rgba(164, 84, 73, 0.14);
}

.hero-section,
.archive-hero,
.product-detail,
.cart-layout,
.checkout-layout,
.confirmation-layout,
.story-layout,
.cta-panel {
  display: grid;
  gap: 24px;
}

.hero-section {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.85fr);
  align-items: stretch;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    linear-gradient(135deg, rgba(184, 155, 99, 0.08), rgba(164, 84, 73, 0.03));
  box-shadow: var(--shadow);
}

.hero-copy h1,
.product-detail-copy h1,
.confirmation-card h1 {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 0.96;
  max-width: 14ch;
}

.archive-hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  line-height: 0.96;
  max-width: 14ch;
}

.hero-text,
.archive-hero p:not(.eyebrow),
.product-detail-description,
.story-panel p:not(.eyebrow),
.demo-payment-note p:not(.eyebrow),
.confirmation-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.hero-copy,
.hero-aside,
.story-panel,
.summary-card,
.form-panel,
.demo-payment-note,
.confirmation-card,
.archive-summary,
.product-detail-media {
  position: relative;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-actions,
.cta-actions,
.cart-actions,
.filters-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #b89b63, #9f7747);
  color: #17120e;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(184, 155, 99, 0.18);
}

.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--line);
}

.button-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-points li {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
}

.hero-aside {
  display: grid;
  gap: 16px;
}

.glow-card,
.archive-summary,
.summary-card,
.demo-payment-note,
.form-panel,
.confirmation-card,
.product-detail-media,
.story-panel,
.collection-card,
.product-card,
.feature-strip article,
.mini-product,
.cta-panel,
.empty-state {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-card,
.archive-summary,
.summary-card,
.demo-payment-note,
.form-panel,
.confirmation-card,
.empty-state {
  padding: 28px;
}

.hero-card h2,
.archive-summary h2,
.story-panel h2,
.cta-panel h2,
.section-heading h2,
.empty-state h2,
.form-panel h2,
.demo-payment-note h2,
.summary-card h2 {
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 0.98;
  margin-bottom: 12px;
}

.hero-card-metrics,
.confirmation-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.hero-card-metrics span,
.confirmation-meta div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-card-metrics strong,
.confirmation-meta strong {
  font-size: 1.3rem;
  font-weight: 700;
}

.hero-preview-grid {
  display: grid;
  gap: 14px;
}

.mini-product {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding: 14px;
  border-radius: 20px;
}

.mini-product img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
}

.mini-product p,
.product-category,
.cart-item-copy p,
.summary-card small,
.archive-summary span,
.product-tagline,
.detail-purchase span,
.cart-item-copy span {
  color: var(--muted);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-strip article {
  padding: 24px;
}

.feature-strip p {
  margin-bottom: 10px;
  font-size: 1.05rem;
  font-weight: 600;
}

.feature-strip span {
  color: var(--muted);
  line-height: 1.7;
}

.section-heading,
.compact-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-heading a {
  color: var(--muted);
}

.product-grid,
.collection-grid,
.form-grid {
  display: grid;
  gap: 18px;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.compact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.collection-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.collection-grid-tight {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.collection-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at top right, color-mix(in srgb, var(--collection-accent) 24%, transparent), transparent 38%);
}

.collection-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
}

.collection-card span,
.collection-card small {
  color: var(--muted);
  line-height: 1.6;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 0.86;
  overflow: hidden;
}

.product-image-wrap img {
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 9px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--badge-accent) 22%, rgba(17, 17, 15, 0.82));
  color: var(--text);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
}

.product-copy h3 {
  font-size: 2rem;
  line-height: 0.96;
}

.product-meta,
.detail-meta-grid {
  display: grid;
  gap: 12px;
}

.product-meta div,
.detail-meta-grid div {
  display: grid;
  gap: 4px;
}

.product-meta dt,
.detail-meta-grid dt {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-meta dd,
.detail-meta-grid dd {
  margin: 0;
  line-height: 1.6;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 20px 20px;
}

.product-footer strong,
.detail-purchase strong,
.summary-row strong,
.summary-item strong,
.cart-item > strong {
  display: block;
  font-size: 1.1rem;
}

.product-footer span,
.detail-purchase span,
.summary-card small {
  display: block;
  margin-top: 4px;
  font-size: 0.9rem;
}

.story-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-panel {
  padding: 30px;
}

.story-panel-light {
  background: linear-gradient(160deg, rgba(232, 222, 204, 0.94), rgba(199, 187, 167, 0.9));
  color: #1f1812;
}

.story-panel-light .eyebrow,
.story-panel-light p:not(.eyebrow) {
  color: rgba(31, 24, 18, 0.75);
}

.cta-panel {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 28px 32px;
}

.archive-hero {
  grid-template-columns: minmax(0, 1fr) 320px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(111, 143, 133, 0.06), rgba(184, 155, 99, 0.08));
}

.archive-hero h1 {
  font-size: clamp(2.5rem, 4.8vw, 4.1rem);
  max-width: 10ch;
}

.filters-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) repeat(3, minmax(0, 0.8fr)) auto;
  gap: 14px;
  align-items: end;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group label,
.checkout-form label,
.cart-item label {
  color: var(--muted);
  font-size: 0.9rem;
}

.field-search {
  min-width: 0;
}

.empty-state {
  padding: 36px;
  text-align: center;
}

.empty-state h1,
.empty-state h2,
.empty-state h3 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.empty-state p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.product-detail {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.product-detail-media {
  padding: 24px;
}

.product-detail-media img {
  aspect-ratio: 0.85;
  object-fit: cover;
  border-radius: 24px;
}

.product-detail-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
}

.product-detail-tagline {
  font-size: 1.2rem;
}

.detail-meta-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-purchase {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.detail-form {
  display: flex;
  align-items: end;
  gap: 12px;
}

.detail-form input {
  width: 90px;
}

.cart-layout,
.checkout-layout,
.confirmation-layout {
  grid-template-columns: minmax(0, 1.2fr) 360px;
  align-items: start;
}

.cart-items-panel,
.checkout-form {
  display: grid;
  gap: 18px;
}

.cart-list {
  display: grid;
  gap: 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 120px 120px auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
}

.cart-item img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 18px;
}

.checkout-form {
  align-items: start;
}

.form-panel,
.demo-payment-note {
  display: grid;
  gap: 18px;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-span-2 {
  grid-column: span 2;
}

.summary-card,
.confirmation-card {
  display: grid;
  gap: 16px;
}

.summary-item,
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

.summary-total {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--text);
}

.confirmation-card {
  min-height: 100%;
}

.confirmation-meta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-footer {
  display: grid;
  gap: 28px;
  padding: 0 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.footer-grid h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.footer-grid a,
.footer-grid p {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
    border-radius: 28px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    padding-top: 10px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-actions {
    justify-content: end;
  }

  .hero-section,
  .archive-hero,
  .product-detail,
  .cart-layout,
  .checkout-layout,
  .confirmation-layout,
  .story-layout,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .filters-panel,
  .product-grid,
  .compact-grid,
  .collection-grid,
  .collection-grid-tight,
  .feature-strip,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .topbar,
  .site-header,
  main,
  .site-footer {
    width: min(calc(100% - 20px), var(--max));
  }

  .topbar {
    flex-direction: column;
    padding: 14px 0;
  }

  .topbar-links,
  .header-actions,
  .hero-actions,
  .cta-actions,
  .filters-actions,
  .cart-actions,
  .detail-form {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 16px;
    border-radius: 24px;
  }

  .header-actions {
    grid-column: 1 / -1;
  }

  .header-search {
    width: 100%;
  }

  .header-search input {
    min-width: 0;
  }

  .hero-section,
  .archive-hero,
  .form-panel,
  .demo-payment-note,
  .summary-card,
  .confirmation-card,
  .hero-card,
  .cta-panel,
  .story-panel,
  .product-detail-copy,
  .product-detail-media,
  .filters-panel,
  .empty-state {
    padding: 22px;
  }

  .hero-copy h1,
  .archive-hero h1,
  .product-detail-copy h1,
  .confirmation-card h1 {
    font-size: clamp(2.2rem, 9vw, 3.1rem);
  }

  .hero-card-metrics,
  .confirmation-meta,
  .form-grid,
  .filters-panel,
  .feature-strip,
  .product-grid,
  .compact-grid,
  .collection-grid,
  .collection-grid-tight,
  .footer-grid,
  .detail-meta-grid {
    grid-template-columns: 1fr;
  }

  .field-span-2 {
    grid-column: auto;
  }

  .cart-item {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .cart-item img {
    max-width: 140px;
  }

  .product-footer,
  .detail-purchase,
  .section-heading,
  .compact-heading {
    flex-direction: column;
    align-items: start;
  }
}

.page {
  background: #0c0d0b;
}

.topbar {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 235, 199, 0.08);
  color: rgba(244, 239, 229, 0.75);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.topbar-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  border: 1px solid rgba(184, 155, 99, 0.55);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.68rem;
}

.site-header {
  position: static;
  grid-template-columns: 220px 1fr auto;
  padding: 22px 0 18px;
  margin-bottom: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 235, 199, 0.08);
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.brand {
  align-items: end;
}

.brand-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  font-family: 'Public Sans', sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-top,
.brand-bottom {
  color: rgba(244, 239, 229, 0.78);
  font-size: 0.72rem;
  font-weight: 600;
}

.brand-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: #f4efe5;
}

.site-nav {
  gap: 26px;
}

.site-nav a,
.cart-link,
.header-icon-link {
  position: relative;
  padding: 0 0 14px;
  border-radius: 0;
  background: transparent;
  color: rgba(244, 239, 229, 0.82);
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #bb3d34;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.cart-link:hover,
.cart-link.is-active,
.header-icon-link:hover {
  background: transparent;
  color: #f4efe5;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  gap: 18px;
}

.header-icon-link {
  font-size: 0.82rem;
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cart-link span {
  margin-left: 0;
  background: #bb3d34;
  color: #fff5ea;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 24px;
  align-items: stretch;
  min-height: 620px;
  padding: 36px 36px 22px;
  border-bottom: 1px solid rgba(255, 235, 199, 0.08);
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.96) 0%, rgba(8, 8, 7, 0.88) 40%, rgba(8, 8, 7, 0.54) 62%, rgba(8, 8, 7, 0.2) 100%),
    radial-gradient(circle at 68% 28%, rgba(168, 116, 62, 0.22), transparent 24%),
    linear-gradient(180deg, #11110f 0%, #0a0a08 100%);
}

.home-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: 38px 0;
}

.home-hero-copy h1 {
  max-width: 7.2ch;
  font-size: clamp(4.2rem, 8vw, 6.9rem);
  line-height: 0.88;
  color: #f0dcc0;
}

.home-hero-visual {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  overflow: hidden;
}

.home-hero-visual::before {
  content: '';
  position: absolute;
  inset: 10% 12% 4% 14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(178, 127, 71, 0.16), rgba(12, 12, 10, 0));
  filter: blur(6px);
}

.home-hero-product {
  position: relative;
  z-index: 1;
  width: min(100%, 700px);
}

.home-hero-product img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 28px 54px rgba(0, 0, 0, 0.44));
}

.county-seal {
  position: absolute;
  right: 2%;
  top: 18%;
  display: grid;
  place-items: center;
  width: 168px;
  height: 168px;
  border: 1px solid rgba(184, 155, 99, 0.35);
  border-radius: 50%;
  color: rgba(184, 155, 99, 0.88);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.county-seal strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
}

.county-seal small,
.county-seal span {
  font-size: 0.7rem;
}

.home-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
  border-top: 1px solid rgba(255, 235, 199, 0.08);
  border-bottom: 1px solid rgba(255, 235, 199, 0.08);
  background: #0f100e;
}

.pillar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 78px;
  border-right: 1px solid rgba(255, 235, 199, 0.08);
  color: #f2e5d2;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.pillar-item:last-child {
  border-right: 0;
}

.pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(184, 155, 99, 0.45);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
}

.home-section {
  margin-top: 0;
  padding: 24px 0 6px;
}

.home-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.home-section-heading h2 {
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.home-section-heading a {
  color: rgba(244, 239, 229, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.84rem;
}

.drop-grid,
.collection-tile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.drop-card {
  overflow: hidden;
  border: 1px solid rgba(255, 235, 199, 0.14);
  border-radius: 12px;
  background: #151614;
}

.drop-card-media {
  display: block;
  aspect-ratio: 1.02;
  background: radial-gradient(circle at top, rgba(184, 155, 99, 0.12), rgba(20, 20, 18, 0));
}

.drop-card-media img {
  height: 100%;
  object-fit: cover;
}

.drop-card-copy {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.drop-card-copy h3 {
  font-size: 1.9rem;
  line-height: 0.96;
}

.drop-card-copy p {
  color: rgba(244, 239, 229, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
}

.drop-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.drop-card-footer strong {
  font-size: 1.25rem;
  color: #efc98f;
}

.quick-view-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255, 235, 199, 0.22);
  border-radius: 6px;
  color: rgba(244, 239, 229, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
}

.collection-tile {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 220px;
  padding: 18px;
  border: 1px solid rgba(255, 235, 199, 0.14);
  border-radius: 10px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.collection-tile h3 {
  max-width: 8ch;
  font-size: 2.05rem;
  line-height: 0.92;
}

.collection-tile span {
  display: inline-block;
  margin-top: 10px;
  color: #efc98f;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
}

.heritage-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.35fr);
  gap: 28px;
  margin-top: 30px;
  padding: 38px 34px;
  background: linear-gradient(180deg, #ece1ce, #e4d7bf);
  color: #1a1510;
}

.heritage-copy h2 {
  max-width: 8ch;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 0.9;
}

.heritage-copy p:not(.eyebrow) {
  margin: 18px 0 24px;
  color: rgba(26, 21, 16, 0.78);
  line-height: 1.75;
}

.heritage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.heritage-item {
  padding-left: 20px;
  border-left: 1px solid rgba(26, 21, 16, 0.12);
}

.heritage-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 14px;
  border: 1px solid rgba(148, 105, 54, 0.4);
  border-radius: 999px;
  color: #946936;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.heritage-item h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.heritage-item p {
  color: rgba(26, 21, 16, 0.76);
  font-size: 0.92rem;
  line-height: 1.65;
}

.alerts-band {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) minmax(280px, 460px);
  align-items: center;
  gap: 24px;
  padding: 26px 30px;
  margin-top: 0;
  border-top: 1px solid rgba(255, 235, 199, 0.08);
  background:
    linear-gradient(135deg, rgba(86, 28, 20, 0.7), rgba(20, 20, 17, 0.86)),
    linear-gradient(180deg, #261915, #161513);
}

.alerts-stamp {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(184, 155, 99, 0.38);
  border-radius: 999px;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
}

.alerts-copy h2 {
  font-size: 2.3rem;
  line-height: 1;
}

.alerts-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0;
}

.alerts-form input {
  min-height: 50px;
  border: 1px solid rgba(255, 235, 199, 0.15);
  border-right: 0;
  border-radius: 0;
  background: rgba(10, 10, 9, 0.36);
  color: #f4efe5;
}

.alerts-form .button {
  min-width: 130px;
  border-radius: 0;
  background: linear-gradient(135deg, #b9352e, #c14534);
  color: #fff0e1;
}

.site-footer {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  padding: 26px 0 40px;
  background: #0e0f0d;
}

.footer-brand-panel p {
  margin-top: 16px;
  color: rgba(244, 239, 229, 0.7);
  line-height: 1.7;
}

.footer-brand .brand-main {
  font-size: 2.8rem;
}

.footer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
  border-top: 0;
}

.footer-grid h3 {
  margin-bottom: 14px;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid p,
.footer-bottom p {
  color: rgba(244, 239, 229, 0.68);
  font-size: 0.92rem;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 235, 199, 0.08);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 18px;
  }

  .home-hero,
  .heritage-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .drop-grid,
  .collection-tile-grid,
  .heritage-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .alerts-band {
    grid-template-columns: 82px 1fr;
  }

  .alerts-form {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    align-items: start;
    padding: 12px 0 18px;
  }

  .site-nav,
  .header-actions {
    display: none;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .site-header.is-menu-open .site-nav,
  .site-header.is-menu-open .header-actions {
    display: flex;
  }

  .site-header.is-menu-open .site-nav {
    padding-top: 16px;
  }

  .site-header.is-menu-open .header-actions {
    padding-top: 10px;
    border-top: 1px solid rgba(255, 235, 199, 0.08);
  }

  .site-nav {
    gap: 12px;
  }

  .site-nav a,
  .header-icon-link,
  .cart-link {
    padding: 8px 0;
    font-size: 0.92rem;
    letter-spacing: 0.12em;
  }

  .site-nav a::after {
    display: none;
  }

  .header-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .header-icon-link,
  .cart-link {
    border-bottom: 1px solid rgba(255, 235, 199, 0.08);
  }

  .cart-link {
    justify-content: space-between;
  }

  .home-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 18px 0 0;
  }

  .home-hero-copy {
    padding: 18px 18px 20px;
  }

  .home-hero-copy h1 {
    font-size: clamp(3.2rem, 12vw, 4.4rem);
    line-height: 0.92;
    max-width: 8ch;
  }

  .hero-text {
    max-width: 28ch;
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-actions {
    gap: 10px;
  }

  .home-hero-visual {
    min-height: 0;
    padding: 0 0 18px;
  }

  .county-seal {
    position: relative;
    right: auto;
    top: auto;
    margin: 0 auto 18px;
  }

  .topbar {
    gap: 8px;
    padding: 10px 0 12px;
  }

  .topbar p,
  .topbar-links {
    line-height: 1.5;
  }

  .home-pillars,
  .drop-grid,
  .collection-tile-grid,
  .heritage-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pillar-item {
    justify-content: flex-start;
    padding: 0 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 235, 199, 0.08);
  }

  .home-section-heading,
  .footer-bottom,
  .alerts-band {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: start;
  }

  .alerts-band {
    padding: 24px 18px;
  }

  .alerts-form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .alerts-form input,
  .alerts-form .button {
    border-radius: 8px;
  }

  .alerts-form input {
    border-right: 1px solid rgba(255, 235, 199, 0.15);
  }

  .heritage-band {
    padding: 28px 20px;
  }
}

.home-hero {
  position: relative;
  min-height: 540px;
  padding: 24px 36px 0;
  background:
    linear-gradient(90deg, rgba(6, 6, 5, 0.94) 0%, rgba(6, 6, 5, 0.9) 32%, rgba(6, 6, 5, 0.46) 60%, rgba(6, 6, 5, 0.22) 100%),
    radial-gradient(circle at 76% 26%, rgba(197, 124, 72, 0.26), transparent 18%),
    var(--hero-image) right center / 58% auto no-repeat,
    #0b0c0a;
}

.home-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 22px;
  background: repeating-linear-gradient(135deg, #b68d4f 0 10px, #1a1610 10px 20px);
}

.home-hero-copy {
  max-width: 430px;
}

.home-hero-copy h1 {
  font-size: clamp(4.4rem, 8vw, 6.8rem);
  color: #f3e2c9;
}

.hero-text {
  max-width: 380px;
  color: rgba(244, 239, 229, 0.86);
}

.button {
  min-width: 142px;
  min-height: 54px;
  border-radius: 4px;
}

.button-secondary {
  background: transparent;
  color: #f4efe5;
  border: 1px solid rgba(244, 239, 229, 0.38);
}

.home-hero-visual {
  min-height: 480px;
}

.county-seal {
  right: 5%;
  top: 23%;
  width: 186px;
  height: 186px;
}

.home-pillars {
  margin-top: 0;
  background: #0b0c0a;
}

.home-stage {
  padding: 26px 28px 32px;
}

.home-stage-light {
  background: #ece5db;
  color: #16120e;
}

.home-stage-dark {
  background: #11120f;
}

.home-stage-light .eyebrow,
.home-stage-light .home-section-heading a,
.home-stage-light .home-section-heading h2,
.home-stage-light .home-section-heading {
  color: #18130f;
}

.home-stage-light .eyebrow {
  color: #8d6736;
}

.showcase-card-grid,
.collection-tile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.showcase-card {
  overflow: hidden;
  border: 1px solid rgba(14, 13, 11, 0.16);
  border-radius: 10px;
  background: #191816;
  color: #f3ece2;
}

.showcase-card-media {
  position: relative;
  display: block;
  aspect-ratio: 0.98;
  background: #0e0d0b;
}

.showcase-card-media img {
  height: 100%;
  object-fit: cover;
}

.showcase-badge {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1;
  padding: 6px 10px;
  border-radius: 3px;
  background: #cfab57;
  color: #17120d;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.showcase-card-copy {
  display: grid;
  gap: 8px;
  padding: 14px 16px 16px;
}

.showcase-card-copy h3 {
  font-size: 1.65rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.showcase-card-copy p {
  color: rgba(243, 236, 226, 0.68);
  font-size: 0.88rem;
}

.showcase-card-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}

.showcase-card-footer strong {
  font-size: 1.7rem;
  color: #f3c98b;
}

.quick-view-link {
  min-width: 126px;
  min-height: 40px;
  border: 1px solid rgba(244, 239, 229, 0.32);
  border-radius: 4px;
}

.collection-tile-grid {
  gap: 16px;
}

.collection-tile {
  min-height: 200px;
}

.collection-tile::after {
  content: '\2192';
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: #bb3d34;
  font-size: 1.4rem;
}

.collection-tile h3 {
  max-width: 7ch;
}

.collection-tile span {
  color: #f0cf96;
}

.why-strip {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  margin-top: 0;
  padding: 28px 22px;
  background: #11120f;
  border-top: 1px solid rgba(255, 235, 199, 0.08);
}

.why-strip-heading {
  padding-right: 20px;
}

.why-strip-heading h2 {
  font-size: 3rem;
  line-height: 0.92;
}

.why-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.why-strip-item {
  padding: 0 18px;
  border-left: 1px solid rgba(255, 235, 199, 0.1);
}

.why-strip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 12px;
  border: 1px solid rgba(184, 155, 99, 0.42);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
}

.why-strip-item h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  text-transform: uppercase;
  line-height: 1.15;
}

.why-strip-item p {
  color: rgba(244, 239, 229, 0.74);
  line-height: 1.6;
  font-size: 0.9rem;
}

.alerts-band {
  background:
    linear-gradient(135deg, rgba(66, 20, 16, 0.78), rgba(12, 12, 10, 0.88)),
    radial-gradient(circle at left, rgba(255, 255, 255, 0.06), transparent 26%),
    #171411;
}

@media (max-width: 1100px) {
  .home-hero {
    background-size: 58% auto, auto, auto, auto;
  }

  .showcase-card-grid,
  .collection-tile-grid,
  .why-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-strip {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .why-strip-item {
    border-left: 0;
    padding: 0;
  }
}

@media (max-width: 760px) {
  .home-hero {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
    padding: 18px 0 0;
    background:
      linear-gradient(180deg, rgba(6, 6, 5, 0.94) 0%, rgba(6, 6, 5, 0.74) 36%, rgba(6, 6, 5, 0.48) 100%),
      var(--hero-image) center top / cover no-repeat,
      #0b0c0a;
  }

  .home-hero-copy {
    max-width: none;
    padding: 18px 18px 20px;
  }

  .home-hero-copy h1 {
    max-width: 8ch;
    font-size: clamp(3.2rem, 12vw, 4.4rem);
    line-height: 0.92;
  }

  .hero-text {
    max-width: 28ch;
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-actions {
    gap: 10px;
  }

  .home-hero-visual {
    display: none;
    min-height: 0;
    padding: 0;
  }

  .home-stage {
    padding: 22px 18px 24px;
  }

  .showcase-card-grid,
  .collection-tile-grid,
  .why-strip-grid {
    grid-template-columns: 1fr;
  }

  .county-seal {
    display: none;
  }
}

.seed-archive-shell {
  display: grid;
  gap: 24px;
  margin-top: 18px;
}

.seed-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 360px;
  gap: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 235, 199, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(184, 155, 99, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(20, 20, 18, 0.96), rgba(12, 12, 10, 0.96));
}

.seed-hero-copy h1 {
  max-width: none;
  font-size: clamp(1.9rem, 2.5vw, 2.6rem);
  line-height: 1;
}

.seed-hero-copy p:not(.eyebrow) {
  max-width: 58ch;
  color: rgba(244, 239, 229, 0.78);
  line-height: 1.75;
}

.seed-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.seed-hero-stats article,
.seed-hero-panel {
  border: 1px solid rgba(255, 235, 199, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.seed-hero-stats article {
  padding: 16px;
}

.seed-hero-stats span {
  display: block;
  margin-bottom: 8px;
  color: rgba(244, 239, 229, 0.62);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.seed-hero-stats strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
}

.seed-hero-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
}

.seed-hero-panel h2 {
  font-size: 2.6rem;
  line-height: 0.92;
}

.seed-hero-panel p:not(.eyebrow) {
  color: rgba(244, 239, 229, 0.74);
  line-height: 1.75;
}

.seed-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seed-toolbar {
  display: grid;
  gap: 16px;
}

.seed-filter-bar {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 235, 199, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
}

.seed-filter-search input,
.seed-filter-selects select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 235, 199, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  padding: 0 14px;
}

.seed-filter-selects {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.seed-filter-actions {
  display: flex;
  gap: 10px;
}

.seed-collection-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seed-collection-pill {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  min-width: 180px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 235, 199, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.seed-collection-pill span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  line-height: 0.94;
}

.seed-collection-pill small {
  color: rgba(244, 239, 229, 0.64);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.seed-collection-pill:hover,
.seed-collection-pill.is-active {
  border-color: rgba(184, 155, 99, 0.45);
  background: rgba(184, 155, 99, 0.08);
  transform: translateY(-1px);
}

.seed-results-section {
  display: grid;
  gap: 16px;
}

.seed-results-bar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.seed-results-bar h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.95;
}

.seed-results-context {
  max-width: 36ch;
  color: rgba(244, 239, 229, 0.7);
  line-height: 1.6;
  text-align: right;
}

.seed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.seed-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 235, 199, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(18, 18, 16, 0.98), rgba(10, 10, 9, 0.98));
}

.seed-card-media {
  position: relative;
  display: block;
  aspect-ratio: 1.02;
  overflow: hidden;
}

.seed-card-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.seed-card:hover .seed-card-media img {
  transform: scale(1.03);
}

.seed-card-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(15, 15, 12, 0.78);
  color: #f1d49c;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.seed-card-copy {
  display: grid;
  gap: 12px;
  padding: 18px 18px 14px;
}

.seed-card-category {
  color: rgba(244, 239, 229, 0.62);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.seed-card-copy h3 {
  font-size: 2.05rem;
  line-height: 0.94;
}

.seed-card-tagline {
  color: rgba(244, 239, 229, 0.74);
  line-height: 1.65;
}

.seed-card-meta {
  display: grid;
  gap: 10px;
}

.seed-card-meta div {
  display: grid;
  gap: 4px;
}

.seed-card-meta dt {
  color: rgba(244, 239, 229, 0.54);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seed-card-meta dd {
  margin: 0;
  line-height: 1.55;
}

.seed-card-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding: 0 18px 18px;
}

.seed-card-footer strong {
  display: block;
  font-size: 1.2rem;
}

.seed-card-footer span {
  display: block;
  margin-top: 5px;
  color: rgba(244, 239, 229, 0.62);
  font-size: 0.86rem;
}

@media (max-width: 1100px) {
  .seed-hero,
  .seed-filter-bar {
    grid-template-columns: 1fr;
  }

  .seed-filter-selects,
  .seed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seed-results-bar {
    flex-direction: column;
    align-items: start;
  }

  .seed-results-context {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .seed-archive-shell {
    gap: 18px;
  }

  .seed-hero,
  .seed-filter-bar {
    padding: 20px;
  }

  .seed-hero-stats,
  .seed-filter-selects,
  .seed-grid {
    grid-template-columns: 1fr;
  }

  .seed-filter-actions,
  .seed-card-footer,
  .seed-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .seed-collection-pill {
    min-width: 0;
    width: 100%;
  }
}

.admin-orders-layout {
  display: grid;
  gap: 22px;
}

.admin-orders-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  padding: 28px;
  border: 1px solid rgba(255, 235, 199, 0.1);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(21, 21, 18, 0.96), rgba(10, 10, 9, 0.98));
}

.admin-orders-header h1 {
  max-width: none;
  font-size: clamp(1.9rem, 2.4vw, 2.5rem);
  line-height: 1;
}

@media (max-width: 760px) {
  .seed-hero-copy h1,
  .admin-orders-header h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
    line-height: 0.98;
  }
}

.admin-orders-header p:not(.eyebrow) {
  max-width: 60ch;
  color: rgba(244, 239, 229, 0.74);
  line-height: 1.75;
}

.admin-orders-stats {
  display: grid;
  gap: 12px;
}

.admin-orders-stats article {
  padding: 16px 18px;
  border: 1px solid rgba(255, 235, 199, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.admin-orders-stats span {
  display: block;
  margin-bottom: 8px;
  color: rgba(244, 239, 229, 0.58);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-orders-stats strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
}

.admin-orders-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.2fr);
  gap: 22px;
  align-items: start;
}

.admin-orders-list,
.admin-order-detail {
  padding: 18px;
  border: 1px solid rgba(255, 235, 199, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
}

.admin-orders-list-header,
.admin-order-detail-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.admin-orders-list-header h2,
.admin-order-detail-header h2 {
  font-size: 2rem;
}

.admin-order-list {
  display: grid;
  gap: 12px;
}

.admin-order-link {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(255, 235, 199, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.admin-order-link:hover,
.admin-order-link.is-active {
  border-color: rgba(184, 155, 99, 0.42);
  background: rgba(184, 155, 99, 0.08);
  transform: translateY(-1px);
}

.admin-order-top,
.admin-order-bottom,
.admin-order-meta,
.admin-detail-summary,
.admin-detail-row,
.admin-item-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.admin-order-link strong,
.admin-detail-summary strong,
.admin-order-detail strong {
  font-size: 1.05rem;
}

.admin-order-link span,
.admin-order-link small,
.admin-order-detail p,
.admin-order-detail span,
.admin-detail-row,
.admin-item-row {
  color: rgba(244, 239, 229, 0.72);
}

.admin-order-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(184, 155, 99, 0.12);
  color: #f1d49c;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-order-detail {
  display: grid;
  gap: 18px;
}

.admin-detail-summary {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 235, 199, 0.08);
}

.admin-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

.admin-detail-grid article {
  display: grid;
  gap: 4px;
}

.admin-detail-grid span,
.admin-item-table-header,
.admin-totals-row span {
  color: rgba(244, 239, 229, 0.56);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-item-table {
  display: grid;
  gap: 10px;
}

.admin-item-table-header,
.admin-item-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 80px 120px 120px;
  gap: 12px;
  align-items: center;
}

.admin-item-row {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 235, 199, 0.08);
}

.admin-item-name {
  color: #f4efe5;
}

.admin-totals {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.admin-totals-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.admin-totals-row.is-total {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 235, 199, 0.08);
}

@media (max-width: 1100px) {
  .admin-orders-header,
  .admin-orders-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .admin-orders-header,
  .admin-orders-list,
  .admin-order-detail {
    padding: 20px;
  }

  .admin-detail-grid,
  .admin-item-table-header,
  .admin-item-row {
    grid-template-columns: 1fr;
  }

  .admin-orders-list-header,
  .admin-order-detail-header,
  .admin-order-top,
  .admin-order-bottom,
  .admin-order-meta,
  .admin-detail-summary,
  .admin-totals-row {
    flex-direction: column;
    align-items: start;
  }
}
