/* MUSHERS ECOTROPHELIA LANDING PAGE */

:root {
  --cream: #d7c8b3;
  --cream-light: #f7efe4;
  --cream-soft: #eadcc9;
  --paper: #fffaf2;
  --ink: #201b18;
  --muted: #645b52;
  --purple: #8b61b4;
  --purple-deep: #543275;
  --purple-soft: #dfc9f2;
  --paprika: #a9542c;
  --paprika-deep: #6f321d;
  --green: #4c8a54;
  --green-deep: #315f37;
  --line: rgba(32, 27, 24, 0.1);
  --shadow: 0 26px 80px rgba(32, 27, 24, 0.14);
  --radius-xl: 42px;
  --radius-lg: 30px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(139, 97, 180, 0.15), transparent 35rem),
    radial-gradient(circle at 92% 10%, rgba(169, 84, 44, 0.16), transparent 35rem),
    var(--cream-light);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 7%;
  background: rgba(247, 239, 228, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 130px;
  height: auto;
}

.nav {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  color: var(--ink);
  opacity: 0.78;
}

.nav a:hover {
  opacity: 1;
  color: var(--purple-deep);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--ink);
  cursor: pointer;
  padding: 11px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: white;
  border-radius: 99px;
}

.hero,
.section {
  padding: 92px 7%;
}

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.98fr);
  gap: 52px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(215, 200, 179, 0.88), rgba(247, 239, 228, 0.92)),
    radial-gradient(circle at 82% 36%, rgba(139, 97, 180, 0.24), transparent 30rem);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--purple-deep);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
}

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 920px;
  font-size: clamp(46px, 7.6vw, 92px);
}

h2 {
  font-size: clamp(34px, 5vw, 62px);
}

h3 {
  font-size: 25px;
  letter-spacing: -0.02em;
}

p {
  line-height: 1.75;
}

.lead,
.section-heading p,
.impact-copy p,
.csr-card p,
.digital-card p {
  font-size: 19px;
}

.lead {
  max-width: 760px;
  color: var(--muted);
}

.inline-logo {
  display: inline-block;
  width: 112px;
  height: auto;
  margin: 0 5px -8px;
  vertical-align: baseline;
}

.hero-actions,
.digital-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn,
button,
.flavour-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 15px 24px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover,
button:hover,
.flavour-card a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.primary {
  color: white;
  background: var(--purple);
}

.secondary {
  background: rgba(255, 250, 242, 0.82);
  border: 2px solid rgba(32, 27, 24, 0.12);
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.proof-row span,
.nutrition-list li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.74);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 900;
}

.hero-showcase {
  position: relative;
  min-height: 570px;
}

.pack-wrap {
  position: absolute;
  overflow: hidden;
  border: 8px solid rgba(255, 250, 242, 0.74);
  border-radius: 30px;
  box-shadow: var(--shadow);
  background: var(--paper);
}

.pack-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pack-one {
  top: 20px;
  left: 0;
  width: min(90%, 520px);
  aspect-ratio: 2.55 / 1;
  transform: rotate(-4deg);
  z-index: 2;
}

.pack-two {
  right: -20px;
  bottom: 50px;
  width: min(90%, 520px);
  aspect-ratio: 2.55 / 1;
  transform: rotate(4deg);
  z-index: 1;
}

.floating-note {
  position: absolute;
  z-index: 3;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(32, 27, 24, 0.12);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.note-one {
  top: 0;
  right: 12%;
  color: var(--green-deep);
}

.note-two {
  bottom: 6px;
  left: 10%;
  color: var(--paprika-deep);
}

.section-heading {
  max-width: 960px;
  margin-bottom: 44px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feature-card,
.impact-panel,
.transformation-card,
.process-step,
.flavour-card,
.nutrition-card,
.price-card,
.csr-card,
.digital-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 242, 0.86);
  box-shadow: 0 16px 48px rgba(32, 27, 24, 0.08);
}

.feature-card {
  padding: 28px;
  min-height: 290px;
}

.line-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 20px;
  color: var(--purple-deep);
  background: var(--cream-soft);
}

.line-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.impact-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
  color: var(--paper);
  background:
    radial-gradient(circle at 18% 20%, rgba(139, 97, 180, 0.38), transparent 27rem),
    linear-gradient(135deg, var(--ink), #35251f);
}

.impact-section .eyebrow {
  color: var(--purple-soft);
}

.impact-panel {
  padding: 34px;
  color: var(--ink);
}

.tracker-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.tracker-top span {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-deep);
}

.tracker-logo {
  width: 104px;
}

.impact-panel label {
  display: block;
  margin-bottom: 10px;
  font-weight: 900;
}

.impact-panel input {
  width: 100%;
  border: 2px solid rgba(32, 27, 24, 0.12);
  border-radius: 18px;
  padding: 16px 18px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-size: 24px;
  font-weight: 900;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 22px 0;
}

.metric-grid div {
  padding: 18px;
  border-radius: 22px;
  background: var(--cream-light);
}

.metric-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-deep);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.metric-grid span {
  font-size: 13px;
  font-weight: 900;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
  font-weight: 900;
}

.progress-bar {
  height: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: #e4d4c0;
}

.progress-bar div {
  height: 100%;
  width: 25%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--purple));
  transition: width 0.4s ease;
}

