:root {
  --ink: #241019;
  --ink-soft: #341A28;
  --cream: #F7F1E7;
  --cream-dim: #D9C9BE;
  --ember: #C97C5B;
  --gold: #B98B5E;
  --mauve: #8C6A73;
  --burgundy: #5C2338;
  --blush: #E6D2C8;
  --blush-deep: #D8B8AE;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: 'Work Sans', sans-serif;
  overflow-x: hidden;
}

a { color: inherit; }

/* ---------- background field ---------- */

.field {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.35;
  pointer-events: none;
}

.field path {
  fill: none;
  stroke-width: 1;
  animation: drift 18s ease-in-out infinite;
}

.field path:nth-child(odd) { animation-delay: -4s; }
.field path:nth-child(3n) { animation-delay: -9s; }

@keyframes drift {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(14px); }
}

@media (prefers-reduced-motion: reduce) {
  .field path { animation: none; }
}

/* ---------- nav ---------- */

nav.site-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 6vw 0 6vw;
  max-width: 1100px;
  margin: 0 auto;
}

nav.site-nav .brand {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--cream);
}

nav.site-nav .links {
  display: flex;
  gap: 1.8rem;
}

nav.site-nav .links a {
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--cream-dim);
  transition: color 0.2s ease;
}

nav.site-nav .links a:hover,
nav.site-nav .links a[aria-current="page"] {
  color: var(--ember);
}

@media (max-width: 560px) {
  nav.site-nav { flex-direction: column; gap: 0.9rem; padding-top: 1.6rem; }
  nav.site-nav .links { gap: 1.2rem; flex-wrap: wrap; justify-content: center; }
}

/* ---------- hero (home page) ---------- */

main.hero {
  position: relative;
  z-index: 1;
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6vh 6vw;
  text-align: center;
}

.poles {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 2.2rem;
}

.pole { width: 9px; height: 9px; border-radius: 50%; }
.pole.north { background: var(--ember); box-shadow: 0 0 14px rgba(226,101,58,0.6); }
.pole.south { background: var(--gold); box-shadow: 0 0 14px rgba(201,162,75,0.5); }

.pole-line {
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, var(--ember), var(--gold));
  opacity: 0.7;
}

h1 {
  font-family: 'Fraunces', serif;
  font-optical-sizing: auto;
  font-weight: 450;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 1.3rem 0;
  max-width: 16ch;
}

h1 em { font-style: italic; font-weight: 300; color: var(--ember); }

p.sub {
  max-width: 46ch;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--cream-dim);
  margin: 0 0 3rem 0;
}

form.signup {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 420px;
  flex-wrap: wrap;
  justify-content: center;
}

input[type="email"] {
  flex: 1 1 240px;
  background: transparent;
  border: 1px solid rgba(243,236,226,0.25);
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s ease;
}

input[type="email"]::placeholder { color: var(--mauve); }
input[type="email"]:focus { border-color: var(--ember); }
input[type="email"]:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

button, .btn {
  flex: 0 0 auto;
  background: var(--ember);
  color: var(--ink);
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.8rem;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease, transform 0.15s ease;
}

button:hover, .btn:hover { background: var(--gold); }
button:active, .btn:active { transform: scale(0.97); }
button:focus-visible, .btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.status {
  margin-top: 1.1rem;
  font-size: 0.88rem;
  color: var(--gold);
  min-height: 1.2em;
}

/* ---------- content pages ---------- */

main.page {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 6vh 6vw 10vh 6vw;
}

main.page .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.4rem;
}

main.page h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  text-align: left;
  max-width: none;
  margin-bottom: 1.6rem;
}

main.page p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--cream-dim);
  margin-bottom: 1.4rem;
}

main.page section { margin-bottom: 3rem; }

main.page h2 {
  font-family: 'Fraunces', serif;
  font-weight: 450;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.faq-item {
  border-top: 1px solid rgba(243,236,226,0.12);
  padding: 1.6rem 0;
}

.faq-item:last-child { border-bottom: 1px solid rgba(243,236,226,0.12); }

.faq-item h2 { font-size: 1.15rem; margin-bottom: 0.7rem; }
.faq-item p { margin-bottom: 0; font-size: 0.98rem; }

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  margin: 2rem 0;
}

.value-grid div {
  border: 1px solid rgba(243,236,226,0.12);
  border-radius: 14px;
  padding: 1.4rem;
}

.value-grid h2 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.value-grid p { font-size: 0.92rem; margin-bottom: 0; }

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

footer.site-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2.5rem 6vw 3rem 6vw;
  font-size: 0.8rem;
  color: var(--mauve);
  border-top: 1px solid rgba(243,236,226,0.08);
  margin-top: 2rem;
}

footer.site-footer .age-note {
  margin-top: 0.6rem;
  font-size: 0.75rem;
  opacity: 0.75;
}

/* ---------- age gate ---------- */

#age-gate {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6vw;
  text-align: center;
}

#age-gate .box { max-width: 380px; }

#age-gate h2 {
  font-family: 'Fraunces', serif;
  font-weight: 450;
  font-size: 1.8rem;
  margin-bottom: 0.9rem;
}

