:root {
  --ink: #1d1814;
  --deep-green: #24372d;
  --leaf: #667867;
  --cacao: #5a3022;
  --clay: #9c5849;
  --rose: #b67578;
  --ochre: #c79b5b;
  --ivory: #f4eadc;
  --paper: #fff8ee;
  --mist: #dde1d2;
  --line: rgba(54, 40, 30, 0.17);
  --shadow: 0 30px 90px rgba(35, 23, 16, 0.18);
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--body);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 248, 238, 0.86), rgba(244, 234, 220, 0.96)),
    repeating-linear-gradient(90deg, rgba(90, 48, 34, 0.025) 0 1px, transparent 1px 120px),
    var(--ivory);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 248, 238, 0.18);
  background: rgba(29, 24, 20, 0.58);
  color: var(--paper);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  text-decoration: none;
}

.brand-symbol {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 248, 238, 0.52);
  border-radius: 50%;
  background: rgba(255, 248, 238, 0.1);
  color: #efc78f;
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1;
}

.brand-text {
  display: grid;
  gap: 0.05rem;
  line-height: 1.05;
}

.brand-name {
  max-width: 310px;
  overflow: hidden;
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-location {
  color: rgba(255, 250, 241, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.15rem;
}

.nav-links a {
  position: relative;
  color: rgba(255, 250, 241, 0.78);
  font-size: 0.89rem;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--paper);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.language-switch {
  display: inline-flex;
  gap: 0.25rem;
  min-height: 40px;
  padding: 0.25rem;
  border: 1px solid rgba(255, 250, 241, 0.22);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.08);
}

.language-switch button {
  min-width: 42px;
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 250, 241, 0.68);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
}

.language-switch button[aria-pressed="true"] {
  background: var(--paper);
  color: var(--deep-green);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 250, 241, 0.25);
  border-radius: 50%;
  background: rgba(255, 250, 241, 0.08);
  color: var(--paper);
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  content: "";
}

.menu-button {
  flex-direction: column;
  gap: 4px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.78rem 1.1rem;
  cursor: pointer;
  font-weight: 750;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(199, 155, 91, 0.72);
  outline-offset: 3px;
}

.button.primary {
  background: var(--clay);
  color: white;
  box-shadow: 0 18px 34px rgba(90, 48, 34, 0.22);
}

.button.primary:hover {
  background: #85493e;
}

.button.secondary {
  border-color: rgba(255, 250, 241, 0.42);
  background: rgba(255, 250, 241, 0.1);
  color: var(--paper);
}

.button.dark {
  background: var(--deep-green);
  color: var(--paper);
}

.button.light {
  border-color: var(--line);
  background: var(--paper);
  color: var(--deep-green);
}

.button.compact {
  min-height: 42px;
  padding: 0.66rem 0.95rem;
  font-size: 0.85rem;
}

[data-lang-block][hidden] {
  display: none !important;
}

.hero {
  position: relative;
  display: grid;
  min-height: max(720px, calc(96svh - 76px));
  overflow: clip;
  color: var(--paper);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("/assets/cacao-ceremony-still-life.png");
  background-position: center;
  background-size: cover;
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(24, 24, 19, 0.9) 0%, rgba(29, 31, 24, 0.74) 34%, rgba(47, 39, 29, 0.36) 68%, rgba(47, 39, 29, 0.16) 100%),
    linear-gradient(0deg, rgba(25, 22, 18, 0.74), rgba(25, 22, 18, 0.06) 48%, rgba(25, 22, 18, 0.28));
  content: "";
}

.hero-shell {
  display: grid;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: max(720px, calc(96svh - 76px));
  margin: 0 auto;
  padding: clamp(4.6rem, 10vw, 8rem) 0 clamp(3.2rem, 7vw, 5rem);
}

