:root {
  --ink: #182019;
  --muted: #59645c;
  --forest: #0b2b1e;
  --forest-deep: #071f15;
  --forest-2: #174833;
  --moss: #718d45;
  --moss-dark: #426e2f;
  --sage: #dfe7c7;
  --cream: #f4efe4;
  --paper: #fbfaf6;
  --gold: #d4c48c;
  --line: rgba(24, 32, 25, 0.14);
  --shadow: 0 28px 75px rgba(7, 30, 20, 0.2);
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 98px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 100;
  padding: 12px 16px;
  background: white;
  color: var(--forest);
  border-radius: 0 0 8px 8px;
}

.skip-link:focus {
  top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: white;
  background: rgba(7, 31, 21, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand-mark path {
  stroke: #dde6a4;
  stroke-width: 3.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.02em;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.desktop-nav a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.82;
  padding: 31px 0 27px;
  border-bottom: 2px solid transparent;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  opacity: 1;
  color: #eef2bd;
  border-color: #cdd879;
}

.desktop-nav .nav-buy {
  min-height: 40px;
  padding: 10px 15px;
  border: 1px solid rgba(238, 242, 189, 0.55);
  border-radius: 7px;
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  cursor: pointer;
  list-style: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
}

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

.mobile-nav nav {
  position: absolute;
  right: 0;
  top: 42px;
  width: 240px;
  padding: 12px;
  background: var(--forest-deep);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.mobile-nav nav a {
  display: block;
  padding: 11px 12px;
  text-decoration: none;
  border-radius: 7px;
}

.mobile-nav nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-shell {
  padding: 28px 0 0;
}

.hero-frame {
  width: min(1440px, calc(100% - 28px));
  min-height: 600px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  color: white;
  border-radius: 34px;
  box-shadow: var(--shadow);
  background-image:
    linear-gradient(90deg, rgba(5, 22, 15, 0.92) 0%, rgba(5, 22, 15, 0.78) 47%, rgba(5, 22, 15, 0.28) 76%, rgba(5, 22, 15, 0.42) 100%),
    linear-gradient(180deg, rgba(7, 26, 18, 0.02), rgba(7, 26, 18, 0.36)),
    url("assets/hero-garden.webp");
  background-size: cover;
  background-position: center 48%;
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 74% 22%, rgba(225, 236, 174, 0.15), transparent 27%),
    linear-gradient(115deg, transparent 46%, rgba(8, 35, 24, 0.16));
}

.hero-grid {
  min-height: 600px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 50px;
  align-items: center;
  padding: 64px 0;
}

.eyebrow,
.kicker,
.mini-kicker {
  margin: 0 0 14px;
  color: var(--moss);
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-weight: 800;
  font-size: 12px;
}

.eyebrow {
  color: #e4eab3;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(50px, 6vw, 80px);
  line-height: 1.02;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.28);
}

.hero-deck {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.55;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hero-actions,
.button-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.button-light {
  color: #1e261f;
  background: #efe3ca;
}

.button-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(0, 0, 0, 0.08);
}

.button-primary {
  background: var(--moss-dark);
}

.cover-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
  perspective: 1500px;
}

.cover-stage img {
  width: min(330px, 88%);
  border-radius: 2px;
  filter: drop-shadow(0 34px 28px rgba(0, 0, 0, 0.48));
  transform: rotateY(-5deg) rotateZ(0.7deg);
  transition: transform 0.35s ease;
}

.cover-stage:hover img {
  transform: rotateY(-1deg) rotateZ(0.2deg) translateY(-7px);
}

.proof-strip {
  padding: 34px 0 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 34px 26px;
  background: var(--cream);
  border: 1px solid rgba(25, 38, 28, 0.08);
  border-radius: 24px;
  box-shadow: 0 15px 42px rgba(15, 42, 29, 0.07);
}

