/* Built from inline styles of the original 4 pages + upgrade additions. Single cached stylesheet for all pages. */


/* ===========================================================
   SHEEPA — Shared design system
   =========================================================== */
:root {
  /* Palette */
  --bg: #FBF8F2;
  --bg-soft: #F4EFE6;
  --bg-deep: #EAE2D3;
  --line: #E3DDCD;
  --ink: #1C1A15;
  --ink-soft: #3A362C;
  --mid: #6B6558;
  --muted: #938B7C;
  --accent: #8B6B3D;
  --accent-deep: #6B4F26;
  --accent-soft: #D9B47B;

  /* Typography */
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, "Georgia", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Motion & shape */
  --ease: cubic-bezier(.2, .8, .2, 1);
  --r-md: 12px;
  --r-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(28, 26, 21, 0.04), 0 2px 8px rgba(28, 26, 21, 0.04);
  --shadow-md: 0 4px 16px rgba(28, 26, 21, 0.06), 0 12px 40px rgba(28, 26, 21, 0.06);
  --shadow-lg: 0 20px 60px -20px rgba(28, 26, 21, 0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* Unified flowing backdrop */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, var(--bg-soft) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 30%, rgba(234, 226, 211, 0.5) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 10% 70%, rgba(244, 239, 230, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse 90% 60% at 90% 100%, var(--bg-soft) 0%, transparent 60%),
    var(--bg);
  pointer-events: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 720px) { .container { padding: 0 40px; } }

/* Section rhythm */
section { padding: 88px 0; position: relative; }
@media (min-width: 900px) { section { padding: 112px 0; } }

/* Eyebrow + section titles */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 600;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section-title em { font-style: italic; color: var(--accent); }
.section-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-top: 20px;
}

/* ============== NAV ============== */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 24px;
  background: rgba(251, 248, 242, 0.78);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease, padding 0.3s ease, background 0.3s ease;
}
nav.site-nav.scrolled {
  border-color: var(--line);
  padding: 12px 24px;
}
nav.site-nav .wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
}
.nav-logo img {
  height: 32px;
  width: auto;
  transition: height 0.3s ease, opacity 0.2s;
}
.nav-logo:hover img { opacity: 0.75; }
nav.site-nav.scrolled .nav-logo img { height: 28px; }

