@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@1,600&display=swap");

:root {
  --forest: #063f2c;
  --forest-deep: #022e20;
  --forest-soft: #0b533a;
  --gold: #cda444;
  --gold-light: #e8ca78;
  --cream: #f5f1e8;
  --paper: #fffdf8;
  --ink: #153028;
  --muted: #61716b;
  --line: rgba(7, 63, 44, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.topbar {
  color: rgba(255, 255, 255, 0.76);
  background: var(--forest-deep);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.topbarInner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar p {
  margin: 0;
}

.topbarInner div {
  display: flex;
  gap: 14px;
  align-items: center;
}

.topbar a:hover {
  color: white;
}

.siteHeader {
  position: sticky;
  z-index: 40;
  top: 0;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--forest);
}

.brandMark {
  position: relative;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 2px solid var(--gold);
  border-radius: 50% 48% 52% 44%;
  font-size: 18px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.12em;
  transform: rotate(-5deg);
}

.brandMark::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 10px;
  right: -3px;
  bottom: 3px;
  background: var(--forest);
  border-radius: 100% 0 100% 0;
  transform: rotate(-16deg);
}

.brandText {
  display: grid;
  line-height: 1;
  text-transform: uppercase;
}

.brandText strong {
  font-family: Georgia, serif;
  color: #9b7625;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.brandText small {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
}

.desktopNav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 600;
}

.desktopNav a {
  position: relative;
  padding: 33px 0;
}

.desktopNav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 23px;
  height: 2px;
  background: var(--gold);
  transition: right 0.25s ease;
}

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

.navCta,
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 22px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.navCta {
  color: white;
  background: var(--forest);
}

.navCta:hover,
.button:hover {
  transform: translateY(-2px);
}

.navCta span,
.button span {
  font-size: 18px;
}

.mobileMenu {
  display: none;
  margin-left: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 70px 70px,
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 70px 70px,
    var(--forest);
}

.hero::before {
  content: "";
  position: absolute;
  left: -7%;
  bottom: -150px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(232, 202, 120, 0.17);
  border-radius: 50%;
}

.heroGlow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.heroGlowOne {
  width: 400px;
  height: 400px;
  right: 22%;
  top: -260px;
  background: rgba(205, 164, 68, 0.08);
}

.heroGlowTwo {
  width: 290px;
  height: 290px;
  left: 7%;
  bottom: -210px;
  background: rgba(205, 164, 68, 0.1);
}

.heroGrid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 72px;
  min-height: 680px;
  padding-top: 58px;
  padding-bottom: 58px;
}

.heroCopy {
  z-index: 2;
  padding: 20px 0;
}

.eyebrow,
.sectionLabel {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 1px;
  background: var(--gold);
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 660px;
  font-size: clamp(58px, 6.4vw, 94px);
  line-height: 0.93;
}

h1 em,
h2 em {
  color: var(--gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
}

.heroLead {
  max-width: 530px;
  margin: 30px 0 32px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.75;
}

.heroActions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.buttonGold {
  min-height: 56px;
  color: #163328;
  background: var(--gold-light);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.buttonGold:hover {
  background: #f0d78e;
}

.textLink {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 600;
}

.textLink span {
  color: var(--gold-light);
}

.heroStats {
  display: flex;
  gap: 42px;
  margin-top: 50px;
}

.heroStats div {
  display: grid;
  gap: 5px;
}

.heroStats strong {
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 400;
}

.heroStats span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.heroVisual {
  position: relative;
  min-width: 0;
}

.imageFrame {
  position: relative;
  height: 525px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 52% 52% 6px 6px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.imageFrame img,
.journeyVisual > img,
.categoryCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.imageFrame img {
  object-position: 48% center;
  transform: scale(1.04);
}

.imageShade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 35, 23, 0.05) 40%, rgba(2, 35, 23, 0.76) 100%);
}

.freshBadge {
  position: absolute;
  top: 20px;
  right: 18px;
  width: 112px;
  height: 112px;
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--forest-deep);
  background: rgba(245, 241, 232, 0.92);
  border-radius: 50%;
  transform: rotate(6deg);
}

.freshBadge::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(6, 63, 44, 0.27);
  border-radius: inherit;
}

.freshBadge span,
.freshBadge small {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.freshBadge strong {
  color: #a17b27;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  font-style: italic;
  line-height: 1;
}

.imageCaption {
  position: absolute;
  left: 28px;
  bottom: 28px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.captionLine {
  width: 2px;
  height: 47px;
  background: var(--gold-light);
}

.imageCaption p {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 20px;
  line-height: 1.25;
}

.imageCaption strong {
  color: var(--gold-light);
  font-weight: 400;
}

.qualityNote {
  position: absolute;
  right: -24px;
  bottom: 46px;
  min-width: 195px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  color: var(--forest-deep);
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
}

.qualityNote > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--forest);
  border-radius: 50%;
}

.qualityNote p {
  display: grid;
  gap: 3px;
  margin: 0;
}

