@font-face { font-family: "Fraunces"; src: url("/assets/fonts/fraunces.woff2") format("woff2"); font-weight: 300 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Work Sans"; src: url("/assets/fonts/worksans.woff2") format("woff2"); font-weight: 300 700; font-style: normal; font-display: swap; }

:root {
  --oat: #F3E7D3;
  --ivory: #FBF6EC;
  --cocoa: #2B1D14;
  --amber: #C17F2E;
  --walnut: #6B4226;
  --sage: #6E7F5C;
  --line: rgba(43, 29, 20, 0.14);
  --shadow: 0 1px 2px rgba(43,29,20,0.06), 0 10px 28px -14px rgba(43,29,20,0.22);
  --font-display: "Fraunces", ui-serif, Georgia, serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--oat); color: var(--cocoa); }
body { font-family: var(--font-body); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1, h2, h3, .display { font-family: var(--font-display); font-weight: 500; }
img, svg, picture { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
section { padding: 84px 0; }
@media (max-width: 640px) { section { padding: 52px 0; } }

.eyebrow {
  font-size: 12.5px; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--amber); display: flex; align-items: center; gap: 9px; margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); flex-shrink: 0; }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 30;
  border-bottom: 1px solid var(--line);
}
.header-bg {
  position: absolute; inset: 0; z-index: -1;
  background: rgba(243, 231, 211, 0.9); backdrop-filter: blur(8px);
}
.header-inner {
  position: relative;
  max-width: 1080px; margin: 0 auto; padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  transition: padding 0.25s ease;
}
.site-header.shrunk .header-inner { padding-top: 11px; padding-bottom: 11px; }
.logo-mark { font-family: var(--font-display); font-size: 20px; flex-shrink: 0; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a:not(.nav-cta) { font-size: 15px; color: var(--walnut); position: relative; }
.main-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 1.5px; background: var(--amber);
  transition: right 0.25s ease;
}
@media (hover: hover) and (pointer: fine) {
  .main-nav a:not(.nav-cta):hover::after { right: 0; }
}
.nav-cta {
  background: var(--amber); color: var(--ivory); font-weight: 600; font-size: 14px;
  padding: 10px 20px; border-radius: 100px; transition: background 0.2s ease, transform 0.2s ease;
}
.lang-switch { display: flex; gap: 4px; font-size: 13px; }
.lang-switch a { border: 1px solid var(--line); border-radius: 100px; padding: 5px 12px; color: var(--walnut); }
.lang-switch a.active { background: var(--cocoa); color: var(--ivory); border-color: var(--cocoa); }
.nav-toggle { display: none; }
@media (max-width: 760px) {
  .main-nav { position: fixed; inset: 64px 0 0 0; background: var(--oat); flex-direction: column; justify-content: flex-start;
    padding: 32px 24px; gap: 22px; transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform 0.25s ease, opacity 0.25s ease; }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a:not(.nav-cta) { font-size: 20px; }
  .nav-toggle { display: block; font-size: 26px; line-height: 1; background: none; }
}

/* ---------------- Footer ---------------- */
.site-footer { background: var(--cocoa); color: var(--oat); padding: 56px 0 32px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.footer-grid .display { font-size: 22px; margin-bottom: 10px; }
.footer-grid p { color: rgba(243,231,211,0.7); font-size: 14px; line-height: 1.6; }
.footer-col h4 { font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(243,231,211,0.55); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; color: rgba(243,231,211,0.85); margin-bottom: 10px; }
.ig-link { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(243,231,211,0.35); border-radius: 100px; padding: 10px 20px; font-size: 14px; margin-top: 8px; }
.foot-bottom { border-top: 1px solid rgba(243,231,211,0.15); padding-top: 20px; font-size: 12px; color: rgba(243,231,211,0.45); }

/* ---------------- Buttons ---------------- */
.cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--amber); color: var(--ivory); font-weight: 600;
  padding: 15px 30px; border-radius: 100px; font-size: 16px;
  box-shadow: var(--shadow); transition: transform 0.2s ease, background 0.2s ease;
}
.cta:active { transform: scale(0.97); }
.cta-secondary { display: inline-block; margin-inline-start: 16px; font-size: 14px; color: var(--walnut); text-decoration: underline; text-underline-offset: 3px; }
@media (hover: hover) and (pointer: fine) {
  .cta:hover { background: var(--cocoa); transform: translateY(-2px); }
  .nav-cta:hover { background: var(--cocoa); }
}

