:root {
  --bg: #f3f1ea;
  --surface: #fbfaf6;
  --surface-alt: #eef3e2;
  --surface-dark: #111814;
  --surface-dark-soft: #17211c;
  --text: #111713;
  --muted: #4f5a53;
  --line: rgba(17, 23, 19, 0.12);
  --line-strong: rgba(17, 23, 19, 0.2);
  --green: #7f9d35;
  --green-deep: #5e7928;
  --green-soft: rgba(127, 157, 53, 0.12);
  --white: #ffffff;
  --radius-xl: 16px;
  --radius-lg: 12px;
  --radius-md: 8px;
  --container: 1440px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Aptos", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.76;
  background: var(--bg);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid rgba(17, 23, 19, 0.06);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 78px;
}

.brand img {
  width: 142px;
  height: auto;
}

.site-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 8px 14px;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 0.88rem;
  color: rgba(17, 23, 19, 0.82);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  color: var(--text);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--green-deep);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--line);
}

.button-header-cta {
  color: var(--green-deep);
  background: rgba(127, 157, 53, 0.1);
  border-color: rgba(127, 157, 53, 0.32);
  min-height: 44px;
  padding: 0 16px;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
}

.button-header-cta:hover {
  background: rgba(127, 157, 53, 0.16);
  border-color: rgba(127, 157, 53, 0.42);
}

.page-main {
  padding-bottom: 64px;
}

.page-hero {
  padding: 56px 0 42px;
}

.hero-home {
  padding: 20px 0 42px;
}

.hero-home-panel {
  --hero-frame-pad: clamp(16px, 1.6vw, 24px);
  --hero-photo-height: clamp(500px, 58vh, 560px);
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  min-height: calc(var(--hero-photo-height) + var(--hero-frame-pad) + var(--hero-frame-pad));
  padding: var(--hero-frame-pad);
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #17211c;
  border: 1px solid rgba(17, 23, 19, 0.08);
}

.hero-home-copy {
  position: absolute;
  left: var(--hero-frame-pad);
  top: var(--hero-frame-pad);
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(58%, 690px);
  height: var(--hero-photo-height);
  padding: clamp(28px, 2.6vw, 36px) clamp(32px, 3.4vw, 50px) clamp(28px, 3vw, 38px);
  background: #5e7928;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
  text-align: left;
}

.hero-home-kicker {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-home-media {
  grid-column: 6 / -1;
  grid-row: 1;
  align-self: start;
  min-height: 0;
  height: var(--hero-photo-height);
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.hero-home-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}

.hero-home .page-title {
  max-width: 100%;
  margin: 0;
  color: var(--white);
  font-size: 3.15rem;
  line-height: 1.06;
  text-wrap: pretty;
  letter-spacing: 0;
}

.hero-home .page-title .accent {
  color: #e7f1c9;
}

.hero-home .page-subtitle {
  max-width: 100%;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.64;
}

.hero-home .page-actions {
  justify-content: flex-start;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-home .button-primary {
  color: var(--green-deep);
  background: var(--white);
}

.hero-home .button-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.34);
}

