:root {
  --spruce-975: #041d16;
  --spruce-950: #07261d;
  --spruce-900: #0b3025;
  --spruce-800: #164637;
  --spruce-700: #285b45;
  --sage-700: #6f8356;
  --sage-500: #8da271;
  --sage-300: #becbae;
  --sage-100: #edf1e8;
  --cream-200: #eee9dc;
  --cream-100: #f6f2e7;
  --paper: #fffdf8;
  --white: #ffffff;
  --ink: #18211d;
  --muted: #5d6761;
  --line: #dedfd5;
  --focus: #bd7139;
  --shadow-sm: 0 10px 30px rgba(7, 38, 29, 0.08);
  --shadow-lg: 0 28px 70px rgba(7, 38, 29, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: 1280px;
  --header-height: 90px;
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

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

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

::selection {
  color: var(--white);
  background: var(--spruce-700);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.icon {
  width: 1em;
  height: 1em;
  display: block;
  flex: 0 0 auto;
}

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

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

.section-kicker,
.kicker {
  margin: 0 0 13px;
  color: var(--spruce-700);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-kicker.light {
  color: #c4d2b7;
}

.kicker span {
  color: var(--sage-700);
}

h1,
h2 {
  margin: 0;
  color: var(--spruce-950);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.03;
}

h2 {
  font-size: clamp(2.35rem, 4vw, 4rem);
}

p {
  text-wrap: pretty;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(222, 223, 213, 0.82);
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(15px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.985);
  box-shadow: var(--shadow-sm);
}

.nav-shell {
  position: relative;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand {
  width: 255px;
  height: 74px;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  overflow: hidden;
}

.brand img {
  width: 100%;
  filter: brightness(0) saturate(100%) invert(14%) sepia(30%) saturate(970%) hue-rotate(111deg) brightness(92%);
  transform: scale(1.045);
  transform-origin: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.25vw, 34px);
  font-size: 0.91rem;
  font-weight: 700;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 10px;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--sage-700);
  transition: right 180ms ease;
}

.site-nav > a.is-active::after {
  right: 0;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  border-radius: 5px;
  color: var(--spruce-900);
  background: transparent;
  cursor: pointer;
}

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

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

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

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

.nav-cta,
.primary-button,
.secondary-button,
.light-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid var(--spruce-900);
  border-radius: 4px;
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.035em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.nav-cta {
  min-height: 44px;
  padding-inline: 18px;
  color: var(--white);
  background: var(--spruce-900);
  font-size: 0.72rem;
}

.primary-button,
.secondary-button {
  min-height: 54px;
  padding-inline: 24px;
  color: var(--white);
  background: var(--spruce-900);
}

.light-button {
  min-height: 52px;
  margin-top: 24px;
  padding-inline: 24px;
  border-color: var(--white);
  color: var(--spruce-900);
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(141, 162, 113, 0.12), transparent 34%),
    var(--paper);
}

.hero-grid {
  position: relative;
  min-height: 650px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(56%, 650px);
  padding: 70px 0 55px;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(3.35rem, 5.2vw, 5.25rem);
}

.hero h1 em {
  position: relative;
  color: var(--sage-700);
  font-weight: 500;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  right: -3%;
  bottom: -0.08em;
  left: 1%;
  height: 0.07em;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.82;
  transform: rotate(-2deg);
}

.hero-lede {
  max-width: 540px;
  margin: 29px 0 31px;
  color: #35403a;
  font-size: 1.08rem;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 11px;
  padding: 0 18px;
  border-left: 1px solid var(--line);
}

.hero-points li:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-points .icon {
  width: 30px;
  height: 30px;
  color: var(--sage-700);
}

.hero-points li > span {
  display: block;
}

.hero-points b {
  color: var(--spruce-900);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.35;
}

.hero-visual {
  position: absolute;
  z-index: 0;
  top: 0;
  right: calc(50% - 50vw);
  bottom: 0;
  left: calc(50% - 50vw);
  overflow: hidden;
  background: #e9e7de;
}

.hero-visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--paper) 0%,
    rgba(255, 253, 248, 0.99) 34%,
    rgba(255, 253, 248, 0.9) 43%,
    rgba(255, 253, 248, 0.35) 58%,
    rgba(255, 253, 248, 0) 72%
  );
  pointer-events: none;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-seal {
  position: absolute;
  z-index: 2;
  bottom: 62px;
  left: 55%;
  width: 154px;
  height: 154px;
  display: grid;
  place-content: center;
  border: 5px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: var(--white);
  background: rgba(11, 48, 37, 0.95);
  box-shadow: 0 17px 40px rgba(7, 38, 29, 0.2);
  text-align: center;
  animation: seal-float 6s ease-in-out infinite;
}