.proof-grid div {
  padding: 4px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.proof-grid div:last-child {
  border-right: 0;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  color: var(--forest-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.proof-grid span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.section {
  padding: 94px 0;
}

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

.section h2 {
  max-width: 850px;
  margin: 8px 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(40px, 4.5vw, 61px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.section h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.section p {
  color: #465148;
}

.editorial-frame {
  margin: 0;
  overflow: hidden;
  background: #dfe5d8;
  border: 1px solid rgba(24, 32, 25, 0.12);
  border-radius: 26px;
  box-shadow: 0 22px 58px rgba(15, 42, 29, 0.14);
}

.editorial-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lead {
  font-size: 18px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: start;
}

.intro-copy {
  padding-top: 8px;
}

.intro-copy p {
  margin: 0 0 20px;
  font-size: 19px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.pillars article {
  padding: 30px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 42, 29, 0.06);
}

.number {
  color: var(--moss);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.pillars h3 {
  margin: 12px 0 8px;
  font-size: 26px;
}

.pillars p {
  margin: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  margin: 0 0 7px;
  font-size: 17px;
}

.technical-feature {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 50px;
}

.technical-feature h2 {
  margin-bottom: 22px;
}

.technical-feature-copy > p:last-child {
  max-width: 520px;
  margin: 0;
  font-size: 17px;
}

.technical-photo {
  aspect-ratio: 3 / 2;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

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

.topic-grid article {
  min-height: 245px;
  padding: 24px 21px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(24, 32, 25, 0.12);
  border-radius: 16px;
}

.topic-grid article > span {
  color: var(--moss);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.topic-grid h3 {
  margin: 20px 0 10px;
  font-size: 22px;
  line-height: 1.12;
}

.topic-grid-approved h3 {
  margin-top: 0;
}

.topic-grid p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.business-grid {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 74px;
  align-items: start;
}

.business-photo {
  width: min(1120px, calc(100% - 40px));
  aspect-ratio: 16 / 9;
  margin-bottom: 70px;
}

.business-heading {
  position: sticky;
  top: 118px;
}

.business-heading h2 {
  font-size: clamp(39px, 4.2vw, 56px);
}

.business-steps {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.business-steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 19px 0;
  border-top: 1px solid var(--line);
}

.business-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.business-steps li > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--forest-2);
  border-radius: 50%;
  font-family: Georgia, serif;
}

.business-steps strong {
  display: block;
  margin-bottom: 3px;
  font-size: 17px;
}

.business-steps p {
  margin: 0;
}

.startup-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 26px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.startup-list li {
  position: relative;
  padding: 15px 0 15px 24px;
  border-bottom: 1px solid var(--line);
  color: #38443b;
  line-height: 1.45;
}

.startup-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 24px;
  width: 8px;
  height: 8px;
  background: var(--moss);
  border-radius: 50%;
}

.legal-note {
  margin: 26px 0 0;
  padding: 19px 21px;
  background: #f1eee6;
  border-left: 4px solid var(--moss);
  border-radius: 0 12px 12px 0;
  font-size: 14px;
}

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

.pricing-section p {
  color: rgba(255, 255, 255, 0.76);
}

.pricing-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 75px;
  align-items: end;
}

.pricing-intro h2 {
  color: white;
  margin-bottom: 0;
}

.pricing-intro > p {
  margin: 0 0 9px;
  font-size: 17px;
}

.pricing-intro-approved {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
}

.pricing-copy-card {
  padding: 34px 36px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
}

.pricing-copy-card p {
  margin: 0;
  font-size: 17px;
}

.pricing-copy-card p + p {
  margin-top: 20px;
}

.kicker-light {
  color: #dfe7a4;
}

.cost-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.cost-grid article {
  min-height: 180px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
}

.cost-grid h3 {
  margin: 0 0 10px;
  color: #eef2bd;
  font-size: 23px;
}

.cost-grid p {
  margin: 0;
  font-size: 15px;
}

.pricing-summary {
  margin-top: 18px;
}

.pricing-summary p {
  margin: 0;
  padding: 24px 28px;
  background: #123c2a;
  border: 1px solid rgba(223, 231, 164, 0.2);
  border-radius: 14px;
}

.pricing-summary strong {
  color: white;
}

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

.system-card {
  padding: 20px 34px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(15, 42, 29, 0.09);
}

.system-card div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

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

.system-card strong {
  color: var(--forest-2);
  font-family: Georgia, serif;
  font-size: 20px;
}

.system-card span {
  color: var(--muted);
}

.irrigation-section {
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.97), rgba(251, 250, 246, 0.88)),
    url("assets/hero-garden.webp");
  background-size: cover;
  background-position: center;
}

.irrigation-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 78px;
  align-items: center;
}

.irrigation-copy > p:not(.kicker) {
  font-size: 17px;
}

.irrigation-visual {
  aspect-ratio: 4 / 5;
}

.reference-card {
  padding: 36px;
  color: white;
  background: var(--forest-2);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.reference-card .mini-kicker {
  color: #dfe7a4;
}

.reference-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.reference-card li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

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

.readers-section {
  padding-bottom: 74px;
}

.audience-copy {
  max-width: 980px;
}

.audience-copy > p:last-child {
  margin-bottom: 0;
}

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

.reader-grid article {
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.reader-grid h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.2;
}

.reader-grid p {
  margin: 0;
  font-size: 15px;
}

.notice {
  margin-top: 30px;
}

.notice p {
  margin: 0;
  padding: 25px 28px;
  background: var(--cream);
  border-left: 4px solid var(--moss);
  border-radius: 0 14px 14px 0;
  font-size: 14px;
}

.faq-section {
  background: #f0ede5;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 85px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 118px;
}

.faq-list details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 12px;
}

.faq-list summary {
  cursor: pointer;
  position: relative;
  padding: 22px 58px 22px 24px;
  font-family: Georgia, serif;
  font-size: 20px;
  line-height: 1.35;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 18px;
  color: var(--moss);
  font-family: Arial, sans-serif;
  font-size: 26px;
  font-weight: 300;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin: 0;
  padding: 0 24px 22px;
}

.publisher-section {
  background: var(--paper);
}

.publisher-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 76px;
  align-items: center;
}