.qualityNote strong {
  font-family: Georgia, serif;
  font-size: 15px;
}

.qualityNote small {
  color: var(--muted);
  font-size: 9px;
}

.trustStrip {
  position: relative;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trustStrip p {
  color: var(--gold-light);
}

.trustStrip i {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

.section {
  padding: 110px 0;
}

.intro {
  background: var(--paper);
}

.introGrid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 100px;
}

.sectionLabel {
  margin-bottom: 20px;
  color: #a27b26;
}

.sectionLabel::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}

h2 {
  color: var(--forest);
  font-size: clamp(42px, 5vw, 67px);
  line-height: 1.02;
}

h2 em {
  color: #a27b26;
}

.introText {
  display: flex;
  align-items: flex-end;
  gap: 32px;
  padding-bottom: 4px;
}

.introText p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.roundLink {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: white;
  background: var(--forest);
  border-radius: 50%;
  font-size: 20px;
  transition: transform 0.2s ease;
}

.roundLink:hover {
  transform: rotate(12deg);
}

.benefitSection {
  padding-top: 0;
}

.benefitGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefitCard {
  min-height: 315px;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
  transition: background 0.25s ease, transform 0.25s ease;
}

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

.benefitCard:hover {
  z-index: 2;
  color: white;
  background: var(--forest);
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(4, 55, 37, 0.18);
}

.cardTop {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
}

.benefitIcon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #9a7629;
  background: var(--cream);
  border-radius: 50%;
  font-size: 19px;
}

.cardTop small {
  color: #9baca6;
  font-size: 10px;
}

.benefitCard h3 {
  margin: 0 0 16px;
  color: var(--forest);
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 400;
}

.benefitCard:hover h3 {
  color: var(--gold-light);
}

.benefitCard p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.benefitCard:hover p {
  color: rgba(255, 255, 255, 0.68);
}

.products {
  background: var(--cream);
}

.sectionHeading {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  align-items: end;
  gap: 100px;
  margin-bottom: 52px;
}

.sectionHeading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.categoryGrid {
  display: grid;
  grid-template-columns: 1.18fr 0.91fr 0.91fr;
  gap: 16px;
}

.categoryCard {
  position: relative;
  height: 420px;
  overflow: hidden;
  color: white;
}

.categoryCard img {
  transition: transform 0.55s ease;
}

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

.categoryCard.vegetables img {
  object-position: 25% center;
}

.categoryCard.fruits img {
  object-position: 72% center;
}

.categoryCard.greens img {
  object-position: 92% center;
}

.categoryOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 28, 18, 0.08), rgba(2, 34, 23, 0.78));
}

.categoryCard > span {
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.categoryCard > div:nth-of-type(2) {
  position: absolute;
  left: 25px;
  right: 70px;
  bottom: 27px;
}

.categoryCard small {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.categoryCard h3 {
  margin: 8px 0 0;
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 400;
}

.categoryCard > a {
  position: absolute;
  right: 22px;
  bottom: 25px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  font-size: 18px;
}

.journey {
  overflow: hidden;
}

.journeyGrid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 100px;
}

.journeyVisual {
  position: relative;
  height: 570px;
}

.journeyVisual > img {
  object-position: 20% center;
}

.journeyVisual::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 280px;
  height: 280px;
  left: -90px;
  bottom: -80px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.journeyStamp {
  position: absolute;
  right: -42px;
  bottom: 55px;
  width: 145px;
  height: 145px;
  display: grid;
  place-content: center;
  text-align: center;
  color: white;
  background: var(--forest);
  border: 8px solid var(--paper);
  border-radius: 50%;
}

.journeyStamp strong {
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 400;
}

.journeyStamp span {
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journeyCopy ol {
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
}

.journeyCopy li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.journeyCopy li > span {
  color: #a27b26;
  font-size: 11px;
  font-weight: 700;
}

.journeyCopy li strong {
  color: var(--forest);
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: 400;
}

.journeyCopy li p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.quoteSection {
  padding-top: 30px;
}

.quoteCard {
  position: relative;
  min-height: 330px;
  display: grid;
  grid-template-columns: 1fr 0.48fr;
  align-items: center;
  gap: 80px;
  overflow: hidden;
  padding: 62px 72px;
  color: white;
  background: var(--forest);
}

.quoteCard h2 {
  color: white;
  font-size: clamp(42px, 4.4vw, 61px);
}

.quotePattern {
  position: absolute;
  width: 340px;
  height: 340px;
  right: -150px;
  top: -170px;
  border: 1px solid rgba(232, 202, 120, 0.25);
  border-radius: 50%;
}

.quotePattern::after {
  content: "";
  position: absolute;
  inset: 45px;
  border: 1px solid rgba(232, 202, 120, 0.16);
  border-radius: 50%;
}

.eyebrowLight {
  margin-bottom: 20px;
}

.quoteAction {
  position: relative;
}

.quoteAction p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.7;
}

footer {
  padding: 80px 0 22px;
  color: white;
  background: var(--forest-deep);
}

.footerGrid {
  display: grid;
  grid-template-columns: 1.3fr 0.6fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.brandFooter {
  color: white;
}

.brandFooter .brandMark::after {
  background: var(--forest-deep);
}

.footerGrid > div:first-child > p {
  max-width: 270px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.53);
  font-size: 13px;
  line-height: 1.7;
}

.footerGrid h3 {
  margin: 0 0 22px;
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footerGrid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.61);
  font-size: 12px;
}