.seal-sprout {
  width: 24px;
  height: 24px;
  margin: 0 auto 7px;
  color: var(--sage-300);
}

.hero-seal span {
  color: #dfe8da;
  font-size: 0.62rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-seal strong {
  margin-top: 5px;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
}

.services-section {
  padding: 0;
  background: var(--white);
}

.service-grid {
  width: min(100%, 1440px);
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.service-card {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 31px 20px 27px;
  background: var(--white);
  text-align: center;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 16%;
  right: 0;
  width: 1px;
  height: 68%;
  background: var(--line);
  pointer-events: none;
}

.service-card:last-child::after {
  display: none;
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  margin-bottom: 18px;
  color: var(--sage-700);
  transition: color 220ms ease, transform 220ms ease;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  min-height: 2.75em;
  display: grid;
  place-items: center;
  margin: 0 0 9px;
  color: var(--spruce-950);
  font-size: 0.98rem;
  line-height: 1.34;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.53;
}

.about-section {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  background: var(--cream-100);
}

.about-copy {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 82px max(42px, calc((100vw - var(--shell)) / 2 + 24px));
}

.about-copy::before,
.about-copy::after {
  content: "";
  position: absolute;
  left: -80px;
  width: 260px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sage-500), transparent);
  opacity: 0.5;
  transform: rotate(-24deg);
}

.about-copy::before {
  bottom: 70px;
}

.about-copy::after {
  bottom: 105px;
}

.about-inner {
  position: relative;
  z-index: 1;
  max-width: 570px;
  margin-left: auto;
}

.about-inner h2 {
  font-size: clamp(2.55rem, 4.2vw, 4.25rem);
}

.about-inner > p:not(.section-kicker):not(.about-note) {
  color: var(--muted);
}

.about-inner > p:first-of-type:not(.section-kicker) {
  margin-top: 26px;
}

.about-note {
  margin: 27px 0 25px;
  color: var(--sage-700);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.45;
}

.about-visual {
  min-width: 0;
  overflow: hidden;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms ease;
}

.approach-section {
  padding: 100px 0 108px;
  background: var(--paper);
}

.center-heading {
  max-width: 790px;
  margin: 0 auto 56px;
  text-align: center;
}

.center-heading h2 {
  font-size: clamp(2.5rem, 4.2vw, 4.1rem);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.approach-grid li {
  position: relative;
  min-height: 255px;
  padding: 42px 44px;
  border-left: 1px solid var(--line);
  transition: background 200ms ease, transform 200ms ease;
}

.approach-grid li:last-child {
  border-right: 1px solid var(--line);
}

.approach-grid span {
  color: var(--sage-700);
  font-family: var(--serif);
  font-size: 0.9rem;
}

.approach-grid h3 {
  margin: 37px 0 10px;
  color: var(--spruce-950);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.approach-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 38, 29, 0.91), rgba(7, 38, 29, 0.82)),
    url("/assets/images/cta-spruce-forest.webp") center 54% / cover no-repeat;
}

.contact-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 15% 20%, rgba(141, 162, 113, 0.2), transparent 32%);
}

.contact-grid {
  position: relative;
  z-index: 1;
  min-height: 330px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 70px;
  padding-block: 48px;
}

.contact-intro {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 30px;
}

.contact-mark {
  width: 106px;
  height: 106px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(190, 203, 174, 0.65);
  border-radius: 50%;
  color: #d9e6cc;
}

.contact-mark svg {
  width: 54px;
  height: 54px;
}

.contact-intro h2 {
  color: var(--white);
  font-size: clamp(2.5rem, 3.4vw, 3.2rem);
}

.contact-intro p:not(.section-kicker) {
  max-width: 510px;
  margin: 14px 0 0;
  color: #d0dbd5;
}

