:root {
  --image-hero: none;
  --sidebar-width: 177px;
  --paper: #f8f6ef;
  --paper-2: #f2f0e8;
  --cream: #eeece2;
  --warm: #f5eee6;
  --ink: #1c2119;
  --muted: #596052;
  --soft: #e7e1d4;
  --green: #153b1f;
  --green-2: #254e27;
  --olive: #7b873d;
  --gold: #a86a2f;
  --white: #fffefa;
  --shadow: 0 10px 22px rgba(34, 32, 24, 0.1);
  --sans: "Segoe UI", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.page {
  min-height: 100vh;
  background: var(--paper);
}

.app-frame {
  display: flex;
  align-items: stretch;
  max-width: 1440px;
  margin: 0 auto;
}

.sidebar {
  width: var(--sidebar-width);
  flex: 0 0 var(--sidebar-width);
  min-height: 1404px;
  background: #fbfaf6;
  border-right: 1px solid var(--soft);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 20;
}

.brand {
  height: 104px;
  padding: 32px 22px 0;
  border-bottom: 1px solid #efe9dd;
}

.brand-name {
  display: block;
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1;
  color: #20261d;
}

.brand-name span {
  color: #516235;
}

.brand p {
  margin: 10px 0 0;
  font-size: 10px;
  line-height: 1.25;
  color: #252b22;
}

.side-nav {
  padding: 0 8px;
  display: grid;
  gap: 2px;
}

.side-nav a {
  height: 37px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-radius: 7px;
  padding: 0 14px;
  color: #22291f;
  font-size: 12px;
}

.side-nav svg {
  width: 17px;
  height: 17px;
  color: #30372d;
  flex: 0 0 auto;
}

.side-nav a.active {
  background: #eef0e4;
  color: #162016;
  font-weight: 600;
}

.seasonal-card {
  width: 146px;
  min-height: 181px;
  margin: 16px auto 0;
  border: 1px solid #e8e1d5;
  border-left: 5px solid #b59b4a;
  border-radius: 6px;
  background: #fffdf7;
  padding: 17px 14px 14px;
  position: relative;
  overflow: hidden;
}

.small-label {
  margin: 0 0 11px;
  color: #303a2e;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.1;
}

.seasonal-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
}

.seasonal-card strong {
  display: block;
  margin-top: 5px;
  font-family: var(--serif);
  font-size: 11px;
}

.seasonal-card p:not(.small-label) {
  margin: 12px 0 17px;
  color: #343b30;
  font-size: 10.5px;
  line-height: 1.55;
}

.seasonal-card a,
.section-copy a,
.text-cards a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #40522a;
  font-size: 11px;
  font-weight: 500;
}

.seasonal-card a svg,
.section-copy a svg,
.text-cards a svg {
  width: 13px;
  height: 13px;
}

.seasonal-card img {
  position: absolute;
  right: 7px;
  bottom: 0;
  width: 43px;
  height: 28px;
}

.side-legal {
  margin-top: auto;
  padding: 0 22px 130px;
  color: #33382e;
  font-size: 10px;
  line-height: 1.25;
}

.side-legal p {
  margin: 0 0 4px;
}

.side-legal div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.side-legal span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #3a3f35;
}

.main {
  min-width: 0;
  flex: 1 1 auto;
  background: var(--paper);
}

.topbar {
  height: 74px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 25px 0 40px;
  background: #fbfaf6;
  border-bottom: 1px solid var(--soft);
}

.menu-toggle {
  display: none;
}

.search {
  width: 335px;
  height: 40px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 12px 0 14px;
  border: 1px solid #e1ddd4;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 6px 14px rgba(32, 28, 20, 0.1);
}

.search > svg {
  width: 16px;
  height: 16px;
  color: #30362d;
}

.search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #242b22;
  font-size: 12px;
}

.search button {
  width: 22px;
  height: 22px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
}

.search button svg {
  width: 17px;
  height: 17px;
}

.top-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #20271e;
  font-size: 11px;
  white-space: nowrap;
  position: relative;
}

