:root {
  --forest-950: #0c2117;
  --forest-900: #123522;
  --forest-800: #17472d;
  --forest-700: #1d5d39;
  --brand: #65b935;
  --brand-dark: #4c9527;
  --gold: #d0a43c;
  --cream: #f3f1e9;
  --paper: #fbfcf9;
  --white: #ffffff;
  --ink: #18201b;
  --muted: #626b65;
  --line: #dfe4de;
  --shadow: 0 22px 55px rgba(10, 34, 22, 0.14);
  --container: 1220px;
  --header-height: 116px;
}

* {
  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: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--forest-900);
  transform: translateY(-150%);
}

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

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

.section {
  padding: 72px 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  transition: background-color 220ms ease, box-shadow 220ms ease, height 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(12, 33, 23, 0.97);
  box-shadow: 0 10px 30px rgba(4, 18, 10, 0.18);
}

.header-inner {
  width: min(var(--container), calc(100% - 40px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  width: 305px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.9rem;
  font-weight: 700;
}

.main-nav > a {
  position: relative;
}

.main-nav > a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
}

.nav-contact:hover {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--forest-950);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: clamp(650px, 84svh, 820px);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-950);
}

.hero-media,
.hero-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.hero-media {
  background: url("assets/images/hero-john-deere-aratura.webp") center 64% / cover no-repeat;
  transform: scale(1.02);
  animation: hero-settle 1.4s ease both;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 24, 14, 0.92) 0%, rgba(7, 24, 14, 0.66) 44%, rgba(7, 24, 14, 0.16) 76%),
    linear-gradient(0deg, rgba(7, 24, 14, 0.72) 0%, transparent 38%);
}

.hero-content {
  padding: calc(var(--header-height) + 80px) 0 130px;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--forest-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-kicker {
  color: rgba(255, 255, 255, 0.82);
  animation: rise-in 700ms 120ms ease both;
}

.hero-kicker::before,
.eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--brand);
}

.hero h1 {
  max-width: 950px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7.1vw, 7.1rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.95;
  animation: rise-in 800ms 210ms ease both;
}

.hero h1 span {
  color: #dcebd5;
  font-style: italic;
}

.hero-subtitle {
  max-width: 660px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  animation: rise-in 800ms 300ms ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: rise-in 800ms 390ms ease both;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0 22px;
  font-size: 0.93rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 170ms ease, background-color 170ms ease, border-color 170ms ease;
}

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

.button svg {
  width: 19px;
  height: 19px;
}

.button-primary {
  background: var(--brand);
  color: var(--forest-950);
}

.button-primary:hover {
  background: #77c94a;
}

.button-ghost,
.button-outline-light {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button-ghost:hover,
.button-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.13);
}

.hero-foot {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-foot > div {
  display: grid;
  gap: 2px;
}

.hero-foot-label {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-foot strong {
  font-size: 0.94rem;
}

.scroll-cue {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-cue svg {
  width: 20px;
  height: 20px;
  animation: bounce 1.7s ease-in-out infinite;
}

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

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(36px, 5vw, 68px);
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -20px;
  left: -20px;
  width: 35%;
  height: 52%;
  border-left: 4px solid var(--brand);
  border-top: 4px solid var(--brand);
}

.about-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-label {
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: min(260px, 64%);
  padding: 20px 24px;
  background: var(--forest-900);
  color: var(--white);
}

.image-label span,
.image-label strong {
  display: block;
}

.image-label span {
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.image-label strong {
  margin-top: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
}

.about-copy .lead {
  margin: 28px 0 18px;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.8vw, 1.25rem);
  line-height: 1.75;
}

.about-copy > p:not(.eyebrow, .lead) {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.principles {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}

.principles > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-weight: 750;
}

.principles svg {
  width: 24px;
  height: 24px;
  color: var(--brand-dark);
}

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

.section-heading,
.fleet-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.5fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 36px;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.68);
}

.section-heading > p,
.fleet-intro > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.service-card {
  position: relative;
  min-height: 220px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--forest-950);
  transition: background-color 200ms ease, transform 200ms ease;
}

.service-card:hover {
  z-index: 2;
  background: var(--forest-800);
  transform: translateY(-4px);
}

