:root {
  --ink: #1d211e;
  --forest: #18382a;
  --forest-deep: #10271d;
  --cream: #f2ebdd;
  --cream-light: #faf7f0;
  --copper: #a85e35;
  --sage: #a8b5a2;
  --line: rgba(29, 33, 30, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream-light);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 7px 24px;
  background: var(--forest);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.announcement a {
  margin-left: 18px;
  color: #e6c2a9;
}

.announcementDot {
  color: #cf976f;
  font-size: 6px;
}

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(250, 247, 240, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.headerMain {
  min-height: 82px;
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.siteLogo {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.search {
  height: 44px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  overflow: hidden;
}

.search input {
  flex: 1;
  min-width: 0;
  height: 100%;
  padding: 0 18px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.search input::placeholder {
  color: #858983;
}

.search button {
  height: 34px;
  margin-right: 5px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.headerActions {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  font-weight: 700;
}

.cartLink {
  display: flex;
  align-items: center;
  gap: 7px;
}

.cartLink span {
  width: 21px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--copper);
  color: #fff;
  font-size: 10px;
}

.desktopNav {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 46px);
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
}

.desktopNav a {
  position: relative;
}

.desktopNav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transition: right 180ms ease;
}

.desktopNav a:hover::after {
  right: 0;
}

.navBulk {
  color: var(--copper);
}

.mobileMenu {
  display: none;
}

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: stretch;
  padding-top: 32px;
  padding-bottom: 32px;
}

.heroCopy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 62px 68px 62px 14px;
  background: var(--cream);
  border-radius: 28px 0 0 28px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero h1,
.section h2,
.featureCopy h2,
.why h2,
.helpBanner h2,
.bulk h2,
.newsletter h2,
.inspiration h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 600px;
  font-size: clamp(54px, 6vw, 84px);
  line-height: 0.96;
}

.heroIntro {
  max-width: 490px;
  margin: 30px 0 0;
  color: #555c57;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
}

.heroCtas {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.buttonDark {
  background: var(--ink);
  color: #fff;
}

.buttonCream {
  background: var(--cream);
  color: var(--forest);
}

.textLink {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 800;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

.textLink span {
  transition: transform 160ms ease;
}

.textLink:hover span {
  transform: translateX(3px);
}

.heroProof {
  display: flex;
  gap: 25px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #6a6f6b;
  font-size: 11px;
}

.heroProof b {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
}

.heroVisual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: 0 28px 28px 0;
  background: #ddd8ce;
}

.heroVisual > img {
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}

.heroVisual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(transparent, rgba(18, 26, 22, 0.35));
  pointer-events: none;
}

.heroCard {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 2;
  width: min(300px, calc(100% - 60px));
  padding: 22px;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(12px);
}

.heroCard span,
.heroCard strong,
.heroCard a {
  display: block;
}

.heroCard span {
  color: var(--copper);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.heroCard strong {
  margin: 8px 0 16px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.heroCard a {
  font-size: 11px;
  font-weight: 800;
}

.heroStamp {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 92px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 50%;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.25);
}

.heroStamp span {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .15em;
}

.heroStamp b {
  margin: 2px 0;
  font-family: var(--serif);
  font-size: 24px;
}

.serviceStrip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

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

.serviceGrid span {
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 28px;
  border-right: 1px solid var(--line);
}

.serviceGrid span:first-child {
  border-left: 1px solid var(--line);
}

.serviceGrid b {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
}

.serviceGrid small {
  margin-top: 6px;
  color: #777c77;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section {
  padding-top: 112px;
  padding-bottom: 112px;
}

.sectionHeading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}

.sectionHeading .eyebrow {
  margin-bottom: 12px;
}

.sectionHeading h2 {
  font-size: clamp(42px, 5vw, 64px);
}

.categoryGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 250px 250px;
  gap: 14px;
}

.categoryCard {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #ddd;
}

.categoryCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(.2,.8,.2,1);
}

.categoryCard:hover img {
  transform: scale(1.035);
}

