:root {
  --bg: #fff8f4;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-soft: #fff1ea;
  --ink: #503c39;
  --muted: #7d6b69;
  --line: rgba(181, 151, 149, 0.26);
  --brand: #cb4c33;
  --brand-dark: #b9412b;
  --accent: #bd827b;
  --accent-soft: #f0dfdc;
  --neutral-soft: #f5eceb;
  --neutral: #b2a6aa;
  --shadow: 0 18px 45px rgba(102, 72, 67, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: min(1160px, calc(100vw - 2rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(203, 76, 51, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(189, 130, 123, 0.12), transparent 24%),
    linear-gradient(180deg, #fffdfc 0%, #fff8f4 42%, #fcf4f1 100%);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(255, 252, 250, 0.88);
  border-bottom: 1px solid rgba(181, 151, 149, 0.22);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  max-width: min(360px, 48vw);
}

.brand-logo {
  display: block;
  width: 100%;
  max-height: 4rem;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 1.4rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--brand);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.25rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  box-shadow: 0 16px 32px rgba(203, 76, 51, 0.24);
}

.button-secondary {
  border-color: rgba(189, 130, 123, 0.28);
  background: rgba(255, 255, 255, 0.85);
  color: var(--brand);
}

.button-small {
  min-height: 2.8rem;
  padding-inline: 1rem;
  font-size: 0.95rem;
  white-space: nowrap;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 5.3rem 0 3rem;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  pointer-events: none;
}

.hero-section::before {
  width: 24rem;
  height: 24rem;
  top: -6rem;
  right: -8rem;
  background: radial-gradient(circle, rgba(203, 76, 51, 0.14), transparent 68%);
}

.hero-section::after {
  width: 20rem;
  height: 20rem;
  bottom: -5rem;
  left: -6rem;
  background: radial-gradient(circle, rgba(189, 130, 123, 0.14), transparent 72%);
}

.hero-grid,
.split-section,
.form-layout,
.buyers-card,
.story-card {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.1rem;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  line-height: 0.96;
}

h2 {
  font-size: clamp(2rem, 4.1vw, 3.35rem);
  line-height: 1;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.hero-lead {
  max-width: 60ch;
  margin-top: 1.45rem;
  font-size: 1.1rem;
}

.hero-actions,
.form-actions,
.footer-inner div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-highlights,
.check-list,
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-highlights li,
.tag-grid span {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(189, 130, 123, 0.18);
  color: var(--ink);
  font-weight: 600;
}

.hero-card,
.issue-panel,
.fit-panel,
.producer-form,
.buyers-card,
.story-card,
.proof-strip,
.step-card,
.panel-window {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card,
.producer-form,
.story-card,
.buyers-card {
  border-radius: var(--radius-xl);
}

.hero-card {
  padding: 1.4rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 242, 239, 0.94));
}

.hero-card-top {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(189, 130, 123, 0.18);
}

.pill,
.panel-tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.metric-grid article,
.step-card {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
}

.metric-label {
  display: block;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-grid strong {
  display: block;
  margin: 0.45rem 0 0.5rem;
  font-size: 1.15rem;
}

.proof-strip {
  width: var(--container);
  margin: 0 auto;
  padding: 1rem;
  border-radius: var(--radius-lg);
}

.proof-grid,
.steps-grid,
.tag-grid,
.field-grid {
  display: grid;
  gap: 1rem;
}

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

.proof-grid article {
  padding: 0.8rem 1rem;
}

.proof-grid strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
  color: var(--brand-dark);
}

.content-section,
.story-section,
.buyers-section,
.form-section,
.cta-section {
  padding: 5.5rem 0;
}

.compact-section {
  padding-top: 2rem;
}

.split-section {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
}

.section-copy {
  display: grid;
  gap: 1rem;
}

.section-accent {
  position: relative;
}

.section-accent::before {
  content: "";
  position: absolute;
  inset: 1.5rem 0;
  background: linear-gradient(180deg, rgba(189, 130, 123, 0.08), rgba(189, 130, 123, 0.03));
  z-index: -1;
}

.issue-panel,
.fit-panel {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
}

.check-list li,
.feature-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.check-list li:last-child,
.feature-list li:last-child {
  margin-bottom: 0;
}

.check-list li::before,
.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.58rem;
  left: 0;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 0 0 5px rgba(189, 130, 123, 0.12);
}

.solution-panel {
  display: flex;
  justify-content: center;
}

.panel-window {
  width: min(100%, 31rem);
  padding: 2rem;
  border-radius: 32px 32px 120px 32px;
  background:
    linear-gradient(155deg, rgba(203, 76, 51, 0.96), rgba(189, 130, 123, 0.9)),
    var(--brand);
  color: #fff;
}

.panel-window p,
.panel-window h3 {
  color: #fff;
}

.panel-window h3 {
  margin: 1rem 0 0.9rem;
}

.section-heading {
  max-width: 44rem;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.section-heading.narrow {
  margin-bottom: 1.4rem;
}

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

.step-card {
  border-radius: var(--radius-lg);
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(203, 76, 51, 0.12);
  color: var(--brand);
  font-weight: 800;
}

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

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

.story-card,
.buyers-card,
.cta-card {
  align-items: center;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(249, 238, 236, 0.92)),
    var(--surface);
}

.story-card {
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
}

.story-copy {
  display: grid;
  gap: 1rem;
}

.story-copy a {
  color: var(--brand);
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.labanda-card {
  overflow: hidden;
  border: 1px solid rgba(189, 130, 123, 0.26);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 16px 36px rgba(102, 72, 67, 0.1);
}

.labanda-link {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) minmax(0, 1.1fr);
  min-height: 16rem;
  color: inherit;
  text-decoration: none;
}

.labanda-image {
  position: relative;
  min-height: 16rem;
  background: var(--accent-soft);
}

.labanda-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.95);
}