.service-card > svg {
  width: 36px;
  height: 36px;
  margin-bottom: 28px;
  color: var(--brand);
}

.service-card > span {
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.72rem;
  font-weight: 800;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.service-card-accent {
  background: var(--brand);
  color: var(--forest-950);
}

.service-card-accent:hover {
  background: #75c548;
}

.service-card-accent > svg,
.service-card-accent > span,
.service-card-accent p {
  color: var(--forest-950);
}

.fleet {
  overflow: hidden;
  background: var(--cream);
}

.fleet-intro > p {
  color: var(--muted);
}

.fleet-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.fleet-gallery figure {
  position: relative;
  margin: 0;
  min-height: 196px;
  overflow: hidden;
  background: var(--forest-900);
}

.fleet-main {
  grid-row: 1 / 3;
  min-height: 408px;
}

.fleet-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

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

.fleet-gallery figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65);
}

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

.gallery-heading > p {
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  grid-column: auto;
  grid-row: auto;
  min-width: 0;
  border: 0;
  padding: 0;
  overflow: hidden;
  background: var(--forest-900);
  cursor: zoom-in;
}

.gallery-item-wide {
  grid-column: auto;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms ease, opacity 300ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 25, 15, 0.72), transparent 50%);
  opacity: 0.75;
  transition: opacity 250ms ease;
}

.gallery-item span {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.gallery-item:hover img {
  transform: scale(1.045);
}

.gallery-item:hover::after {
  opacity: 1;
}

.contact-band {
  padding: 92px 0;
  color: var(--white);
  background: var(--forest-900);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.7fr);
  gap: clamp(50px, 8vw, 110px);
}