.hero-reveal {
  transform: translateY(26px);
  animation: heroReveal 760ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-reveal-1 {
  animation-delay: 120ms;
}

.hero-reveal-2 {
  animation-delay: 280ms;
}

.hero-reveal-3 {
  animation-delay: 420ms;
}

@keyframes heroReveal {
  from {
    transform: translateY(26px);
  }

  to {
    transform: translateY(0);
  }
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 34px;
  align-items: start;
}

.page-hero-copy {
  padding-top: 8px;
}

.page-hero-centered {
  max-width: 900px;
  text-align: center;
}

.page-hero-centered .page-hero-copy {
  padding-top: 0;
}

.page-hero-centered .page-title,
.page-hero-centered .page-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.gallery-hero {
  padding-bottom: 18px;
}

.page-overline {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-title {
  max-width: 720px;
  margin: 0;
  font-family: "Aptos Display", "Aptos", "Avenir Next", sans-serif;
  font-size: clamp(2.7rem, 5.2vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.page-title .accent {
  color: var(--green-deep);
}

.page-title .title-break {
  display: block;
}

.page-subtitle {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.9;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.meta-chip {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-strip {
  display: grid;
  gap: 8px;
  max-width: 520px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.contact-strip p {
  margin: 0;
}

.contact-strip strong {
  color: var(--text);
}

.contact-strip a {
  color: var(--green-deep);
  font-weight: 700;
}

.page-hero-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.68fr) minmax(0, 0.68fr);
  grid-template-rows: 340px 190px;
  gap: 18px;
}

.media-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(17, 23, 19, 0.06);
  background: var(--surface);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card-main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  min-height: 548px;
}

.media-card-tall {
  grid-row: 1 / 2;
  min-height: 340px;
}

.media-card-tall-a {
  grid-column: 2 / 3;
}

.media-card-tall-b {
  grid-column: 3 / 4;
}

.media-card-wide {
  grid-column: 2 / 4;
  grid-row: 2 / 3;
  min-height: 190px;
}

.section {
  padding: 62px 0 0;
}

.section-head {
  max-width: 900px;
  margin-bottom: 28px;
}

.section-head-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-family: "Aptos Display", "Aptos", "Avenir Next", sans-serif;
  font-size: clamp(1.95rem, 3.3vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-intro {
  max-width: 760px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.86;
}

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

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

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

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

.card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  position: relative;
  overflow: hidden;
}

.card h2,
.card h3,
.card strong {
  margin: 0 0 6px;
  font-family: "Aptos Display", "Aptos", "Avenir Next", sans-serif;
  font-size: 1.45rem;
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.card p,
.card li {
  color: var(--muted);
  line-height: 1.82;
}

.card ul {
  padding-left: 18px;
  margin: 12px 0 0;
}

.section-why {
  padding-top: 48px;
}

.why-cards .card {
  padding: 28px 24px 24px;
  padding-left: 26px;
  background: rgba(255, 255, 255, 0.88);
}

.why-cards .card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--green);
}

.section-dark {
  margin-top: 64px;
  padding: 68px 0;
  background: #122019;
}

.section-dark .section-title,
.section-dark .card h3,
.section-dark .card strong {
  color: var(--white);
}

.section-dark .section-intro,
.section-dark .card p,
.section-dark .card li {
  color: rgba(255, 255, 255, 0.72);
}

.use-cards .card {
  padding: 28px;
  background: #dce9b7;
  border-color: rgba(220, 233, 183, 0.9);
}

.use-cards .card h3 {
  margin-bottom: 14px;
  font-size: 1.56rem;
  color: #102018;
}

.use-cards .card:nth-child(2) {
  background: #cfe19b;
}

.use-cards .card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: #8dac45;
}

.use-cards .card p {
  color: rgba(16, 32, 24, 0.8);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 28px;
  align-items: start;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
}

.split-media {
  display: grid;
  gap: 16px;
}

.split-media figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 23, 19, 0.06);
  border-radius: var(--radius-xl);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-large {
  min-height: 560px;
}

.image-medium {
  min-height: 340px;
}

.image-small {
  min-height: 220px;
}

.content-layout {
  display: grid;
  gap: 34px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.82fr);
  gap: 28px;
  align-items: start;
}

.feature-row.reverse {
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.05fr);
}

.feature-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.feature-copy.prose {
  gap: 16px;
}

.feature-media {
  display: grid;
  gap: 14px;
}

.feature-media figure,
.story-card figure,
.wide-story figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 23, 19, 0.06);
  border-radius: var(--radius-lg);
  background: rgba(17, 23, 19, 0.04);
}

.feature-media img,
.story-card img,
.wide-story img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-media-main {
  aspect-ratio: 4 / 3;
}

.feature-media-wide {
  aspect-ratio: 16 / 10;
}

.feature-media-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-media-pair figure {
  aspect-ratio: 1 / 1;
}