.top-actions svg {
  width: 15px;
  height: 15px;
}

.top-actions .notice i {
  position: absolute;
  right: -9px;
  top: -6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #718336;
}

.profile {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.profile img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.profile span {
  color: #171f17;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
  white-space: nowrap;
}

.profile svg {
  width: 14px;
  height: 14px;
  transform: rotate(90deg);
}

.hero {
  height: 315px;
  position: relative;
  background-color: #f2eee5;
  background-image: linear-gradient(90deg, #f2eee5 0%, #f2eee5 39%, rgba(242, 238, 229, 0) 62%), var(--image-hero);
  background-position: left top, right top;
  background-repeat: no-repeat;
  background-size: 100% 100%, auto 100%;
  overflow: hidden;
}

.hero-copy {
  padding: 42px 0 0 58px;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 50px;
  font-weight: 400;
  line-height: 0.99;
  color: #20231e;
}

.leaf-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 14px;
  color: #788439;
}

.leaf-divider svg {
  width: 18px;
  height: 18px;
}

.leaf-divider span {
  width: 54px;
  height: 1px;
  background: #c3b783;
}

.hero p {
  margin: 0;
  color: #50584c;
  font-size: 15px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 5px;
  padding: 0 17px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.btn svg {
  width: 17px;
  height: 17px;
}

.btn.primary {
  min-width: 121px;
  background: var(--green);
  color: #fffdf5;
  box-shadow: 0 8px 14px rgba(21, 59, 31, 0.24);
}

.btn.secondary {
  min-width: 146px;
  border: 1px solid #74715e;
  background: rgba(255, 254, 250, 0.72);
  color: #22291f;
}

.btn.muted {
  height: 28px;
  margin-top: 12px;
  padding: 0 15px;
  background: #849149;
  color: #fffdf2;
  font-size: 11px;
}

.metrics {
  height: 162px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  background: #fffefa;
  border-bottom: 1px solid #f0ebdf;
}

.metrics article {
  min-width: 0;
  text-align: center;
  padding-top: 4px;
}

.metrics article + article {
  border-left: 1px solid #e8e3d8;
}

.metrics span {
  width: 37px;
  height: 37px;
  margin: 0 auto 11px;
  border-radius: 50%;
  background: #eef0e4;
  color: #607337;
  display: grid;
  place-items: center;
}

.metrics strong {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.metrics h2 {
  margin: 7px 0 5px;
  font-size: 11px;
  line-height: 1.15;
}

.metrics p {
  margin: 0;
  color: #6d6c60;
  font-size: 11px;
  line-height: 1.2;
}

.plant-day {
  height: 240px;
  display: grid;
  grid-template-columns: 350px 1fr;
  background: var(--green);
  color: #fff8e8;
}

.plant-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.plant-panel {
  position: relative;
  min-width: 0;
  padding: 27px 40px 0 10px;
  background: #153d20;
  overflow: hidden;
}

.plant-panel .small-label {
  color: #f3efd7;
  font-size: 10px;
  margin-bottom: 8px;
}

.plant-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 36px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}

.plant-panel em {
  display: block;
  margin: 2px 0 12px;
  font-family: var(--serif);
  font-size: 17px;
  color: #f0ebd7;
}

.plant-panel p:not(.small-label) {
  margin: 0;
  max-width: 380px;
  color: #f8f2df;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.38;
}

.plant-line {
  position: absolute;
  right: 58px;
  top: 24px;
  width: 130px;
  height: 198px;
  opacity: 0.35;
}

.slider-dots {
  position: absolute;
  right: 30px;
  top: 89px;
  display: grid;
  gap: 8px;
}

.slider-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
}

.slider-dots .active {
  background: #fff4d7;
}

.doshas {
  display: flex;
  gap: 22px;
  margin-top: 12px;
  color: #f4edd7;
  font-size: 12px;
  font-weight: 700;
}

.doshas span {
  position: relative;
  padding-left: 19px;
}

.doshas span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 12px;
  height: 12px;
  border: 1.4px solid currentColor;
  border-radius: 50%;
}

