:root {
  --green: #074421;
  --green-2: #2a5a28;
  --leaf: #507a22;
  --navy: #032f5a;
  --gold: #ebbc4c;
  --cream: #e6d9ad;
  --paper: #f8f8f8;
  --white: #f8f8f8;
  --ink: #032f5a;
  --muted: #2a5a28;
  --line: rgba(7, 68, 33, 0.14);
  --shadow-soft: 0 12px 28px rgba(3, 47, 90, 0.1);
  --shadow-card: 0 24px 70px rgba(3, 47, 90, 0.16);
  --radius: 8px;
  --radius-lg: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.admin-bar .site-header {
  top: 32px;
}

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

a {
  color: inherit;
}

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

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

.skip-link:focus {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  clip: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(248, 248, 248, 0.98);
  border-bottom: 1px solid rgba(7, 68, 33, 0.12);
  box-shadow: 0 10px 24px rgba(3, 47, 90, 0.08);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(248, 248, 248, 0.96);
  border-bottom-color: rgba(7, 68, 33, 0.12);
  box-shadow: 0 12px 28px rgba(3, 47, 90, 0.12);
  backdrop-filter: blur(16px);
}

.site-header + .site-footer {
  margin-top: 78px;
}

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

.site-brand,
.custom-logo-link,
.site-brand__logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.site-brand img,
.custom-logo-link img {
  display: block;
  width: 166px;
  height: auto;
  max-height: 70px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  justify-self: end;
}

.menu,
.footer-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 160ms ease;
}

.menu {
  justify-content: flex-end;
}

.site-header.is-scrolled .menu a {
  color: var(--navy);
}

.menu a::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.menu a:hover::after,
.menu a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.site-header.is-scrolled .header-link {
  color: var(--navy);
}

.icon {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
  stroke: currentColor;
}

.button .icon {
  margin-right: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  background: var(--gold);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 16px 32px rgba(235, 188, 76, 0.24);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.button:hover,
.button:focus-visible {
  filter: brightness(1.04);
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(235, 188, 76, 0.28);
}

.button--small {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 0.88rem;
}

.button--ghost {
  color: var(--white);
  background: rgba(248, 248, 248, 0.08);
  border: 1px solid rgba(248, 248, 248, 0.42);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.button--ghost .icon {
  margin-right: 0;
  margin-left: 8px;
}

.button--light {
  color: var(--green);
  background: var(--white);
  box-shadow: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--green);
}

.site-header.is-scrolled .menu-toggle {
  background: var(--white);
  border-color: var(--line);
}

.site-header.is-scrolled .menu-toggle span:not(.screen-reader-text) {
  background: var(--green);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 92vh;
  padding: 132px 0 96px;
  color: var(--white);
  overflow: hidden;
}

.hero__image,
.hero__shade,
.hero__glow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(3, 47, 90, 0.9), rgba(7, 68, 33, 0.74) 50%, rgba(7, 68, 33, 0.28)),
    linear-gradient(0deg, rgba(3, 47, 90, 0.26), rgba(3, 47, 90, 0.1));
}

.hero__glow {
  background: radial-gradient(circle at 30% 20%, rgba(248, 248, 248, 0.13), transparent 54%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--container));
  max-width: var(--container);
  margin-inline: auto;
}

