/* =====================================================
   Apernature — shared stylesheet
   ===================================================== */

:root {
  --cream:    #fbf7ee;   /* soft, warm page background        */
  --cream-2:  #f4ecdb;   /* slightly deeper cream for blocks  */
  --honey:    #e0a82e;   /* warm honey amber accent           */
  --honey-dk: #b9831a;   /* darker amber for text/links       */
  --green:    #6f8f3f;   /* muted brand green, a quiet nod    */
  --ink:      #2e2a22;   /* warm near-black body text         */
  --ink-soft: #5c5648;   /* softened text for secondary copy  */
  --line:     #e6dcc7;   /* hairline dividers                 */
  --max:      46rem;     /* comfortable reading width         */
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Cantarell', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

a { color: var(--honey-dk); }

/* ---------- Site nav ---------- */
.site-nav {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.site-nav .home {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-right: auto;
}
.site-nav .home:hover { color: var(--honey-dk); }
.site-nav .hex {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--honey);
  flex: none;
}
.site-nav a {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
}
.site-nav a:hover { color: var(--honey-dk); }

/* ---------- Eyebrow label ---------- */
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 0.6rem;
}

/* ---------- Subpage header ---------- */
.page-hero {
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2rem, 5vw, 3.5rem);
  background: radial-gradient(120% 80% at 50% -10%, var(--cream-2), transparent 60%);
}
.page-hero h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}

/* ---------- Subpage content ---------- */
.content {
  padding: clamp(2rem, 6vw, 3.5rem) 0 clamp(3rem, 8vw, 5rem);
}
.content section + section {
  margin-top: 2.8rem;
  padding-top: 2.8rem;
  border-top: 1px solid var(--line);
}
.content h2 {
  font-size: clamp(1.3rem, 3.5vw, 1.65rem);
  font-weight: 700;
  margin: 0 0 0.9rem;
  color: var(--ink);
}
.content p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  max-width: 38rem;
}
.content p:last-child { margin-bottom: 0; }

/* ---------- Images ---------- */
.section-img {
  margin-top: 1.8rem;
  display: block;
  width: 100%;
  max-width: 36rem;
  border-radius: 12px;
  box-shadow: 0 20px 48px -20px rgba(80, 60, 10, 0.45);
}
.product-img {
  margin-top: 1.8rem;
  display: block;
  width: 100%;
  max-width: 26rem;
  border-radius: 12px;
  box-shadow: 0 20px 48px -20px rgba(80, 60, 10, 0.45);
}

/* ---------- Note callout ---------- */
.note {
  margin-top: 1.4rem;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--honey);
  background: var(--cream-2);
  border-radius: 0 8px 8px 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 38rem;
}

/* ---------- Index: content blocks ---------- */
section.block {
  padding: clamp(2.5rem, 7vw, 4rem) 0;
}
section.block + section.block {
  border-top: 1px solid var(--line);
}
.block h2 {
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--ink);
}
.block p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  max-width: 38rem;
}
.block p:last-child { margin-bottom: 0; }

/* ---------- Read-more link ---------- */
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--honey-dk);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.1rem;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.read-more:hover {
  color: var(--ink);
  border-color: var(--ink);
}
.read-more svg {
  width: 0.85rem;
  height: 0.85rem;
  transition: transform 0.15s ease;
}
.read-more:hover svg { transform: translateX(2px); }

/* ---------- Contact ---------- */
.contact { text-align: center; }
.contact p { margin-inline: auto; }

.cta {
  display: inline-block;
  margin-top: 1.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  background: var(--honey);
  color: #3a2b06;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  box-shadow: 0 12px 24px -16px rgba(150, 110, 20, 0.9);
}
.cta:hover {
  background: var(--honey-dk);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 16px 28px -16px rgba(150, 110, 20, 0.9);
}

/* ---------- Footer ---------- */
footer {
  text-align: center;
  padding: 3rem 1.5rem 3.5rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.9rem;
  background: var(--cream-2);
}
footer .foot-mark {
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
footer a { color: var(--honey-dk); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cta, .read-more, .read-more svg { transition: none; }
}