.nav-links {
  display: none;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after,
.nav-links a:hover::after { width: 100%; }

@media (min-width: 860px) {
  nav.site-nav { padding: 20px 40px; }
  nav.site-nav.scrolled { padding: 12px 40px; }
  .nav-links { display: flex; }
}

/* Mobile nav toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s ease;
}
@media (min-width: 860px) { .nav-toggle { display: none; } }
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  padding: 90px 32px 40px;
}
.nav-mobile.open { display: block; }
.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-mobile a {
  display: block;
  padding: 18px 0;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.nav-mobile a.active { color: var(--accent); }

/* ============== FOOTER ============== */
footer.site-footer {
  background: #0F0E0B;
  color: rgba(251, 248, 242, 0.55);
  padding: 56px 0 32px;
  font-size: 13px;
  position: relative;
  z-index: 1;
}
footer.site-footer .wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (min-width: 720px) {
  footer.site-footer .wrap { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
}
footer.site-footer .brand img {
  height: 36px;
  width: auto;
  margin-bottom: 18px;
}
footer.site-footer .brand p {
  max-width: 340px;
  line-height: 1.6;
}
footer.site-footer h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg);
  margin-bottom: 18px;
  font-weight: 600;
}
footer.site-footer ul { list-style: none; }
footer.site-footer li { margin-bottom: 10px; }
footer.site-footer a {
  color: rgba(251, 248, 242, 0.55);
  transition: color 0.2s;
}
footer.site-footer a:hover { color: var(--accent-soft); }
footer.site-footer .legal {
  padding-top: 28px;
  border-top: 1px solid rgba(251, 248, 242, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(251, 248, 242, 0.38);
}

/* ============== Reveal-on-scroll ============== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

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



/* ============== HOME — STORYTELLING ============== */

/* Hero — full-bleed mountain photo */
.story-hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 130px; /* room for CTA row + scroll hint */
  margin-top: 0;
}
.story-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../images/shepherd.jpg');
  background-size: cover;
  background-position: center 55%;
}
.story-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 26, 21, 0.65) 0%, rgba(28, 26, 21, 0.35) 45%, rgba(28, 26, 21, 0.05) 100%),
    linear-gradient(180deg, rgba(28, 26, 21, 0) 0%, rgba(28, 26, 21, 0) 60%, rgba(28, 26, 21, 0.5) 100%);
}
.story-hero-content {
  position: relative;
  z-index: 2;
  color: var(--bg);
  max-width: 880px;
}
.story-hero .eyebrow {
  color: var(--accent-soft);
  margin-bottom: 24px;
}
.story-hero .eyebrow::before { background: var(--accent-soft); }
.story-hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--bg);
  margin-bottom: 32px;
}
.story-hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-soft);
}
.story-hero-lede {
  font-size: 19px;
  line-height: 1.5;
  color: rgba(251, 248, 242, 0.85);
  max-width: 580px;
  font-weight: 300;
}
.story-hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(251, 248, 242, 0.65);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: scrollHint 2s ease-in-out infinite;
}
.story-hero-scroll::after {
  content: "";
  width: 1px;
  height: 28px;
  background: rgba(251, 248, 242, 0.5);
}
@keyframes scrollHint {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50%      { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* Chapter sections — alternating layout */
.chapter {
  padding: 96px 0;
}
@media (min-width: 900px) { .chapter { padding: 128px 0; } }

.chapter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 900px) {
  .chapter-grid { grid-template-columns: 1fr 1fr; gap: 96px; }
  .chapter--reverse .chapter-grid > *:first-child { order: 2; }
}

.chapter-meta {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 16px;
}
.chapter h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}
.chapter h2 em { font-style: italic; color: var(--accent); }
.chapter p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 540px;
}
.chapter p:last-child { margin-bottom: 0; }
.chapter--reverse p { max-width: 540px; }

.chapter-img {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.chapter-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chapter-img.aspect-square { aspect-ratio: 1/1; }
.chapter-img.aspect-wide { aspect-ratio: 4/3; }

/* For chapters without a real image — illustrated card */
.chapter-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  background: linear-gradient(145deg, var(--bg-soft) 0%, var(--bg-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.chapter-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.5) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(139, 107, 61, 0.10) 0%, transparent 55%);
}
.chapter-card img {
  width: 50%;
  max-width: 220px;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 16px 32px rgba(28, 26, 21, 0.12));
}
.chapter-card-label {
  position: absolute;
  bottom: 24px;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--mid);
  z-index: 2;
}

/* Quiet quote chapter — full-bleed pull quote */
.pull-quote {
  background: var(--ink);
  color: var(--bg);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pull-quote::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(139, 107, 61, 0.18), transparent 70%);
  pointer-events: none;
}
.pull-quote blockquote {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px;
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--bg);
}
.pull-quote blockquote::before,
.pull-quote blockquote::after {
  color: var(--accent-soft);
  font-style: normal;
}
.pull-quote blockquote::before { content: "\201C "; }
.pull-quote blockquote::after { content: " \201D"; }
.pull-quote .attr {
  margin-top: 32px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(251, 248, 242, 0.5);
  font-weight: 500;
  position: relative;
  z-index: 2;
}