.category1,
.category5 {
  grid-column: span 2;
}

.categoryOverlay {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  flex-direction: column;
  padding: 42px 22px 20px;
  color: #fff;
  background: linear-gradient(transparent, rgba(14,22,17,.72));
}

.categoryOverlay small {
  margin-bottom: 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.categoryOverlay strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.categoryOverlay i {
  margin-top: 11px;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  opacity: .84;
}

.inspiration {
  padding: 100px 0;
  background: var(--forest-deep);
  color: #fff;
}

.lightHeading {
  align-items: end;
}

.lightHeading p:last-child {
  max-width: 350px;
  color: #aab7af;
  font-family: var(--serif);
  line-height: 1.55;
}

.inspirationGrid {
  margin-top: 42px;
  border-top: 1px solid rgba(255,255,255,.2);
}

.inspirationGrid a {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 150px;
  border-bottom: 1px solid rgba(255,255,255,.2);
  transition: padding 180ms ease, background 180ms ease;
}

.inspirationGrid a:hover {
  padding-inline: 20px;
  background: rgba(255,255,255,.04);
}

.inspirationGrid > a > span {
  color: #d5a07c;
  font-family: var(--serif);
  font-size: 28px;
}

.inspirationGrid small {
  color: #aab7af;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.inspirationGrid h3 {
  margin: 7px 0;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
}

.inspirationGrid p {
  margin: 0;
  color: #aab7af;
  font-size: 13px;
}

.inspirationGrid b {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  font-size: 15px;
}

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

.productImage {
  position: relative;
  aspect-ratio: .84;
  overflow: hidden;
  background: #e6e1d8;
}

.productImage img {
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.productCard:hover .productImage img {
  transform: scale(1.035);
}

.productBadge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  background: rgba(250,247,240,.9);
  color: var(--forest);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.quickView {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 13px 16px;
  background: var(--forest);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: all 180ms ease;
}

.productCard:hover .quickView {
  opacity: 1;
  transform: translateY(0);
}

.productMeta {
  padding: 16px 2px 0;
}

.productMeta small {
  color: #7d827d;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.productMeta h3 {
  min-height: 48px;
  margin: 7px 0 10px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}

.productMeta p {
  margin: 0;
  font-size: 14px;
}

.productMeta del {
  margin-right: 7px;
  color: #949894;
}

.productMeta strong {
  color: var(--copper);
}

.featureStory {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: 690px;
  margin-bottom: 112px;
  background: var(--cream);
}

.featureImage {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.featureImage img {
  height: 100%;
  object-fit: cover;
}

.featureImage span {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 11px;
  background: var(--forest);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .13em;
}

.featureCopy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px clamp(38px, 6vw, 86px);
}

.featureCopy h2 {
  font-size: clamp(44px, 5vw, 66px);
  line-height: 1.02;
}

.featureCopy > p:not(.eyebrow) {
  margin: 25px 0 18px;
  color: #5d625d;
  font-family: var(--serif);
  line-height: 1.65;
}

.featureCopy ul {
  display: grid;
  gap: 10px;
  margin: 0 0 25px;
  padding: 0;
  list-style: none;
  color: #4f554f;
  font-size: 12px;
}

.featureCopy li::before {
  content: "—";
  margin-right: 9px;
  color: var(--copper);
}

.featurePrice {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 25px;
}

.featurePrice span {
  color: #6f746f;
  font-size: 11px;
}

.featurePrice b {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
}

.featureCopy .button {
  width: max-content;
}

.why {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
}

.whyIntro h2 {
  font-size: clamp(52px, 6vw, 74px);
  line-height: .98;
}

.whyIntro > p:not(.eyebrow) {
  max-width: 430px;
  margin: 26px 0;
  color: #666c67;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.65;
}

.benefitList {
  border-top: 1px solid var(--line);
}

.benefit {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.benefit > span {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 20px;
}

.benefit h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.benefit p {
  max-width: 520px;
  margin: 0;
  color: #6e746f;
  font-size: 13px;
  line-height: 1.6;
}

.helpBanner {
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 112px;
  padding: 68px;
  background: var(--forest);
  color: #fff;
  border-radius: 6px;
}

.helpBanner .eyebrow {
  color: #d6a27f;
}

.helpBanner h2 {
  font-size: clamp(44px, 5vw, 66px);
  line-height: 1;
}

.helpAction p {
  margin: 0 0 25px;
  color: #b7c3bb;
  font-family: var(--serif);
  line-height: 1.65;
}

.bulk {
  min-height: 470px;
  display: grid;
  grid-template-columns: .8fr 1fr 160px;
  margin-bottom: 112px;
  background: #e6dccd;
  overflow: hidden;
}

.bulkImage img {
  height: 100%;
  object-fit: cover;
}

.bulkCopy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 55px 70px;
}

.bulkCopy h2 {
  font-size: clamp(48px, 5vw, 68px);
}

.bulkCopy p:not(.eyebrow) {
  margin: 20px 0 28px;
  color: #5f655f;
  font-family: var(--serif);
  line-height: 1.6;
}

.bulkCopy .button {
  width: max-content;
}

.bulkNumber {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 35px 20px;
  border-left: 1px solid rgba(29,33,30,.14);
}

.bulkNumber span {
  writing-mode: vertical-rl;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

.bulkNumber b {
  font-family: var(--serif);
  font-size: 78px;
  font-weight: 400;
  color: rgba(29,33,30,.18);
}

.newsletter {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  padding-top: 70px;
  padding-bottom: 70px;
  border-top: 1px solid var(--line);
}

.newsletter h2 {
  font-size: 42px;
}

.newsletter .eyebrow {
  margin-bottom: 9px;
}

.newsletter form {
  width: min(460px, 100%);
  display: flex;
  border-bottom: 1px solid var(--ink);
}

.newsletter input {
  flex: 1;
  min-width: 0;
  padding: 15px 0;
  border: 0;
  outline: 0;
  background: transparent;
}

.newsletter button {
  border: 0;
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

footer {
  padding: 72px 0 24px;
  background: var(--forest-deep);
  color: #fff;
}

.footerGrid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 60px;
}

.footerLogo {
  width: 112px;
  height: 112px;
}

.footerBrand p {
  max-width: 330px;
  margin: 24px 0 0;
  color: #9eaca3;
  font-family: var(--serif);
  line-height: 1.6;
}

.footerGrid h3 {
  margin: 0 0 19px;
  color: #d5a07c;
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.footerGrid > div:not(.footerBrand) {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #b2beb6;
  font-size: 12px;
}

.footerBottom {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.15);
  color: #7e8f84;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.floatingWhatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 7px 7px 16px;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  box-shadow: 0 12px 30px rgba(16,39,29,.25);
  font-size: 11px;
  font-weight: 800;
}

.floatingWhatsapp b {
  width: 36px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #d6a27f;
  color: var(--forest-deep);
  font-size: 10px;
}

.srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .headerMain {
    grid-template-columns: auto 1fr auto;
    gap: 18px;
  }

  .search {
    display: none;
  }

  .mobileMenu {
    display: block;
    position: relative;
  }

  .mobileMenu summary {
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
    list-style: none;
  }

  .mobileMenu nav {
    position: absolute;
    top: 34px;
    left: 0;
    width: 230px;
    display: grid;
    gap: 14px;
    padding: 20px;
    background: var(--cream-light);
    border: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(29,33,30,.12);
    font-size: 12px;
  }

  .desktopNav {
    display: none;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-top: 18px;
  }

  .heroCopy {
    padding: 70px 54px;
    border-radius: 22px 22px 0 0;
  }

  .heroVisual {
    min-height: 650px;
    border-radius: 0 0 22px 22px;
  }

  .categoryGrid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 260px);
  }

  .category1,
  .category5 {
    grid-column: span 1;
  }

  .productGrid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 45px;
  }

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

  .featureImage {
    min-height: 620px;
  }

  .why {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .bulk {
    grid-template-columns: .9fr 1fr;
  }

  .bulkNumber {
    display: none;
  }

  .bulkCopy {
    padding: 50px 42px;
  }

  .footerGrid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 28px, 560px);
  }

  .announcement {
    min-height: 38px;
    justify-content: space-between;
    padding-inline: 14px;
    font-size: 8px;
  }

  .announcement span:nth-of-type(2),
  .announcement span:nth-of-type(3),
  .announcement a {
    display: none;
  }

  .headerMain {
    min-height: 70px;
  }

  .brand {
    justify-self: center;
  }

  .siteLogo {
    width: 58px;
    height: 58px;
  }

  .headerActions > a:first-child {
    display: none;
  }

  .heroCopy {
    padding: 58px 27px 45px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .heroIntro {
    font-size: 16px;
  }

  .heroCtas {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .heroVisual {
    min-height: 490px;
  }

  .heroStamp {
    top: 18px;
    right: 18px;
  }

  .heroCard {
    right: 18px;
    bottom: 18px;
    left: 18px;
    width: auto;
  }

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

  .serviceGrid span {
    min-height: 80px;
    padding: 0 15px;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .sectionHeading {
    align-items: flex-start;
    flex-direction: column;
  }

  .sectionHeading h2 {
    font-size: 46px;
  }

  .categoryGrid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 220px);
    gap: 8px;
  }

  .categoryOverlay {
    padding: 38px 14px 15px;
  }

  .categoryOverlay strong {
    font-size: 19px;
  }

  .categoryOverlay small,
  .categoryOverlay i {
    font-size: 7px;
  }

  .inspiration {
    padding: 78px 0;
  }

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

  .inspirationGrid a {
    grid-template-columns: 42px 1fr auto;
    gap: 14px;
    min-height: 145px;
  }

  .inspirationGrid h3 {
    font-size: 24px;
  }

  .inspirationGrid p {
    display: none;
  }

  .productGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    row-gap: 38px;
  }

  .productMeta h3 {
    min-height: 56px;
    font-size: 15px;
  }

  .quickView {
    display: none;
  }

  .featureStory {
    width: 100%;
    margin-bottom: 78px;
  }

  .featureImage {
    min-height: 480px;
  }

  .featureCopy {
    padding: 58px 25px;
  }

  .featureCopy h2,
  .helpBanner h2,
  .bulkCopy h2 {
    font-size: 45px;
  }

  .whyIntro h2 {
    font-size: 56px;
  }

  .benefit {
    grid-template-columns: 44px 1fr;
  }

  .helpBanner {
    width: 100%;
    margin-bottom: 78px;
    padding: 58px 25px;
    border-radius: 0;
  }

  .bulk {
    width: 100%;
    grid-template-columns: 1fr;
    margin-bottom: 78px;
  }

  .bulkImage {
    height: 420px;
  }

  .bulkCopy {
    padding: 54px 25px;
  }

  .newsletter {
    align-items: flex-start;
    flex-direction: column;
  }

  .newsletter h2 {
    font-size: 34px;
  }

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

  .footerBrand {
    grid-column: 1 / -1;
    margin-bottom: 20px;
  }

  .footerBottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .floatingWhatsapp span {
    display: none;
  }

  .floatingWhatsapp {
    padding: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}

/* WordPress integration */
body.hs-modern-homepage {
  min-width: 320px;
  overflow-x: hidden;
}

body.hs-modern-homepage.admin-bar .siteHeader {
  top: 32px;
}

body.hs-modern-homepage #wpadminbar img {
  width: auto;
}

body.hs-modern-homepage .price {
  color: inherit;
}

body.hs-modern-homepage .productMeta .price del {
  margin-right: 8px;
  color: #8f918d;
  font-size: 14px;
}

body.hs-modern-homepage .productMeta .price ins {
  color: var(--ink);
  text-decoration: none;
}

body.hs-modern-homepage .productMeta .price bdi {
  font-weight: 700;
}

@media (max-width: 782px) {
  body.hs-modern-homepage.admin-bar .siteHeader {
    top: 46px;
  }
}
