:root {
  --green: #075c3b;
  --green-strong: #03452f;
  --green-soft: #e8f2ed;
  --charcoal: #17211e;
  --muted: #5d6b66;
  --line: #dce5e0;
  --surface: #ffffff;
  --soft: #f5f8f6;
  --shadow: 0 18px 46px rgba(15, 41, 31, 0.12);
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--charcoal);
  font-family:
    "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Meiryo",
    system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.75;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 88px;
  padding: 16px clamp(20px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 229, 224, 0.9);
  backdrop-filter: blur(16px);
}

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

.brand-symbol {
  position: relative;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 7px solid var(--green);
  transform: rotate(45deg);
}

.brand-symbol::after {
  position: absolute;
  inset: 7px;
  content: "";
  border-radius: 50% 50% 50% 0;
  background: var(--green);
}

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

.brand-text strong {
  font-size: clamp(20px, 2.2vw, 31px);
  font-weight: 800;
  white-space: nowrap;
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.5vw, 38px);
  color: #14231e;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

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

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

.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 19px;
  color: #fff;
  background: var(--green);
  border-radius: 2px;
  box-shadow: 0 10px 24px rgba(3, 69, 47, 0.18);
}

.site-nav .nav-cta::after {
  display: none;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(760px, calc(100svh - 88px));
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.96) 28%, rgba(255, 255, 255, 0.55) 49%, rgba(255, 255, 255, 0.06) 72%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero-content {
  width: min(690px, calc(100% - 40px));
  margin-left: clamp(24px, 6vw, 96px);
  padding: clamp(42px, 8vw, 96px) 0;
}

.hero h1 {
  margin: 0;
  color: #202625;
  font-size: clamp(44px, 6.1vw, 86px);
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: 0.03em;
}

.hero p {
  max-width: 620px;
  margin: 28px 0 0;
  color: #263530;
  font-size: clamp(16px, 1.55vw, 20px);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  min-height: 58px;
  padding: 15px 24px;
  border: 1px solid var(--green);
  border-radius: 2px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button::after {
  margin-left: 20px;
  content: ">";
  font-weight: 800;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-strong));
  box-shadow: 0 16px 34px rgba(7, 92, 59, 0.23);
}

.button-outline {
  color: var(--green);
  background: rgba(255, 255, 255, 0.86);
}

.button-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
}

.business-section,
.potential-section {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 4vw, 48px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading-left {
  max-width: var(--max);
  text-align: left;
}

.section-heading h2,
.mission-copy h2,
.recruit-copy h2,
.contact-card h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(31px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.32;
}

.section-heading p,
.mission-copy p,
.contact-card address {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.business-card {
  display: grid;
  grid-template-columns: minmax(220px, 47%) 1fr;
  min-height: 310px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.business-card img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.business-card div {
  display: grid;
  align-content: center;
  padding: clamp(26px, 4vw, 42px);
}

.business-card h3 {
  margin: 0 0 18px;
  color: var(--green);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.25;
}

.business-card p {
  margin: 0;
  color: #37443f;
  font-size: 15px;
}

.business-card a,
.use-row::after {
  color: var(--green);
  font-weight: 800;
}

.business-card a {
  margin-top: 26px;
}

.business-card a::after {
  margin-left: 14px;
  content: ">";
}

.mission-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  padding: clamp(72px, 10vw, 140px) clamp(20px, 4vw, 48px);
  background: var(--soft);
}

.mission-copy {
  justify-self: end;
  width: min(520px, 100%);
}

.mission-copy p {
  font-size: 17px;
}

.mission-image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px 0 0 8px;
  box-shadow: var(--shadow);
}

.mission-image img {
  width: 100%;
  height: min(520px, 48vw);
  object-fit: cover;
}

.use-list {
  width: min(var(--max), 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.use-row {
  display: grid;
  grid-template-columns: 92px 70px minmax(0, 1fr) minmax(180px, 290px) 28px;
  gap: 20px;
  align-items: center;
  min-height: 142px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.use-row::after {
  content: ">";
  font-size: 22px;
}

.use-number {
  color: var(--green);
  font-size: clamp(34px, 4.8vw, 54px);
  font-weight: 300;
  line-height: 1;
}

.use-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--green);
  border: 1px solid rgba(7, 92, 59, 0.32);
  border-radius: 50%;
  font-size: 17px;
  font-weight: 800;
}

.use-text {
  font-size: clamp(18px, 2.2vw, 27px);
  font-weight: 800;
}

.use-row img {
  width: 100%;
  height: 88px;
  object-fit: cover;
  border-radius: 2px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(900px, 100%);
  margin: 54px auto 0;
}

.product-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 30px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-card img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.product-card h3 {
  margin: 0;
  color: var(--green);
  font-size: 24px;
}

.product-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.recruit-section {
  position: relative;
  display: grid;
  min-height: 520px;
  overflow: hidden;
  background: var(--green-strong);
  isolation: isolate;
}

.recruit-section > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.recruit-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 69, 47, 0.95), rgba(3, 69, 47, 0.76) 38%, rgba(3, 69, 47, 0.1) 70%),
    rgba(3, 69, 47, 0.16);
}