.footerGrid > div a:hover {
  color: white;
}

.footerGrid > div > p {
  margin: 0;
}

.footerCallout {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footerCallout span {
  color: var(--gold-light);
  font-size: 10px;
  text-transform: uppercase;
}

.footerCallout strong {
  color: white;
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 400;
}

.footerCallout a {
  display: flex;
  gap: 8px;
  color: white;
  font-weight: 700;
}

.footerBottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
}

.whatsappFloat {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: white;
  background: #25d366;
  border: 4px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  font-size: 23px;
}

@media (max-width: 1050px) {
  .desktopNav {
    gap: 18px;
  }

  .navCta {
    display: none;
  }

  .heroGrid {
    gap: 45px;
  }

  .qualityNote {
    right: -5px;
  }

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

  .benefitCard:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .journeyGrid {
    gap: 70px;
  }
}

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

  .topbarInner {
    justify-content: center;
  }

  .topbarInner > p,
  .topbarInner div span,
  .topbarInner div a:last-child {
    display: none;
  }

  .nav {
    min-height: 72px;
  }

  .brandMark {
    width: 44px;
    height: 44px;
  }

  .desktopNav {
    display: none;
  }

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

  .mobileMenu summary {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 6px;
    cursor: pointer;
    list-style: none;
  }

  .mobileMenu summary::-webkit-details-marker {
    display: none;
  }

  .mobileMenu summary span {
    width: 24px;
    height: 2px;
    background: var(--forest);
  }

  .mobileMenu nav {
    position: absolute;
    top: 54px;
    right: 0;
    width: 240px;
    display: grid;
    padding: 14px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: 0 18px 44px rgba(7, 48, 35, 0.15);
  }

  .mobileMenu nav a {
    padding: 13px 12px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    font-weight: 600;
  }

  .heroGrid,
  .introGrid,
  .sectionHeading,
  .journeyGrid,
  .quoteCard {
    grid-template-columns: 1fr;
  }

  .heroGrid {
    min-height: 0;
    padding-top: 78px;
    padding-bottom: 70px;
  }

  .heroVisual {
    max-width: 580px;
    margin: 0 auto;
  }

  .imageFrame {
    height: 510px;
  }

  .trustStrip {
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 0;
  }

  .trustStrip p {
    width: 100%;
    margin: 0;
    text-align: center;
  }

  .section {
    padding: 80px 0;
  }

  .introGrid,
  .sectionHeading {
    gap: 35px;
  }

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

  .categoryCard {
    height: 330px;
  }

  .journeyVisual {
    height: 490px;
  }

  .journeyCopy {
    padding-top: 20px;
  }

  .quoteCard {
    gap: 36px;
    padding: 52px 42px;
  }

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

@media (max-width: 540px) {
  .shell {
    width: calc(100% - 28px);
  }

  .brandText strong {
    font-size: 16px;
  }

  .brandText small {
    font-size: 8px;
  }

  .heroGrid {
    padding-top: 60px;
  }

  h1 {
    font-size: clamp(50px, 17vw, 70px);
  }

  .heroLead {
    font-size: 14px;
  }

  .heroActions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .heroStats {
    justify-content: space-between;
    gap: 14px;
  }

  .heroStats strong {
    font-size: 21px;
  }

  .heroStats span {
    max-width: 75px;
  }

  .imageFrame {
    height: 420px;
  }

  .freshBadge {
    width: 94px;
    height: 94px;
  }

  .qualityNote {
    right: 10px;
    bottom: 34px;
    min-width: 180px;
  }

  .trustStrip span {
    width: 45%;
    text-align: center;
    line-height: 1.5;
  }

  .trustStrip i {
    display: none;
  }

  h2 {
    font-size: clamp(37px, 12vw, 50px);
  }

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

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

  .benefitCard {
    min-height: 0;
    border-left: 1px solid var(--line);
    padding: 30px 24px 34px;
  }

  .cardTop {
    margin-bottom: 30px;
  }

  .categoryCard {
    height: 290px;
  }

  .journeyVisual {
    height: 390px;
  }

  .journeyStamp {
    right: 12px;
    bottom: -42px;
    width: 125px;
    height: 125px;
  }

  .journeyCopy {
    padding-top: 58px;
  }

  .quoteCard {
    padding: 42px 25px;
  }

  .quoteAction .button {
    width: 100%;
  }

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

  .footerCallout {
    align-items: flex-start !important;
  }

  .footerBottom {
    flex-direction: column;
  }
}

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

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