.story-grid {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

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

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

.story-card {
  display: grid;
  gap: 15px;
  align-content: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
}

.story-card figure {
  aspect-ratio: 16 / 10;
}

.story-card h2,
.story-card h3 {
  margin: 0;
  font-family: "Aptos Display", "Aptos", "Avenir Next", sans-serif;
  font-size: clamp(1.45rem, 2.15vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.story-card p,
.story-card li {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.story-card .bullet-list {
  gap: 10px;
}

.story-card-accent {
  background: #dce9b7;
  border-color: rgba(141, 172, 69, 0.34);
}

.story-card-accent p,
.story-card-accent li {
  color: rgba(16, 32, 24, 0.78);
}

.wide-story {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
}

.wide-story figure {
  aspect-ratio: 16 / 10;
}

.prose {
  display: grid;
  gap: 18px;
}

.prose-wide {
  max-width: 980px;
}

.prose p {
  margin: 0;
  color: var(--muted);
  line-height: 1.76;
}

.prose h2 {
  margin: 8px 0 0;
  font-family: "Aptos Display", "Aptos", "Avenir Next", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.prose h3 {
  margin: 8px 0 0;
  font-family: "Avenir Next Condensed", "Avenir Next", sans-serif;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: -0.035em;
}

.bullet-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.bullet-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 999px;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 4px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 16px 18px 16px 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.64);
  color: var(--muted);
  line-height: 1.68;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 16px;
  color: var(--green-deep);
  font-weight: 900;
}

.check-list strong {
  color: var(--text);
}

.domy-content .section-title {
  margin-bottom: 6px;
}

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.metric {
  padding: 20px 0;
  border-top: 1px solid var(--line-strong);
}

.metric strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Avenir Next Condensed", "Avenir Next", sans-serif;
  font-size: 1.85rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.metric span {
  color: var(--muted);
  font-size: 0.94rem;
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background-color 180ms ease;
}

.faq-list details:hover {
  background: rgba(127, 157, 53, 0.06);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 18px;
  font-weight: 700;
  transition: color 180ms ease, padding-left 180ms ease;
}

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

.faq-list details:hover summary {
  color: var(--green-deep);
  padding-left: 24px;
}

.faq-list details[open] summary {
  color: var(--green-deep);
}

.faq-list .answer {
  padding: 0 18px 20px;
  color: var(--muted);
  line-height: 1.72;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 23, 19, 0.06);
  border-radius: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item-a {
  grid-column: span 5;
  grid-row: span 5;
}

.gallery-item-b,
.gallery-item-c {
  grid-row: span 3;
}

.gallery-item-b {
  grid-column: span 4;
}

.gallery-item-c {
  grid-column: span 3;
}

.gallery-item-d {
  grid-column: span 3;
  grid-row: span 4;
}

.gallery-item-e {
  grid-column: span 4;
  grid-row: span 4;
}

.gallery-item-f {
  grid-column: span 5;
  grid-row: span 4;
}

.gallery-item-g {
  grid-column: span 4;
  grid-row: span 3;
}

.gallery-item-h {
  grid-column: span 3;
  grid-row: span 3;
}

.gallery-item-i {
  grid-column: span 5;
  grid-row: span 3;
}

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

.gallery-grid-balanced .gallery-item {
  display: block;
  width: 100%;
  padding: 0;
  aspect-ratio: 4 / 3;
  grid-column: auto;
  grid-row: auto;
  border-radius: var(--radius-md);
  background: var(--surface);
  cursor: zoom-in;
}

.gallery-grid-balanced .gallery-item img {
  transition: transform 220ms ease;
}

.gallery-grid-balanced .gallery-item:hover img,
.gallery-grid-balanced .gallery-item:focus-visible img {
  transform: scale(1.035);
}

.gallery-grid-balanced .gallery-item:focus-visible {
  outline: 3px solid rgba(127, 157, 53, 0.46);
  outline-offset: 4px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 76px;
  align-items: center;
  gap: 20px;
  padding: 36px;
  background: rgba(8, 13, 10, 0.94);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox-frame {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin: 0;
  min-width: 0;
}

.gallery-lightbox-frame img {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 128px);
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover,
.gallery-lightbox-close:focus-visible,
.gallery-lightbox-nav:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.36);
  outline: none;
}

.gallery-lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
}

.gallery-lightbox-nav {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  font-size: 3rem;
  line-height: 1;
}

.gallery-lightbox-prev {
  justify-self: end;
}

.gallery-lightbox-next {
  justify-self: start;
}

.body-lock {
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
  align-items: start;
}

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

.contact-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
}