/* Closing CTA */
.story-end {
  padding: 120px 0;
  text-align: center;
}
.story-end h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 24px;
}
.story-end h2 em { font-style: italic; color: var(--accent); }
.story-end p {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 40px;
}
.story-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.story-link {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding: 4px 0;
  transition: all 0.3s var(--ease);
  letter-spacing: -0.005em;
}
.story-link:hover {
  color: var(--accent-deep);
  border-bottom-color: var(--accent-deep);
  padding-bottom: 8px;
}
.story-link::after {
  content: " →";
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.story-link:hover::after { transform: translateX(4px); }







/* ============== PRODUCT PAGE ============== */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 24px;
}
.page-hero h1 em { font-style: italic; color: var(--accent); }
.page-hero p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* Product showcase: photo + info side-by-side */
.product-showcase {
  padding: 60px 0 96px;
}
.product-showcase .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 900px) {
  .product-showcase .grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.product-photo-wrap {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  background: var(--bg-soft);
}
.product-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transition: transform 1.4s var(--ease);
}
.product-photo-wrap:hover img { transform: scale(1.04); }
.product-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(251, 248, 242, 0) 70%, rgba(251, 248, 242, 0.18) 100%);
  pointer-events: none;
}
.product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(251, 248, 242, 0.92);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  z-index: 3;
  backdrop-filter: blur(4px);
}

.product-info h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 18px;
}
.product-info h2 em { font-style: italic; color: var(--accent); }
.product-info > p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 520px;
}
.spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.spec-tag {
  background: rgba(255, 255, 255, 0.6);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--line);
}
.product-specs {
  border-top: 1px solid var(--line);
}
.product-spec {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.product-spec .label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.product-spec .value {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
}

/* Retailers */
.retailers-section {
  padding: 80px 0 60px;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.retailers-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 24px;
  display: block;
}
.retailers-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
@media (min-width: 720px) { .retailers-logos { gap: 56px; } }
.retailer-logo {
  display: flex;
  align-items: center;
  height: 48px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
  text-decoration: none;
}
.retailer-logo:hover { opacity: 1; }
.retailer-logo--dm img { height: 44px; width: auto; }
.retailer-logo--tf img { height: 26px; width: auto; }
.retailer-divider {
  width: 1px;
  height: 32px;
  background: var(--line);
}
@media (max-width: 540px) {
  .retailer-divider { display: none; }
  .retailers-logos { gap: 24px; }
}

/* Reviews */
.reviews-section { padding: 96px 0; }
.reviews-head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.reviews-head .eyebrow { justify-content: center; }
.reviews-head .eyebrow::before { display: inline-block; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 40px;
}
@media (min-width: 720px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.review-card {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.4s var(--ease), background 0.4s, box-shadow 0.4s;
}
.review-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
}
.review-stars { width: 100px; height: 20px; }
.review-stars svg { width: 100%; height: 100%; }
.review-quote {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  font-style: italic;
  flex: 1;
  margin: 0;
}
.review-attr {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.review-name {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 4px;
}
.review-meta {
  font-size: 12px;
  color: var(--muted);
}
.reviews-note {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.reviews-note p {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* Facebook embed */
.fb-section {
  padding: 96px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.fb-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.fb-head .eyebrow { justify-content: center; }
.fb-head .eyebrow::before { display: inline-block; }
.fb-embed-wrap {
  display: flex;
  justify-content: center;
  padding: 0 16px;
}
.fb-embed-wrap iframe {
  max-width: 100%;
  border-radius: var(--r-md);
  background: white;
  box-shadow: var(--shadow-md);
}

/* Page CTA */
.page-cta {
  padding: 96px 0;
  text-align: center;
}
.page-cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.page-cta h2 em { font-style: italic; color: var(--accent); }
.page-cta p {
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto 32px;
  font-size: 17px;
}
.page-cta-link {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
  transition: all 0.3s var(--ease);
}
.page-cta-link:hover { color: var(--accent-deep); }
.page-cta-link::after {
  content: " →";
  transition: transform 0.3s var(--ease);
  display: inline-block;
}
.page-cta-link:hover::after { transform: translateX(4px); }







/* Wellness page styling — much like product page hero */
.wellness-intro {
  padding: 60px 0 96px;
}
.wellness-intro .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .wellness-intro .grid { grid-template-columns: 1.1fr 0.9fr; gap: 80px; }
}
.wellness-intro h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.wellness-intro h2 em { font-style: italic; color: var(--accent); }
.wellness-intro p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

/* Property cards (3 columns: heat / moisture / materials) */
.props {
  padding: 96px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.props-head {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
}
.props-head .eyebrow { justify-content: center; }
.props-head .eyebrow::before { display: inline-block; }

.props-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 720px) { .props-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.prop-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.4s var(--ease), background 0.4s, box-shadow 0.4s;
}
.prop-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}
.prop-card-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 14px;
}
.prop-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.prop-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* Comparison table */
.compare-section { padding: 96px 0; }
.compare-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.compare-head .eyebrow { justify-content: center; }
.compare-head .eyebrow::before { display: inline-block; }
.compare-table-wrap {
  max-width: 960px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.compare-table thead th {
  background: var(--ink);
  color: var(--bg);
  padding: 22px 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}
.compare-table thead th:first-child { text-align: left; }
.compare-table thead th.sheepa-col {
  background: var(--accent-deep);
  position: relative;
}
.compare-table thead th.sheepa-col::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent-soft);
}
.compare-table tbody td {
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-soft);
  text-align: center;
}
.compare-table tbody td.feature-col {
  text-align: left;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
}
.compare-table tbody td.sheepa-col {
  background: rgba(217, 180, 123, 0.12);
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
}
.mark.yes { color: var(--accent-deep); font-weight: 500; }
.mark.no { color: var(--muted); }
.mark.partial { color: var(--ink-soft); }

