:root {
  color-scheme: light;
  --page: #f1f4ef;
  --surface: #f8faf7;
  --surface-strong: #e4ebe3;
  --ink: #142019;
  --muted: #56645b;
  --line: #cbd4cc;
  --brand: #176b4d;
  --brand-strong: #123f31;
  --brand-soft: #dce9df;
  --service-1: #f8faf7;
  --service-2: #eef4ef;
  --service-3: #e1ece4;
  --service-4: #cfe1d4;
  --service-5: #a9cbb7;
  --service-6: #477b63;
  --on-brand: #f5faf6;
  --error: #a3362c;
  --focus: #89b79f;
  --header-height: 72px;
  --content: min(1240px, calc(100vw - 48px));
  --shadow: 0 24px 80px rgba(23, 60, 44, 0.14);
  font-family: "Avenir Next", "PingFang SC", "Microsoft YaHei", sans-serif;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --page: #0d1712;
  --surface: #132019;
  --surface-strong: #1c2c23;
  --ink: #edf4ee;
  --muted: #abb9af;
  --line: #33453a;
  --brand: #66b88f;
  --brand-strong: #2f7658;
  --brand-soft: #1d3428;
  --service-1: #15221b;
  --service-2: #192a21;
  --service-3: #1e3328;
  --service-4: #233d30;
  --service-5: #294b3a;
  --service-6: #2f7658;
  --on-brand: #f5faf6;
  --error: #ff8f83;
  --focus: #8dc8aa;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--page);
  padding: 10px 14px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
  background: color-mix(in srgb, var(--page) 90%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 12px;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  gap: 0;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 17px;
  letter-spacing: 0.02em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  white-space: nowrap;
}

.desktop-nav a,
.footer-links a {
  color: var(--muted);
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.header-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.theme-toggle,
.menu-toggle,
.filter-button {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.theme-toggle {
  width: 44px;
  height: 42px;
  padding: 0;
  font-size: 12px;
}

.menu-toggle {
  display: none;
  min-width: 58px;
  height: 42px;
  padding: 0 12px;
}

.mobile-menu {
  position: absolute;
  inset: 100% 0 auto;
  z-index: 1;
  height: calc(100dvh - var(--header-height));
  padding: 28px 24px;
  background: var(--page);
}

.mobile-menu a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 24px;
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--brand-strong);
  background: var(--brand-strong);
  color: var(--on-brand);
  cursor: pointer;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(1px) scale(0.99);
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
}

.button-inverse {
  border-color: var(--on-brand);
  background: var(--on-brand);
  color: #123f31;
}

.button-inverse:hover {
  border-color: #dfeae2;
  background: #dfeae2;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 0 4px;
  border-bottom: 1px solid currentColor;
  font-weight: 650;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link-light {
  color: var(--on-brand);
}

.hero {
  position: relative;
  min-height: calc(100dvh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #123f31;
  color: var(--on-brand);
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.hero-scrim {
  background: linear-gradient(90deg, rgba(8, 38, 28, 0.97) 0%, rgba(8, 38, 28, 0.82) 43%, rgba(8, 38, 28, 0.12) 76%);
}

.hero-content {
  position: relative;
  width: var(--content);
  margin: 0 auto;
  padding: 72px 0;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 680;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.hero-brand {
  margin: 24px 0 0;
  color: #ffffff;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: 0.08em;
}

.hero-description {
  max-width: 610px;
  margin: 18px 0 0;
  color: rgba(245, 250, 246, 0.83);
  font-size: clamp(17px, 1.5vw, 21px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: var(--content);
  margin: 0 auto;
  border-left: 1px solid var(--line);
}

.proof-item {
  display: grid;
  align-content: center;
  min-height: 178px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.proof-item strong {
  color: var(--brand);
  font-size: clamp(34px, 3.6vw, 54px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.04em;
}

.proof-item span {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  width: var(--content);
  margin: 0 auto;
  padding: 132px 0;
}

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

.services-section .section-heading {
  max-width: 1040px;
}

.section-heading h2,
.process-intro h2,
.nursery-copy h2,
.about-copy h2,
.contact-intro h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.section-heading p,
.process-intro p,
.about-copy > p,
.contact-intro > p {
  max-width: 640px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.service-scope {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.36fr) minmax(0, 0.64fr);
  min-height: 300px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--service-1);
  transition: border-color 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.service-card:nth-child(2) { background: var(--service-2); }
.service-card:nth-child(3) { background: var(--service-3); }
.service-card:nth-child(4) { background: var(--service-4); }
.service-card:nth-child(5) { background: var(--service-5); }
.service-card:nth-child(6) {
  background: var(--service-6);
  color: var(--on-brand);
}

.service-card:hover {
  border-color: color-mix(in srgb, var(--brand) 64%, var(--line));
  box-shadow: 0 22px 54px rgba(23, 60, 44, 0.12);
  transform: translateY(-3px);
}

.service-card-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: var(--surface-strong);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1), filter 300ms ease;
}

.service-card:hover .service-card-media img {
  filter: saturate(1.03);
  transform: scale(1.02);
}

.service-card-content {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  padding: 27px 26px 30px;
}

.service-card h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1.2;
}

.service-card-content > p {
  max-width: 560px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.service-card:nth-child(6) .service-card-content > p {
  color: rgba(245, 250, 246, 0.76);
}

.service-card ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.service-card:nth-child(6) ul {
  color: rgba(245, 250, 246, 0.78);
}

.service-card li {
  position: relative;
  padding-left: 15px;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  background: currentColor;
  transform: translateY(-50%);
}

.projects-section {
  padding-top: 40px;
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-button {
  min-height: 44px;
  padding: 0 18px;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--brand-strong);
  background: var(--brand-strong);
  color: var(--on-brand);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 20px;
}

.project-card[hidden] {
  display: none;
}

.project-card-wide {
  grid-column: auto;
}

.project-card figure {
  margin: 0;
}

.project-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--surface-strong);
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1), filter 300ms ease;
}

.project-card-wide img {
  aspect-ratio: 3 / 2;
}

.project-card:hover img {
  transform: translateY(-4px);
  filter: saturate(1.04);
}

.project-card figcaption {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.project-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
}

.project-card figcaption p {
  margin: 5px 0 0;
  color: var(--muted);
}

.project-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
  margin: 0;
}

.project-card dl div {
  min-width: 0;
}

.project-card dt {
  color: var(--muted);
  font-size: 12px;
}

.project-card dd {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.45;
}

.filter-empty {
  padding: 40px 0;
  color: var(--muted);
}

.process-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.process-intro {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.process-list h3,
.process-list p {
  margin: 0;
}

.process-list h3 {
  font-size: 22px;
}

.process-list p {
  color: var(--muted);
}

.nursery-section {
  width: var(--content);
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 58px;
  align-items: center;
  margin: 40px auto 0;
  padding: 68px;
  overflow: hidden;
  background: #123f31;
  color: var(--on-brand);
}

.nursery-gallery {
  order: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.nursery-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.nursery-gallery img:first-child {
  grid-column: span 2;
  height: 290px;
}

.nursery-copy {
  width: auto;
  margin: 0;
  padding: 0;
}

.nursery-copy h2 {
  max-width: 720px;
}

.nursery-copy > p {
  max-width: 670px;
  margin: 24px 0 0;
  color: rgba(245, 250, 246, 0.82);
  font-size: 18px;
}

.nursery-copy ul {
  display: grid;
  gap: 8px;
  max-width: 670px;
  margin: 28px 0 0;
  padding-left: 22px;
  color: rgba(245, 250, 246, 0.82);
}

.organization-section {
  padding-bottom: 92px;
}

.org-team-profile {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) 1fr;
  gap: 42px;
  align-items: center;
  margin-bottom: 20px;
  padding: 34px 42px;
  background: var(--brand-soft);
}

.org-team-profile > strong {
  color: var(--brand);
  font-size: clamp(54px, 7vw, 88px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.055em;
  font-variant-numeric: tabular-nums;
}

.org-team-profile h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.25;
}

.org-team-profile p {
  max-width: 820px;
  margin: 10px 0 0;
  color: var(--muted);
}

.org-chart {
  padding: 54px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.org-lead {
  width: min(420px, 100%);
  margin: 0 auto;
  padding: 24px 32px;
  background: var(--brand-strong);
  color: var(--on-brand);
  text-align: center;
}

.org-lead span {
  display: block;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.org-lead span {
  color: rgba(245, 250, 246, 0.72);
}

.org-lead h3 {
  margin: 5px 0 0;
  font-size: 32px;
  line-height: 1.2;
}

.org-lead p {
  margin: 8px 0 0;
  color: rgba(245, 250, 246, 0.8);
  font-size: 14px;
}

.org-trunk {
  width: 1px;
  height: 42px;
  margin: 0 auto;
  background: var(--line);
}

.org-direct-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.org-direct-grid article {
  min-height: 166px;
  padding: 26px 24px;
  background: var(--page);
}

.org-direct-grid h4 {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
}

.org-direct-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.about-section {
  padding-bottom: 70px;
}

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

.history {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
  border-left: 1px solid var(--line);
}

.history article {
  min-height: 310px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
}

.history time {
  color: var(--brand);
  font-size: 34px;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.history h3 {
  margin: 54px 0 0;
  font-size: 20px;
}

.history p {
  margin: 12px 0 0;
  color: var(--muted);
}

.company-record {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  margin-top: 72px;
  padding: 52px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.company-record h3 {
  margin: 0;
  font-size: 30px;
}

.company-record p {
  margin: 12px 0 0;
  color: var(--muted);
}

.company-record dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 36px;
  margin: 0;
}

.company-record dt {
  color: var(--muted);
  font-size: 13px;
}

.company-record dd {
  margin: 5px 0 0;
  line-height: 1.5;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 80px;
  width: 100%;
  padding: 110px max(24px, calc((100vw - 1240px) / 2));
  background: var(--brand-strong);
  color: var(--on-brand);
}

.contact-intro > p {
  color: rgba(245, 250, 246, 0.76);
}

.contact-intro address {
  display: grid;
  gap: 8px;
  margin-top: 48px;
  font-style: normal;
  color: rgba(245, 250, 246, 0.8);
}

.contact-intro address a {
  width: fit-content;
  font-size: 20px;
  font-weight: 650;
  color: var(--on-brand);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 18px;
}

.contact-form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row-full {
  grid-column: span 2;
}

.form-row label {
  font-size: 14px;
  font-weight: 650;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(245, 250, 246, 0.4);
  border-radius: 0;
  background: rgba(245, 250, 246, 0.08);
  color: var(--on-brand);
  outline: none;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.form-row input,
.form-row select {
  min-height: 50px;
  padding: 0 13px;
}

.form-row textarea {
  min-height: 138px;
  resize: vertical;
  padding: 12px 13px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--on-brand);
  background: rgba(245, 250, 246, 0.13);
}

.form-row input[aria-invalid="true"],
.form-row select[aria-invalid="true"] {
  border-color: #ffb2a9;
}

.form-row option {
  background: #123f31;
  color: var(--on-brand);
}

.form-row ::placeholder {
  color: rgba(245, 250, 246, 0.65);
  opacity: 1;
}

.form-row small {
  min-height: 20px;
  color: rgba(245, 250, 246, 0.68);
  font-size: 12px;
}

.form-row small.field-error:not(:empty) {
  color: #ffb2a9;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 18px;
}

.form-status {
  margin: 0;
  color: rgba(245, 250, 246, 0.82);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  width: var(--content);
  margin: 0 auto;
  padding: 54px 0 28px;
}

.footer-brand {
  display: grid;
  gap: 6px;
}

.footer-brand span,
.site-footer > p {
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.site-footer > p {
  grid-column: 1 / -1;
  margin: 30px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 20px;
  }

  .button-small {
    display: none;
  }

  .process-section,
  .contact-section {
    gap: 46px;
  }

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

  .nursery-section {
    gap: 38px;
    padding: 48px;
  }

  .project-card figcaption {
    grid-template-columns: 1fr;
  }

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

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

  .history article {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  :root {
    --content: min(100% - 32px, 720px);
    --header-height: 66px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 16px;
  }

  .desktop-nav,
  .theme-toggle {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: calc(100dvh - var(--header-height));
    align-items: end;
  }

  .hero-media img {
    object-position: 67% center;
  }

  .hero-scrim {
    background: linear-gradient(180deg, rgba(8, 38, 28, 0.08), rgba(8, 38, 28, 0.94) 64%);
  }

  .hero-content {
    padding: 72px 0 46px;
  }

  .hero h1 {
    max-width: 650px;
    font-size: clamp(42px, 12vw, 66px);
  }

  .hero-brand {
    margin-top: 18px;
    font-size: clamp(28px, 8vw, 36px);
  }

  .hero-description {
    margin-top: 14px;
  }

  .hero-actions {
    margin-top: 26px;
  }

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

  .proof-item {
    min-height: 142px;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 92px 0;
  }

  .service-scope {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
  }

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

  .project-card-wide {
    grid-column: auto;
  }

  .project-card-wide img,
  .project-card img {
    aspect-ratio: 4 / 3;
  }

  .process-section {
    grid-template-columns: 1fr;
  }

  .process-intro {
    position: static;
  }

  .process-list li {
    grid-template-columns: 130px 1fr;
  }

  .nursery-section {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 48px;
  }

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

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

  .org-chart {
    padding: 40px 28px;
  }

  .org-team-profile {
    grid-template-columns: minmax(150px, 0.3fr) 1fr;
    gap: 28px;
    padding: 30px 32px;
  }

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

  .company-record,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .company-record {
    gap: 36px;
    padding: 34px;
  }

  .contact-section {
    padding: 90px 16px;
  }

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

@media (max-width: 560px) {
  .brand-copy small {
    display: none;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .proof-strip,
  .history {
    grid-template-columns: 1fr;
  }

  .proof-item {
    min-height: 118px;
  }

  .section-heading h2,
  .process-intro h2,
  .nursery-copy h2,
  .about-copy h2,
  .contact-intro h2 {
    font-size: 38px;
  }

  .service-card {
    grid-template-columns: 1fr;
    grid-template-rows: max-content 1fr;
    min-height: auto;
  }

  .service-card-media {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card-media img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .service-card-content {
    padding: 26px 22px 30px;
  }

  .service-card h3 {
    font-size: 26px;
  }

  .service-card ul {
    grid-template-columns: 1fr;
  }

  .project-card dl,
  .company-record dl,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .process-list li {
    grid-template-columns: 1fr;
  }

  .process-list p {
    grid-column: auto;
  }

  .history article {
    min-height: auto;
  }

  .nursery-section {
    padding: 34px 20px;
  }

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

  .nursery-gallery img,
  .nursery-gallery img:first-child {
    grid-column: auto;
    height: 220px;
  }

  .org-chart {
    padding: 28px 16px;
  }

  .org-team-profile {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 26px 22px;
  }

  .org-team-profile h3 {
    font-size: 24px;
  }

  .org-lead {
    padding: 22px 18px;
  }

  .org-direct-grid {
    grid-template-columns: 1fr;
  }

  .org-direct-grid article {
    min-height: auto;
    padding: 22px 20px;
  }

  .history h3 {
    margin-top: 28px;
  }

  .company-record {
    padding: 26px 20px;
  }

  .form-row-full {
    grid-column: auto;
  }

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

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

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

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

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

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--page);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
