:root {
  --bg: #faf8f5;
  --fg: #2c2418;
  --muted: #8a7e6e;
  --line: #e8e0d4;
  --accent: #a0714a;
  --accent-hover: #87603e;
  --accent-light: rgba(160, 113, 74, 0.07);
  --surface: #ffffff;
  --surface-border: #ebe4d8;
  --warm-bg: #f3ede4;
  --radius: 6px;
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1a1714;
    --fg: #e8e0d4;
    --muted: #9e9484;
    --line: #302a22;
    --accent: #c89b6e;
    --accent-hover: #d4ac82;
    --accent-light: rgba(200, 155, 110, 0.08);
    --surface: #221e1a;
    --surface-border: #352e26;
    --warm-bg: #1e1b17;
  }
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); }

main {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Nav ───────────────────────────────────────────── */

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 1.5rem 0;
}

.site-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.25rem;
  text-decoration: none;
  color: var(--fg);
  margin-right: auto;
  letter-spacing: -0.01em;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.15s;
}

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

.nav-cta {
  color: var(--accent) !important;
  font-weight: 600;
}

/* ── Hero ──────────────────────────────────────────── */

.hero {
  text-align: center;
  padding: 6rem 0 3rem;
  max-width: 48rem;
  margin: 0 auto;
}

.hero-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}

.hero .subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 34rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--fg);
  color: var(--bg);
}

.btn-primary:hover {
  opacity: 0.85;
}

.btn-outline {
  background: transparent;
  color: var(--fg);
  border: 1.5px solid var(--line);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Divider ───────────────────────────────────────── */

.divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* ── Image showcase ────────────────────────────────── */

.showcase {
  padding: 3rem 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.showcase-img {
  width: 100%;
  height: 24rem;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

@media (max-width: 640px) {
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-img { height: 16rem; }
}

/* ── Intro text block ──────────────────────────────── */

.intro {
  max-width: 38rem;
  margin: 0 auto;
  padding: 4rem 0;
  text-align: center;
}

.intro h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin: 0 0 1rem;
}

.intro p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0;
}

/* ── Section common ────────────────────────────────── */

section {
  padding: 4.5rem 0;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
}

.section-header p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 32rem;
}

.section-header--center {
  text-align: center;
}

.section-header--center p {
  margin: 0 auto;
}

/* ── Products ──────────────────────────────────────── */

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s;
}

.product-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.product-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--warm-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-img-wrap svg {
  width: 60%;
  height: 60%;
  opacity: 0.35;
}

.product-body {
  padding: 1.5rem;
}

.product-body h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 0 0.35rem;
}

.product-body p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-meta .price {
  font-weight: 600;
  font-size: 1rem;
  color: var(--fg);
}

.product-meta .link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
}

.product-meta .link:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* ── Craft details (alternating rows) ──────────────── */

.craft-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}

.craft-row:nth-child(even) .craft-text { order: -1; }

.craft-text h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 0.75rem;
}

.craft-text p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.7;
}

.craft-visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--warm-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.craft-visual svg {
  width: 50%;
  height: 50%;
  opacity: 0.25;
}

@media (max-width: 768px) {
  .craft-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .craft-row:nth-child(even) .craft-text { order: 0; }
}

/* ── Features strip ────────────────────────────────── */

.features-strip {
  background: var(--warm-bg);
  border-radius: var(--radius);
  padding: 3.5rem 2.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature {
  text-align: center;
}

.feature .icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.feature h3 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.3rem;
}

.feature p {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .features-strip { padding: 2.5rem 1.5rem; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ── Testimonials ──────────────────────────────────── */

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.testimonial .stars {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testimonial blockquote {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.65;
  font-style: normal;
}

.testimonial cite {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .testimonials { grid-template-columns: 1fr; }
}

/* ── FAQ ───────────────────────────────────────────── */

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
}

.faq-item summary {
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--muted);
  font-weight: 300;
}

.faq-item[open] summary::after { content: "\2212"; }

.faq-item p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0.75rem 0 0;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .faq-layout { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── CTA ───────────────────────────────────────────── */

.cta-section {
  text-align: center;
  padding: 5rem 0 2rem;
  max-width: 36rem;
  margin: 0 auto;
}

.cta-section h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 0.75rem;
}

.cta-section p {
  color: var(--muted);
  font-size: 1rem;
  margin: 0 0 2rem;
}

/* ── Footer ────────────────────────────────────────── */

footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}

footer a {
  color: var(--muted);
  text-decoration: none;
}

footer a:hover { color: var(--fg); }

.footer-links {
  display: flex;
  gap: 1.75rem;
}

/* ── Responsive ────────────────────────────────────── */

@media (max-width: 640px) {
  .site-nav { gap: 1.25rem; flex-wrap: wrap; }
  .hero { padding: 4rem 0 2rem; }
  section { padding: 3rem 0; }
  footer { flex-direction: column; text-align: center; }
}