/* Health frame */
.health-frame-section { padding: 96px 0; }
.health-frame {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--r-lg);
  padding: 56px 40px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.health-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(139, 107, 61, 0.18), transparent 60%);
}
@media (min-width: 720px) { .health-frame { padding: 72px 64px; } }
.health-frame-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.health-frame .eyebrow { color: rgba(217, 180, 123, 0.8); justify-content: center; }
.health-frame .eyebrow::before { background: var(--accent-soft); display: inline-block; }
.health-frame h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--bg);
  margin-bottom: 24px;
}
.health-frame p {
  color: rgba(251, 248, 242, 0.78);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 16px;
}

/* FAQ */
.faq-section { padding: 96px 0; }
.faq-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.faq-head .eyebrow { justify-content: center; }
.faq-head .eyebrow::before { display: inline-block; }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.faq-item {
  background: rgba(255, 255, 255, 0.92);
  transition: background 0.25s;
}
.faq-item[open] { background: white; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--line);
  position: relative;
  transition: all 0.3s var(--ease);
}
.faq-item summary .icon::before,
.faq-item summary .icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--ink);
  transition: opacity 0.2s;
}
.faq-item summary .icon::before {
  width: 10px; height: 1px;
  margin-left: -5px; margin-top: 0;
}
.faq-item summary .icon::after {
  width: 1px; height: 10px;
  margin-left: 0; margin-top: -5px;
}
.faq-item[open] summary .icon { background: var(--ink); border-color: var(--ink); transform: rotate(180deg); }
.faq-item[open] summary .icon::before { background: var(--bg); }
.faq-item[open] summary .icon::after { opacity: 0; }
.faq-item .answer {
  padding: 0 28px 24px;
  color: var(--mid);
  font-size: 15px;
  line-height: 1.65;
}

/* Disclaimer */
.disclaimer {
  max-width: 820px;
  margin: 80px auto 0;
  padding: 24px 28px;
  border-left: 2px solid var(--accent);
  background: rgba(251, 248, 242, 0.5);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.disclaimer p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.65;
  font-style: italic;
}
.disclaimer strong { font-style: normal; color: var(--ink); font-weight: 600; }







.about-intro {
  padding: 60px 0 96px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.about-intro p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.about-intro p em {
  font-style: italic;
  color: var(--accent);
  font-family: var(--serif);
}

/* About chapters */
.about-chapter {
  padding: 96px 0;
  border-top: 1px solid var(--line);
}
.about-chapter .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 900px) {
  .about-chapter .grid { grid-template-columns: 0.4fr 0.6fr; gap: 80px; }
}
.about-chapter .meta {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 8px;
}
.about-chapter h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}
.about-chapter h2 em { font-style: italic; color: var(--accent); }
.about-chapter p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 620px;
}
.about-chapter p:last-child { margin-bottom: 0; }

