:root {
  --green-950: #102118;
  --green-900: #173421;
  --green-800: #1f4e2d;
  --green-700: #2f6b3e;
  --sage-200: #dfe9d7;
  --sage-100: #eef4e8;
  --cream-100: #f8f6ed;
  --cream-200: #f0eadb;
  --clay-500: #b76843;
  --gold-400: #d9aa53;
  --ink: #1d261f;
  --muted: #647064;
  --white: #ffffff;
  --line: rgba(29, 38, 31, 0.12);
  --shadow: 0 24px 70px rgba(16, 33, 24, 0.16);
  --radius: 8px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-100);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--green-900);
  border-radius: 6px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  color: var(--white);
  transition: background 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.site-header.is-scrolled,
.site-header.nav-is-open {
  color: var(--ink);
  background: rgba(248, 246, 237, 0.94);
  box-shadow: 0 12px 40px rgba(16, 33, 24, 0.12);
  backdrop-filter: blur(18px);
}

.header-row {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.brand-text {
  display: grid;
  line-height: 1.08;
}

.brand-text strong {
  font-size: 1.38rem;
  font-weight: 950;
}

.brand-text small {
  color: currentColor;
  opacity: 0.78;
  font-size: 0.9rem;
  font-weight: 650;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  padding: 10px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.92rem;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-current {
  background: rgba(217, 170, 83, 0.18);
}

.header-call {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: var(--green-950);
  background: var(--gold-400);
  border-radius: 6px;
  font-weight: 900;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  color: currentColor;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
}

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

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

.hero-home {
  min-height: min(820px, 88svh);
}

.hero-slider,
.hero-slide,
.page-hero picture {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  animation: heroFade 10s linear infinite;
  transform-origin: center;
}

.hero-slide:nth-child(1) {
  --zoom-start: 1;
  --zoom-end: 1.14;
  --focus-x: 58%;
  --focus-y: 42%;
}

.hero-slide:nth-child(2) {
  --zoom-start: 1;
  --zoom-end: 1.14;
  --focus-x: 52%;
  --focus-y: 42%;
  animation-delay: 5s;
}

.hero-slide img,
.page-hero img,
.image-cta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide img {
  transform: scale(var(--zoom-start));
  transform-origin: var(--focus-x) var(--focus-y);
  animation: heroKenBurns 10s linear infinite;
}

.hero-slide:nth-child(2) img {
  animation-delay: 5s;
}

@keyframes heroFade {
  0%,
  47% {
    opacity: 1;
  }

  52%,
  100% {
    opacity: 0;
  }
}

@keyframes heroKenBurns {
  0% {
    transform: scale(var(--zoom-start));
  }

  47% {
    transform: scale(var(--zoom-end));
  }

  52%,
  100% {
    transform: scale(var(--zoom-start));
  }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 33, 24, 0.88), rgba(16, 33, 24, 0.56) 45%, rgba(16, 33, 24, 0.16)),
    linear-gradient(0deg, rgba(16, 33, 24, 0.36), rgba(16, 33, 24, 0.05));
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: min(820px, 88svh);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: calc(var(--header-height) + 48px) 0 84px;
}

.hero-content > * {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--clay-500);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.image-cta .eyebrow,
.cta-band .eyebrow {
  color: var(--gold-400);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: 5.8rem;
  max-width: 900px;
}

.page-hero h1 {
  font-size: 4.5rem;
}

h2 {
  font-size: 3.35rem;
}

h3 {
  font-size: 1.5rem;
}

.hero-kicker {
  margin: 18px 0 0;
  font-size: 1.9rem;
  line-height: 1.3;
  font-weight: 750;
}

.hero-text,
.page-hero p,
.section-copy p,
.story-card p,
.mission-cards p,
.empty-state p,
.contact-card p,
.image-cta p,
.cta-content p {
  font-size: 1.04rem;
}

.hero-text {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions,
.contact-actions,
.empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-home .hero-actions {
  margin-bottom: 104px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1.1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--green-950);
  background: var(--gold-400);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #f0bf61;
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.38);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

.btn-outline {
  color: var(--green-900);
  background: transparent;
  border-color: rgba(31, 78, 45, 0.32);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--sage-100);
  border-color: rgba(31, 78, 45, 0.56);
}

