:root {
  color-scheme: light;
  --leaf: #2f5f3a;
  --leaf-dark: #18351f;
  --cane: #b07a2d;
  --gold: #d7a843;
  --clay: #8f3f1f;
  --cream: #fff8ea;
  --paper: #fffcf5;
  --ink: #21170d;
  --muted: #6f604b;
  --border: rgba(73, 48, 22, 0.18);
  --shadow: 0 18px 60px rgba(32, 22, 11, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 248, 234, 0.88);
  border-bottom: 1px solid rgba(33, 23, 13, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 52px;
  height: 52px;
}

.brand span {
  display: grid;
  gap: 0;
  line-height: 1.05;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  letter-spacing: 0;
}

.brand small {
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
}

.nav-cta,
.button.primary {
  background: var(--leaf);
  color: #fff;
  box-shadow: 0 10px 26px rgba(47, 95, 58, 0.26);
}

.button.primary.dark {
  background: var(--leaf-dark);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
}

.button.secondary.light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.nav-cta:hover,
.button.primary:hover,
.button.primary:focus-visible {
  background: #244b2d;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

.hero {
  position: relative;
  min-height: min(820px, 92vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 118px clamp(18px, 5vw, 72px) clamp(44px, 8vh, 72px);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.32) saturate(0.9) hue-rotate(-12deg);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 12, 6, 0.82), rgba(20, 12, 6, 0.56), rgba(20, 12, 6, 0.3)),
    linear-gradient(0deg, rgba(33, 23, 13, 0.4), rgba(33, 23, 13, 0.08));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(150px, 196px) minmax(0, 760px);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  max-width: 1080px;
}

.hero-logo {
  width: clamp(136px, 18vw, 196px);
  height: auto;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.32));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: #fff9ec;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 6vw, 5.5rem);
}

.hero-text {
  max-width: 640px;
  margin-bottom: 26px;
  color: rgba(255, 248, 234, 0.9);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-inline {
  margin: 18px 0 0;
  color: rgba(255, 248, 234, 0.72);
  font-size: 0.86rem;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.intro-strip div {
  padding: clamp(20px, 4vw, 34px);
  background: var(--cream);
}

.intro-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--leaf-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.intro-strip span {
  color: var(--muted);
}

.section {
  padding: clamp(56px, 9vw, 104px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 640px;
  margin-bottom: clamp(26px, 5vw, 44px);
}

.section-heading.compact {
  max-width: 760px;
}

.section-heading h2,
.contact-panel h2,
.media-section h2 {
  margin-bottom: 14px;
  color: var(--leaf-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-heading p,
.story-copy p,
.media-section p,
.contact-panel p {
  color: var(--muted);
  font-size: 1.02rem;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.story-copy {
  max-width: 760px;
}

.process-card,
.flavor-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 42px rgba(66, 42, 15, 0.08);
}

.process-card {
  padding: 28px;
}

.process-card h3,
.flavor-card h3 {
  margin-bottom: 14px;
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.process-card ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.flavors-section {
  background:
    linear-gradient(180deg, rgba(255, 248, 234, 0.86), rgba(255, 252, 245, 0.98)),
    radial-gradient(circle at 15% 0%, rgba(215, 168, 67, 0.18), transparent 34%);
}

.flavor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.flavor-card {
  min-height: 230px;
  padding: 24px;
}

.flavor-card p {
  color: var(--muted);
}

.flavor-mark {
  display: block;
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.4);
}

.flavor-mark.fruit {
  background: #d95f30;
}

.flavor-mark.spice {
  background: #b07a2d;
}

.flavor-mark.roots {
  background: #2f5f3a;
}

.flavor-mark.season {
  background: #5c3c25;
}

.media-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.video-link {
  display: grid;
  gap: 10px;
  min-height: 260px;
  align-content: center;
  justify-items: center;
  padding: 28px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(47, 95, 58, 0.92), rgba(143, 63, 31, 0.86)),
    url("/assets/hero-cana.jpg") center/cover;
  color: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.play-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  clip-path: polygon(100% 50%, 24% 8%, 24% 92%);
}

.video-link small {
  color: rgba(255, 255, 255, 0.75);
}

.contact-section {
  padding: clamp(40px, 7vw, 82px) clamp(18px, 5vw, 72px);
  background: var(--leaf);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff;
  background: rgba(24, 53, 31, 0.48);
}

.contact-panel h2,
.contact-panel p,
.contact-panel .eyebrow {
  color: #fff;
}

.contact-panel p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  display: grid;
  gap: 6px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: #17100a;
  color: rgba(255, 248, 234, 0.8);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.photo-credit {
  color: rgba(255, 248, 234, 0.54);
  font-size: 0.78rem;
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    padding: 10px 16px;
  }

  .brand span,
  .nav-links {
    display: none;
  }

  .nav-cta {
    min-height: 42px;
    padding: 10px 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
  }

  .hero-content,
  .story-grid,
  .media-section,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-logo {
    width: 128px;
  }

  .intro-strip,
  .flavor-grid {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .process-card,
  .flavor-card {
    padding: 20px;
  }
}
