:root {
  --forest: #053f25;
  --deep: #062b1a;
  --leaf: #2f8a39;
  --lime: #9bc545;
  --gold: #dca715;
  --sun: #f4c44e;
  --soil: #7b4327;
  --chilli: #c8232c;
  --sky: #dfeff0;
  --cream: #faf8ef;
  --paper: #ffffff;
  --ink: #17221c;
  --muted: #66726a;
  --line: rgba(5, 63, 37, 0.16);
  --shadow: 0 18px 50px rgba(6, 43, 26, 0.16);
  --max: 1180px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: var(--paper);
  background: var(--forest);
}

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

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 120;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--leaf), var(--chilli));
}

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

.section-pad {
  padding: 96px 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  color: var(--paper);
  font-size: 4.7rem;
  line-height: 0.96;
}

h2 {
  color: var(--forest);
  font-size: 3rem;
  line-height: 1.05;
}

h3 {
  color: var(--forest);
  font-size: 1.25rem;
  line-height: 1.15;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  line-height: 1;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.button svg,
.contact-link svg,
.value-item svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button--primary {
  color: var(--deep);
  background: var(--sun);
  border-color: rgba(244, 196, 78, 0.5);
}

.button--light {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.splash {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: var(--paper);
  transition: opacity 650ms ease, visibility 650ms ease;
}

.splash.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.splash__mark {
  position: relative;
  width: 168px;
  height: 168px;
  display: grid;
  place-items: center;
}

.splash__mark img {
  width: 128px;
  height: 128px;
  object-fit: contain;
  border-radius: 8px;
  animation: pulseMark 1.7s ease-in-out infinite;
}

.splash__mark span {
  position: absolute;
  inset: 0;
  border: 3px solid rgba(220, 167, 21, 0.28);
  border-top-color: var(--forest);
  border-radius: 50%;
  animation: spin 1.1s linear infinite;
}

.site-header {
  position: fixed;
  inset: 18px 20px auto;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 10px 12px 10px 14px;
  color: var(--paper);
  background: rgba(5, 63, 37, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  transition: background 240ms ease, box-shadow 240ms ease, color 240ms ease, transform 240ms ease;
}

.site-header.is-scrolled {
  color: var(--forest);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 38px rgba(6, 43, 26, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--paper);
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  color: currentColor;
  font-size: 0.72rem;
  font-weight: 800;
  opacity: 0.78;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  position: relative;
  border-radius: 6px;
  padding: 11px 13px;
  color: currentColor;
  font-size: 0.86rem;
  font-weight: 800;
  transition: background 200ms ease, color 200ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--deep);
  background: var(--sun);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.16);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 150px 0 120px;
  background: var(--deep);
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  transform: translateY(var(--hero-y, 0));
  filter: saturate(1.04) contrast(1.04);
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 31, 18, 0.9) 0%, rgba(4, 31, 18, 0.68) 44%, rgba(4, 31, 18, 0.18) 100%),
    linear-gradient(0deg, rgba(4, 31, 18, 0.86) 0%, rgba(4, 31, 18, 0) 46%);
}

.hero__lead {
  max-width: 680px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__panel {
  position: absolute;
  right: 32px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(620px, calc(100% - 64px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.hero__panel div {
  min-height: 96px;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

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

.hero__panel strong,
.hero__panel span {
  display: block;
}

.hero__panel strong {
  color: var(--sun);
  font-size: 2rem;
  line-height: 1;
}

.hero__panel span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 800;
}

.brand-strip {
  padding: 24px 20px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.brand-strip img {
  width: min(980px, 100%);
  max-height: 120px;
  margin-inline: auto;
  object-fit: contain;
}

.about {
  background: linear-gradient(180deg, var(--paper), var(--cream));
}

.about__grid,
.partners__grid,
.team__grid,
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 58px;
  align-items: center;
}

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

.about__visual,
.partners__media,
.team__portrait {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about__visual {
  aspect-ratio: 4 / 5;
}

.about__visual img,
.partners__media img,
.team__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.about__visual:hover img,
.partners__media:hover img,
.team__portrait:hover img {
  transform: scale(1.045);
}

.about__badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  min-width: 210px;
  padding: 16px;
  color: var(--paper);
  background: rgba(5, 63, 37, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.about__badge span,
.about__badge strong {
  display: block;
}

.about__badge span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about__badge strong {
  margin-top: 4px;
  font-size: 1.3rem;
}

.value-band {
  padding: 34px 0;
  color: var(--paper);
  background:
    linear-gradient(90deg, var(--deep), var(--forest) 62%, #184a2d),
    var(--forest);
}

.value-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.value-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px 14px;
  align-items: start;
}

.value-item svg {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  padding: 8px;
  color: var(--sun);
  border: 1px solid rgba(244, 196, 78, 0.42);
  border-radius: 8px;
}

.value-item strong {
  color: var(--paper);
  font-size: 1rem;
}

.value-item span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-chip {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--forest);
  background: var(--paper);
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.filter-chip:hover,
.filter-chip.active {
  color: var(--deep);
  background: var(--sun);
  border-color: rgba(220, 167, 21, 0.55);
  transform: translateY(-2px);
}

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

.produce-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(6, 43, 26, 0.08);
  transform-style: preserve-3d;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, opacity 240ms ease;
}

.produce-card:hover,
.produce-card:focus-within {
  border-color: rgba(220, 167, 21, 0.55);
  box-shadow: var(--shadow);
}

.produce-card.is-hidden {
  display: none;
}

.produce-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sky);
}

.produce-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.produce-card:hover img {
  transform: scale(1.07);
}

.produce-card__tag {
  position: absolute;
  left: 10px;
  top: 10px;
  border-radius: 6px;
  padding: 7px 9px;
  color: var(--paper);
  background: rgba(5, 63, 37, 0.88);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.produce-card__body {
  padding: 16px;
}

.produce-card h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.produce-card p {
  min-height: 74px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  line-height: 1.55;
}

.produce-card button {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--forest);
  background: #f7fbf6;
  font-size: 0.86rem;
  font-weight: 900;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.produce-card button:hover {
  color: var(--paper);
  background: var(--forest);
  border-color: var(--forest);
}

.approach {
  background:
    linear-gradient(180deg, var(--cream), #eef7ee),
    var(--cream);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.timeline__item {
  position: relative;
  min-height: 245px;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.timeline__item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--leaf));
}

.timeline__item span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border-radius: 8px;
  color: var(--deep);
  background: var(--sun);
  font-weight: 900;
}

.timeline__item p {
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.58;
}

.partners {
  background: var(--deep);
}

.partners h2,
.partners .section-copy p {
  color: var(--paper);
}

.partners .section-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.partners__grid {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
}

.partners__media {
  aspect-ratio: 4 / 3;
}

.partner-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.partner-points span {
  min-height: 56px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(244, 196, 78, 0.24);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

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

.team__grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
}

.team__role {
  margin: -10px 0 18px;
  color: var(--soil);
  font-weight: 900;
}

.team__portrait {
  aspect-ratio: 4 / 5;
}

.team__portrait::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(5, 63, 37, 0.5), rgba(5, 63, 37, 0));
  pointer-events: none;
}

.contact {
  background:
    linear-gradient(180deg, #f3f8f2, var(--paper)),
    #f3f8f2;
}

.contact__grid {
  align-items: start;
}

.contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--forest);
  background: var(--paper);
  font-weight: 900;
  word-break: break-word;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(220, 167, 21, 0.55);
  box-shadow: 0 10px 26px rgba(6, 43, 26, 0.1);
}