.hero-content {
  width: min(690px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(239, 199, 143, 0.88);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 46px;
  height: 1px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3,
.display {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-top: 1rem;
  font-size: clamp(3.35rem, 8.3vw, 7.7rem);
  line-height: 0.88;
  text-shadow: 0 20px 70px rgba(0, 0, 0, 0.36);
}

.hero h1 span {
  display: block;
}

.hero-lede {
  width: min(610px, 100%);
  margin: 1.4rem 0 0;
  color: rgba(255, 248, 238, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.proof-pill {
  border: 1px solid rgba(239, 199, 143, 0.25);
  border-radius: 999px;
  background: rgba(29, 24, 20, 0.24);
  color: rgba(255, 248, 238, 0.82);
  padding: 0.62rem 0.85rem;
  font-size: 0.86rem;
}

.scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 2.4rem;
  color: rgba(255, 250, 241, 0.72);
  font-size: 0.84rem;
  text-decoration: none;
}

.scroll-hint::before {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 250, 241, 0.28);
  border-radius: 50%;
  content: "↓";
}

section {
  position: relative;
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(4.8rem, 9vw, 8rem) 0;
}

.section-kicker {
  margin: 0 0 0.8rem;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title {
  max-width: 800px;
  color: var(--deep-green);
  font-size: clamp(2.25rem, 4.8vw, 5rem);
  line-height: 0.98;
}

.section-copy {
  max-width: 690px;
  margin: 1.2rem 0 0;
  color: rgba(23, 34, 29, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.72;
}

.mirror {
  background:
    linear-gradient(90deg, rgba(255, 248, 238, 0.98) 0 64%, rgba(232, 219, 200, 0.78) 64% 100%);
}

.mirror-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
}

.signal-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.7rem;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
  color: rgba(23, 34, 29, 0.78);
  line-height: 1.55;
}

.signal-list li::before {
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border: 1px solid var(--clay);
  border-radius: 50%;
  background: rgba(168, 93, 85, 0.12);
  content: "";
}

.quote-band {
  background:
    linear-gradient(rgba(36, 55, 45, 0.88), rgba(36, 55, 45, 0.88)),
    url("/assets/cacao-ceremony-still-life.png") center / cover;
  color: var(--paper);
}

.quote-band .section-shell {
  padding-block: clamp(3rem, 7vw, 5.5rem);
}

.quote-line {
  max-width: 980px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.35rem, 6.1vw, 6.4rem);
  line-height: 0.98;
}

.quote-line em {
  color: #efc78f;
  font-style: italic;
}

.work {
  background: #ece4d6;
}

.work-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.method-stack {
  display: grid;
  gap: 1rem;
}

.method {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1rem;
  align-items: start;
  border-bottom: 1px solid rgba(54, 40, 30, 0.15);
  padding: 0 0 1.2rem;
}

.method-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--deep-green);
  color: #efc78f;
  font-family: var(--display);
  font-size: 1.8rem;
}

.method h3,
.offer-card h3,
.step h3 {
  color: var(--deep-green);
  font-size: 1.5rem;
  line-height: 1.05;
}

.method p,
.offer-card p,
.step p {
  margin: 0.45rem 0 0;
  color: rgba(23, 34, 29, 0.72);
  line-height: 1.62;
}

.offers {
  background:
    linear-gradient(180deg, rgba(244, 234, 220, 0.98), rgba(255, 248, 238, 0.96));
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.offer-card {
  min-height: 100%;
  border: 1px solid rgba(54, 40, 30, 0.14);
  border-radius: 8px;
  background: rgba(255, 248, 238, 0.78);
  padding: clamp(1.25rem, 2vw, 1.7rem);
  box-shadow: 0 18px 55px rgba(35, 23, 16, 0.07);
}

.offer-card.featured {
  background:
    linear-gradient(145deg, rgba(36, 55, 45, 0.96), rgba(90, 48, 34, 0.92));
  color: var(--paper);
}

.offer-card.featured h3,
.offer-card.featured p {
  color: var(--paper);
}

.offer-card.featured .price,
.offer-card.featured .tag {
  color: #efc78f;
}

.tag {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price {
  margin-top: 1rem;
  color: var(--cacao);
  font-weight: 850;
}

.offer-card .button {
  margin-top: 1.2rem;
}

.process {
  background: #fbf4e9;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.step {
  position: relative;
  border-top: 1px solid rgba(36, 55, 45, 0.55);
  padding-top: 1.1rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--clay);
  color: white;
  font-weight: 850;
}

.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: stretch;
}

.portrait-panel {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(rgba(36, 55, 45, 0.08), rgba(36, 55, 45, 0.16)),
    url("/assets/cacao-ceremony-still-life.png") center / cover;
  box-shadow: var(--shadow);
}

.portrait-panel::after {
  position: absolute;
  inset: auto 1rem 1rem;
  border: 1px solid rgba(255, 250, 241, 0.38);
  border-radius: 8px;
  background: rgba(29, 24, 20, 0.7);
  color: var(--paper);
  padding: 1rem;
  content: "Cacao, embodiment, ritual, and grounded self-trust.";
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1.1;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}

.proof-stat {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(244, 234, 220, 0.52);
  padding: 1rem;
}

.proof-stat strong {
  display: block;
  color: var(--deep-green);
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 500;
}

.proof-stat span {
  color: rgba(23, 34, 29, 0.66);
  font-size: 0.9rem;
  line-height: 1.45;
}