.quick-strip {
  position: relative;
  z-index: 4;
  margin-top: -34px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quick-grid article {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.quick-grid article:last-child {
  border-right: 0;
}

.quick-grid span,
.stat-panel span,
.contact-list span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.quick-grid strong,
.stat-panel strong {
  display: block;
  margin-top: 6px;
  color: var(--green-900);
  font-size: 1.15rem;
  line-height: 1.25;
}

.section {
  padding: clamp(72px, 10vw, 132px) 0;
}

.split-layout,
.service-layout,
.mission-grid,
.contact-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

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

.section-copy p,
.story-card p,
.mission-cards p,
.empty-state p,
.contact-card p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green-800);
  font-weight: 900;
  border-bottom: 2px solid rgba(183, 104, 67, 0.42);
}

.image-panel {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--green-900);
}

.image-panel picture,
.image-panel img {
  width: 100%;
  height: 100%;
}

.image-panel {
  aspect-ratio: 4 / 3;
}

.image-panel img {
  object-fit: cover;
}

.image-panel figcaption {
  padding: 14px 16px;
  color: var(--white);
  background: var(--green-900);
  font-size: 0.9rem;
  font-weight: 800;
}

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

.life-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.78fr 0.78fr;
  grid-auto-rows: 230px;
  gap: 14px;
}

.life-photo,
.about-photo {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-900);
  box-shadow: 0 18px 48px rgba(16, 33, 24, 0.12);
}

.life-photo-large {
  grid-row: span 2;
}

.life-photo img,
.about-photo img,
.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.life-photo figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 8px 11px;
  color: var(--white);
  background: rgba(16, 33, 24, 0.72);
  border-radius: 6px;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.section-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 26px;
}

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

.about-moments-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.about-photo-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 190px;
  gap: 14px;
}

.about-photo-tall {
  grid-row: span 2;
}

.about-photo-wide {
  grid-column: span 2;
}

.soft-section {
  background: var(--sage-100);
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

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

.benefit-card,
.story-card,
.mission-cards article,
.contact-card,
.empty-state,
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(16, 33, 24, 0.08);
}

.benefit-card,
.story-card {
  padding: 24px;
}

.benefit-card p {
  color: var(--muted);
}

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

.service-list {
  display: grid;
  gap: 12px;
}

.service-list article {
  padding: 24px;
  color: var(--white);
  background: var(--green-900);
  border-radius: var(--radius);
}

.service-list p {
  color: rgba(255, 255, 255, 0.88);
}

.service-list article:nth-child(2) {
  background: var(--green-800);
}

.service-list article:nth-child(3) {
  color: var(--ink);
  background: var(--cream-200);
}

.service-list article:nth-child(3) p {
  color: #566254;
}

.image-cta {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

.image-cta picture {
  position: absolute;
  inset: 0;
}

.image-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 33, 24, 0.88), rgba(16, 33, 24, 0.36));
}

.image-cta-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin-right: auto;
  margin-left: max(20px, calc((100vw - 1180px) / 2));
}

.image-cta p,
.cta-content p {
  color: rgba(255, 255, 255, 0.82);
}

.faq-layout {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  color: var(--green-900);
  font-weight: 900;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--clay-500);
}

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

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.page-hero {
  min-height: 620px;
  display: grid;
  align-items: end;
}

.compact-hero {
  min-height: 540px;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: calc(var(--header-height) + 84px) 0 92px;
}

.page-hero-content p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
}

.stat-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.stat-panel div {
  min-height: 138px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(16, 33, 24, 0.08);
}

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

.mission-cards {
  display: grid;
  gap: 16px;
}

.mission-cards article {
  padding: 28px;
}

.gallery-empty-section {
  background: var(--sage-100);
}

.gallery-page-section {
  background: var(--sage-100);
}

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

