:root {
  --page-bg: #f6f2ea;
  --surface: rgba(255, 251, 245, 0.86);
  --surface-strong: #fffaf2;
  --text-primary: #1f160f;
  --text-secondary: #5f5145;
  --accent: #8a5a27;
  --accent-deep: #6b4318;
  --accent-soft: #dcb47c;
  --green: #6f9160;
  --line: rgba(76, 51, 28, 0.12);
  --shadow-lg: 0 32px 80px rgba(54, 35, 17, 0.12);
  --shadow-md: 0 18px 45px rgba(54, 35, 17, 0.1);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --content-width: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text-primary);
  background:
    radial-gradient(circle at top left, rgba(220, 180, 124, 0.28), transparent 28%),
    radial-gradient(circle at top right, rgba(111, 145, 96, 0.2), transparent 24%),
    linear-gradient(180deg, #fbf8f2 0%, var(--page-bg) 100%);
}

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

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

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(22px);
  background: rgba(246, 242, 234, 0.7);
  border-bottom: 1px solid rgba(76, 51, 28, 0.08);
}

.site-header__inner,
.site-footer__inner,
.hero-section,
.story-banner,
.content-section {
  width: var(--content-width);
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark__icon {
  width: 18px;
  height: 18px;
  border-radius: 999px 999px 999px 4px;
  background: linear-gradient(160deg, var(--accent-soft), var(--accent-deep));
  box-shadow: 0 10px 22px rgba(107, 67, 24, 0.35);
  transform: rotate(-24deg);
}

.site-nav {
  display: flex;
  gap: 24px;
  color: var(--text-secondary);
  font-size: 0.96rem;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -6px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff9f1;
  font-weight: 700;
  box-shadow: 0 16px 28px rgba(107, 67, 24, 0.26);
  transition: transform 180ms ease, box-shadow 180ms ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 34px rgba(107, 67, 24, 0.28);
}

.button-secondary {
  background: rgba(255, 250, 242, 0.74);
  color: var(--text-primary);
  border: 1px solid rgba(76, 51, 28, 0.12);
  box-shadow: none;
}

.button-nav {
  min-height: 42px;
  padding-inline: 18px;
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  padding: 76px 0 56px;
  align-items: center;
}

.hero-section__backdrop {
  position: absolute;
  inset: 20px 0 0;
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(255, 249, 240, 0.92), rgba(235, 223, 204, 0.82)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent);
  box-shadow: var(--shadow-lg);
  z-index: -1;
}

.hero-section__content,
.hero-section__visual,
.story-banner,
.cost-table-card,
.cost-summary,
.chart-card,
.share-card,
.product-card,
.journey-card {
  background: var(--surface);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-md);
}

.hero-section__content {
  padding: 64px;
  border-radius: var(--radius-xl);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(111, 145, 96, 0.12);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-section h1,
.section-heading h2 {
  margin: 18px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.hero-section h1 {
  font-size: clamp(3.5rem, 7vw, 6.4rem);
  max-width: 10ch;
}

.hero-section__subtitle {
  margin: 22px 0 0;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--accent-deep);
  font-weight: 700;
}

.hero-section__body,
.section-heading p,
.journey-card p,
.cost-summary p,
.share-card p,
.product-card p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.hero-section__body {
  max-width: 58ch;
  margin: 14px 0 0;
}

.hero-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-section__visual {
  display: grid;
  place-items: center;
  padding: 36px;
  border-radius: var(--radius-xl);
  min-height: 100%;
}

.hero-bottle-frame {
  width: min(100%, 430px);
  padding: 28px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top, rgba(220, 180, 124, 0.32), transparent 45%),
    linear-gradient(180deg, #fff7eb, #f3e7d5);
}

.story-banner {
  margin-top: 22px;
  padding: 34px 40px;
  border-radius: var(--radius-lg);
}

.story-banner p {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.content-section {
  padding: 110px 0 0;
}

.section-heading {
  max-width: 720px;
}

.section-heading h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading p {
  margin-top: 16px;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.journey-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.journey-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(54, 35, 17, 0.14);
}

.journey-card__eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journey-card__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-top: 12px;
}

.journey-card h3,
.share-card h3,
.product-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.journey-card__cost,
.product-card__price,
.summary-stat strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-deep);
}

.cost-layout,
.transparency-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 24px;
  margin-top: 34px;
}

.cost-table-card,
.cost-summary,
.chart-card,
.share-card {
  border-radius: var(--radius-xl);
  padding: 30px;
}

.cost-table {
  width: 100%;
  border-collapse: collapse;
}

.cost-table th,
.cost-table td {
  padding: 18px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.cost-table th {
  color: var(--text-secondary);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cost-table tfoot td {
  font-weight: 800;
  color: var(--text-primary);
}

.cost-summary {
  display: grid;
  gap: 18px;
  align-content: start;
}

.summary-stat {
  padding: 20px 22px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.summary-stat__label,
.share-comparison span {
  display: block;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.chart-card {
  min-height: 420px;
}

.share-card {
  display: grid;
  gap: 24px;
  align-content: start;
}

.share-comparison {
  display: grid;
  gap: 18px;
}

.share-comparison div {
  padding: 22px;
  background: var(--surface-strong);
  border-radius: 20px;
  border: 1px solid var(--line);
}

.share-comparison strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.share-bar {
  display: flex;
  overflow: hidden;
  border-radius: 999px;
  height: 18px;
  background: rgba(76, 51, 28, 0.08);
}

.share-bar__farmer {
  background: linear-gradient(90deg, var(--green), #8db179);
}

.share-bar__profit {
  background: linear-gradient(90deg, var(--accent-soft), var(--accent));
}

.content-section--product {
  padding-bottom: 110px;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: center;
  padding: 32px;
  border-radius: var(--radius-xl);
  margin-top: 34px;
}

.product-card__visual {
  padding: 26px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(220, 180, 124, 0.36), transparent 42%),
    linear-gradient(180deg, #fff8ee, #f3e6d3);
}

.product-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
}

.site-footer {
  border-top: 1px solid rgba(76, 51, 28, 0.08);
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0 40px;
  color: var(--text-secondary);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 1080px) {
  .hero-section,
  .cost-layout,
  .transparency-grid,
  .product-card {
    grid-template-columns: 1fr;
  }

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

  .site-header__inner {
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  :root {
    --content-width: min(100vw - 28px, 100%);
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-section {
    padding-top: 38px;
  }

  .hero-section__content,
  .hero-section__visual,
  .story-banner,
  .cost-table-card,
  .cost-summary,
  .chart-card,
  .share-card,
  .product-card,
  .journey-card {
    padding: 22px;
  }

  .journey-grid {
    grid-template-columns: 1fr;
  }

  .cost-table th:nth-child(2),
  .cost-table td:nth-child(2) {
    display: none;
  }

  .site-footer__inner {
    flex-direction: column;
  }
}