.impact-panel small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
}

.transformation-section {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}

.transformation-card {
  min-height: 270px;
  padding: 34px;
  color: white;
  position: relative;
  overflow: hidden;
}

.transformation-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.11);
}

.transformation-card.before {
  background: linear-gradient(135deg, var(--paprika-deep), var(--paprika));
}

.transformation-card.after {
  background: linear-gradient(135deg, var(--green-deep), var(--green));
}

.tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(255, 255, 255, 0.18);
}

.transform-arrow {
  display: grid;
  place-items: center;
  min-width: 78px;
}

.transform-arrow span {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 16px 40px rgba(32, 27, 24, 0.12);
  position: relative;
}

.transform-arrow span::before {
  content: "→";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--purple-deep);
  font-size: 40px;
  font-weight: 900;
}

.process-section {
  background: var(--cream);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-step {
  position: relative;
  padding: 30px;
  background: var(--paper);
}

.process-step span {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--paprika);
  font-size: 42px;
  font-weight: 900;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 86px;
  left: 30px;
  width: calc(100% - 60px);
  height: 2px;
  background: rgba(32, 27, 24, 0.12);
}

.process-step p {
  color: var(--muted);
}

.flavour-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.flavour-card {
  overflow: hidden;
  background: var(--paper);
}

.flavour-card img {
  width: 100%;
  aspect-ratio: 2.55 / 1;
  object-fit: cover;
}

.flavour-content {
  padding: 30px;
}

.flavour-card.purple .tag {
  color: white;
  background: var(--purple);
}

.flavour-card.paprika .tag {
  color: white;
  background: var(--paprika);
}

.flavour-card a {
  margin-top: 10px;
  color: white;
}

.flavour-card.purple a {
  background: var(--purple);
}

.flavour-card.paprika a {
  background: var(--paprika);
}

.nutrition-section {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 34px;
  align-items: center;
  background:
    radial-gradient(circle at 85% 40%, rgba(76, 138, 84, 0.18), transparent 28rem),
    var(--cream-light);
}

.nutrition-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.nutrition-card {
  padding: 34px;
  text-align: center;
  background: var(--paper);
}

.nutri-scale {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin: 28px 0 24px;
}

.nutri-scale span {
  padding: 18px 10px;
  color: white;
  font-size: 28px;
  font-weight: 900;
}

.nutri-scale span:nth-child(1) {
  background: #008b4f;
  border-radius: 18px 4px 4px 18px;
}

.nutri-scale span:nth-child(2) {
  background: #6dbb45;
}

.nutri-scale span:nth-child(3) {
  background: #ffd447;
  color: var(--ink);
}

.nutri-scale span:nth-child(4) {
  background: #f28c28;
}

.nutri-scale span:nth-child(5) {
  background: #d8332f;
  border-radius: 4px 18px 18px 4px;
}

.nutri-scale .active {
  transform: scale(1.18);
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(0, 139, 79, 0.28);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.price-card {
  padding: 32px;
  background: var(--paper);
}

.price-card.highlighted {
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  transform: translateY(-12px);
}

.price {
  margin: 20px 0;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.price-card button {
  width: 100%;
  margin-top: 14px;
  color: white;
  background: var(--ink);
}

.price-card.highlighted button {
  color: var(--purple-deep);
  background: var(--paper);
}

.csr-section {
  background:
    linear-gradient(rgba(32, 27, 24, 0.08), rgba(32, 27, 24, 0.08)),
    var(--cream);
}

.csr-card {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 72px);
  background: rgba(255, 250, 242, 0.9);
}

.digital-section {
  text-align: center;
}

.digital-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 72px);
  background:
    radial-gradient(circle at 20% 20%, rgba(139, 97, 180, 0.16), transparent 22rem),
    var(--paper);
}

.digital-logo {
  width: 160px;
  margin: 0 auto 22px;
}

.digital-actions {
  justify-content: center;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 28px 7%;
  color: var(--paper);
  background: var(--ink);
}

.footer-logo {
  width: 130px;
  background: var(--paper);
  border-radius: 16px;
  padding: 8px;
}

.footer p {
  margin: 0;
  opacity: 0.78;
}

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

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

@media (max-width: 1120px) {
  .hero,
  .impact-section,
  .nutrition-section {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-showcase {
    min-height: 500px;
  }
}

@media (max-width: 820px) {
  .site-header {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    width: 100%;
    padding-top: 10px;
  }

  .nav.open {
    display: flex;
  }

  .hero,
  .section {
    padding: 74px 6%;
  }

  .hero-showcase {
    min-height: 430px;
  }

  .feature-grid,
  .process-timeline,
  .flavour-grid,
  .pricing-grid,
  .metric-grid,
  .transformation-section {
    grid-template-columns: 1fr;
  }

  .transform-arrow {
    transform: rotate(90deg);
  }

  .price-card.highlighted {
    transform: none;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: 112px;
  }

  .inline-logo {
    width: 94px;
    margin-bottom: -7px;
  }

  .hero-showcase {
    min-height: 360px;
  }

  .pack-one,
  .pack-two {
    width: 95%;
  }

  .pack-two {
    right: 0;
  }

  .hero-actions,
  .digital-actions {
    flex-direction: column;
  }

  .btn,
  button,
  .flavour-card a {
    width: 100%;
  }
}