.recruit-copy {
  display: grid;
  align-content: center;
  width: min(560px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 112px);
  padding: clamp(64px, 9vw, 112px) 0;
  color: #fff;
}

.recruit-copy h2 {
  color: #fff;
}

.recruit-copy p {
  margin: 18px 0 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  padding: clamp(72px, 9vw, 124px) clamp(20px, 4vw, 48px);
  background: linear-gradient(180deg, #fff, var(--soft));
}

.contact-card,
.map-frame {
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-card {
  justify-self: end;
  max-width: 480px;
  padding: clamp(30px, 4vw, 46px);
}

.contact-card address {
  font-style: normal;
}

.contact-card address strong {
  color: var(--charcoal);
  font-size: 21px;
}

.contact-card a:not(.button) {
  color: var(--green);
  font-weight: 800;
}

.contact-card .button {
  width: 100%;
  margin-top: 30px;
}

.map-frame {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 92, 59, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 92, 59, 0.04) 1px, transparent 1px),
    #f7faf8;
  background-size: 64px 64px;
}

.map-graphic {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.map-road {
  position: absolute;
  display: block;
  border-radius: 999px;
  transform-origin: center;
}

.map-road-main {
  top: 50%;
  left: -10%;
  width: 122%;
  height: 18px;
  background: #d5e3dc;
  transform: rotate(-11deg);
}

.map-road-sub {
  top: 24%;
  left: 8%;
  width: 70%;
  height: 10px;
  background: #e4ece8;
  transform: rotate(28deg);
}

.map-road-river {
  right: -10%;
  bottom: 20%;
  width: 78%;
  height: 22px;
  background: #cfe6ed;
  transform: rotate(-34deg);
}

.map-pin {
  position: absolute;
  top: 41%;
  left: 56%;
  width: 42px;
  height: 42px;
  background: var(--green);
  border: 6px solid #fff;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 16px 30px rgba(3, 69, 47, 0.26);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.map-pin::after {
  position: absolute;
  inset: 9px;
  content: "";
  background: #fff;
  border-radius: 50%;
}

.map-link {
  position: absolute;
  right: 26px;
  bottom: 26px;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 18px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(15, 41, 31, 0.12);
}

.map-link::after {
  margin-left: 12px;
  content: ">";
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 4vw, 48px);
  color: rgba(255, 255, 255, 0.78);
  background: #10251f;
}

.site-footer img {
  width: 120px;
  height: auto;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.subpage-main {
  background: #fff;
}

.sub-hero {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  isolation: isolate;
}

.sub-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.82) 38%, rgba(255, 255, 255, 0.08) 76%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.12));
}