.library {
  height: 210px;
  display: grid;
  grid-template-columns: 166px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  background: var(--paper-2);
  padding: 31px 50px 21px 32px;
}

.section-copy .small-label {
  margin-bottom: 10px;
}

.section-copy h2 {
  margin: 0 0 11px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.04;
}

.section-copy p:not(.small-label) {
  margin: 0 0 17px;
  color: #343c32;
  font-size: 11px;
  line-height: 1.65;
}

.herb-row {
  min-width: 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 11px;
}

.herb-card {
  height: 160px;
  position: relative;
  padding: 7px 7px 9px;
  border: 1px solid #ece8dd;
  border-radius: 7px;
  background: #fffefa;
  box-shadow: 0 5px 16px rgba(35, 31, 22, 0.07);
  overflow: hidden;
}

.herb-card button {
  position: absolute;
  right: 9px;
  top: 9px;
  z-index: 2;
  width: 20px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 3px;
  background: rgba(255, 255, 250, 0.9);
  color: #263022;
  padding: 0;
}

.herb-card button svg {
  width: 15px;
  height: 15px;
}

.herb-card img {
  width: 100%;
  height: 89px;
  object-fit: cover;
  border-radius: 5px;
}

.herb-card h3 {
  margin: 8px 0 1px;
  font-size: 11px;
  line-height: 1;
}

.herb-card em {
  display: block;
  color: #55604e;
  font-size: 9.5px;
  line-height: 1.1;
}

.herb-card div {
  display: flex;
  gap: 5px;
  margin-top: 8px;
}

.herb-card span {
  border-radius: 4px;
  background: #eef3dd;
  color: #596b31;
  padding: 3px 6px;
  font-size: 8.5px;
  line-height: 1;
}

.carousel-next {
  position: absolute;
  right: -24px;
  top: 58px;
  width: 37px;
  height: 37px;
  border: 1px solid #e4ded1;
  border-radius: 50%;
  background: #fffefa;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  padding: 0;
}

.carousel-next svg {
  width: 18px;
  height: 18px;
}

.concerns {
  height: 126px;
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  background: #f4f3ee;
  overflow: hidden;
  padding: 5px 54px 13px 32px;
}

.concerns .section-copy {
  padding-top: 16px;
}

.concerns .section-copy .small-label {
  margin-bottom: 5px;
}

.concerns .section-copy h2 {
  margin-bottom: 4px;
  font-size: 21px;
  line-height: 0.98;
}

.concerns .section-copy p:not(.small-label) {
  margin-bottom: 4px;
  font-size: 9px;
  line-height: 1.2;
}

.concern-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 2px;
}

.concern-grid article {
  height: 108px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 1px solid #e7e2d8;
  border-radius: 7px;
  background: #fffefa;
  color: #203027;
  text-align: center;
}

.concern-grid svg {
  width: 30px;
  height: 30px;
  color: #3f5533;
  stroke-width: 1.35;
}

.concern-grid strong {
  font-size: 11px;
  line-height: 1.25;
}

.classical {
  height: 142px;
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 16px;
  background: #f5e7dc;
  overflow: hidden;
  padding: 11px 50px 10px 32px;
}

.classical .section-copy {
  padding-top: 8px;
}

.classical .section-copy .small-label {
  margin-bottom: 7px;
}

.classical .section-copy h2 {
  margin-bottom: 6px;
  font-size: 20px;
  line-height: 1.02;
}

.classical .section-copy p:not(.small-label) {
  margin-bottom: 5px;
  font-size: 9.4px;
  line-height: 1.28;
}

.text-cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.text-cards article {
  min-width: 0;
  height: 105px;
  display: flex;
  justify-content: space-between;
  gap: 6px;
  border-radius: 7px;
  border: 1px solid #efe5da;
  background: rgba(255, 254, 250, 0.82);
  padding: 16px 6px 7px 15px;
  overflow: hidden;
}

.text-cards h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
}

