/* Hemp Fiber Art — site styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --hemp:     #8b6f47;
  --hemp-dk:  #6b5230;
  --hemp-lt:  #c9a96e;
  --green:    #4a7c59;
  --green-lt: #7a9e7e;
  --earth:    #5c4a3a;
  --text:     #2a1f14;
  --muted:    #7a6a58;
  --hairline: #e8e0d4;
  --bg-soft:  #faf7f2;
  --bg-warm:  #f5ede0;
  --radius:   8px;
  --max:      960px;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--hemp); text-decoration: none; }
a:hover { color: var(--hemp-dk); text-decoration: underline; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ── Header ── */
.site-header {
  border-bottom: 1px solid var(--hairline);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.logo {
  font-size: 18px;
  font-weight: bold;
  color: var(--earth);
  letter-spacing: -0.3px;
}
nav { display: flex; gap: 28px; }
nav a {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
nav a:hover { color: var(--hemp-dk); text-decoration: none; }

/* ── Hero ── */
.hero {
  background: var(--bg-warm);
  padding: 80px 0 72px;
  border-bottom: 1px solid var(--hairline);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green);
  margin-bottom: 16px;
}
h1 {
  font-size: 48px;
  line-height: 1.1;
  color: var(--earth);
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.lead {
  font-size: 19px;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 460px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Buttons */
.btn {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius);
  display: inline-block;
  transition: background 0.15s, color 0.15s;
}
.btn-primary { background: var(--hemp); color: #fff; }
.btn-primary:hover { background: var(--hemp-dk); text-decoration: none; color: #fff; }
.btn-secondary { background: transparent; color: var(--earth); border: 1.5px solid var(--hemp-lt); }
.btn-secondary:hover { background: var(--bg-warm); text-decoration: none; }

/* Fiber swatch visual */
.fiber-swatch {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 32px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(90,60,20,0.10);
}
.swatch {
  height: 36px;
  border-radius: 4px;
}
.s1 { background: #c9a96e; width: 100%; }
.s2 { background: #8b6f47; width: 85%; }
.s3 { background: #5c4a3a; width: 65%; }
.s4 { background: #7a9e7e; width: 75%; }
.s5 { background: #4a7c59; width: 50%; }

/* ── Sections ── */
.section { padding: 72px 0; }
.bg-soft { background: var(--bg-soft); }

.section-title {
  font-size: 32px;
  color: var(--earth);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 600px;
}

/* ── Two column ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.two-col h2 {
  font-size: 30px;
  color: var(--earth);
  margin-bottom: 20px;
  letter-spacing: -0.4px;
}
.two-col p + p { margin-top: 16px; }

/* Stat cards */
.stat-stack { display: flex; flex-direction: column; gap: 16px; }
.stat-card {
  background: var(--bg-warm);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-size: 36px;
  font-weight: bold;
  color: var(--hemp);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ── Card grid ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 28px;
}
.card-icon { font-size: 28px; margin-bottom: 14px; }
.card h3 {
  font-size: 18px;
  color: var(--earth);
  margin-bottom: 10px;
}
.card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 200px 200px;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--hairline);
}
.gallery-item.g-tall { grid-row: span 2; }
.gallery-item.g-wide { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44,28,12,0.72);
  color: #f5ede0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 12px;
  padding: 10px 14px;
}

/* ── Materials table ── */
.materials-table-wrap { overflow-x: auto; }
.materials-table {
  width: 100%;
  border-collapse: collapse;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 15px;
}
.materials-table th {
  text-align: left;
  padding: 12px 16px;
  background: var(--bg-warm);
  color: var(--earth);
  font-weight: 600;
  border-bottom: 2px solid var(--hairline);
}
.materials-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--hairline);
  color: var(--text);
}
.materials-table tr:last-child td { border-bottom: none; }
.materials-table tr:hover td { background: var(--bg-soft); }

/* ── CTA ── */
.cta-section { background: var(--bg-warm); }
.cta-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.cta-box h2 {
  font-size: 34px;
  color: var(--earth);
  margin-bottom: 16px;
}
.cta-box p {
  color: var(--muted);
  margin-bottom: 32px;
}

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--hairline);
  padding: 32px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 720px) {
  h1 { font-size: 34px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .fiber-swatch { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .card-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item.g-tall, .gallery-item.g-wide { grid-row: span 1; grid-column: span 1; }
  nav { display: none; }
}