.contact-intro h2 {
  max-width: 700px;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.68);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-details {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-row > span {
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-row address {
  font-style: normal;
}

.contact-row div {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.contact-row a {
  overflow-wrap: anywhere;
}

.contact-row a:hover {
  color: var(--brand);
}

.contact-row strong {
  margin-right: 8px;
}

.map-wrap {
  position: relative;
  min-height: 430px;
  background: #d8ddd8;
}

.map-wrap iframe {
  width: 100%;
  height: 430px;
  display: block;
  filter: saturate(0.72) contrast(1.05);
}

.map-link {
  position: absolute;
  right: 22px;
  bottom: 22px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border-radius: 4px;
  background: var(--white);
  color: var(--forest-900);
  box-shadow: var(--shadow);
  font-size: 0.86rem;
  font-weight: 800;
}

.map-link svg {
  width: 18px;
  height: 18px;
}

.site-footer {
  padding: 58px 0 90px;
  color: rgba(255, 255, 255, 0.64);
  background: var(--forest-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-brand {
  width: min(300px, 100%);
}

.footer-links {
  display: grid;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--brand);
}

.footer-legal p {
  margin: 0 0 7px;
  font-size: 0.87rem;
}

.mobile-actions {
  display: none;
}

.lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  border: 0;
  padding: 0;
  background: rgba(5, 15, 9, 0.96);
  color: var(--white);
}

.lightbox::backdrop {
  background: rgba(5, 15, 9, 0.96);
}

.lightbox[open] {
  display: grid;
  place-items: center;
}

.lightbox figure {
  width: min(1100px, calc(100% - 120px));
  height: min(760px, calc(100% - 110px));
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
}

.lightbox figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox figcaption {
  text-align: center;
  font-size: 0.9rem;
}

.lightbox-close,
.lightbox-nav {
  position: fixed;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
}

.lightbox-close {
  top: 22px;
  right: 22px;
}

.lightbox-prev {
  top: 50%;
  left: 22px;
}

.lightbox-next {
  top: 50%;
  right: 22px;
}

.lightbox-close svg,
.lightbox-nav svg {
  width: 22px;
  height: 22px;
}

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

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

@keyframes hero-settle {
  from { opacity: 0; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1.02); }
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 20px;
    font-size: 0.84rem;
  }

  .brand {
    width: 270px;
  }

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

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 88px;
  }

  .container,
  .header-inner {
    width: min(100% - 32px, var(--container));
  }

  .section {
    padding: 52px 0;
  }

  .brand {
    width: 230px;
  }

  .menu-toggle {
    display: block;
    color: var(--white);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    height: calc(100svh - var(--header-height));
    display: grid;
    align-content: start;
    gap: 0;
    padding: 30px 20px;
    background: var(--forest-950);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav > a {
    padding: 18px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 1.08rem;
  }

  .main-nav > a::after {
    display: none;
  }

  .nav-contact {
    margin-top: 20px;
    border: 1px solid var(--brand) !important;
    text-align: center;
  }

  .hero {
    min-height: clamp(620px, 86svh, 720px);
  }

  .hero-content {
    padding-bottom: 150px;
  }

  .hero h1 {
    max-width: 690px;
  }

  .hero-foot {
    gap: 30px;
  }

  .about-grid,
  .section-heading,
  .fleet-intro,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    max-width: 650px;
  }

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

  .section-heading,
  .fleet-intro {
    gap: 24px;
  }

  .section-heading > p,
  .fleet-intro > p {
    max-width: 650px;
  }

  .fleet-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .fleet-main {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 310px;
  }

  .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 180px;
  }

  .contact-details {
    max-width: 650px;
  }

  .footer-grid {
    gap: 34px;
  }
}

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

  .section {
    padding: 42px 0;
  }

  .site-header {
    height: var(--header-height);
  }

  .brand {
    width: 215px;
  }

  .hero {
    min-height: clamp(610px, 92svh, 690px);
  }

  .hero-media {
    background-position: 59% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 24, 14, 0.87), rgba(7, 24, 14, 0.38)),
      linear-gradient(0deg, rgba(7, 24, 14, 0.88), transparent 55%);
  }

  .hero-content {
    padding-top: 120px;
    padding-bottom: 170px;
  }

  .hero-kicker {
    max-width: 290px;
    font-size: 0.67rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
    line-height: 0.98;
  }

  .hero-subtitle {
    margin-top: 22px;
  }

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

  .button {
    width: 100%;
  }

  .hero-foot {
    min-height: 116px;
    gap: 20px;
  }

  .hero-foot > div {
    flex: 1;
  }

  .scroll-cue {
    display: none;
  }

  h2 {
    font-size: clamp(2.45rem, 13vw, 3.6rem);
  }

  .about-grid {
    gap: 42px;
  }

  .about-image::before {
    top: -10px;
    left: -8px;
  }

  .image-label {
    right: -5px;
    bottom: -24px;
    padding: 15px 18px;
  }

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

  .service-card {
    min-height: 184px;
    padding: 16px;
  }

  .service-card > svg {
    width: 30px;
    height: 30px;
    margin-bottom: 20px;
  }

  .service-card > span {
    top: 16px;
    right: 16px;
  }

  .service-card h3 {
    font-size: 1rem;
  }

  .service-card p {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .fleet-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .fleet-main {
    grid-column: 1 / -1;
    min-height: 230px;
  }

  .fleet-side {
    min-height: 145px;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 132px;
    gap: 8px;
  }

  .gallery-item,
  .gallery-item-wide,
  .gallery-item-tall {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: auto;
  }

  .contact-band {
    padding: 64px 0;
  }

  .contact-actions {
    display: none;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .map-wrap,
  .map-wrap iframe {
    height: 360px;
    min-height: 360px;
  }

  .map-link {
    right: 12px;
    bottom: 12px;
    left: 12px;
    justify-content: center;
  }

  .site-footer {
    padding-bottom: 100px;
  }

  .mobile-actions {
    position: fixed;
    z-index: 40;
    right: 0;
    bottom: 0;
    left: 0;
    height: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--forest-950);
    box-shadow: 0 -8px 30px rgba(7, 24, 14, 0.22);
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--white);
    font-size: 0.87rem;
    font-weight: 800;
  }

  .mobile-actions a + a {
    background: var(--brand);
    color: var(--forest-950);
  }

  .mobile-actions svg {
    width: 19px;
    height: 19px;
  }

  .lightbox figure {
    width: calc(100% - 24px);
    height: calc(100% - 130px);
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }

  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 18px;
  }

  .lightbox-prev {
    left: calc(50% - 58px);
  }

  .lightbox-next {
    right: calc(50% - 58px);
  }
}

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

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

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