:root {
  --parchment: #f3ece1;
  --paper: #faf6ef;
  --ink: #1c1612;
  --ink-soft: #3a3028;
  --saddle: #6b3e2a;
  --rust: #8a3d2a;
  --tan: #c4a574;
  --tan-deep: #9a7848;
  --line: rgba(28, 22, 18, 0.12);
  --shadow: 0 18px 50px rgba(28, 22, 18, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Sans 3", system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 246, 239, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}
.brand {
  font-family: Fraunces, Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  font-size: 1.15rem;
}
.brand span { color: var(--saddle); }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--saddle); }
.nav-cta {
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  padding: 10px 16px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.menu-btn {
  display: none;
  background: none;
  border: 0;
  font-size: 1.4rem;
  cursor: pointer;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: calc(100vh - 72px);
  background: var(--parchment);
}
.hero-copy {
  padding: clamp(40px, 8vw, 96px) clamp(24px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--saddle);
  margin-bottom: 18px;
}
h1, h2, h3 { font-family: Fraunces, Georgia, serif; font-weight: 500; line-height: 1.15; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 5rem); margin-bottom: 18px; }
.lede { font-size: 1.15rem; max-width: 34ch; color: var(--ink-soft); margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 13px 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  border: 1px solid var(--ink);
  cursor: pointer;
}
.btn-solid { background: var(--ink); color: var(--paper); }
.btn-ghost { background: transparent; }
.btn:hover { opacity: 0.88; }
.hero-photo { position: relative; overflow: hidden; min-height: 420px; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: var(--paper);
  padding: 14px 16px;
  font-size: 0.82rem;
  max-width: 220px;
}

/* SECTIONS */
section { padding: 88px 0; }
.section-head { max-width: 560px; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin: 8px 0 12px; }
.muted { color: var(--ink-soft); }

/* PRODUCTS */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.card-body { padding: 18px 18px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card h3 { font-size: 1.35rem; }
.price { font-family: Fraunces, Georgia, serif; color: var(--saddle); font-size: 1.1rem; }
.card p { color: var(--ink-soft); font-size: 0.95rem; }
.card .btn { margin-top: auto; align-self: flex-start; }

/* STORY */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.story img { width: 100%; height: 520px; object-fit: cover; }
.story-copy h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.story-copy p { margin-bottom: 14px; color: var(--ink-soft); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.stat strong { display: block; font-family: Fraunces, Georgia, serif; font-size: 1.6rem; }
.stat span { font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); }

/* PROCESS */
.process { background: var(--parchment); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  background: var(--paper);
  padding: 24px;
  border: 1px solid var(--line);
}
.num { font-family: Fraunces, Georgia, serif; color: var(--tan-deep); font-size: 1.4rem; }

/* CUSTOM */
.custom-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
form {
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px;
  display: grid;
  gap: 14px;
}
label { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 12px 12px;
  color: var(--ink);
}
textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.note { font-size: 0.88rem; color: var(--ink-soft); }

/* FAQ */
.faq { display: grid; gap: 10px; }
details {
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px 18px;
}
summary { cursor: pointer; font-weight: 600; }
details p { margin-top: 10px; color: var(--ink-soft); }

/* FOOTER */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 48px 0 28px;
}
.foot {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}
.foot a { color: var(--tan); text-decoration: none; }
.fine { margin-top: 36px; font-size: 0.82rem; opacity: 0.7; }

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(28, 22, 18, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
  padding: 20px;
}
.modal.open { display: flex; }
.modal-card {
  background: var(--paper);
  width: min(440px, 100%);
  padding: 28px;
}
.modal-card h3 { margin-bottom: 8px; }

@media (max-width: 900px) {
  .hero, .story, .custom-grid, .foot, .grid, .steps { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 20px;
    border-bottom: 1px solid var(--line);
  }
  .menu-btn { display: block; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
}