.guide {
  position: relative;
  overflow: hidden;
  background: var(--deep-green);
  color: var(--paper);
  isolation: isolate;
}

.guide::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(36, 55, 45, 0.98) 0%, rgba(36, 55, 45, 0.91) 56%, rgba(36, 55, 45, 0.6) 100%),
    url("/assets/cacao-ceremony-still-life.png") right center / cover;
  content: "";
}

.guide-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.62fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.guide .section-kicker,
.guide .section-title,
.guide .section-copy {
  color: var(--paper);
}

.guide .section-copy {
  color: rgba(255, 250, 241, 0.78);
}

.guide-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.guide-list li {
  display: flex;
  gap: 0.7rem;
  color: rgba(255, 250, 241, 0.82);
  line-height: 1.5;
}

.guide-list li::before {
  flex: 0 0 auto;
  color: #efc78f;
  content: "✦";
}

.form-card {
  border: 1px solid rgba(255, 248, 238, 0.22);
  border-radius: 8px;
  background: rgba(29, 24, 20, 0.28);
  padding: clamp(1.1rem, 2.5vw, 1.6rem);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
}

.form-grid {
  display: grid;
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  color: rgba(255, 250, 241, 0.78);
  font-size: 0.82rem;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 250, 241, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.94);
  color: var(--ink);
  padding: 0.8rem 0.9rem;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.7rem;
  align-items: start;
  color: rgba(255, 250, 241, 0.76);
  font-size: 0.86rem;
  line-height: 1.5;
}

.checkbox input {
  width: 20px;
  height: 20px;
  margin-top: 0.1rem;
  accent-color: var(--clay);
}

.form-note {
  min-height: 24px;
  margin: 0.8rem 0 0;
  color: #efc78f;
  font-size: 0.92rem;
  line-height: 1.45;
}

.scope {
  background: #ece4d6;
}

.scope-box {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
  border: 1px solid rgba(54, 40, 30, 0.14);
  border-radius: 8px;
  background: rgba(255, 248, 238, 0.66);
  padding: clamp(1.3rem, 3vw, 2.2rem);
}

.scope-box p {
  margin: 0;
  color: rgba(23, 34, 29, 0.72);
  line-height: 1.7;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 250, 241, 0.74);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: end;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 2.2rem 0;
}

.footer-title {
  display: block;
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.7rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(255, 250, 241, 0.76);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--paper);
}

.privacy-page {
  min-height: 100svh;
  background: var(--ivory);
}

.privacy-shell {
  width: min(840px, calc(100% - 32px));
  margin: 0 auto;
  padding: 5rem 0;
}

.privacy-shell h1 {
  color: var(--deep-green);
  font-size: clamp(2.8rem, 7vw, 5rem);
}

.privacy-shell h2 {
  margin-top: 2rem;
  color: var(--deep-green);
  font-size: 1.8rem;
}

.privacy-shell p,
.privacy-shell li {
  color: rgba(23, 34, 29, 0.74);
  line-height: 1.7;
}

@media (max-width: 920px) {
  .menu-button {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 70px 0 auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    border-bottom: 1px solid rgba(255, 250, 241, 0.18);
    background: rgba(23, 34, 29, 0.97);
    padding: 0.8rem 1rem 1.2rem;
  }

  body.menu-open .nav-links {
    display: grid;
  }

  .nav-links a {
    min-height: 48px;
    border-bottom: 1px solid rgba(255, 250, 241, 0.11);
    padding: 0.95rem 0;
    font-size: 1.03rem;
  }

  .nav-actions .button {
    display: none;
  }

  .mirror-grid,
  .work-grid,
  .about-grid,
  .guide-grid,
  .scope-box {
    grid-template-columns: 1fr;
  }

  .offer-grid,
  .steps,
  .proof-row {
    grid-template-columns: 1fr;
  }

  .portrait-panel {
    min-height: 420px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .nav-shell,
  .section-shell,
  .hero-shell,
  .footer-shell {
    width: min(100% - 24px, 1180px);
  }

  .brand-name {
    max-width: 220px;
    overflow: visible;
    font-size: 0.94rem;
    line-height: 0.95;
    text-overflow: clip;
    white-space: normal;
  }

  .brand-location {
    display: none;
  }

  .language-switch {
    display: none;
  }

  .hero {
    min-height: max(640px, calc(88svh - 70px));
  }

  .hero-shell {
    min-height: max(640px, calc(88svh - 70px));
  }

  h1 {
    font-size: clamp(2.75rem, 12vw, 3.5rem);
    line-height: 0.94;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    min-height: 52px;
  }

  .proof-pill {
    width: 100%;
  }

  .method {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
