.hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: #f7f0e5;
}

.hero__image {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, #fbf8f1 0%, rgba(251,248,241,.97) 25%, rgba(251,248,241,.5) 50%, rgba(251,248,241,0) 72%), url("../../images/hero.jpg");
  background-position: center;
  background-size: cover;
}

.hero__inner {
  position: relative;
  display: flex;
  min-height: 610px;
  align-items: center;
}

.hero__content {
  width: 48%;
  padding: 45px 0 60px;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(46px, 5.2vw, 72px);
  letter-spacing: -.045em;
}

.hero__tagline {
  display: flex;
  margin: 18px 0 16px;
  align-items: center;
  gap: 10px;
  color: var(--green-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
}

.hero__tagline::before,
.hero__tagline::after {
  width: 28px;
  height: 1px;
  content: "";
  background: #79a06d;
}

.hero__copy {
  max-width: 510px;
  color: #353a34;
  font-size: 17px;
}

.section-heading {
  display: flex;
  margin-bottom: 38px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(25px, 3vw, 36px);
}

.section-heading > span {
  width: 70px;
  height: 1px;
  background: #9eb598;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  padding: 0 35px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.feature-card:last-child {
  border: 0;
}

.icon-orb {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0 auto 12px;
  place-items: center;
  background: radial-gradient(circle at 35% 30%, #f7faef, #e6eed8);
  border: 1px solid #aac28e;
  border-radius: 50%;
  font-size: 36px;
  transition: transform .25s;
}

.feature-card:hover .icon-orb {
  transform: translateY(-5px) rotate(-3deg);
}

.feature-card h3 {
  margin-bottom: 5px;
  font-size: 17px;
}

.feature-card p {
  color: #3f443e;
  font-size: 14px;
}

.icon-orb--small {
  width: 58px;
  height: 58px;
  margin: 0;
  flex: 0 0 auto;
  font-size: 25px;
}

.products-section {
  background: #fff;
}

.delivery {
  display: grid;
  margin-bottom: 78px;
  padding: 28px 35px;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 25px;
  background: linear-gradient(110deg, #f1f3e6, #faf9f2);
  border: 1px solid #ece9da;
  border-radius: var(--radius);
}

.delivery__intro,
.delivery__item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.delivery__item {
  padding-left: 22px;
  border-left: 1px solid #dcdccf;
}

.delivery__large-icon {
  display: grid;
  width: 100px;
  height: 100px;
  flex: 0 0 auto;
  place-items: center;
  background: #e4ecd2;
  border-radius: 50%;
  font-size: 47px;
}

.delivery h2 {
  font-size: 23px;
}

.delivery h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

.delivery p {
  color: #4d534c;
  font-size: 12px;
}

.mission {
  position: relative;
  min-height: 315px;
  overflow: hidden;
  background: #f5f0e5;
}

.mission__image {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(0,0,0,0) 28%, rgba(248,246,238,.65) 52%, #f8f6ee 72%), url("../../images/mission.jpg");
  background-position: center;
  background-size: cover;
}

.mission__inner {
  position: relative;
  display: flex;
  min-height: 315px;
  align-items: center;
  justify-content: flex-end;
}

.mission__content {
  width: 52%;
}

.mission h2 {
  margin-bottom: 10px;
  font-size: 32px;
}

.mission h2 span {
  color: var(--green-600);
}

.mission__steps {
  display: flex;
  margin-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.mission__steps span {
  padding: 9px 13px;
  background: rgba(235,240,220,.9);
  border: 1px solid #cfdbb9;
  border-radius: 50px;
  color: var(--green-900);
  font-size: 12px;
  font-weight: 700;
}

.delivery-note {
  margin-top: 23px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1100px) {
  .delivery {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .delivery__item:last-child {
    grid-column: 2 / 4;
    padding-top: 20px;
    border-top: 1px solid #dcdccf;
    border-left: 0;
  }
}

@media (max-width: 820px) {
  .hero,
  .hero__inner {
    min-height: 720px;
  }

  .hero__image {
    background-image: linear-gradient(180deg, #fbf8f1 0%, rgba(251,248,241,.94) 39%, rgba(251,248,241,.12) 68%), url("../../images/hero.jpg");
    background-position: 68% center;
  }

  .hero__inner {
    align-items: flex-start;
  }

  .hero__content {
    width: 100%;
    padding-top: 70px;
  }

  .hero h1 {
    max-width: 560px;
    font-size: clamp(42px, 9vw, 61px);
  }

  .hero__copy {
    max-width: 530px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 0;
  }

  .feature-card:nth-child(2) {
    border-right: 0;
  }

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

  .delivery__intro {
    grid-column: 1 / -1;
    padding-bottom: 20px;
    border-bottom: 1px solid #dcdccf;
  }

  .delivery__item {
    padding-left: 0;
    border-left: 0;
  }

  .delivery__item:last-child {
    grid-column: auto;
    padding-top: 0;
    border-top: 0;
  }

  .mission__image {
    background-image: linear-gradient(180deg, rgba(248,246,238,.1) 35%, #f8f6ee 72%), url("../../images/mission.jpg");
    background-position: left center;
  }

  .mission__inner {
    min-height: 570px;
    align-items: flex-end;
  }

  .mission__content {
    width: 100%;
    padding-bottom: 45px;
  }
}

@media (max-width: 560px) {
  .hero,
  .hero__inner {
    min-height: 690px;
  }

  .hero__content {
    padding-top: 50px;
  }

  .hero h1 {
    font-size: 41px;
  }

  .hero__tagline {
    font-size: 15px;
  }

  .hero__copy {
    font-size: 15px;
  }

  .section-heading {
    gap: 10px;
  }

  .section-heading > span {
    width: 25px;
  }

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

  .feature-card {
    padding: 8px 20px 26px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .feature-card:last-child {
    border-bottom: 0;
  }

  .delivery {
    margin-bottom: 55px;
    padding: 25px 20px;
    grid-template-columns: 1fr;
  }

  .delivery__intro {
    align-items: flex-start;
  }

  .delivery__large-icon {
    width: 75px;
    height: 75px;
    font-size: 35px;
  }

  .delivery__item,
  .delivery__item:last-child {
    grid-column: auto;
    padding-top: 14px;
    border-top: 1px solid #dcdccf;
  }

  .mission__steps {
    display: grid;
  }
}

.hero,
.hero__inner {
  min-height: 590px;
}

.hero__image {
  background-image: linear-gradient(90deg, #fbf8f1 0%, rgba(251,248,241,.94) 23%, rgba(251,248,241,.54) 43%, rgba(251,248,241,.08) 64%, rgba(251,248,241,0) 76%), url("../../images/hero.jpg");
  background-position: 58% center;
}

.hero__content {
  width: min(510px, 47%);
  padding: 42px 0 52px;
}

.hero h1 {
  max-width: 510px;
  font-size: clamp(48px, 4.5vw, 64px);
  letter-spacing: -.035em;
}

.hero__tagline {
  margin: 17px 0 15px;
  gap: 9px;
}

.hero__copy {
  max-width: 490px;
  font-size: 16px;
  line-height: 1.7;
}

.section-heading {
  margin-bottom: 42px;
}

.features-grid {
  gap: 0;
}

.feature-card {
  position: relative;
  padding: 3px 32px 4px;
  border-right: 0;
}

.feature-card:not(:last-child)::after {
  position: absolute;
  top: 18px;
  right: 0;
  width: 1px;
  height: 104px;
  content: "";
  background: var(--border);
}

.icon-orb {
  width: 72px;
  height: 72px;
  margin-bottom: 17px;
  background: radial-gradient(circle at 35% 28%, #fff, #e7efd8 72%);
  border-color: #a9c28b;
  box-shadow: 0 8px 18px rgba(53,91,45,.08);
  font-size: 31px;
}

.feature-card h3 {
  margin-bottom: 7px;
  font-size: 18px;
}

.feature-card p {
  max-width: 210px;
  margin-inline: auto;
  line-height: 1.55;
}

.icon-orb--small {
  width: 54px;
  height: 54px;
  font-size: 23px;
}

.delivery {
  margin-bottom: 72px;
  padding: 26px 30px;
  grid-template-columns: minmax(270px, 1.25fr) repeat(3, minmax(170px, 1fr));
  gap: 0;
}

.delivery__intro,
.delivery__item {
  min-width: 0;
  gap: 14px;
}

.delivery__intro {
  padding-right: 24px;
}

.delivery__item {
  padding: 4px 18px;
}

.delivery__large-icon {
  width: 86px;
  height: 86px;
  font-size: 40px;
}

.delivery h2 {
  font-size: 22px;
}

.mission,
.mission__inner {
  min-height: 350px;
}

.mission__image {
  background-image: linear-gradient(90deg, rgba(248,246,238,0) 30%, rgba(248,246,238,.22) 45%, rgba(248,246,238,.84) 67%, #f8f6ee 86%), url("../../images/mission.jpg");
  background-position: 42% center;
}

.mission__content {
  width: min(520px, 47%);
  padding: 38px 0;
}

@media (max-width: 1100px) {
  .delivery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 26px;
    row-gap: 22px;
  }

  .delivery__intro {
    padding-right: 18px;
  }

  .delivery__item {
    padding: 4px 18px;
  }

  .delivery__item:nth-child(3) {
    border-left: 0;
  }

  .delivery__item:nth-child(n+3) {
    padding-top: 22px;
    border-top: 1px solid #dcdccf;
  }
}

@media (max-width: 820px) {
  .hero,
  .hero__inner {
    min-height: 690px;
  }

  .hero__image {
    background-image: linear-gradient(180deg, #fbf8f1 0%, rgba(251,248,241,.91) 36%, rgba(251,248,241,.2) 65%, rgba(251,248,241,0) 78%), url("../../images/hero.jpg");
    background-position: 66% center;
  }

  .hero__content {
    width: min(540px, 100%);
    padding-top: 62px;
  }

  .hero h1 {
    max-width: 520px;
    font-size: clamp(42px, 8vw, 58px);
  }

  .feature-card:nth-child(2)::after {
    display: none;
  }

  .feature-card:nth-child(n+3) {
    padding-top: 28px;
    border-top: 1px solid var(--border);
  }

  .feature-card:nth-child(3)::after {
    top: 45px;
  }

  .delivery__intro,
  .delivery__item {
    padding-left: 0;
    border-left: 0;
  }

  .delivery__intro {
    padding-right: 18px;
  }

  .delivery__item:nth-child(even) {
    padding-left: 20px;
    border-left: 1px solid #dcdccf;
  }

  .mission__image {
    background-image: linear-gradient(180deg, rgba(248,246,238,.04) 30%, rgba(248,246,238,.52) 57%, #f8f6ee 78%), url("../../images/mission.jpg");
    background-position: 35% center;
  }

  .mission__inner {
    min-height: 540px;
  }

  .mission__content {
    width: 100%;
    padding: 230px 0 42px;
  }
}

@media (max-width: 560px) {
  .hero,
  .hero__inner {
    min-height: 650px;
  }

  .hero__content {
    padding-top: 45px;
  }

  .features-grid {
    gap: 0;
  }

  .feature-card {
    padding: 8px 20px 26px;
  }

  .feature-card::after {
    display: none;
  }

  .feature-card:nth-child(n+3) {
    padding-top: 8px;
    border-top: 0;
  }

  .delivery {
    row-gap: 0;
  }

  .delivery__item,
  .delivery__item:nth-child(even),
  .delivery__item:last-child {
    padding: 16px 0 0;
    margin-top: 16px;
    border-top: 1px solid #dcdccf;
    border-left: 0;
  }
}

@media (max-width: 430px) {
  .hero,
  .hero__inner {
    min-height: 630px;
  }

  .hero__content {
    padding-top: 40px;
  }

  .hero h1 {
    font-size: clamp(37px, 10.5vw, 42px);
  }

  .hero__tagline {
    gap: 6px;
    font-size: 14px;
  }

  .hero__tagline::before,
  .hero__tagline::after {
    width: 18px;
  }

  .section-heading h2 {
    font-size: 25px;
  }
}

@media (max-width: 390px) {
  .hero,
  .hero__inner {
    min-height: 620px;
  }

  .hero__copy {
    font-size: 14px;
  }
}

@media (max-width: 375px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero__tagline span {
    display: none;
  }

  .mission__content {
    padding-bottom: 34px;
  }
}

@media (max-width: 320px) {
  .hero,
  .hero__inner {
    min-height: 610px;
  }

  .hero h1 {
    font-size: 33px;
  }

  .section-heading > span {
    display: none;
  }

  .delivery__large-icon {
    width: 64px;
    height: 64px;
    font-size: 30px;
  }
}

.hero {
  min-height: 650px;
  border-bottom: 1px solid var(--border-soft);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 100px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.16));
  pointer-events: none;
}

.hero__inner {
  min-height: 650px;
}

.hero__content {
  z-index: 1;
  width: min(540px, 48%);
  padding-block: 60px 90px;
}

.hero h1 {
  font-size: clamp(50px, 4.8vw, 68px);
  line-height: 1.05;
}

.hero__copy {
  color: #465047;
  line-height: 1.75;
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.feature-card {
  padding-inline: clamp(22px, 3vw, 38px);
}

.icon-orb {
  border-color: rgba(82,128,60,.25);
  box-shadow: inset 0 1px 0 #fff, 0 14px 32px rgba(37,78,34,.08);
}

.delivery {
  border-color: var(--border-soft);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 820px) {
  .hero,
  .hero__inner {
    min-height: 760px;
  }

  .hero__content {
    width: 100%;
    padding: 62px 0 140px;
  }
}

@media (max-width: 560px) {
  .hero,
  .hero__inner {
    min-height: 790px;
  }

  .hero__inner {
    flex-direction: column;
  }

  .hero__content {
    display: flex;
    width: 100%;
    padding: 45px 0 32px;
    flex-direction: column;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 46px);
  }

  .hero__copy {
    line-height: 1.65;
  }
}

.hero {
  min-height: clamp(620px, 72vh, 760px);
  isolation: isolate;
  color: #fff;
  background: #0a2d16;
  border-bottom: 0;
}

.hero::after {
  z-index: -1;
  inset: 0;
  height: auto;
  background: linear-gradient(90deg, rgba(3,25,11,.88) 0%, rgba(5,35,16,.76) 38%, rgba(5,35,16,.34) 65%, rgba(3,22,10,.18) 100%);
}

.hero__image {
  z-index: -2;
  background-image: url("../../images/hero.jpg");
  background-position: center 48%;
  background-size: cover;
  transform: scale(1.01);
}

.hero__inner {
  min-height: clamp(620px, 72vh, 760px);
  align-items: center;
}

.hero__content {
  z-index: 1;
  width: min(650px, 58%);
  padding: 76px 0;
  text-shadow: 0 2px 24px rgba(0,0,0,.18);
}

.hero h1 {
  max-width: 650px;
  color: #fff;
  font-size: clamp(52px, 5.2vw, 76px);
  line-height: 1.02;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.hero__accent {
  position: relative;
  display: inline-block;
  color: #f1cf7a;
  text-shadow: 0 4px 28px rgba(241,207,122,.18);
}

.hero__accent::after {
  position: absolute;
  right: 4%;
  bottom: .03em;
  left: 4%;
  height: .08em;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(241,207,122,.72), transparent);
  border-radius: 999px;
}

.hero__tagline {
  margin: 22px 0 14px;
  color: #f2f6ed;
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero__tagline::before,
.hero__tagline::after {
  width: 32px;
  background: rgba(241,207,122,.72);
}

.hero__copy {
  max-width: 570px;
  color: rgba(255,255,255,.82);
  font-size: 17px;
  line-height: 1.75;
  text-shadow: 0 2px 18px rgba(0,0,0,.28);
}

.hero__actions {
  display: flex;
  margin-top: 30px;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-cta {
  display: inline-flex;
  height: 54px;
  padding: 0 25px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  text-shadow: none;
  transition: transform .3s ease, box-shadow .3s ease, filter .3s ease, border-color .3s ease;
}

.hero-cta svg {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.hero-cta--shop {
  min-width: 158px;
  background: linear-gradient(135deg, #2f8f46, #0b5a24 58%, #064019);
  box-shadow: 0 14px 32px rgba(4,44,17,.34), inset 0 1px 0 rgba(255,255,255,.18);
}

.hero-cta--shop svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-cta--shop:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 42px rgba(3,41,15,.44), 0 0 0 5px rgba(255,255,255,.07);
  filter: brightness(1.08);
}

.hero-cta--whatsapp {
  position: static;
  min-width: 212px;
  min-height: 0;
  padding: 0 25px;
  background: linear-gradient(135deg, #25d366, #128c4a);
  border-color: rgba(255,255,255,.24);
  box-shadow: 0 14px 32px rgba(9,112,55,.3), inset 0 1px 0 rgba(255,255,255,.2);
  animation: none;
}

.hero-cta--whatsapp svg {
  fill: currentColor;
}

.hero-cta--whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 42px rgba(18,140,74,.42), 0 0 0 5px rgba(37,211,102,.1);
  filter: brightness(1.06);
}

.hero-cta:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.hero__content.is-visible h1,
.hero__content.is-visible .hero__tagline,
.hero__content.is-visible .hero__copy,
.hero__content.is-visible .hero__actions {
  animation: hero-fade-up .7s both;
}

.hero__content.is-visible h1 {
  animation-delay: .08s;
}

.hero__content.is-visible .hero__tagline {
  animation-delay: .16s;
}

.hero__content.is-visible .hero__copy {
  animation-delay: .24s;
}

.hero__content.is-visible .hero__actions {
  animation-delay: .32s;
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 820px) {
  .hero,
  .hero__inner {
    min-height: 680px;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(3,25,11,.88), rgba(5,35,16,.68) 58%, rgba(5,35,16,.3));
  }

  .hero__image {
    background-position: 62% center;
  }

  .hero__content {
    width: min(610px, 82%);
    padding: 64px 0;
  }

  .hero h1 {
    font-size: clamp(46px, 8vw, 64px);
  }
}

@media (max-width: 560px) {
  .hero,
  .hero__inner {
    min-height: 690px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(3,25,11,.82) 0%, rgba(4,28,13,.72) 54%, rgba(3,22,10,.86) 100%);
  }

  .hero__image {
    background-position: 67% center;
  }

  .hero__inner {
    align-items: center;
    flex-direction: row;
  }

  .hero__content {
    display: block;
    width: 100%;
    padding: 48px 0;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 50px);
    line-height: 1.06;
  }

  .hero__tagline {
    margin: 18px 0 13px;
    font-size: 12px;
    letter-spacing: .11em;
  }

  .hero__tagline::before,
  .hero__tagline::after {
    width: 20px;
  }

  .hero__copy {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero__actions {
    display: grid;
    margin-top: 25px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-cta,
  .hero-cta--whatsapp {
    width: 100%;
    min-width: 0;
    height: 54px;
    margin: 0;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 37px;
  }

  .hero__tagline {
    letter-spacing: .08em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__content.is-visible h1,
  .hero__content.is-visible .hero__tagline,
  .hero__content.is-visible .hero__copy,
  .hero__content.is-visible .hero__actions {
    animation: none;
  }
}

.hero,
.hero__inner {
  min-height: clamp(560px, 72svh, 760px);
}

.hero__content {
  width: min(650px, 58%);
  padding-block: clamp(56px, 7vw, 86px);
}

.hero h1 {
  font-size: clamp(2.45rem, 5.2vw, 4.75rem);
  line-height: 1.04;
}

.hero__tagline {
  font-size: clamp(.78rem, 1.2vw, .95rem);
}

.hero__copy {
  font-size: clamp(.95rem, 1.4vw, 1.06rem);
}

.hero__actions {
  gap: clamp(10px, 1.5vw, 14px);
}

.hero-cta {
  min-height: 48px;
}

.features-grid {
  gap: 0;
}

.feature-card h3 {
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
}

.feature-card p,
.delivery p {
  font-size: clamp(.82rem, 1.3vw, .95rem);
}

.delivery {
  width: min(1180px, calc(100% - (var(--page-gutter) * 2)));
  margin-inline: auto;
  margin-bottom: clamp(48px, 6vw, 78px);
}

@media (min-width: 1400px) {
  .delivery {
    max-width: 1240px;
  }

  .hero__content {
    width: min(700px, 54%);
  }
}

@media (max-width: 1199.98px) {
  .delivery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .delivery__intro {
    grid-column: 1 / -1;
  }

  .delivery__item,
  .delivery__item:last-child {
    grid-column: auto;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid #dcdccf;
    padding-top: 18px;
  }
}

@media (max-width: 991.98px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 28px;
  }

  .feature-card {
    border-right: 0;
  }
}

@media (max-width: 767.98px) {
  .hero,
  .hero__inner {
    min-height: min(680px, calc(100svh - 72px));
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(3,25,11,.86) 0%, rgba(4,28,13,.72) 52%, rgba(3,22,10,.9) 100%);
  }

  .hero__image {
    background-position: 66% center;
  }

  .hero__inner {
    align-items: center;
  }

  .hero__content {
    width: 100%;
    padding-block: 42px;
    text-align: center;
  }

  .hero h1 {
    margin-inline: auto;
    font-size: clamp(2.25rem, 10vw, 3.05rem);
  }

  .hero__tagline {
    justify-content: center;
    letter-spacing: .09em;
  }

  .hero__copy {
    max-width: 34rem;
    margin-inline: auto;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-cta,
  .hero-cta--whatsapp {
    width: 100%;
  }

  .delivery {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .delivery__intro,
  .delivery__item {
    align-items: flex-start;
  }

  .delivery__large-icon {
    width: 76px;
    height: 76px;
    font-size: 34px;
  }

  .mission,
  .mission__inner {
    min-height: auto;
  }

  .mission__image {
    background-image: linear-gradient(180deg, rgba(248,246,238,.9), rgba(248,246,238,.96)), url("../../images/mission.jpg");
  }

  .mission__inner {
    justify-content: center;
    padding-block: 56px;
  }

  .mission__content {
    width: 100%;
    text-align: center;
  }

  .mission__steps {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .section-heading {
    gap: 12px;
    margin-bottom: 32px;
  }

  .section-heading > span {
    width: min(44px, 14vw);
  }

  .section-heading h2 {
    font-size: clamp(1.45rem, 7vw, 1.8rem);
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-card {
    padding-inline: 12px;
  }
}

@media (max-width: 479.98px) {
  .hero h1 {
    font-size: clamp(2.05rem, 10.4vw, 2.55rem);
  }

  .hero__tagline::before,
  .hero__tagline::after {
    width: 18px;
  }
}

@media (max-width: 390px) {
  .hero,
  .hero__inner {
    min-height: min(640px, calc(100svh - 72px));
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero__copy {
    font-size: .93rem;
  }
}

@media (max-width: 375px) {
  .hero h1 {
    font-size: 2.15rem;
  }

  .hero__tagline span {
    display: inline;
  }

  .hero__tagline {
    font-size: .72rem;
  }
}

@media (max-width: 320px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero__tagline {
    letter-spacing: .05em;
  }
}

.icon-orb .lucide-icon,
.delivery__large-icon .lucide-icon {
  width: 22px;
  height: 22px;
}

.delivery__large-icon .lucide-icon {
  width: 24px;
  height: 24px;
}

.mission__steps span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.mission__steps .lucide-icon {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
}

/* WhatsApp brand icon inside CTAs */
.hero-cta--whatsapp .brand-icon--whatsapp,
.detail-whatsapp .brand-icon--whatsapp,
#checkout-whatsapp .brand-icon--whatsapp,
.contact-form .brand-icon--whatsapp {
  fill: currentColor;
  stroke: none;
}

.traditional-process {
  background: linear-gradient(180deg, #fbfcf8 0%, #f5f7ef 100%);
  border-block: 1px solid var(--border-soft);
}

.traditional-process__intro {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.traditional-process__intro h2 {
  margin: 8px 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.traditional-process__intro p {
  color: #4c554b;
  font-size: clamp(.98rem, 1.5vw, 1.08rem);
  line-height: 1.75;
}

.traditional-process__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, .82fr);
  gap: clamp(18px, 2.4vw, 28px);
  align-items: stretch;
}

.process-story {
  display: grid;
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(16,48,24,.09);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.process-story:hover {
  border-color: rgba(23,111,49,.22);
  transform: translateY(-5px);
  box-shadow: 0 26px 64px rgba(16,48,24,.14);
}

.process-story--wide {
  grid-row: span 2;
}

.process-story__image {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #eef2e7;
}

.process-story--wide .process-story__image {
  aspect-ratio: 16 / 11;
}

.process-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .55s ease;
}

.process-story:hover .process-story__image img {
  transform: scale(1.045);
}

.process-story__content {
  padding: clamp(20px, 2.5vw, 30px);
}

.process-story__content span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--green-700);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.process-story__content h3 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.process-story__content p {
  color: #4d554b;
  font-size: clamp(.92rem, 1.3vw, 1rem);
  line-height: 1.7;
}

.process-story--text {
  align-content: center;
  background: linear-gradient(145deg, #0b421d 0%, #176f31 100%);
  border-color: rgba(255,255,255,.08);
}

.process-story--text .process-story__content span,
.process-story--text .process-story__content h3,
.process-story--text .process-story__content p {
  color: var(--white);
}

.process-story--text .process-story__content p {
  color: rgba(255,255,255,.82);
}

@media (max-width: 991.98px) {
  .traditional-process__grid {
    grid-template-columns: 1fr;
  }

  .process-story--wide {
    grid-row: auto;
  }
}

@media (max-width: 575.98px) {
  .traditional-process__intro {
    margin-bottom: 28px;
    text-align: left;
  }

  .process-story,
  .process-story__image {
    border-radius: 18px;
  }

  .process-story__content {
    padding: 20px;
  }
}