/* Values list */
.values-list {
  list-style: none;
  display: grid;
  gap: 28px;
}
.values-list li {
  padding-left: 56px;
  position: relative;
}
.values-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 36px; height: 1px;
  background: var(--accent);
}
.values-list h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  margin-bottom: 6px;
}
.values-list p {
  color: var(--mid);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Contact card */
.contact-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 48px 32px;
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  backdrop-filter: blur(6px);
}
.contact-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 12px;
}
.contact-card p {
  color: var(--mid);
  margin-bottom: 24px;
}
.contact-card a {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
  transition: all 0.3s var(--ease);
}
.contact-card a:hover {
  color: var(--accent-deep);
  border-bottom-color: var(--accent-deep);
}




/* Softer transitions between sections — less visual chopping */
section + section { padding-top: 64px; }
@media (min-width: 900px) { section + section { padding-top: 96px; } }

/* Replace heavy backgrounds with subtle tint changes */
.props { background: transparent !important; border-top: none !important; border-bottom: none !important; }
.props .container { 
  border-top: 1px solid var(--line); 
  padding-top: 80px; 
  padding-bottom: 80px;
}
.fb-section { background: transparent !important; border-top: none !important; }
.fb-section .container { 
  border-top: 1px solid var(--line); 
  padding-top: 80px; 
  padding-bottom: 80px;
}
.retailers-section { 
  background: transparent !important; 
  border-top: none !important; 
  border-bottom: none !important;
}
.retailers-section .container {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 56px;
  padding-bottom: 56px;
}
.about-chapter { border-top: none !important; }
.about-chapter:not(:first-of-type) {
  position: relative;
}
.about-chapter:not(:first-of-type)::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--line);
}



/* ===========================================================
   UPGRADE ADDITIONS — buttons, commerce, video, a11y, i18n
   =========================================================== */

/* Keep aspect ratio when width/height attributes are set */
img { height: auto; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--bg);
  padding: 10px 18px;
  border-radius: 0 0 var(--r-md) 0;
  font-size: 13px;
}
.skip-link:focus { left: 0; }

/* Visible focus for keyboard users */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============== Buttons ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s var(--ease), color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
  border: 1px solid transparent;
  cursor: pointer;
  min-height: 48px; /* comfortable tap target */
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  color: var(--accent-deep);
  border-color: var(--accent);
}
.btn--ghost:hover {
  background: rgba(139, 107, 61, 0.08);
  color: var(--ink);
}
.btn--light {
  background: rgba(251, 248, 242, 0.95);
  color: var(--ink);
}
.btn--light:hover { background: #fff; transform: translateY(-1px); }
.btn[aria-disabled="true"] { opacity: 0.5; pointer-events: none; }
.btn .ext {
  font-size: 11px;
  opacity: 0.75;
}

/* Hero CTA row */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.hero-note {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(251, 248, 242, 0.7);
}

/* ============== Language switch ============== */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.lang-switch a,
.lang-switch span[aria-current] {
  padding: 4px 6px;
  border-radius: 6px;
  color: var(--ink-soft);
}
.lang-switch a:hover { color: var(--ink); background: var(--bg-deep); }
.lang-switch span[aria-current] {
  color: var(--accent-deep);
  font-weight: 700;
}
.nav-mobile .lang-switch { margin-top: 24px; font-size: 15px; }

/* ============== Hero video ============== */
.story-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.story-hero-video.playing { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .story-hero-video { display: none; }
}

/* Section divider video (wool texture) */
.texture-band {
  position: relative;
  height: 38vh;
  min-height: 240px;
  overflow: hidden;
  padding: 0;
}
.texture-band video,
.texture-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.texture-band .texture-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background: linear-gradient(180deg, rgba(28,26,21,0.18), rgba(28,26,21,0.18));
}
.texture-band .texture-caption span {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2.6vw, 26px);
  color: #FBF8F2;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 18px rgba(28,26,21,0.45);
  padding: 0 24px;
  text-align: center;
}
@media (prefers-reduced-motion: reduce) {
  .texture-band video { display: none; }
}

