* {
  box-sizing: border-box;
}

:root {
  --bg: #fffefb;
  --surface: rgba(255,255,255,0.92);
  --surface-strong: #ffffff;
  --surface-alt: #f8f2e7;
  --text: #24190f;
  --muted: #6e5a49;
  --primary: #cc7b2d;
  --primary-dark: #9e5616;
  --accent-green: #6f9b45;
  --line: #eadcc7;
  --shadow: 0 16px 40px rgba(63, 41, 17, 0.10);
  --shadow-soft: 0 8px 24px rgba(63, 41, 17, 0.08);
  --radius: 22px;
  --max: 1140px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(255, 224, 171, 0.18), transparent 26%),
    linear-gradient(180deg, #fffefb 0%, #fff9f0 100%);
}

a {
  color: var(--primary-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 252, 246, 0.84);
  border-bottom: 1px solid rgba(234, 220, 199, 0.9);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 1.15rem;
  color: var(--text);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

nav a {
  font-weight: 700;
  color: var(--muted);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 210, 140, 0.35), transparent 20%),
    radial-gradient(circle at 90% 25%, rgba(205, 232, 172, 0.28), transparent 18%);
}

.hero-home {
  background: linear-gradient(135deg, #fff8ea 0%, #fff2d8 45%, #f7f7ef 100%);
}

.hero-sub {
  background: linear-gradient(135deg, #fff8ea 0%, #fff4e2 100%);
}

.hero-flaxseed {
  background: linear-gradient(135deg, #fff8e9 0%, #eef8dc 52%, #fffef9 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 1.75rem;
  align-items: center;
}

.hero,
.hero-sub {
  padding: 5rem 0 4rem;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-tag,
.panel-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0 0 0.8rem;
}

h1, h2, h3 {
  line-height: 1.12;
  margin-top: 0;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 4vw, 4.6rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.18rem;
  margin-bottom: 0.5rem;
}

.lead {
  max-width: 780px;
  font-size: 1.12rem;
  color: var(--muted);
}

.section {
  padding: 4.5rem 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(248, 242, 231, 0.8), rgba(255, 251, 245, 0.9));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two.unequal {
  grid-template-columns: 1.15fr 1fr;
}

.card {
  background: var(--surface-strong);
  border: 1px solid rgba(234, 220, 199, 0.9);
  border-radius: var(--radius);
  padding: 1.65rem;
  box-shadow: var(--shadow-soft);
}

.card.glass {
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(12px);
}

.card.accent {
  background: linear-gradient(180deg, #fffefb 0%, #f3fbeb 100%);
}

.lift {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.hero-panel {
  position: relative;
  z-index: 1;
}

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

.icon-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}

.icon-list span,
.emoji {
  font-size: 1.4rem;
}

.contact-line a {
  font-size: 1.35rem;
  font-weight: 800;
}

.hero-actions,
.card-actions,
.cta-stack,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cta-stack {
  align-items: center;
  justify-content: flex-end;
}

.button {
  display: inline-block;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none !important;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}

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

.button.primary {
  background: linear-gradient(180deg, var(--primary) 0%, #bf6d20 100%);
  color: white;
}

.button.primary:hover {
  background: linear-gradient(180deg, #c96e17 0%, var(--primary-dark) 100%);
}

.button.secondary {
  background: rgba(255,255,255,0.85);
  color: var(--primary-dark);
  border-color: var(--line);
}

.button.ghost {
  background: transparent;
  color: var(--muted);
  border-color: var(--line);
}

.video-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.video-card.featured {
  border-color: rgba(204, 123, 45, 0.35);
}

.video-card.muted {
  opacity: 0.96;
}

.pill {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: #fff7ea;
  border: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
}

.split-banner {
  background: linear-gradient(135deg, #fffdfa 0%, #fff4e3 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.8rem;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}

.embed-placeholder {
  min-height: 300px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.25rem;
  border-radius: 18px;
  border: 2px dashed rgba(111, 155, 69, 0.45);
  background:
    radial-gradient(circle at center, rgba(111, 155, 69, 0.08), transparent 45%),
    repeating-linear-gradient(
      45deg,
      rgba(111, 155, 69, 0.05),
      rgba(111, 155, 69, 0.05) 12px,
      rgba(255,255,255,0.75) 12px,
      rgba(255,255,255,0.75) 24px
    );
}

.embed-container {
  width: 100%;
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.small,
.footer-text {
  color: var(--muted);
}

ul {
  padding-left: 1.15rem;
}

.footer {
  padding: 1.7rem 0 2rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.95);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .grid.two,
  .grid.three,
  .grid.two.unequal,
  .split-banner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .cta-stack {
    justify-content: start;
  }

  .nav {
    flex-direction: column;
    justify-content: center;
    padding: 0.75rem 0;
  }
}

@media (max-width: 620px) {
  .hero,
  .hero-sub {
    padding: 4rem 0 3.2rem;
  }

  h1 {
    font-size: 2.35rem;
  }

  .card,
  .split-banner {
    padding: 1.25rem;
  }
}