.contact-audiences {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-audiences article {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 27px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.audience-icon {
  width: 42px;
  height: 42px;
  color: var(--sage-300);
}

.contact-audiences h3 {
  margin: 24px 0 9px;
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.07em;
  line-height: 1.4;
  text-transform: uppercase;
}

.contact-audiences p {
  max-width: 180px;
  margin: 0;
  color: #bfcdc6;
  font-size: 0.81rem;
  line-height: 1.5;
}

.site-footer {
  padding: 44px 0 24px;
  color: #c5d0ca;
  background: var(--spruce-975);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.65fr);
  align-items: center;
  gap: clamp(34px, 5vw, 74px);
}

.footer-brand {
  max-width: 440px;
}

.footer-brand a {
  width: 265px;
  height: 92px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.footer-brand img {
  width: 100%;
}

.footer-brand p {
  max-width: 390px;
  margin: 3px 0 0;
  color: #9eb0a7;
  font-size: 0.9rem;
}

.footer-contact-list {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(170px, 0.8fr) minmax(250px, 1.25fr) minmax(160px, 0.75fr);
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  font-style: normal;
}

.footer-contact-item {
  min-width: 0;
  min-height: 82px;
  display: grid;
  grid-template-columns: 29px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  padding: 8px clamp(18px, 2.1vw, 30px);
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-contact-item svg {
  width: 25px;
  height: 25px;
  color: var(--sage-300);
}

.footer-contact-item span {
  min-width: 0;
}

.footer-contact-item small {
  display: block;
  margin-bottom: 3px;
  color: #7f968b;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.footer-contact-item strong {
  display: block;
  color: #e7eee9;
  font-size: 0.88rem;
  font-weight: 550;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #82968d;
  font-size: 0.78rem;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 24px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.service-card:nth-child(2),
.approach-grid li:nth-child(2),
.contact-audiences article:nth-child(2) {
  transition-delay: 80ms;
}

.service-card:nth-child(3),
.approach-grid li:nth-child(3),
.contact-audiences article:nth-child(3) {
  transition-delay: 160ms;
}

.service-card:nth-child(4) {
  transition-delay: 240ms;
}

.service-card:nth-child(5) {
  transition-delay: 320ms;
}

.service-card:nth-child(6) {
  transition-delay: 400ms;
}

.service-card:nth-child(7) {
  transition-delay: 480ms;
}

@keyframes hero-drift {
  from {
    transform: scale(1.015) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.055) translate3d(-0.7%, -0.5%, 0);
  }
}

@keyframes seal-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (hover: hover) {
  .site-nav > a:not(.nav-cta):hover::after {
    right: 0;
  }

  .nav-cta:hover,
  .primary-button:hover,
  .secondary-button:hover {
    background: var(--spruce-700);
    box-shadow: 0 12px 28px rgba(7, 38, 29, 0.19);
    transform: translateY(-2px);
  }

  .light-button:hover {
    color: var(--spruce-900);
    background: var(--cream-100);
    transform: translateY(-2px);
  }

  .service-card:hover {
    z-index: 2;
    color: var(--white);
    background: var(--spruce-900);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
  }

  .service-card:hover .service-icon {
    color: var(--sage-300);
    transform: translateY(-3px);
  }

  .service-card:hover h3,
  .service-card:hover p {
    color: var(--white);
  }

  .about-visual:hover img {
    transform: scale(1.025);
  }

  .approach-grid li:hover {
    z-index: 1;
    background: var(--sage-100);
    transform: translateY(-4px);
  }

  .footer-contact-item:hover strong,
  .footer-bottom a:hover {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}

@media (max-width: 1180px) {
  .site-nav {
    gap: 17px;
  }

  .site-nav > a:nth-child(4) {
    display: none;
  }

  .about-section {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .about-copy {
    padding-inline: 48px;
  }

}

@media (max-width: 940px) {
  :root {
    --header-height: 74px;
  }

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

  .nav-shell {
    flex-wrap: wrap;
    padding-block: 6px;
  }

  .brand {
    width: 208px;
    height: 61px;
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    padding-bottom: 10px;
    text-align: center;
  }

  .site-nav > a:nth-child(4) {
    display: block;
  }

  .site-nav .nav-cta {
    grid-column: 1 / -1;
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .js .nav-shell {
    flex-wrap: nowrap;
  }

  .js .menu-button {
    display: block;
  }

  .js .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    visibility: hidden;
    opacity: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .js .site-nav[data-open="true"] {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .js .site-nav a {
    padding: 13px 12px;
  }

  .js .site-nav .nav-cta {
    margin-top: 7px;
  }

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

  .hero-grid {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    width: 100%;
    max-width: 780px;
    padding: 62px 0 48px;
  }

  .hero-visual {
    position: relative;
    z-index: 0;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100vw;
    min-height: 500px;
    margin-left: calc(50% - 50vw);
  }

  .hero-visual::after {
    background: linear-gradient(
      180deg,
      var(--paper) 0%,
      rgba(255, 253, 248, 0.76) 10%,
      rgba(255, 253, 248, 0) 30%
    );
  }

  .hero-seal {
    bottom: 34px;
    left: 30px;
  }

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

  .service-card {
    min-height: 250px;
  }

  .service-card:nth-child(5) {
    border-left: 0;
  }

  .service-card:nth-child(4)::after {
    display: none;
  }

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

  .about-copy {
    padding: 78px 34px;
  }

  .about-inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .about-visual {
    min-height: 500px;
  }

  .approach-grid li {
    padding-inline: 28px;
  }

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

  .contact-audiences {
    max-width: 820px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: auto;
  }

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

@media (max-width: 720px) {
  h2 {
    font-size: 2.65rem;
  }

  .hero-copy {
    padding: 58px 0 50px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 13vw, 4.45rem);
  }

  .hero-lede {
    font-size: 1.02rem;
  }

  .hero-points {
    grid-template-columns: 1fr;
    gap: 17px;
    margin-top: 36px;
  }

  .hero-points li,
  .hero-points li:first-child {
    padding: 0 0 0 16px;
    border-left: 2px solid var(--line);
  }

  .hero-visual {
    min-height: 410px;
  }

  .hero-seal {
    width: 134px;
    height: 134px;
    bottom: 23px;
    left: 20px;
    overflow: hidden;
    padding: 14px 10px 12px;
    border-width: 4px;
  }

  .hero-seal .seal-sprout {
    width: 20px;
    height: 20px;
    margin-bottom: 5px;
  }

  .hero-seal span {
    font-size: 0.5rem;
    letter-spacing: 0.075em;
    white-space: nowrap;
  }

  .hero-seal strong {
    margin-top: 3px;
    font-size: 0.86rem;
    line-height: 1.12;
  }

  .services-section {
    padding-top: 0;
  }

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

  .service-card,
  .service-card:nth-child(5) {
    min-height: 235px;
    padding-inline: 18px;
    border-left: 0;
  }

  .service-card:nth-child(even)::after,
  .service-card:last-child::after {
    display: none;
  }

  .about-copy {
    padding: 70px 26px;
  }

  .about-inner h2 {
    font-size: 2.8rem;
  }

  .about-visual {
    min-height: 390px;
  }

  .approach-section {
    padding-block: 80px;
  }

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

  .approach-grid li,
  .approach-grid li:last-child {
    min-height: auto;
    padding: 33px 27px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .approach-grid li:last-child {
    border-bottom: 0;
  }

  .approach-grid h3 {
    margin-top: 22px;
  }

  .contact-grid {
    padding-block: 72px;
  }

  .contact-intro {
    grid-template-columns: 1fr;
    align-items: start;
    justify-items: start;
  }

  .contact-mark {
    width: 82px;
    height: 82px;
  }

  .contact-mark svg {
    width: 42px;
    height: 42px;
  }

  .contact-audiences {
    grid-template-columns: 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .contact-audiences article {
    min-height: 145px;
  }

  .contact-audiences h3 {
    margin-top: 22px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-contact-list {
    grid-template-columns: 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

  .footer-contact-item {
    min-height: 76px;
    padding-inline: 4px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

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

  .footer-bottom nav {
    justify-content: flex-start;
  }
}

@media (max-width: 470px) {
  .brand {
    width: 190px;
  }

  .hero h1 {
    font-size: 2.78rem;
  }

  .primary-button,
  .secondary-button,
  .light-button {
    width: 100%;
  }

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

  .service-card,
  .service-card:nth-child(5),
  .service-card:nth-child(odd) {
    min-height: auto;
    align-items: flex-start;
    padding: 28px 26px;
    border-left: 0;
    text-align: left;
  }

  .service-card::after {
    display: none;
  }

  .service-icon {
    margin-bottom: 20px;
  }

  .service-card h3 {
    min-height: 0;
    display: block;
  }

  .about-inner h2 {
    font-size: 2.48rem;
  }

  .about-visual {
    min-height: 320px;
  }

  .contact-intro h2 {
    font-size: 2.55rem;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