/* ---------------- Hero ---------------- */
.hero { position: relative; padding-top: 56px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .hero { grid-template-columns: 1fr; padding-top: 32px; } }
.hero h1 { font-size: clamp(36px, 8vw, 54px); line-height: 1.08; text-wrap: balance; margin-bottom: 20px; }
.hero .sub { font-size: 18px; color: var(--walnut); max-width: 46ch; margin-bottom: 32px; line-height: 1.6; }
.hero-art { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); }
.hero-art img { width: 100%; height: 100%; object-fit: cover; }

/* ---------------- Ingredients ---------------- */
.ingredient-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
@media (max-width: 760px) { .ingredient-grid { grid-template-columns: repeat(3, 1fr); } }
.ingredient-card { background: var(--ivory); border-radius: 14px; padding: 16px 10px; text-align: center; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.ingredient-card svg { width: 30px; height: 30px; margin: 0 auto 8px; }
.ingredient-card span { font-size: 12.5px; font-weight: 600; }
@media (hover: hover) and (pointer: fine) {
  .ingredient-card:hover { transform: translateY(-4px) scale(1.03); box-shadow: var(--shadow); }
}

/* ---------------- Story teaser / featured product ---------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split img { border-radius: 20px; box-shadow: var(--shadow); }
.split p { font-size: 17px; line-height: 1.75; margin-bottom: 20px; }
.split h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 18px; }
.link-arrow { font-weight: 600; color: var(--amber); }

.feature-card {
  background: var(--ivory); border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
  display: grid; grid-template-columns: 0.9fr 1.1fr; box-shadow: var(--shadow);
}
@media (max-width: 760px) { .feature-card { grid-template-columns: 1fr; } }
.feature-card img { height: 100%; object-fit: cover; }
.feature-card-body { padding: 32px; }
.feature-card-body h3 { font-size: 26px; margin-bottom: 10px; }
.feature-card-body p { color: var(--walnut); margin-bottom: 20px; line-height: 1.6; }
.price-from { font-family: var(--font-display); font-size: 22px; margin-bottom: 18px; }
.price-from span { font-size: 14px; color: var(--walnut); font-family: var(--font-body); }

/* ---------------- Testimonials ---------------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
@media (max-width: 860px) {
  .testi-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; margin: 40px -24px 0; padding: 4px 24px 10px; }
  .testi-grid::-webkit-scrollbar { display: none; }
  .testi-grid > * { flex: 0 0 78%; scroll-snap-align: center; }
}
.testi-card { background: var(--ivory); border: 1px solid var(--line); border-radius: 16px; padding: 22px 20px; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.testi-card p.quote { font-size: 15px; line-height: 1.6; margin-bottom: 14px; }
.testi-card .who { font-size: 13px; color: var(--walnut); font-weight: 600; }
.testi-card .stars { color: var(--amber); font-size: 13px; margin-bottom: 8px; letter-spacing: 2px; }
@media (hover: hover) and (pointer: fine) {
  .testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
}
.scroll-dots { display: none; justify-content: center; gap: 7px; margin-top: 16px; }
@media (max-width: 860px) { .scroll-dots { display: flex; } }
.scroll-dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--line); transition: background 0.2s ease, transform 0.2s ease; }
.scroll-dots span.active { background: var(--amber); transform: scale(1.3); }

/* ---------------- Motion: scroll reveal ---------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.stagger > * { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.stagger.is-visible > *:nth-child(1) { transition-delay: 0.02s; }
.stagger.is-visible > *:nth-child(2) { transition-delay: 0.09s; }
.stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.stagger.is-visible > *:nth-child(4) { transition-delay: 0.23s; }
.stagger.is-visible > *:nth-child(5) { transition-delay: 0.30s; }
.stagger.is-visible > *:nth-child(6) { transition-delay: 0.37s; }
.stagger.is-visible > * { opacity: 1; transform: translateY(0); }

/* ---------------- Crumb trail (site-wide signature interaction) ---------------- */
[data-crumb-zone] { position: relative; touch-action: pan-y; }
.crumb {
  position: absolute; top: 0; left: 0; pointer-events: none; z-index: 5;
  border-radius: 40% 60% 55% 45%; opacity: 0.85;
  transition: transform 0.7s ease-out, opacity 0.7s ease-out;
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .crumb { display: none; }
}

/* ---------------- Page hero (interior pages) ---------------- */
.page-hero { padding-top: 56px; padding-bottom: 8px; max-width: 640px; }
.page-hero h1 { font-size: clamp(30px, 6vw, 44px); line-height: 1.15; margin-bottom: 16px; text-wrap: balance; }
.page-hero .sub { font-size: 17px; color: var(--walnut); line-height: 1.65; }

/* ---------------- Plans / packages ---------------- */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .plan-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }
.plan-card {
  background: var(--ivory); border: 1px solid var(--line); border-radius: 20px; padding: 32px 26px;
  display: flex; flex-direction: column; position: relative; box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.plan-card.popular { border-color: var(--amber); }
.plan-badge { position: absolute; top: -13px; inset-inline-start: 26px; background: var(--amber); color: var(--ivory); font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 100px; }
.plan-name { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--walnut); margin-bottom: 10px; }
.plan-price { font-family: var(--font-display); font-size: 38px; margin-bottom: 4px; }
.plan-price span { font-size: 14px; font-family: var(--font-body); color: var(--walnut); }
.plan-pieces { font-size: 14px; color: var(--walnut); margin-bottom: 16px; }
.plan-desc { font-size: 15px; line-height: 1.6; margin-bottom: 24px; flex-grow: 1; }
.plan-card .cta { justify-content: center; width: 100%; }
@media (hover: hover) and (pointer: fine) {
  .plan-card:hover { transform: translateY(-4px); box-shadow: 0 1px 2px rgba(43,29,20,0.06), 0 16px 34px -14px rgba(43,29,20,0.28); }
}

