/* Outfit from Google Fonts (loaded via <link> in HTML) */

:root {
  --bg: #f4f1ed;
  --surface: #fbf9f6;
  --text: #1a1612;
  --muted: #62584f;
  --border: #d9d0c7;
  --accent: #C67A4B;
  --accent-hover: #B0663A;
  --radius: 20px;
  --shadow: 0 4px 24px rgb(23 20 17 / 5%);
}

/* Reset */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Layout */
.container { width: min(1120px, 90vw); margin: 0 auto; }
.section { padding: 80px 0; }
.muted-bg { background: #ece7e1; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Typography */
h1, h2, h3 { margin: 0 0 16px; line-height: 1.15; }
h1 { font-weight: 600; font-size: clamp(32px, 4vw, 48px); letter-spacing: -0.02em; }
h2 { font-weight: 600; font-size: clamp(24px, 3vw, 36px); letter-spacing: -0.01em; }
h3 { font-weight: 500; font-size: 18px; }
p { margin: 0; color: var(--muted); font-weight: 300; }

a { color: inherit; }

/* Label / eyebrow */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* Image utility */
.img-crop {
  overflow: hidden;
  border-radius: var(--radius);
}
.img-crop img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 10;
  border-bottom: 1px solid var(--border);
  background: rgb(244 241 237 / 85%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-wrap {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0;
}
.logo {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid transparent; border-radius: 12px;
  padding: 14px 28px; background: var(--accent); color: #fff;
  text-decoration: none; font-family: inherit; font-size: 15px;
  font-weight: 500; cursor: pointer;
  transition: background .25s ease, transform .2s ease, box-shadow .25s ease;
}
.btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgb(198 122 75 / 25%);
}
.btn-secondary {
  background: transparent; color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover {
  background: #efe9e2;
  box-shadow: none;
  transform: none;
}

/* Hero */
.hero-grid, .split { display: grid; gap: 40px; align-items: center; }
.hero-grid { grid-template-columns: 1.1fr 1fr; }
.hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
}
.hero-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  margin: 0 auto;
}
.hero-copy { padding: 20px 0; }
.hero-copy .eyebrow { margin-bottom: 18px; }
.hero-copy p {
  max-width: 520px;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Trust strip */
.trust-strip-wrap { padding: 0; }
.trust-strip-wrap .section-inner { padding: 40px 0; }
.trust-strip {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px;
}
.trust-item {
  padding: 18px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-align: center;
}
.trust-item span {
  color: var(--accent);
  margin-right: 6px;
  font-weight: 500;
}

/* Ingredients section */
.split { grid-template-columns: 1fr 1fr; }
.chart-wrap {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius);
  text-align: center;
}
.chart-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}
.ingredients-copy { display: flex; flex-direction: column; justify-content: center; }
.ingredients-copy .eyebrow { margin-bottom: 18px; }
.ingredients-copy h2 { max-width: 480px; }
.ingredients-copy p {
  max-width: 440px;
  font-size: 16px;
  line-height: 1.7;
}