.hero__badge {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 16px;
  margin: 0 0 22px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(248, 248, 248, 0.1);
  border: 1px solid rgba(248, 248, 248, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.hero__badge span {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.hero h1,
.section h2,
.entry h1,
.entry h2 {
  margin: 0;
  color: inherit;
  font-family: "Sora", "Manrope", sans-serif;
  font-weight: 800;
  line-height: 1.08;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(2.8rem, 4.8vw, 4.4rem);
}

.hero h1 span {
  display: block;
  color: var(--gold);
}

.hero__lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(248, 248, 248, 0.88);
  font-size: clamp(1.04rem, 1.8vw, 1.22rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__pills {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  padding: 0;
  margin: 40px 0 0;
  list-style: none;
}

.hero__pills li {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 12px 14px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  background: rgba(248, 248, 248, 0.1);
  border: 1px solid rgba(248, 248, 248, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.hero__pills .icon {
  color: var(--gold);
  font-size: 1.28rem;
}

.section {
  padding: 92px 0;
}

.section--soft {
  background: linear-gradient(180deg, rgba(230, 217, 173, 0.44), rgba(248, 248, 248, 0.96));
}

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

.section-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  color: var(--green-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 40px;
}

.section-heading h2,
.section-copy h2 {
  color: var(--green);
  font-size: clamp(2rem, 4vw, 3.65rem);
}

.section-heading p,
.section-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.about-grid,
.contact-grid,
.faq-grid,
.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 56px;
  align-items: center;
}

.about-media {
  position: relative;
  padding: 0 0 34px;
}

.about-media__shape {
  position: absolute;
  width: 104px;
  height: 104px;
  background: rgba(235, 188, 76, 0.25);
  border-radius: var(--radius-lg);
}

.about-media__shape--one {
  top: -18px;
  left: -18px;
}

.about-media__shape--two {
  right: -18px;
  bottom: 18px;
  background: rgba(42, 90, 40, 0.16);
}

.about-media img {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.about-media__note {
  position: relative;
  display: grid;
  gap: 4px;
  max-width: 86%;
  padding: 18px 20px;
  margin: -42px auto 0;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.about-media__note strong {
  color: var(--green);
}

.about-media__note span {
  color: var(--muted);
  font-size: 0.92rem;
}

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

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

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
}

.check-list .icon {
  color: var(--leaf);
  font-size: 1.25rem;
  margin-top: 0.18em;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 54px;
}

.proof-grid > div {
  display: grid;
  justify-items: center;
  min-height: 174px;
  padding: 28px 20px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.proof-grid > div:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.proof-grid__icon {
  width: 50px;
  height: 50px;
  padding: 12px;
  color: var(--green);
  background: rgba(7, 68, 33, 0.08);
  border-radius: var(--radius);
}

.proof-grid strong {
  display: block;
  margin-top: 16px;
  color: var(--navy);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.25rem;
}

.proof-grid span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.service-card,
.facility-card,
.testimonial-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.facility-card:hover,
.testimonial-card:hover {
  border-color: rgba(235, 188, 76, 0.65);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.service-card img,
.facility-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card > div {
  position: relative;
  padding: 26px;
}

.service-card__icon,
.facility-card__icon,
.process-steps__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 11px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--navy));
  border-radius: var(--radius);
  box-shadow: 0 12px 22px rgba(7, 68, 33, 0.18);
}

.service-card h3,
.facility-card h3,
.process-steps h3 {
  margin: 18px 0 10px;
  color: var(--navy);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.14rem;
  line-height: 1.25;
}

.service-card p,
.facility-card p,
.process-steps p {
  margin: 0;
  color: var(--muted);
}

.section--process {
  color: var(--white);
  background:
    radial-gradient(circle at 16% 20%, rgba(235, 188, 76, 0.24), transparent 32%),
    linear-gradient(135deg, var(--navy), var(--green));
}

.section-copy--light h2,
.section-copy--light p,
.section--process .section-kicker {
  color: var(--white);
}

.section-copy--light p {
  color: rgba(248, 248, 248, 0.84);
}

.section-copy--light .button {
  margin-top: 28px;
}

.process-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
}

.process-steps {
  display: grid;
  gap: 16px;
}

.process-steps article {
  position: relative;
  min-height: 172px;
  padding: 26px;
  background: rgba(248, 248, 248, 0.1);
  border: 1px solid rgba(248, 248, 248, 0.18);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}

.process-steps article > span {
  position: absolute;
  top: 22px;
  right: 24px;
  color: var(--gold);
  font-weight: 900;
}

.process-steps h3 {
  color: var(--white);
}

.process-steps p {
  color: rgba(248, 248, 248, 0.82);
}

.facility-card {
  position: relative;
}

.facility-card__body {
  padding: 24px;
}

.facility-card__icon {
  color: var(--navy);
  background: var(--gold);
  border: 2px solid rgba(80, 122, 34, 0.65);
  box-shadow: inset 0 0 0 4px rgba(248, 248, 248, 0.52), 0 12px 24px rgba(3, 47, 90, 0.12);
}

.testimonial-section {
  background: linear-gradient(180deg, rgba(230, 217, 173, 0.44), rgba(248, 248, 248, 0.96));
}

.testimonial-card {
  min-height: 280px;
  padding: 30px;
  margin: 0;
}

.testimonial-card__icon {
  width: 40px;
  height: 40px;
  color: var(--leaf);
}

.testimonial-stars {
  margin-top: 18px;
  color: var(--gold);
  font-size: 1.12rem;
  line-height: 1;
}

.testimonial-stars span {
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 800;
}

.testimonial-card figcaption {
  margin-top: 24px;
  color: var(--green);
  font-weight: 900;
}

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

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

.faq-list details {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 18px 22px;
  color: var(--navy);
  font-family: "Sora", "Manrope", sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.faq-list summary::after {
  content: "+";
  color: var(--green);
  font-size: 1.4rem;
  line-height: 1;
}

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

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

.section--contact {
  background: linear-gradient(180deg, var(--paper), rgba(230, 217, 173, 0.42));
}

.contact-grid {
  align-items: center;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.contact-list a,
.contact-list > span {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-width: 0;
  padding: 18px;
  color: var(--navy);
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.contact-list .icon {
  width: 44px;
  height: 44px;
  padding: 11px;
  color: var(--green);
  background: rgba(7, 68, 33, 0.08);
  border-radius: var(--radius);
}

.contact-list span span,
.contact-list a span {
  display: grid;
  gap: 2px;
  min-width: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-list strong {
  color: var(--navy);
  font-size: 0.9rem;
  text-transform: none;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 34px;
  background: var(--cream);
  border: 1px solid rgba(7, 68, 33, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.search-field {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
  border: 1px solid rgba(7, 68, 33, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(3, 47, 90, 0.06);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.search-field:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(235, 188, 76, 0.32);
}

.contact-form__privacy {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.honeypot {
  display: none !important;
}

.form-notice {
  padding: 12px 14px;
  margin: 0;
  font-weight: 800;
  border-radius: var(--radius);
}

.form-notice--success,
.form-notice--error {
  color: var(--green);
  background: var(--white);
}

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

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: 38px;
  padding: 60px 0 38px;
}

.site-footer__brand {
  display: block;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-family: "Sora", "Manrope", sans-serif;
  line-height: 1.25;
}

.site-footer h3 {
  color: var(--gold);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.footer-menu {
  display: grid;
  gap: 10px;
  align-items: start;
}

.footer-menu a {
  color: inherit;
  text-decoration: none;
}

.footer-menu--links,
.footer-menu--links li,
.footer-menu--links a {
  color: rgba(248, 248, 248, 0.84);
  font-weight: 800;
}

.footer-menu--icons li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.footer-menu--icons .icon {
  color: var(--gold);
  flex: 0 0 auto;
  margin-top: 0.16em;
}

.footer-menu a:hover,
.footer-cta {
  color: var(--gold);
}

.footer-social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.footer-social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--navy);
  text-decoration: none;
  background: var(--gold);
  border: 1px solid rgba(235, 188, 76, 0.72);
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(3, 47, 90, 0.12);
  transition: transform 160ms ease, filter 160ms ease, background 160ms ease;
}

.footer-social-button:hover,
.footer-social-button:focus-visible {
  color: var(--navy);
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.footer-social-button .icon {
  width: 20px;
  height: 20px;
}

.site-footer__bottom {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 22px 0;
  border-top: 1px solid rgba(248, 248, 248, 0.14);
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.9rem;
}

.content-area {
  padding: 140px 0 80px;
}

.content-grid {
  display: grid;
  gap: 32px;
}

.entry {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.entry--center {
  text-align: center;
}

.entry__header h1,
.entry__header h2 {
  color: var(--green);
}

.entry__header a {
  text-decoration: none;
}

.entry__meta {
  color: var(--muted);
  font-weight: 700;
}

.entry__thumb img {
  display: block;
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  margin: 20px 0;
  border-radius: var(--radius);
}

.entry__content > *:first-child {
  margin-top: 0;
}

.entry__content > *:last-child {
  margin-bottom: 0;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.nav-links a,
.page-numbers,
.search-submit {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 12px;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.search-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.search-submit {
  color: var(--white);
  background: var(--green);
  cursor: pointer;
}

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

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

.hero__content {
  animation: hero-in 760ms ease both;
}

.hero__pills li {
  animation: stat-rise 700ms ease both;
}

.hero__pills li:nth-child(2) {
  animation-delay: 90ms;
}

.hero__pills li:nth-child(3) {
  animation-delay: 170ms;
}

.hero__pills li:nth-child(4) {
  animation-delay: 250ms;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stat-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

@media (max-width: 1120px) {
  .site-header__inner {
    grid-template-columns: auto 1fr;
  }

  .header-actions {
    display: none;
  }

  .site-nav {
    justify-self: end;
  }

  .menu {
    gap: 16px;
  }
}

@media (max-width: 940px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    min-height: 74px;
  }

  .site-brand img,
  .custom-logo-link img {
    width: 136px;
    max-height: 58px;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
  }

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

  .menu {
    display: grid;
    gap: 4px;
  }

  .menu a,
  .site-header:not(.is-scrolled) .menu a {
    min-height: 42px;
    color: var(--navy);
  }

  .hero {
    min-height: 760px;
    padding: 116px 0 70px;
  }

  .hero__shade {
    background: linear-gradient(0deg, rgba(3, 47, 90, 0.88), rgba(7, 68, 33, 0.62));
  }

  .hero__pills,
  .proof-grid,
  .service-grid,
  .facility-grid,
  .testimonial-grid,
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid,
  .contact-grid,
  .faq-grid,
  .process-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section {
    padding: 72px 0;
  }
}

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

  .hero {
    min-height: 760px;
  }

  .hero h1 {
    font-size: clamp(2.48rem, 12vw, 3.7rem);
  }

  .hero__actions,
  .search-form {
    flex-direction: column;
  }

  .button,
  .search-submit {
    width: 100%;
  }

  .hero__pills,
  .proof-grid,
  .service-grid,
  .facility-grid,
  .testimonial-grid,
  .check-list--grid,
  .contact-list,
  .form-row,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .testimonial-card,
  .service-card > div,
  .facility-card__body,
  .process-steps article,
  .entry {
    padding: 22px;
  }

  .site-footer__bottom {
    display: grid;
  }
}
