﻿:root {
  color-scheme: light;
  --ink: #20231f;
  --muted: #626961;
  --paper: #f7f6ef;
  --surface: #ffffff;
  --line: #d9dccf;
  --green: #2d5549;
  --blue: #334e63;
  --gold: #a98338;
  --plum: #6c4b5f;
  --shadow: 0 16px 42px rgba(32, 35, 31, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
}

a { color: inherit; text-decoration: none; }

.site-header,
.site-footer,
main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a:hover { color: var(--ink); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 44px;
  align-items: center;
  padding: 68px 0;
}

.page-header {
  padding: 58px 0 32px;
}

.hero h1,
.page-header h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 7vw, 5.7rem);
  line-height: 0.96;
  font-weight: 500;
}

.lead,
.page-header p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0 18px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

.button.primary,
button {
  background: var(--ink);
  color: var(--paper);
}

.prototype-panel,
.detail-panel,
.product-card,
.category-card,
.article-card,
.trust-note,
.signup-band {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.prototype-panel {
  padding: 24px;
}

.prototype-panel h2,
.detail-panel h2,
.article-card h2,
.trust-note h2,
.text-section h2,
.policy-list h2,
.section-heading h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  font-weight: 500;
}

.section,
.text-section,
.policy-list,
.detail-grid {
  padding: 42px 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1fr);
  gap: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 18px;
}

.section-intro {
  max-width: 760px;
  color: var(--muted);
}

.category-grid,
.product-grid,
.feature-grid,
.form-grid,
.article-sections {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.featured-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card,
.product-card,
.article-card,
.detail-panel {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.category-card:hover,
.product-card:hover {
  border-color: var(--gold);
}

.category-card span,
.status-pill {
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 800;
}

.category-card h3,
.product-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.category-card p,
.product-card p,
.detail-panel p,
.article-card p,
.text-section p,
.policy-list p,
.trust-note p {
  margin: 0;
  color: var(--muted);
}

.category-label {
  color: var(--plum) !important;
  font-weight: 800;
}

.text-link {
  width: fit-content;
  border-bottom: 1px solid currentColor;
  color: var(--green);
  font-weight: 800;
}

.signup-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: center;
  margin: 44px 0;
  padding: 24px;
}

.placeholder-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
}

.placeholder-form.stacked {
  grid-template-columns: 1fr;
}

input,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.detail-panel dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.detail-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

dt { color: var(--muted); }
dd { margin: 0; text-align: right; font-weight: 800; }

.trust-note {
  margin: 18px 0 48px;
  border-left: 4px solid var(--gold);
  padding: 22px;
}

.policy-list {
  display: grid;
  gap: 16px;
  max-width: 900px;
}

.policy-list article {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 28px 0 36px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p { margin: 0; }

@media (max-width: 980px) {
  .hero,
  .two-column,
  .signup-band,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .product-grid,
  .feature-grid,
  .feature-grid,
  .form-grid,
  .article-sections {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .placeholder-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav { justify-content: flex-start; }

  .category-grid,
  .product-grid,
  .feature-grid,
  .form-grid,
  .article-sections {
    grid-template-columns: 1fr;
  }
}

/* Launch-ready ecosystem shell refinements */
.site-header {
  align-items: flex-start;
}

.site-nav {
  max-width: 780px;
  line-height: 1.3;
}

.site-nav a {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 5px 8px;
}

.site-nav a:hover {
  border-color: var(--line);
  background: var(--surface);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.product-page-header .actions,
.page-header .actions {
  margin-top: 22px;
}

.product-card .status-pill,
.page-header .status-pill {
  margin-top: 4px;
}

.detail-panel h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.detail-panel ul,
.product-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.policy-list article {
  background: rgba(255, 255, 255, 0.45);
}

@media (max-width: 1120px) {
  .site-header {
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
    max-width: none;
  }
}

/* Ordered product index */
.ordered-index {
  display: grid;
  gap: 10px;
}

.index-row {
  display: grid;
  grid-template-columns: minmax(170px, 0.9fr) minmax(180px, 0.8fr) minmax(220px, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 14px;
  box-shadow: 0 10px 24px rgba(32, 35, 31, 0.05);
}

.index-row h3,
.index-row p {
  margin: 0;
}

.index-row h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 500;
}

@media (max-width: 900px) {
  .index-row {
    grid-template-columns: 1fr;
  }
}