.text-cards p {
  margin: 0 0 14px;
  color: #424538;
  font-size: 9.5px;
  line-height: 1.45;
}

.text-cards img {
  align-self: end;
  flex: 0 0 auto;
  max-width: 34%;
  height: 88px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.text-next {
  position: absolute;
  right: -28px;
  top: 35px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #a7652d;
  color: #fff8e8;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 16px rgba(98, 54, 25, 0.24);
  padding: 0;
}

.text-next svg {
  width: 20px;
  height: 20px;
}

.commitment {
  height: 137px;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 228px;
  align-items: center;
  gap: 12px;
  background: #fffefa;
  padding: 19px 42px 17px 12px;
}

.commitment > img {
  width: 190px;
  height: 96px;
  object-fit: cover;
}

.commitment-copy .small-label {
  margin-bottom: 9px;
}

.commitment-copy h2 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.1;
  white-space: nowrap;
}

.commitment-copy p:not(.small-label) {
  margin: 0;
  max-width: 478px;
  color: #2f362d;
  font-size: 9.8px;
  line-height: 1.35;
}

.commitment-list {
  display: grid;
  gap: 8px;
  border-left: 1px solid #e1dcd1;
  padding-left: 24px;
}

.commitment-list article {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.commitment-list svg {
  width: 21px;
  height: 21px;
  color: #435936;
  flex: 0 0 auto;
}

.commitment-list strong {
  display: block;
  font-size: 10.5px;
  line-height: 1.1;
}

.commitment-list p {
  margin: 3px 0 0;
  color: #596052;
  font-size: 9.3px;
  line-height: 1.2;
}

.footer {
  min-height: 132px;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 205px 96px 116px 118px minmax(250px, 1fr);
  gap: 40px;
  background: #123519;
  color: #f6efd9;
  padding: 20px 60px 15px;
}

.footer .brand-name {
  color: #fff6dd;
  font-size: 23px;
}

.footer .brand-name span {
  color: #cfd9a3;
}

.footer-brand p {
  margin: 8px 0 9px;
  color: #e3dec7;
  font-size: 9.5px;
  line-height: 1.45;
}

.social {
  display: flex;
  gap: 11px;
  align-items: center;
  margin: 0 0 13px;
}

.social a {
  width: 14px;
  height: 14px;
  color: #fff8e8;
  display: grid;
  place-items: center;
  font-size: 13px;
  line-height: 1;
}

.footer small {
  color: #d8cfb4;
  font-size: 8.5px;
}

.footer-col,
.newsletter {
  padding-top: 4px;
}

.footer h3 {
  margin: 0 0 11px;
  color: #ddd8bb;
  font-size: 9px;
  font-weight: 700;
}

.footer-col a {
  display: block;
  margin-bottom: 7px;
  color: #f2edda;
  font-size: 9.5px;
}

.newsletter {
  min-width: 0;
  border: 1px solid rgba(218, 210, 180, 0.18);
  border-radius: 5px;
  padding: 16px 19px 13px;
}

.newsletter p {
  margin: 0 0 12px;
  color: #e5dec7;
  font-size: 9.5px;
  line-height: 1.45;
}

.newsletter div {
  display: flex;
  gap: 8px;
}

.newsletter input {
  min-width: 0;
  flex: 1;
  height: 27px;
  border: 1px solid rgba(218, 210, 180, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff8e8;
  padding: 0 11px;
  font-size: 10px;
}

.newsletter button {
  height: 27px;
  border: 0;
  border-radius: 4px;
  background: #7f8b47;
  color: #fff8e8;
  padding: 0 13px;
  font-size: 9.5px;
  font-weight: 700;
}

.newsletter nav {
  display: flex;
  justify-content: flex-end;
  gap: 23px;
  margin-top: 14px;
}

.newsletter nav a {
  color: #e3dec7;
  font-size: 8.5px;
}

@media (max-width: 980px) {
  .topbar {
    gap: 18px;
    padding-left: 40px;
    padding-right: 22px;
  }

  .top-actions {
    gap: 18px;
  }

  .top-actions span {
    display: none;
  }

  .search {
    width: min(335px, 42vw);
  }
}

@media (max-width: 900px) {
  .app-frame {
    display: block;
  }

  .sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    min-height: 100vh;
    transform: translateX(-100%);
    transition: transform 180ms ease;
    box-shadow: 18px 0 40px rgba(28, 33, 25, 0.22);
  }

  body.nav-open .sidebar {
    transform: translateX(0);
  }

  .side-legal {
    padding-bottom: 28px;
  }

  .topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    height: auto;
    min-height: 66px;
    gap: 12px;
    padding: 12px 16px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
    border: 1px solid #dfd8ca;
    border-radius: 6px;
    background: #fffefa;
    display: grid;
    place-items: center;
    padding: 8px;
    flex: 0 0 auto;
  }

  .menu-toggle span {
    width: 18px;
    height: 1px;
    background: #1c2119;
    display: block;
  }

  .search {
    width: auto;
    flex: 1;
    min-width: 0;
    box-shadow: none;
  }

  .top-actions {
    display: none;
  }

  .profile span,
  .profile svg {
    display: none;
  }

  .hero {
    min-height: 460px;
    height: auto;
    background-image: linear-gradient(180deg, rgba(242, 238, 229, 0.9) 0%, rgba(242, 238, 229, 0.98) 48%, rgba(242, 238, 229, 0.2) 100%), var(--image-hero);
    background-size: 100% 100%, auto 54%;
    background-position: left top, right bottom;
  }

  .hero-copy {
    padding: 48px 26px 230px;
  }

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

  .metrics {
    height: auto;
    grid-template-columns: repeat(2, 1fr);
    padding: 18px 0;
  }

  .metrics article {
    padding: 18px 10px;
  }

  .metrics article + article {
    border-left: 0;
  }

  .metrics article:nth-child(2n) {
    border-left: 1px solid #e8e3d8;
  }

  .plant-day {
    height: auto;
    grid-template-columns: 1fr;
  }

  .plant-photo {
    height: 260px;
  }

  .plant-panel {
    min-height: 270px;
    padding: 32px 26px;
  }

  .plant-panel p:not(.small-label) {
    max-width: 100%;
  }

  .plant-line {
    right: 22px;
    top: 34px;
  }

  .library,
  .concerns,
  .classical,
  .commitment {
    height: auto;
    overflow: visible;
    grid-template-columns: 1fr;
    padding-left: 22px;
    padding-right: 22px;
  }

  .library {
    gap: 20px;
  }

  .concerns .section-copy,
  .classical .section-copy {
    padding-top: 0;
  }

  .concern-grid article {
    height: 92px;
  }

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

  .carousel-next,
  .text-next {
    display: none;
  }

  .concern-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .text-cards {
    grid-template-columns: 1fr;
  }

  .text-cards article {
    height: 118px;
  }

  .commitment {
    gap: 18px;
  }

  .commitment-copy h2 {
    white-space: normal;
  }

  .commitment-list {
    border-left: 0;
    border-top: 1px solid #e1dcd1;
    padding: 18px 0 0;
  }

  .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    padding: 28px 24px;
  }

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

@media (max-width: 540px) {
  .topbar {
    flex-wrap: wrap;
  }

  .search {
    order: 3;
    flex-basis: 100%;
  }

  .profile {
    margin-left: auto;
  }

  .hero-copy {
    padding: 42px 20px 224px;
  }

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

  .hero p {
    font-size: 14px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

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

  .metrics article:nth-child(2n) {
    border-left: 0;
  }

  .metrics article + article {
    border-top: 1px solid #e8e3d8;
  }

  .herb-row,
  .concern-grid {
    grid-template-columns: 1fr;
  }

  .plant-panel h2 {
    font-size: 34px;
  }

  .plant-line,
  .slider-dots {
    opacity: 0.22;
  }

  .commitment > img {
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
  }

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

  .newsletter div,
  .newsletter nav {
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