/* Process / How We Make It */
.section-header {
  margin-bottom: 32px;
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.process-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.process-cards .card {
  padding: 30px 24px;
}
.process-cards .card h3 {
  margin-bottom: 12px;
}
.process-image {
  border-radius: var(--radius);
  overflow: hidden;
}
.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Grids */
.grid { display: grid; gap: 16px; }
.grid.four { grid-template-columns: repeat(4, minmax(0,1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid .card { padding: 28px; }
.grid .card h3 { margin-bottom: 8px; }
.grid .card p { font-size: 15px; line-height: 1.6; }

/* Comparison table */
.comparison-section .split { align-items: start; }
.table-wrap { overflow-x: auto; border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; min-width: 480px; }
th, td {
  text-align: left; padding: 16px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--muted); font-size: 15px;
}
th { color: var(--text); font-weight: 500; }
td:last-child { color: var(--accent); font-weight: 500; }
.comparison-image {
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
}
.comparison-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Testimonials (removed – kept minimal for blockquote reuse) */
blockquote { margin: 0; font-size: 15px; line-height: 1.7; font-weight: 300; font-style: italic; }
cite {
  display: block; margin-top: 14px;
  color: var(--text); font-style: normal;
  font-weight: 500; font-size: 14px;
}

/* Transparency section */
.plain-list {
  list-style: none; padding: 0; margin: 0 0 16px;
  display: grid; gap: 10px; color: var(--muted);
}
.plain-list li {
  padding-left: 20px;
  position: relative;
  font-weight: 300;
}
.plain-list li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 500;
}
.trust-note { padding: 28px; display: grid; gap: 12px; }
.transparency-image {
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
}
.transparency-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Details section */
.details-section .grid .card { text-align: center; padding: 32px 24px; }

/* Product card / Pricing */
.product-card {
  padding: 36px;
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
}
.product-card .img-crop {
  border-radius: 16px;
  margin-bottom: 20px;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}
.product-card .img-crop img {
  aspect-ratio: 3 / 4;
}
.price {
  font-size: 44px;
  font-weight: 600;
  color: var(--text);
  margin: 12px 0 16px;
  letter-spacing: -0.02em;
}
.old-price {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 24px;
  font-weight: 400;
  margin-right: 8px;
}
.new-price {
  color: var(--text);
}
.tiny-note { font-size: 13px; margin-top: 12px; color: var(--muted); font-weight: 300; }
.spots-counter { font-size: 14px; margin-top: 10px; color: #b35a00; }

/* FAQ */
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
}
.faq-list details + details { margin-top: 12px; }
summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::before {
  content: '+';
  display: inline-block;
  width: 20px;
  color: var(--accent);
  font-weight: 500;
  font-size: 18px;
}
details[open] summary::before { content: '-'; }
summary + p { margin-top: 10px; font-size: 15px; }

/* Final CTA */
.final-cta {
  text-align: center;
  background: #ece5db;
}
.final-cta h2 { margin-bottom: 24px; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); }
.footer-grid {
  display: flex; gap: 20px; flex-wrap: wrap;
  padding: 28px 0; color: var(--muted);
  font-size: 14px; font-weight: 300;
}
.footer-grid a { text-decoration: none; }
.footer-grid a:hover { color: var(--accent); }

/* Modal */
.modal-backdrop {
  position: fixed; inset: 0;
  display: none; align-items: center; justify-content: center;
  padding: 16px;
  background: rgb(0 0 0 / 30%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 20;
}
.modal-backdrop.open { display: flex; }
.modal { width: min(420px, 100%); padding: 28px; }
.modal-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}
.icon-btn {
  border: 0; background: transparent;
  font-size: 24px; cursor: pointer;
  color: var(--muted);
  transition: color .2s;
}
.icon-btn:hover { color: var(--text); }
label {
  display: block; font-size: 13px; font-weight: 400;
  color: var(--muted); margin-bottom: 10px;
  letter-spacing: 0.02em;
}
input {
  width: 100%; margin-top: 6px; padding: 12px 14px;
  border: 1px solid var(--border); border-radius: 12px;
  font-family: inherit; font-size: 15px; font-weight: 300;
  background: var(--bg);
  transition: border-color .2s;
}
input:focus {
  outline: none;
  border-color: var(--accent);
}
textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.error {
  color: #b74120; min-height: 16px;
  display: block; margin-bottom: 10px;
  font-size: 13px; font-weight: 400;
}
.stock-message {
  padding: 20px; border-radius: 14px;
  background: #f6eee5; color: #5f3a1e;
  border: 1px solid #e2c9af;
  font-size: 15px; line-height: 1.6;
  font-weight: 400;
}
.preorder-note {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
  font-weight: 300;
  line-height: 1.5;
}

/* Legal pages */
.legal-wrap { max-width: 820px; padding: 28px; }
.legal-wrap h2 { margin-top: 22px; }
.legal-wrap p + p { margin-top: 10px; }

/* Section divider */
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .section { padding: 56px 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .split { grid-template-columns: 1fr; }
  .grid.four, .grid.three { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-cards { grid-template-columns: 1fr 1fr; }
  .process-image { min-height: 240px; }
  .comparison-section .split { grid-template-columns: 1fr; }
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
}

@media (max-width: 600px) {
  .trust-strip { grid-template-columns: 1fr; }
  .process-cards { grid-template-columns: 1fr; }
  .product-card { padding: 24px; }
  .price { font-size: 36px; }
}