.labanda-content {
  display: grid;
  align-content: center;
  gap: 0.65rem;
  padding: 1.4rem;
}

.labanda-eyebrow {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.labanda-cta {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.4rem;
  color: var(--brand);
  font-weight: 800;
}

.labanda-cta::after {
  content: " ->";
  transition: transform 180ms ease;
}

.labanda-link:hover .labanda-cta::after {
  transform: translateX(0.18rem);
}

.story-quote {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(203, 76, 51, 0.96), rgba(189, 130, 123, 0.92));
}

.story-quote p {
  color: #fff;
  font-family: "Fraunces", serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.28;
}

.buyers-card {
  grid-template-columns: minmax(0, 1fr) auto;
}

.cta-section {
  padding-top: 1rem;
}

.cta-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.cta-card h2 {
  max-width: 16ch;
  margin-bottom: 1.4rem;
}

.form-layout {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
}

.form-intro {
  position: sticky;
  top: 6.5rem;
  display: grid;
  gap: 1rem;
}

.producer-form {
  padding: 1.5rem;
}

.form-section-block + .form-section-block {
  margin-top: 1.5rem;
}

.form-section-block h3 {
  margin-bottom: 1rem;
}

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

.field-grid .full-width {
  grid-column: 1 / -1;
}

.producer-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--ink);
  font-weight: 700;
}

.producer-form span {
  font-size: 0.95rem;
}

.producer-form input,
.producer-form select,
.producer-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(189, 130, 123, 0.25);
  background: #fffdfc;
  color: var(--ink);
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.producer-form input:focus,
.producer-form select:focus,
.producer-form textarea:focus {
  border-color: rgba(203, 76, 51, 0.45);
  box-shadow: 0 0 0 4px rgba(203, 76, 51, 0.08);
}

.producer-form textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-note {
  max-width: 32rem;
  color: var(--brand-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-footer {
  padding: 1.25rem 0 5.5rem;
  border-top: 1px solid rgba(181, 151, 149, 0.22);
}

.footer-brand strong {
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.site-footer p {
  margin-top: 0.35rem;
}

.site-footer a {
  color: var(--muted);
}

.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 25;
  display: none;
  padding: 0.95rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 35px rgba(203, 76, 51, 0.24);
}

.compact li {
  margin-bottom: 0.8rem;
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-section,
  .story-card,
  .form-layout,
  .buyers-card,
  .proof-grid,
  .steps-grid,
  .tag-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }

  .brand {
    max-width: 300px;
  }

  .hero-section {
    padding-top: 4.2rem;
  }

  .form-intro {
    position: static;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 1.2rem, 100%);
  }

  .header-inner,
  .footer-inner,
  .hero-actions,
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .brand {
    max-width: min(260px, 100%);
  }

  .button,
  .button-small {
    width: 100%;
  }

  h1 {
    max-width: 14ch;
  }

  .hero-highlights {
    flex-direction: column;
  }

  .metric-grid,
  .field-grid,
  .labanda-link {
    grid-template-columns: 1fr;
  }

  .content-section,
  .story-section,
  .buyers-section,
  .form-section,
  .cta-section {
    padding: 4.2rem 0;
  }

  .producer-form,
  .hero-card,
  .buyers-card,
  .story-card,
  .cta-card {
    padding: 1.2rem;
  }

  .floating-cta {
    display: inline-flex;
  }
}