.gallery-photo {
  aspect-ratio: 4 / 3;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-900);
  box-shadow: 0 14px 36px rgba(16, 33, 24, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-photo:nth-child(1),
.gallery-photo:nth-child(8),
.gallery-photo:nth-child(17),
.gallery-photo:nth-child(31),
.gallery-photo:nth-child(47),
.gallery-photo:nth-child(64) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-photo:hover,
.gallery-photo:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(16, 33, 24, 0.18);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 28px;
  color: var(--white);
  background: rgba(16, 33, 24, 0.9);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-figure {
  width: min(1040px, 100%);
  max-height: calc(100svh - 96px);
  margin: 0;
  display: grid;
  gap: 12px;
}

.lightbox-figure img {
  width: 100%;
  max-height: calc(100svh - 96px);
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.lightbox-close {
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  width: 48px;
  height: 56px;
  transform: translateY(-50%);
  font-size: 2.1rem;
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.empty-state {
  max-width: 780px;
  padding: clamp(28px, 5vw, 52px);
}

.contact-section {
  background: var(--sage-100);
}

.contact-layout {
  align-items: stretch;
}

.contact-card {
  padding: clamp(28px, 4vw, 42px);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}

.contact-list a {
  display: grid;
  gap: 2px;
  padding: 16px;
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-list strong {
  color: var(--green-900);
  font-size: 1.08rem;
}

.map-panel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--cream-200);
}

.map-open {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 0 14px;
  color: #1a73e8;
  background: var(--white);
  border: 1px solid rgba(26, 115, 232, 0.14);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(16, 33, 24, 0.16);
  font-size: 0.92rem;
  font-weight: 800;
}

.map-open:hover,
.map-open:focus-visible {
  background: #f7fbff;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.cta-band {
  color: var(--white);
  background: var(--green-900);
}

.cta-content {
  max-width: 900px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--green-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 28px;
  padding: 54px 0 34px;
}

.footer-brand {
  display: inline-flex;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 900;
}

.footer-grid h2 {
  margin-bottom: 14px;
  color: var(--gold-400);
  font-size: 0.8rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-top: 8px;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

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

@media (max-width: 980px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(100% - 28px, 720px);
  }

  .header-row {
    gap: 12px;
  }

  .header-call {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 6px;
    padding: 14px;
    margin: 0;
    color: var(--ink);
    background: var(--cream-100);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .brand-text strong {
    font-size: 1.2rem;
  }

  .brand-text small {
    display: none;
  }

  h1 {
    font-size: 4.35rem;
  }

  .page-hero h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .hero-kicker {
    font-size: 1.55rem;
  }

  .hero-home,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 74px);
    padding-bottom: 92px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(16, 33, 24, 0.9), rgba(16, 33, 24, 0.38)),
      linear-gradient(90deg, rgba(16, 33, 24, 0.76), rgba(16, 33, 24, 0.16));
  }

  .quick-grid,
  .split-layout,
  .service-layout,
  .mission-grid,
  .about-moments-layout,
  .contact-layout,
  .faq-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-strip {
    margin-top: 0;
  }

  .quick-grid {
    border-radius: 0;
    box-shadow: none;
  }

  .quick-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

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

  .life-photo-large {
    grid-column: span 2;
  }

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

  .gallery-photo:nth-child(1),
  .gallery-photo:nth-child(8),
  .gallery-photo:nth-child(17),
  .gallery-photo:nth-child(31),
  .gallery-photo:nth-child(47),
  .gallery-photo:nth-child(64) {
    grid-column: auto;
    grid-row: auto;
  }

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

  .page-hero,
  .compact-hero {
    min-height: 500px;
  }

  .map-panel {
    min-height: 460px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 520px);
  }

  h1 {
    font-size: 3rem;
  }

  .page-hero h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  h3 {
    font-size: 1.28rem;
  }

  .hero-kicker {
    font-size: 1.28rem;
  }

  .hero-actions,
  .contact-actions,
  .empty-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
    padding-inline: 14px;
    text-align: center;
  }

  .benefit-grid,
  .life-grid,
  .stat-panel {
    grid-template-columns: 1fr;
  }

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

  .life-grid,
  .about-photo-mosaic {
    grid-auto-rows: 230px;
  }

  .life-photo-large,
  .gallery-photo:nth-child(1),
  .gallery-photo:nth-child(8),
  .gallery-photo:nth-child(17),
  .gallery-photo:nth-child(31),
  .gallery-photo:nth-child(47),
  .gallery-photo:nth-child(64),
  .about-photo-wide {
    grid-column: auto;
    grid-row: auto;
  }

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

  .lightbox {
    padding: 16px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .hero-home .hero-actions {
    margin-bottom: 82px;
  }

  .section {
    padding: 66px 0;
  }

  .image-cta {
    min-height: 520px;
  }

  .image-cta-content {
    width: min(100% - 24px, 520px);
    margin-inline: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

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

  .hero-slide,
  .hero-slide img {
    animation: none;
  }

  .hero-slide:first-child {
    opacity: 1;
  }
}