/* ---------------- Steps ---------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; gap: 30px; } }
.step-num { font-family: var(--font-display); font-size: 32px; color: var(--amber); margin-bottom: 10px; }
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--walnut); line-height: 1.6; }

/* ---------------- FAQ ---------------- */
.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq-item summary { cursor: pointer; font-weight: 600; font-size: 16px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; color: var(--amber); flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-size: 15px; color: var(--walnut); line-height: 1.6; margin-top: 12px; }

/* ---------------- CTA banner ---------------- */
.cta-banner { background: var(--cocoa); color: var(--oat); border-radius: 24px; padding: 56px 40px; text-align: center; }
.cta-banner h2 { font-size: clamp(24px, 4vw, 32px); margin-bottom: 12px; color: var(--oat); }
.cta-banner p { color: rgba(243,231,211,0.75); margin-bottom: 28px; font-size: 16px; }
@media (hover: hover) and (pointer: fine) {
  .cta-banner .cta:hover { background: var(--oat); color: var(--cocoa); }
}

/* ---------------- Journal ---------------- */
.journal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 700px) { .journal-grid { grid-template-columns: 1fr; } }
.journal-card { background: var(--ivory); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.journal-card img { aspect-ratio: 16/10; object-fit: cover; }
.journal-card-body { padding: 22px 24px; }
.journal-meta { font-size: 12.5px; color: var(--walnut); opacity: 0.75; margin-bottom: 8px; }
.journal-card h3 { font-size: 20px; margin-bottom: 10px; }
.journal-card p { font-size: 14.5px; color: var(--walnut); line-height: 1.6; margin-bottom: 14px; }
.journal-card .link-arrow { font-size: 14px; }
@media (hover: hover) and (pointer: fine) {
  .journal-card:hover { transform: translateY(-4px); box-shadow: 0 1px 2px rgba(43,29,20,0.06), 0 16px 34px -14px rgba(43,29,20,0.28); }
}

/* ---------------- Article (single post) ---------------- */
.article-hero { padding-top: 56px; max-width: 700px; }
.article-hero h1 { font-size: clamp(28px, 5vw, 40px); line-height: 1.18; margin-bottom: 12px; text-wrap: balance; }
.article-meta { font-size: 13px; color: var(--walnut); opacity: 0.75; }
.article-cover { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); margin: 36px 0; }
.article-body { max-width: 680px; }
.article-body p { font-size: 17px; line-height: 1.8; margin-bottom: 22px; color: var(--cocoa); }
.back-link { font-size: 14px; color: var(--walnut); font-weight: 600; }