.publisher-grid-approved {
  grid-template-columns: 1.15fr 0.85fr;
}

.publisher-cover {
  display: flex;
  justify-content: center;
  padding: 36px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(15, 42, 29, 0.1);
}

.publisher-cover img {
  width: min(330px, 100%);
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.22));
}

.button-outline {
  color: var(--forest-2);
  border-color: var(--forest-2);
  background: transparent;
}

.text-link {
  color: var(--forest-2);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.buy-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 30px;
  align-items: center;
  padding: 36px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(15, 42, 29, 0.1);
}

.buy-card img {
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.22));
}

.buy-card h3 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.08;
}

.buy-card p {
  font-size: 15px;
}

.buy-card .button {
  margin-top: 8px;
}

.site-footer {
  padding: 54px 0;
  color: white;
  background: var(--forest-deep);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.site-footer p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  text-align: right;
}

.site-footer p a {
  color: #eef2bd;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 15px;
  }

  .desktop-nav a {
    font-size: 10px;
  }

  .topic-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 860px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero-grid,
  .intro-grid,
  .section-heading,
  .technical-feature,
  .business-grid,
  .pricing-intro,
  .maintenance-grid,
  .irrigation-grid,
  .faq-grid,
  .publisher-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-grid {
    padding-top: 54px;
  }

  .cover-stage {
    min-height: 440px;
  }

  .cover-stage img {
    width: min(330px, 75%);
  }

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

  .proof-grid div:nth-child(2) {
    border-right: 0;
  }

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

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

  .technical-feature {
    gap: 38px;
  }

  .business-photo {
    width: min(var(--max), calc(100% - 40px));
    margin-bottom: 48px;
  }

  .business-heading {
    position: relative;
    top: auto;
  }

  .startup-list {
    grid-template-columns: 1fr;
  }

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

  .faq-heading {
    position: relative;
    top: auto;
  }

  .buy-card {
    max-width: 650px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .nav {
    min-height: 74px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand-name {
    font-size: 19px;
  }

  .hero-shell {
    padding-top: 12px;
  }

  .hero-frame {
    width: calc(100% - 12px);
    min-height: 0;
    border-radius: 22px;
  }

  .hero-grid {
    min-height: 0;
    gap: 16px;
    padding: 46px 0 34px;
  }

  .hero-copy h1 {
    font-size: 46px;
  }

  .hero-deck {
    font-size: 17px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .cover-stage {
    min-height: 365px;
  }

  .cover-stage img {
    width: min(270px, 76%);
  }

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

  .proof-grid div,
  .proof-grid div:nth-child(2) {
    padding: 16px 6px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-grid div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 70px 0;
  }

  .section h2 {
    font-size: 39px;
  }

  .topic-grid,
  .cost-grid,
  .reader-grid {
    grid-template-columns: 1fr;
  }

  .topic-grid article {
    min-height: 0;
  }

  .editorial-frame {
    border-radius: 18px;
  }

  .business-photo {
    width: min(var(--max), calc(100% - 28px));
    margin-bottom: 38px;
  }

  .publisher-cover {
    padding: 26px;
  }

  .system-card {
    padding: 16px 24px;
  }

  .system-card div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .buy-card {
    grid-template-columns: 92px 1fr;
    gap: 20px;
    padding: 24px;
  }

  .buy-card h3 {
    font-size: 23px;
  }

  .buy-card .button {
    width: 100%;
    min-height: 48px;
    padding-inline: 12px;
    font-size: 10px;
  }

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

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

  .site-footer p {
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
