@font-face {
  font-family: "Inter Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("/assets/fonts/inter-cyrillic-wght-normal.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Inter Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("/assets/fonts/inter-latin-wght-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Unbounded Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 200 900;
  src: url("/assets/fonts/unbounded-cyrillic-wght-normal.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Unbounded Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 200 900;
  src: url("/assets/fonts/unbounded-latin-wght-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Instrument Serif";
  font-style: italic;
  font-display: swap;
  font-weight: 400;
  src: url("/assets/fonts/instrument-serif-latin-400-italic.woff2") format("woff2");
}

:root {
  color-scheme: light dark;
  --sky: #dff2f8;
  --sky-deep: #c5e7f1;
  --cream: #fffdf7;
  --cream-warm: #f4f0e5;
  --ink: #17241d;
  --muted: #607068;
  --ramson: #4b9d31;
  --ramson-dark: #2c6f1b;
  --leaf: #7dcd47;
  --line: rgba(23, 36, 29, 0.14);
  --shadow: 0 30px 80px -30px rgba(31, 62, 43, 0.3);
  --serif: "Instrument Serif", Iowan Old Style, Palatino Linotype, Book Antiqua, Georgia, serif;
  --sans: "Inter Variable", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Unbounded Variable", var(--sans);
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--sky);
}

body {
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 78% 5%, rgba(255, 255, 255, 0.9), transparent 30rem),
    linear-gradient(180deg, var(--sky) 0, #eaf7fa 42rem, var(--sky) 100%);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: 0.22;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  width: min(1440px, calc(100% - 48px));
  min-height: 88px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 253, 247, 0.55);
}

.brand-mark img {
  width: 23px;
  height: 29px;
}

.brand-name {
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 630;
  letter-spacing: -0.025em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.32rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.5);
  backdrop-filter: blur(16px);
}

.nav a {
  padding: 0.55rem 0.92rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  background: var(--cream);
  color: var(--ink);
}

.region {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.region i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 5px rgba(125, 205, 71, 0.14);
}

.hero {
  position: relative;
  width: min(1440px, calc(100% - 48px));
  min-height: 770px;
  margin: 0 auto;
  padding: clamp(5.5rem, 9vw, 9rem) 0 clamp(7rem, 10vw, 10rem);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}

.hero-glow-one {
  width: 36rem;
  height: 36rem;
  top: 2rem;
  left: -20rem;
  background: radial-gradient(circle, rgba(125, 205, 71, 0.26), transparent 66%);
}

.hero-glow-two {
  width: 46rem;
  height: 46rem;
  right: -20rem;
  bottom: -14rem;
  background: radial-gradient(circle, rgba(132, 194, 219, 0.42), transparent 68%);
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1.25rem;
  color: var(--ramson-dark);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ramson);
  animation: pulse 2.3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(75, 157, 49, 0.28); }
  50% { box-shadow: 0 0 0 8px rgba(75, 157, 49, 0); }
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 760px;
  font-size: clamp(4rem, 7.4vw, 8.5rem);
  line-height: 0.84;
}

h1 em,
h2 em {
  color: var(--ramson);
  font-weight: 400;
}

.hero-lead {
  max-width: 610px;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  min-height: 52px;
  padding: 0 1.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 170ms ease, background 170ms ease, box-shadow 170ms ease;
}

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

.button-primary {
  background: var(--ramson-dark);
  color: white;
  box-shadow: 0 14px 34px -18px rgba(44, 111, 27, 0.8);
}

.button-primary:hover {
  background: #235d15;
  box-shadow: 0 18px 40px -18px rgba(44, 111, 27, 0.95);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 253, 247, 0.58);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.button-secondary:hover {
  background: var(--cream);
}

