:root {
  --bg: #f7f1e8;
  --bg-soft: #fcf8f2;
  --card: rgba(255, 255, 255, 0.65);
  --card-solid: #fffaf4;
  --line: rgba(97, 63, 28, 0.12);
  --text: #3f2a1a;
  --text-soft: #6e5645;
  --accent: #b9772a;
  --accent-dark: #8f5a19;
  --shadow: 0 20px 50px rgba(66, 39, 11, 0.10);
  --radius: 24px;
  --radius-sm: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(185, 119, 42, 0.10), transparent 26%),
    radial-gradient(circle at bottom right, rgba(185, 119, 42, 0.08), transparent 22%),
    var(--bg);
}

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

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

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

.section {
  padding: 5.5rem 0;
}

.section--tight {
  padding: 1rem 0 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,255,255,0.12));
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 0.95;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  margin-bottom: 1.2rem;
}

h1 span,
.section-heading h2 span {
  color: var(--accent);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.55rem, 3vw, 2rem);
}

p {
  margin: 0;
  line-height: 1.7;
  color: var(--text-soft);
}

.topbar {
  background: var(--accent);
  color: #fff;
  font-size: 0.92rem;
}

.topbar__inner,
.header__inner,
.footer__inner,
.topbar__items {
  display: flex;
  align-items: center;
}

.topbar__inner {
  justify-content: space-between;
  gap: 1rem;
  min-height: 42px;
}

.topbar__items {
  gap: 1.2rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(247, 241, 232, 0.88);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  min-height: 94px;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  width: min(280px, 42vw);
}

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

.nav a {
  position: relative;
  color: var(--text-soft);
  font-weight: 500;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0 1.4rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ca893b, var(--accent));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(185, 119, 42, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(185, 119, 42, 0.28);
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(185, 119, 42, 0.35);
  box-shadow: none;
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  box-shadow: none;
  background: rgba(185, 119, 42, 0.07);
}

.btn--sm {
  min-height: 46px;
  padding: 0 1.15rem;
}

.hero {
  padding-top: 3rem;
}

.hero__grid,
.story-grid,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.4rem;
  align-items: center;
}

.hero__content > p {
  max-width: 58ch;
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.hero__benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.hero__benefits article,
.trust__grid > div,
.step-card,
.contact-card,
.contact-panel,
.story-points > div {
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(97, 63, 28, 0.08);
  box-shadow: var(--shadow);
  border-radius: var(--radius-sm);
}

.hero__benefits article {
  padding: 1.15rem;
}

.hero__benefits strong,
.trust__grid strong,
.story-points strong {
  display: block;
  margin-bottom: 0.5rem;
}

.hero__benefits span,
.trust__grid span,
.story-points span {
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.55;
}

.hero__media {
  position: relative;
}

.hero__media img,
.story-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  max-width: 280px;
  padding: 1rem 1.1rem;
  background: rgba(255, 250, 244, 0.86);
  border: 1px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hero-card strong {
  display: block;
  margin-bottom: 0.35rem;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.trust__grid > div,
.story-points > div {
  padding: 1.35rem;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.flavors-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.flavor-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--card-solid);
  border: 1px solid rgba(97, 63, 28, 0.08);
  box-shadow: var(--shadow);
  transition: transform 0.24s ease;
}

.flavor-card:hover {
  transform: translateY(-6px);
}

.flavor-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.flavor-card__body {
  padding: 1.2rem 1.15rem 1.35rem;
}

.flavor-card__body h3 {
  margin-bottom: 0.6rem;
}

.story-content > p {
  margin-bottom: 1rem;
}

.story-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

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

.step-card {
  padding: 1.6rem;
}

.step-card span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: rgba(185, 119, 42, 0.12);
  color: var(--accent);
  font-weight: 700;
}

.step-card h3 {
  margin-bottom: 0.65rem;
}

.cta-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.6rem 1.8rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(185, 119, 42, 0.12), rgba(255,255,255,0.5));
  border: 1px solid rgba(97, 63, 28, 0.08);
}

.cta-banner h3 {
  max-width: 18ch;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-list details {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(97, 63, 28, 0.08);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  padding-top: 0.9rem;
}

.contact-card,
.contact-panel {
  padding: 2rem;
}

.contact-card ul {
  padding: 0;
  margin: 1.4rem 0 1.6rem;
  list-style: none;
  display: grid;
  gap: 0.75rem;
  color: var(--text-soft);
}

blockquote {
  margin: 1rem 0 1.5rem;
  padding: 1.25rem 1.2rem;
  border-left: 4px solid var(--accent);
  background: rgba(255,255,255,0.55);
  border-radius: 14px;
  color: var(--text);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.35;
}

.mini-note {
  padding: 1rem 1.1rem;
  background: rgba(185, 119, 42, 0.08);
  border-radius: 16px;
}

.footer {
  padding: 1.4rem 0;
  background: #3a2414;
  color: rgba(255,255,255,0.86);
}

.footer__inner {
  justify-content: space-between;
  gap: 1rem;
}

.footer__inner div {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  padding: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: 0.25s ease;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--delay { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.28s; }

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero__grid,
  .story-grid,
  .contact-grid,
  .faq-grid,
  .flavors-grid,
  .steps-grid,
  .trust__grid,
  .hero__benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__benefits,
  .trust__grid {
    gap: 0.9rem;
  }

  .header__cta {
    display: none;
  }

  .nav {
    gap: 1rem;
  }
}

@media (max-width: 820px) {
  .topbar {
    display: none;
  }

  .header__inner {
    min-height: 82px;
  }

  .nav-toggle {
    display: block;
    z-index: 31;
  }

  .nav {
    position: fixed;
    inset: 82px 1rem auto 1rem;
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    background: rgba(255, 250, 244, 0.97);
    border: 1px solid rgba(97, 63, 28, 0.08);
    border-radius: 20px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.22s ease;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 0.7rem 0.5rem;
  }

  .hero__grid,
  .story-grid,
  .contact-grid,
  .faq-grid,
  .flavors-grid,
  .steps-grid,
  .trust__grid,
  .hero__benefits {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2rem;
  }

  .cta-banner,
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-banner h3 {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 4rem 0;
  }

  .container {
    width: min(var(--container), calc(100% - 1.25rem));
  }

  .brand img {
    width: 210px;
  }

  .hero-card {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }

  blockquote {
    font-size: 1.25rem;
  }
}