#age-gate p {
  color: var(--cream-dim);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

#age-gate .gate-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

#age-gate .decline {
  background: transparent;
  border: 1px solid rgba(243,236,226,0.25);
  color: var(--cream-dim);
}

#age-gate .decline:hover { background: rgba(243,236,226,0.08); }

body.gate-locked { overflow: hidden; }
body.gate-locked main, body.gate-locked nav, body.gate-locked footer { display: none; }

/* ================================================================
   Landing-page sections (redesign-inspired)
   ================================================================ */

.eyebrow-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 500;
  margin-bottom: 1rem;
}

/* ---- feature strip ---- */

.feature-strip {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.4rem;
  padding: 1.1rem 6vw;
  background: rgba(247,241,231,0.04);
  border-top: 1px solid rgba(247,241,231,0.1);
  border-bottom: 1px solid rgba(247,241,231,0.1);
  font-size: 0.82rem;
  color: var(--cream-dim);
}

.feature-strip span.num { color: var(--ember); margin-right: 0.5em; }

/* ---- wide sections ---- */

section.wide {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 7vh 6vw;
}

section.wide h2.display {
  font-family: 'Fraunces', serif;
  font-weight: 450;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.08;
  margin: 0 0 1.4rem 0;
  max-width: 14ch;
}

section.wide p.lead {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--cream-dim);
  max-width: 46ch;
  margin-bottom: 1.6rem;
}

/* ---- shape cards (replace product photography) ---- */

.shape-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}

.shape-card {
  position: relative;
  border-radius: 18px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.6rem;
}

.shape-card svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.shape-card .label {
  position: relative;
  z-index: 1;
  color: var(--cream);
}

.shape-card .label .price { font-size: 0.78rem; color: rgba(247,241,231,0.7); display: block; margin-bottom: 0.3rem; }
.shape-card .label h3 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.2rem; margin: 0 0 0.2rem 0; }
.shape-card .label span.tag { font-size: 0.85rem; color: rgba(247,241,231,0.75); }

@media (max-width: 760px) {
  .shape-cards { grid-template-columns: 1fr; }
}

/* ---- cta panel ---- */

.cta-panel {
  position: relative;
  z-index: 1;
  background: var(--burgundy);
  border-radius: 22px;
  padding: 4rem 6vw;
  margin: 2vh 6vw;
  text-align: center;
}

.cta-panel .eyebrow-label { color: var(--blush-deep); }

.cta-panel h2.display { margin-left: auto; margin-right: auto; }

.cta-panel p.lead { margin-left: auto; margin-right: auto; color: rgba(247,241,231,0.8); }

/* ---- split section (text + color block, no photography) ---- */

.split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 7vh 6vw;
}

.split .block {
  border-radius: 20px;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-deep) 60%, var(--ember) 100%);
  position: relative;
  overflow: hidden;
}

.split .block svg { position: absolute; inset: 0; width: 100%; height: 100%; }

@media (max-width: 760px) {
  .split { grid-template-columns: 1fr; }
  .split .block { order: -1; }
}

/* ---- journal teaser ---- */

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(247,241,231,0.12);
  padding-top: 2.4rem;
}

.journal-grid .tag {
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ember);
  display: block;
  margin-bottom: 0.6rem;
}

.journal-grid h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.15rem;
  margin: 0 0 0.6rem 0;
}

.journal-grid p { font-size: 0.9rem; color: var(--cream-dim); margin: 0; }

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

/* ---- newsletter band ---- */

.newsletter-band {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 9vh 6vw 8vh 6vw;
}

.newsletter-band h2.display {
  margin: 0.6rem auto 1rem auto;
  max-width: 16ch;
}

.newsletter-band p.lead { margin: 0 auto 2.4rem auto; }

.inline-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(247,241,231,0.3);
  padding-bottom: 0.6rem;
}

.inline-form input[type="email"] {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.5rem 0;
  color: var(--cream);
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  outline: none;
}

.inline-form input[type="email"]::placeholder { color: var(--mauve); }

.inline-form button {
  background: transparent;
  color: var(--cream);
  font-weight: 600;
  border-radius: 0;
  padding: 0.5rem 0.2rem;
}

.inline-form button:hover { color: var(--ember); background: transparent; }

.form-note { font-size: 0.82rem; color: var(--mauve); margin-top: 1rem; }

/* ---- big footer ---- */

footer.big-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(247,241,231,0.1);
  padding: 4rem 6vw 2rem 6vw;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.4rem;
  max-width: 1100px;
  margin: 0 auto 2.6rem auto;
}

.footer-grid .brand-block .brand { font-family: 'Fraunces', serif; font-size: 1.2rem; color: var(--cream); text-decoration: none; }
.footer-grid .brand-block p { font-size: 0.88rem; color: var(--cream-dim); margin-top: 0.8rem; max-width: 32ch; }

.footer-grid h4 {
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mauve);
  margin: 0 0 1rem 0;
}

.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 0.6rem; }
.footer-grid a { text-decoration: none; color: var(--cream-dim); font-size: 0.92rem; }
.footer-grid a:hover { color: var(--ember); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(247,241,231,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: var(--mauve);
}

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