.hero-note {
  margin: 1.3rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-note strong {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.73rem;
  font-weight: 650;
}

.hero-photos {
  position: relative;
  min-height: 580px;
  align-self: stretch;
}

.photo-card {
  position: absolute;
  margin: 0;
  padding: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.photo-card img {
  width: 100%;
  height: 100%;
  border-radius: 13px;
  object-fit: cover;
}

.photo-card figcaption,
.wide-photo figcaption,
.gallery figcaption {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.photo-card figcaption {
  padding: 0.68rem 0.35rem 0.18rem;
  color: var(--muted);
}

.photo-card-main {
  z-index: 2;
  width: min(88%, 650px);
  height: 420px;
  top: 2.5rem;
  right: 0;
  transform: rotate(2.3deg);
}

.photo-card-main img {
  height: calc(100% - 31px);
}

.photo-card-small {
  z-index: 3;
  width: 250px;
  height: 230px;
}

.photo-card-small img {
  height: calc(100% - 31px);
}

.photo-card-left {
  left: 0;
  bottom: 0;
  transform: rotate(-6deg);
}

.photo-card-right {
  right: 5%;
  bottom: -1.5rem;
  transform: rotate(5deg);
}

.photo-stamp {
  position: absolute;
  z-index: 5;
  right: -1.4rem;
  top: -1.8rem;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ramson-dark);
  color: white;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-style: italic;
  line-height: 0.92;
  text-align: center;
  transform: rotate(9deg);
  box-shadow: 0 18px 50px -20px rgba(44, 111, 27, 0.8);
}

.facts {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto clamp(5rem, 9vw, 9rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(120deg, rgba(125, 205, 71, 0.36), var(--cream) 42%);
  box-shadow: 0 20px 60px -38px rgba(23, 36, 29, 0.35);
}

.facts div {
  min-height: 155px;
  padding: 2.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-right: 1px solid var(--line);
  text-align: center;
}

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

.facts strong {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.facts span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-shell {
  width: min(1360px, calc(100% - 80px));
  margin-right: auto;
  margin-left: auto;
}

.section-heading h2 {
  font-size: clamp(3.4rem, 7vw, 7.2rem);
  line-height: 0.87;
}

.about {
  margin-bottom: clamp(6rem, 10vw, 11rem);
}

.about-grid {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.about-copy {
  max-width: 540px;
}

.about-copy p {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.about-copy .about-lead {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  letter-spacing: -0.025em;
  line-height: 1.16;
}

.main-home {
  margin-top: 2.2rem;
  padding-top: 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--line);
}

.main-home-icon {
  width: 48px;
  height: 48px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ramson-dark);
  font-size: 1.1rem;
}

.main-home div {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.main-home div > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.61rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-home a {
  font-weight: 750;
  text-decoration: none;
}

.main-home a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.wide-photo {
  margin: 0;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--cream);
  box-shadow: var(--shadow);
  transform: rotate(1.3deg);
}

.wide-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  object-fit: cover;
}

.wide-photo figcaption {
  padding: 0.8rem 0.3rem 0.25rem;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
}

.wide-photo figcaption span {
  color: var(--ramson-dark);
}

.principles {
  margin-bottom: clamp(6rem, 10vw, 11rem);
}

.section-heading-row {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 4rem;
}

.section-heading-row > p {
  max-width: 500px;
  margin: 0 0 0.6rem;
  color: var(--muted);
  line-height: 1.72;
}

.principle-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.principle-grid article {
  min-height: 300px;
  padding: clamp(1.8rem, 3vw, 2.7rem);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 253, 247, 0.78);
  box-shadow: 0 16px 45px -36px rgba(23, 36, 29, 0.55);
}

.principle-grid article > span {
  color: var(--ramson-dark);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.principle-grid h3 {
  margin: auto 0 1rem;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.principle-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.thanks {
  position: relative;
  min-height: 610px;
  margin-bottom: clamp(6rem, 10vw, 11rem);
  padding: clamp(4rem, 8vw, 8rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 78% 15%, rgba(125, 205, 71, 0.23), transparent 28rem),
    #173d27;
  color: #f7f5e9;
  box-shadow: 0 40px 90px -40px rgba(18, 55, 34, 0.65);
}

.thanks .section-kicker {
  color: #a8df7c;
}

.thanks h2 {
  position: relative;
  z-index: 2;
  font-size: clamp(3.7rem, 8vw, 8.4rem);
  line-height: 0.86;
}

.thanks h2 em {
  color: #a8df7c;
}

.thanks > p:not(.section-kicker) {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 2rem 0 0;
  color: rgba(247, 245, 233, 0.72);
  font-size: 1.05rem;
  line-height: 1.72;
}

.thanks .button {
  position: relative;
  z-index: 2;
  margin-top: 2.5rem;
}

.button-light {
  background: #f7f5e9;
  color: #173d27;
}

.button-light:hover {
  background: white;
  box-shadow: 0 16px 38px -22px rgba(255, 255, 255, 0.8);
}

.thanks-leaf {
  position: absolute;
  right: clamp(1rem, 8vw, 9rem);
  bottom: -4rem;
  width: clamp(220px, 30vw, 430px);
  height: auto;
  opacity: 0.22;
  filter: saturate(0) brightness(2.3);
  transform: rotate(17deg);
}

.gallery {
  margin-bottom: clamp(6rem, 10vw, 11rem);
}

.gallery-heading {
  margin-bottom: 3.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: repeat(2, 300px);
  gap: 1rem;
}

.gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--cream);
}

.gallery-tall {
  grid-row: span 2;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

.gallery figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  width: fit-content;
  padding: 0.62rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(12, 25, 17, 0.58);
  color: white;
  backdrop-filter: blur(10px);
}

.closing {
  margin-bottom: 6rem;
  padding: 3rem 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.closing p {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.closing a {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 5rem);
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-decoration: none;
}

.closing a:hover {
  color: var(--ramson-dark);
}

.site-footer {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.61rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 6rem;
  }

  .hero-copy {
    max-width: 840px;
  }

  .hero-photos {
    min-height: 610px;
    width: min(820px, 92%);
    margin: 0 auto;
  }

  .photo-card-main {
    width: 78%;
  }

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

  .about-copy {
    max-width: 760px;
  }

  .section-heading-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 760px) {
  .site-header,
  .hero,
  .facts,
  .site-footer {
    width: min(100% - 32px, 1440px);
  }

  .section-shell {
    width: min(100% - 32px, 1360px);
  }

  .site-header {
    min-height: 76px;
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 4.5rem;
    gap: 3rem;
  }

  h1 {
    font-size: clamp(3.7rem, 17vw, 6rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-photos {
    width: 100%;
    min-height: 480px;
  }

  .photo-card-main {
    width: 92%;
    height: 330px;
  }

  .photo-card-small {
    width: 43%;
    height: 170px;
  }

  .photo-card-left {
    bottom: -0.5rem;
  }

  .photo-card-right {
    right: 1%;
    bottom: -1.2rem;
  }

  .photo-stamp {
    right: -0.5rem;
    width: 88px;
    height: 88px;
    font-size: 1.18rem;
  }

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

  .facts div {
    min-height: 130px;
  }

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

  .facts div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .principle-grid article {
    min-height: 240px;
  }

  .thanks {
    min-height: 650px;
    padding: 3rem 1.5rem;
  }

  .thanks-leaf {
    right: -4rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 320px);
  }

  .gallery-tall {
    grid-row: auto;
  }

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

  .closing a {
    overflow-wrap: anywhere;
  }

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

@media (max-width: 430px) {
  .brand-name {
    font-size: 0.72rem;
  }

  .region {
    font-size: 0.58rem;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .eyebrow {
    max-width: 290px;
  }

  .hero-photos {
    min-height: 410px;
  }

  .photo-card-main {
    height: 280px;
  }

  .photo-card-small {
    height: 145px;
  }

  .photo-stamp {
    top: -1rem;
  }

  .section-heading h2,
  .thanks h2 {
    font-size: clamp(3.1rem, 15vw, 4.4rem);
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --sky: #121329;
    --sky-deep: #1b2140;
    --cream: #202a48;
    --cream-warm: #283353;
    --ink: #fbf8ea;
    --muted: #b1b7c9;
    --ramson: #9cdf66;
    --ramson-dark: #9cdf66;
    --leaf: #a6ea70;
    --line: rgba(245, 246, 235, 0.14);
    --shadow: 0 32px 90px -30px rgba(0, 0, 0, 0.72);
  }

  html {
    background: var(--sky);
  }

  body {
    background:
      radial-gradient(circle at 78% 5%, rgba(61, 73, 139, 0.34), transparent 34rem),
      linear-gradient(180deg, #121329 0, #171a37 45rem, #121329 100%);
  }

  .brand-mark,
  .nav,
  .button-secondary {
    background: rgba(32, 42, 72, 0.64);
  }

  .photo-card,
  .wide-photo,
  .principle-grid article {
    background: var(--cream);
  }

  .facts {
    background: linear-gradient(120deg, rgba(78, 112, 67, 0.5), var(--cream) 46%);
  }

  .thanks {
    background:
      radial-gradient(circle at 78% 15%, rgba(156, 223, 102, 0.2), transparent 28rem),
      #112e1e;
  }

  .main-home-icon {
    background: var(--cream-warm);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