/* ============== Buy panel (Shopify-ready) ============== */
.buy-panel {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.72);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  margin-top: 32px;
}
.buy-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.product-price {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.product-price .currency { font-size: 18px; color: var(--ink-soft); }
.price-note { font-size: 12px; color: var(--muted); }
.availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 10px 0 20px;
}
.availability::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4C7A45;
}

.variant-group { margin-bottom: 18px; }
.variant-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.variant-btn {
  padding: 10px 18px;
  min-height: 44px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all 0.2s var(--ease);
}
.variant-btn:hover { border-color: var(--accent); color: var(--ink); }
.variant-btn[aria-pressed="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}
.buy-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}
.buy-actions .btn { width: 100%; }
.buy-secondary-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}
.buy-secondary-note a { color: var(--accent-deep); border-bottom: 1px solid var(--accent-soft); }

/* Size guide + info accordions */
.mini-details {
  border-top: 1px solid var(--line);
  margin-top: 24px;
}
.mini-details details { border-bottom: 1px solid var(--line); }
.mini-details summary {
  padding: 14px 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink-soft);
}
.mini-details summary::-webkit-details-marker { display: none; }
.mini-details summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 18px;
  color: var(--accent);
  transition: transform 0.3s var(--ease);
}
.mini-details details[open] summary::after { transform: rotate(45deg); }
.mini-details .detail-body {
  padding: 0 0 18px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 8px;
}
.size-table th, .size-table td {
  padding: 8px 10px;
  border: 1px solid var(--line);
  text-align: left;
}
.size-table th {
  background: var(--bg-soft);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============== Sticky mobile purchase CTA ============== */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: rgba(251, 248, 242, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .sticky-info { line-height: 1.25; }
.sticky-cta .sticky-name {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink);
}
.sticky-cta .sticky-price {
  font-size: 12px;
  color: var(--accent-deep);
  font-weight: 600;
}
.sticky-cta .btn { padding: 10px 20px; min-height: 44px; white-space: nowrap; }
@media (min-width: 900px) { .sticky-cta { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .sticky-cta { transition: none; }
}

/* ============== Staggered reveals ============== */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.24s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
}

/* ============== Info cards (shipping / care / who) ============== */
.info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}
@media (min-width: 720px) { .info-cards { grid-template-columns: repeat(3, 1fr); } }
.info-card {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 24px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.info-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  margin-bottom: 10px;
}
.info-card p { font-size: 14px; line-height: 1.65; color: var(--ink-soft); }

/* Footer language + social row */
.footer-lang { margin-top: 14px; }
.footer-lang a { font-size: 12px; }

/* FB iframe: keep it contained */
.fb-embed-wrap iframe { max-width: 100%; }

/* Short viewports: give the CTA row priority over the scroll hint */
@media (max-height: 700px) {
  .story-hero-scroll { display: none; }
  .story-hero { padding-bottom: 90px; }
}

/* Cross-section figure with language-specific overlay labels */
.xsection-fig { position: relative; }
.xsection-fig img { width: 100%; height: 100%; object-fit: cover; display: block; }
.xsection-label {
  position: absolute;
  left: 4%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  background: rgba(251, 248, 242, 0.88);
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  white-space: nowrap;
}
.xsection-label::after { content: ""; width: 26px; height: 1px; background: var(--accent); }
.xsection-label--wool { color: var(--accent-deep); }
@media (max-width: 540px) { .xsection-label { font-size: 11px; padding: 5px 10px; } }

/* Newsletter band (pre-footer) */
.newsletter-band { padding: 72px 0; background: var(--bg-deep); text-align: center; }
.newsletter-band h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 3.5vw, 38px); margin-bottom: 12px; }
.newsletter-band p { color: var(--ink-soft); max-width: 520px; margin: 0 auto 26px; font-size: 15px; }
.newsletter-band small { display: block; margin-top: 14px; color: var(--muted); font-size: 12px; }