.contact-card h3 {
  margin: 0 0 12px;
  font-family: "Avenir Next Condensed", "Avenir Next", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -0.035em;
}

.contact-card a,
.contact-card p {
  display: block;
  color: var(--muted);
  line-height: 1.65;
}

.contact-card a + a,
.contact-card p + p {
  margin-top: 6px;
}

.contact-details {
  display: grid;
  gap: 26px;
}

.contact-main-address {
  padding: 22px 0 20px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.contact-main-address span {
  display: block;
  margin-bottom: 8px;
  color: var(--green-deep);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.contact-main-address h3 {
  margin: 0;
  font-family: "Aptos Display", "Aptos", "Avenir Next", sans-serif;
  font-size: clamp(1.15rem, 1.35vw, 1.32rem);
  line-height: 1.34;
  letter-spacing: 0;
}

.contact-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.contact-list-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list-item h3 {
  margin: 0 0 8px;
  font-family: "Aptos", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 0.98rem;
  line-height: 1.35;
  letter-spacing: 0;
}

.contact-list-item a,
.contact-list-item p {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.56;
}

.contact-list-item a + a,
.contact-list-item p + p {
  margin-top: 3px;
}

.contact-form {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.94rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(127, 157, 53, 0.7);
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.note-box {
  padding: 20px;
  border-left: 3px solid var(--green);
  background: var(--surface-alt);
  color: var(--text);
}

.footer {
  margin-top: 72px;
  padding: 30px 0 20px;
  background: #121e1a;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 330px);
  gap: 38px;
  align-items: center;
}

.footer-main {
  display: grid;
  gap: 22px;
  align-content: center;
}

.footer-main-logo {
  width: 176px;
  height: auto;
}

.footer-brand-address {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.footer-contact-col {
  display: grid;
  gap: 10px;
}

.footer-contact-col:last-child {
  padding-top: 61px;
}

.footer-contact h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-family: "Avenir Next Condensed", "Avenir Next", sans-serif;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.footer-meta {
  position: relative;
  padding-left: 28px;
  display: block;
  line-height: 1.65;
}

.footer-meta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10px;
}

.footer-meta-phone::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.33 1.8.61 2.66a2 2 0 0 1-.45 2.11L8 9.91a16 16 0 0 0 6.09 6.09l1.42-1.27a2 2 0 0 1 2.11-.45c.86.28 1.76.49 2.66.61A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.footer-meta-mail::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16v16H4z'/%3E%3Cpath d='m22 6-10 7L2 6'/%3E%3C/svg%3E");
}

.footer-meta-address::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s-6-5.33-6-11a6 6 0 1 1 12 0c0 5.67-6 11-6 11z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E");
}

.footer-logo-map {
  display: grid;
  align-content: center;
  justify-items: end;
  width: 100%;
  padding: 0;
  background: #121e1a;
}

.footer-family-mark {
  width: min(100%, 300px);
  height: auto;
}

.footer-note-row {
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

@media (max-width: 1180px) {
  .page-hero-inner,
  .split,
  .split.reverse,
  .feature-row,
  .feature-row.reverse,
  .wide-story,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .page-hero-media {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.68fr) minmax(0, 0.68fr);
    grid-template-rows: 300px 170px;
  }

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

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

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

  .feature-row.reverse .feature-copy {
    order: 1;
  }

  .feature-row.reverse .feature-media {
    order: 2;
  }

  .footer-brand-address {
    grid-template-columns: 170px minmax(0, 1fr);
  }

  .footer-contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1260px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-header .button {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .page-hero-media {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.68fr) minmax(0, 0.68fr);
    grid-template-rows: 290px 170px;
  }

  .hero-home-panel {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 24px;
    align-items: start;
    margin-bottom: 0;
  }

  .hero-home-media {
    grid-column: 1;
    grid-row: 1;
    min-height: 430px;
    height: 46vh;
  }

  .hero-home-copy {
    position: relative;
    left: auto;
    top: auto;
    grid-column: 1;
    grid-row: 2;
    display: block;
    width: min(calc(100% - 48px), 620px);
    height: auto;
    max-width: none;
    margin: -76px 0 0 24px;
    padding: 40px 34px 46px;
  }

  .hero-home .page-title {
    font-size: 3.3rem;
  }

  .hero-home .page-actions {
    margin-top: 26px;
    padding-top: 0;
    border-top: 0;
  }

  .media-card-main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    min-height: 478px;
  }

  .media-card-tall {
    grid-row: 1 / 2;
    min-height: 290px;
  }

  .media-card-tall-a {
    grid-column: 2 / 3;
  }

  .media-card-tall-b {
    grid-column: 3 / 4;
  }

  .media-card-wide {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
    min-height: 170px;
  }

  .cards-2,
  .cards-3,
  .cards-4,
  .metrics-strip {
    grid-template-columns: 1fr;
  }

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

  .gallery-item-a,
  .gallery-item-b,
  .gallery-item-c,
  .gallery-item-d,
  .gallery-item-e,
  .gallery-item-f,
  .gallery-item-g,
  .gallery-item-h,
  .gallery-item-i {
    grid-column: auto;
    grid-row: auto;
  }
}

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

  .site-header .button {
    display: none;
  }

  .page-hero {
    padding-top: 34px;
  }

  .page-hero-media {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 12px;
  }

  .media-card-main,
  .media-card-tall,
  .media-card-wide {
    grid-column: auto;
    grid-row: auto;
    height: 220px;
    min-height: 220px;
  }

  .media-card-main {
    height: 320px;
    min-height: 320px;
  }

  .hero-home {
    padding-top: 12px;
    padding-bottom: 24px;
  }

  .hero-home-panel {
    padding: 10px;
  }

  .hero-home-media {
    min-height: 230px;
    height: clamp(230px, 30vh, 280px);
  }

  .hero-home-copy {
    width: 100%;
    margin: -32px 0 0;
    padding: 24px 18px 28px;
  }

  .hero-home-kicker {
    margin-bottom: 12px;
    font-size: 0.7rem;
  }

  .hero-home .page-title {
    font-size: 2rem;
    line-height: 1.08;
  }

  .page-title {
    font-size: 3rem;
  }

  .hero-home .page-subtitle {
    margin-top: 18px;
    font-size: 0.92rem;
    line-height: 1.52;
  }

  .hero-home .page-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
  }

  .hero-home .page-actions .button {
    width: min(100%, 320px);
    min-height: 46px;
  }

  .section-why {
    padding-top: 24px;
  }

  .gallery-grid,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .feature-media-pair {
    grid-template-columns: 1fr;
  }

  .gallery-lightbox {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    gap: 16px;
    padding: 68px 14px 20px;
  }

  .gallery-lightbox-frame img {
    max-height: calc(100vh - 164px);
  }

  .gallery-lightbox-nav {
    position: fixed;
    bottom: 18px;
    width: 52px;
    height: 52px;
    font-size: 2.4rem;
  }

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

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

  .footer-brand-address {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-contact-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-contact-col:last-child {
    padding-top: 0;
  }

  .footer-logo-map {
    justify-items: center;
  }

  .footer-family-mark {
    width: min(245px, 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-reveal {
    transform: none;
    animation: none;
  }
}