.sub-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sub-hero-copy {
  width: min(720px, calc(100% - 40px));
  margin-left: clamp(24px, 6vw, 96px);
  padding: clamp(72px, 9vw, 126px) 0;
}

.sub-hero-copy p {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sub-hero-copy h1 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.2;
}

.sub-hero-copy span {
  display: block;
  max-width: 660px;
  margin-top: 22px;
  color: #263530;
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 600;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(var(--max), calc(100% - 40px));
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--green);
}

.breadcrumb a::after {
  margin-left: 10px;
  color: var(--muted);
  content: ">";
}

.subpage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 4vw, 52px);
  width: min(var(--max), calc(100% - 40px));
  margin: 32px auto clamp(80px, 10vw, 132px);
}

.legacy-wrap {
  min-width: 0;
}

.legacy-content {
  color: #273731;
  font-size: 16px;
}

.legacy-content .container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.legacy-content .row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
}

.legacy-content [class*="grid_"] {
  min-width: 0;
}

.legacy-content .grid_12 {
  grid-column: span 12;
}

.legacy-content .grid_8 {
  grid-column: span 8;
}

.legacy-content .grid_6 {
  grid-column: span 6;
}

.legacy-content .grid_4 {
  grid-column: span 4;
}

.legacy-content .grid_3 {
  grid-column: span 3;
}

.legacy-content .grid_2 {
  grid-column: span 2;
}

.legacy-content .box-1,
.legacy-content .box-2,
.legacy-content .box-3,
.legacy-content .box-4,
.legacy-content .wrapper {
  margin: 0 0 clamp(34px, 5vw, 64px);
}