.contact-form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form span {
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(5, 63, 37, 0.18);
  border-radius: 8px;
  padding: 12px 12px;
  color: var(--ink);
  background: #fbfcfa;
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(220, 167, 21, 0.14);
}

.contact-form .button {
  width: 100%;
}

.site-footer {
  color: var(--paper);
  background: var(--deep);
}

.site-footer .section-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 116px;
}

.site-footer img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--paper);
}

.site-footer p {
  margin: 0 auto 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.site-footer a {
  color: var(--sun);
  font-weight: 900;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(3, 20, 12, 0.86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  width: min(1050px, 100%);
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.34);
}

.lightbox__content img {
  width: 100%;
  height: min(76vh, 680px);
  object-fit: cover;
  background: var(--sky);
}

.lightbox__content div {
  align-self: center;
  padding: 34px;
}

.lightbox__content h3 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.lightbox__close {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.lightbox__close span {
  position: absolute;
  left: 13px;
  top: 23px;
  width: 22px;
  height: 2px;
  background: var(--paper);
}

.lightbox__close span:first-child {
  transform: rotate(45deg);
}

.lightbox__close span:last-child {
  transform: rotate(-45deg);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 760ms ease, transform 760ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulseMark {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 3.8rem;
  }

  h2 {
    font-size: 2.45rem;
  }

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

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

@media (max-width: 860px) {
  :root {
    --header-height: 76px;
  }

  .section-pad {
    padding: 72px 0;
  }

  .section-shell {
    width: min(var(--max), calc(100% - 28px));
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .site-header {
    inset: 10px 12px auto;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 86px 12px auto;
    display: grid;
    gap: 8px;
    padding: 12px;
    color: var(--forest);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .nav-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 14px;
  }

  .hero {
    min-height: 88vh;
    padding: 132px 0 178px;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(4, 31, 18, 0.9), rgba(4, 31, 18, 0.52)),
      linear-gradient(0deg, rgba(4, 31, 18, 0.92), rgba(4, 31, 18, 0.08));
  }

  .hero__panel {
    left: 14px;
    right: 14px;
    bottom: 16px;
    width: auto;
  }

  .hero__panel div {
    min-height: 86px;
    padding: 16px 12px;
  }

  .hero__panel strong {
    font-size: 1.55rem;
  }

  .about__grid,
  .partners__grid,
  .team__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

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

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

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

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

  .lightbox__content img {
    height: 44vh;
  }
}

@media (max-width: 580px) {
  .brand span {
    display: none;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .hero {
    min-height: 0;
    display: block;
    padding-top: 124px;
    padding-bottom: 28px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero__panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    margin: 28px auto 0;
  }

  .hero__panel div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

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

  .brand-strip img {
    max-height: 88px;
  }

  .value-band__grid,
  .produce-grid,
  .timeline,
  .partner-points {
    grid-template-columns: 1fr;
  }

  .produce-card p {
    min-height: 0;
  }

  .timeline__item {
    min-height: 0;
  }

  .contact-link {
    align-items: flex-start;
  }

  .site-footer .section-shell {
    flex-direction: column;
    justify-content: center;
    padding: 28px 0;
    text-align: center;
  }

  .site-footer p {
    margin: 0;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox__content div {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