.legacy-content .box-2,
.legacy-content .box-4 {
  padding: clamp(26px, 4vw, 42px);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legacy-content h2 {
  margin: 0 0 24px;
  color: var(--green);
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 800;
  line-height: 1.32;
}

.legacy-content h2 span,
.legacy-content h3 span,
.legacy-content .color1,
.legacy-content .color4,
.legacy-content .color5 {
  color: var(--muted);
  font-size: 0.58em;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.legacy-content h3 {
  margin: 22px 0 14px;
  color: var(--charcoal);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  line-height: 1.45;
}

.legacy-content h4 {
  margin: 18px 0 10px;
  color: var(--green);
  font-size: 19px;
}

.legacy-content p {
  margin: 0 0 18px;
}

.legacy-content a {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legacy-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.legacy-content h2 img,
.legacy-content h3 img,
.legacy-content .no_resize,
.legacy-content img[src$=".svg"] {
  border-radius: 0;
  box-shadow: none;
}

.legacy-content .box,
.legacy-content .txt_section2,
.legacy-content .icon_section1,
.legacy-content .plane1,
.legacy-content .plane2,
.legacy-content .plane3,
.legacy-content .plane4,
.legacy-content .plane5,
.legacy-content .plane6,
.legacy-content .plane7,
.legacy-content .plane8,
.legacy-content .plane9 {
  overflow: hidden;
  padding: clamp(20px, 3vw, 30px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(15, 41, 31, 0.08);
}

.legacy-content .txt_section2 + .txt_section2,
.legacy-content .icon_section1 + .icon_section1 {
  margin-top: 22px;
}

.legacy-content ul,
.legacy-content ol {
  margin: 0 0 24px;
  padding-left: 1.25em;
}

.legacy-content li {
  margin: 7px 0;
}

.legacy-content table {
  width: 100% !important;
  max-width: 100%;
  margin: 18px 0 32px;
  overflow: hidden;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(15, 41, 31, 0.06);
}

.legacy-content th,
.legacy-content td {
  padding: 13px 15px !important;
  border: 1px solid var(--line) !important;
  background: #fff !important;
  color: #263530;
  text-align: left;
  vertical-align: top;
}

.legacy-content th,
.legacy-content td:first-child {
  background: var(--soft) !important;
  color: var(--green);
  font-weight: 800;
}

.legacy-content iframe,
.legacy-content embed,
.legacy-content object {
  max-width: 100%;
}

.legacy-content .more_btn,
.legacy-content input[type="submit"],
.legacy-content input[type="reset"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  color: #fff;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 2px;
  font-weight: 800;
  text-decoration: none;
}

.legacy-content .hline {
  height: 1px;
  margin: 34px 0;
  background: var(--line);
}

.legacy-content .clear {
  clear: both;
}

.legacy-content .fa::before {
  content: ">";
}

.legacy-content [style*="float: right"] {
  margin: 0 0 18px 24px;
}

.legacy-content [style*="float: left"] {
  margin: 0 24px 18px 0;
}

.related-nav {
  position: sticky;
  top: 112px;
  align-self: start;
  padding: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.related-nav h2 {
  margin: 0 0 22px;
  color: var(--green);
  font-size: 22px;
}

.related-nav h3 {
  margin: 22px 0 10px;
  color: var(--charcoal);
  font-size: 16px;
}

.related-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.related-nav li + li {
  border-top: 1px solid var(--line);
}

.related-nav a:not(.button) {
  display: block;
  padding: 11px 0;
  color: #263530;
  font-size: 14px;
  font-weight: 800;
}

.related-nav a[aria-current="page"] {
  color: var(--green);
}

.related-contact {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.related-contact p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.related-contact .button {
  width: 100%;
  min-width: 0;
  min-height: 48px;
}

.modern-form-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  width: min(var(--max), calc(100% - 40px));
  margin: 52px auto clamp(84px, 10vw, 136px);
}

.form-intro {
  padding: clamp(28px, 4vw, 46px);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.form-intro h2 {
  margin: 0 0 18px;
  color: var(--green);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.3;
}

.form-intro p,
.form-intro address {
  color: var(--muted);
  font-style: normal;
}

.form-intro a {
  color: var(--green);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 4vw, 46px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label,
.contact-form fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--charcoal);
  font-size: 15px;
  font-weight: 800;
}

.contact-form fieldset {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-form fieldset label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--charcoal);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  font-weight: 600;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.form-actions .button {
  border-radius: 2px;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-note a {
  color: var(--green);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 80px;
    gap: 16px;
  }

  .brand-symbol {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
    border-width: 6px;
  }

  .brand-text strong {
    font-size: 22px;
  }

  .menu-button {
    position: relative;
    z-index: 40;
    display: grid;
    place-items: center;
    width: 74px;
    height: 62px;
    padding: 8px;
    color: #fff;
    background: var(--green);
    border: 0;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(3, 69, 47, 0.22);
  }

  .menu-button span {
    width: 30px;
    height: 3px;
    margin: 1px 0;
    background: currentColor;
    border-radius: 999px;
  }

  .menu-button strong {
    margin-top: 1px;
    font-size: 11px;
    line-height: 1;
  }

  .site-nav {
    position: fixed;
    inset: 80px 0 auto;
    z-index: 35;
    display: grid;
    align-items: stretch;
    justify-content: stretch;
    gap: 0;
    padding: 0 20px 24px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 42px rgba(15, 41, 31, 0.13);
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .nav-cta {
    justify-content: center;
    margin-top: 18px;
    border: 0;
  }

  .hero {
    min-height: auto;
    padding-top: min(52vw, 360px);
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.86) 36%, #fff 54%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
  }

  .hero-media {
    bottom: auto;
    height: min(58vw, 440px);
  }

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

  .hero-content {
    width: auto;
    margin: 0;
    padding: 46px 20px 60px;
  }

  .hero h1 {
    font-size: clamp(40px, 10vw, 64px);
    line-height: 1.34;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 34px;
  }

  .button {
    min-width: 0;
    min-height: 56px;
    padding: 14px 16px;
  }

  .business-grid,
  .mission-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .business-card img {
    height: 260px;
    min-height: 0;
  }

  .mission-copy {
    justify-self: start;
    width: 100%;
  }

  .mission-image {
    border-radius: 8px;
  }

  .mission-image img {
    height: 360px;
  }

  .use-row {
    grid-template-columns: 62px minmax(0, 1fr) 22px;
    gap: 16px;
    min-height: 116px;
  }

  .use-icon,
  .use-row img {
    display: none;
  }

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

  .contact-card {
    justify-self: stretch;
    max-width: none;
  }

  .subpage-layout,
  .modern-form-section {
    grid-template-columns: 1fr;
  }

  .related-nav {
    position: static;
  }

  .legacy-content .row {
    grid-template-columns: 1fr;
  }

  .legacy-content .grid_12,
  .legacy-content .grid_8,
  .legacy-content .grid_6,
  .legacy-content .grid_4,
  .legacy-content .grid_3,
  .legacy-content .grid_2 {
    grid-column: 1;
  }

  .legacy-content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .legacy-content tbody,
  .legacy-content tr {
    width: max-content;
    min-width: 100%;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 76px;
    padding: 12px 16px;
  }

  .brand {
    gap: 10px;
  }

  .brand-symbol {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
    border-width: 5px;
  }

  .brand-symbol::after {
    inset: 5px;
  }

  .brand-text strong {
    font-size: 18px;
  }

  .brand-text small {
    display: none;
  }

  .menu-button {
    width: 62px;
    height: 56px;
    border-radius: 10px;
  }

  .site-nav {
    inset: 76px 0 auto;
  }

  .hero {
    padding-top: 265px;
  }

  .hero-media {
    height: 330px;
  }

  .hero-content {
    padding-top: 38px;
  }

  .hero p {
    margin-top: 22px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .business-section,
  .potential-section,
  .mission-section,
  .contact-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .section-heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .business-card {
    min-height: 0;
  }

  .business-card img {
    height: 210px;
  }

  .mission-image img {
    height: 260px;
  }

  .use-row {
    grid-template-columns: 54px minmax(0, 1fr) 18px;
    min-height: 96px;
  }

  .use-number {
    font-size: 31px;
  }

  .use-text {
    font-size: 18px;
  }

  .product-card {
    padding: 22px;
  }

  .recruit-section {
    min-height: 500px;
  }

  .recruit-section::before {
    background: linear-gradient(180deg, rgba(3, 69, 47, 0.22), rgba(3, 69, 47, 0.98) 46%, rgba(3, 69, 47, 1));
  }

  .recruit-section > img {
    height: 48%;
    object-position: center top;
  }

  .recruit-copy {
    align-content: end;
    width: auto;
    margin: 0;
    padding: 230px 20px 44px;
  }

  .contact-card .button {
    font-size: 15px;
  }

  .map-frame {
    min-height: 320px;
  }

  .site-footer {
    display: grid;
    justify-items: start;
  }

  .sub-hero {
    min-height: 390px;
  }

  .sub-hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.92) 56%, #fff),
      rgba(255, 255, 255, 0.16);
  }

  .sub-hero-copy {
    width: auto;
    margin: 0;
    padding: 170px 20px 46px;
  }

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

  .breadcrumb,
  .subpage-layout,
  .modern-form-section {
    width: calc(100% - 40px);
  }

  .legacy-content {
    font-size: 15px;
  }

  .legacy-content .box-2,
  .legacy-content .box-4,
  .legacy-content .box,
  .legacy-content .txt_section2,
  .legacy-content .icon_section1,
  .legacy-content .plane1,
  .legacy-content .plane2,
  .legacy-content .plane3,
  .legacy-content .plane4,
  .legacy-content .plane5,
  .legacy-content .plane6,
  .legacy-content .plane7,
  .legacy-content .plane8,
  .legacy-content .plane9,
  .contact-form,
  .form-intro {
    padding: 22px;
  }

  .form-actions {
    display: grid;
  }
}

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

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