:root {
  --green: #118640;
  --green-dark: #057030;
  --green-light: #eaf8eb;
  --leaf: #97d07b;
  --blue: #2f7dbd;
  --line: #b6ddb6;
  --text: #203229;
  --muted: #59705e;
  --white: #fff;
  --shadow: 0 14px 32px rgba(17, 134, 64, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.75;
  background:
    radial-gradient(circle at 0 24%, rgba(151,208,123,.18), transparent 17%),
    radial-gradient(circle at 100% 66%, rgba(151,208,123,.16), transparent 18%),
    #fff;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 0 44px;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid #dcefdc;
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green-dark);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  width: 36px;
  height: 36px;
  border: 3px solid var(--green);
  border-radius: 50%;
}

.brand-mark::before {
  position: absolute;
  inset: 9px 6px 8px 8px;
  content: "";
  border-left: 5px solid var(--green);
  border-bottom: 5px solid var(--green);
  border-radius: 0 0 0 18px;
  transform: rotate(-35deg);
}

.brand-mark::after {
  position: absolute;
  top: -6px;
  right: -2px;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--leaf);
  border-radius: 50%;
}

.global-nav {
  justify-self: center;
  display: flex;
  gap: 28px;
  font-size: 13px;
  font-weight: 900;
}

.global-nav a {
  position: relative;
  padding: 24px 0;
}

.global-nav a::after {
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  height: 2px;
  content: "";
  background: transparent;
}

.global-nav a:hover::after {
  background: var(--green);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.2;
}

.header-cta,
.button.primary {
  color: #fff;
  background: linear-gradient(135deg, #19a653, #087934);
  box-shadow: 0 10px 18px rgba(17,134,64,.2);
}

.button.secondary {
  color: var(--green-dark);
  background: #fff;
  border: 2px solid var(--green);
}

.button.blue {
  color: #fff;
  background: linear-gradient(135deg, #3b92d0, #1d68a9);
}

.button::after {
  margin-left: 12px;
  content: "›";
  font-size: 24px;
  line-height: .7;
}

.menu-button {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(440px, 45%) minmax(0, 55%);
  min-height: 480px;
  overflow: hidden;
}

.hero-copy {
  display: grid;
  align-content: center;
  padding: 58px 42px 58px 68px;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.96) 78%, rgba(255,255,255,.72) 100%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.hero h1 {
  margin: 0 0 18px;
  color: #222;
  font-size: clamp(38px, 4.6vw, 56px);
  line-height: 1.22;
  font-weight: 900;
}

.hero h1 span,
.section-heading h2,
.support-copy h2,
.company-copy h2,
.entry-copy h2,
.contact-card h2 {
  color: var(--green);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 0;
  font-size: 15px;
  font-weight: 800;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 18px;
  padding: 0;
  list-style: none;
}

.hero-tags li {
  padding: 5px 13px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  background: #fff;
  border: 1px solid var(--leaf);
  border-radius: 999px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-photo {
  position: relative;
  min-height: 480px;
  background: url("assets/hero-team.jpg") center / cover no-repeat;
}

.hero-message {
  position: absolute;
  right: 38px;
  bottom: 34px;
  max-width: 250px;
  padding: 20px 24px;
  color: var(--green);
  text-align: center;
  background: rgba(255,255,255,.95);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.hero-message strong {
  display: block;
  font-size: 16px;
}

.hero-message span {
  font-size: 13px;
  font-weight: 900;
}

.intro-strip {
  max-width: 980px;
  margin: -28px auto 0;
  position: relative;
  z-index: 2;
  padding: 24px 32px;
  color: var(--green-dark);
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.intro-strip p {
  max-width: 820px;
  margin: 0 auto;
  font-weight: 900;
}

.section,
.support,
.company,
.entry,
.contact {
  max-width: 1080px;
  margin: 76px auto 0;
  padding: 0 28px;
}

.section-heading {
  display: grid;
  justify-items: center;
  margin-bottom: 26px;
  text-align: center;
}

.section-heading p {
  margin: 0 0 4px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.section-heading h2,
.support-copy h2,
.company-copy h2,
.entry-copy h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.35;
  font-weight: 900;
}

.section-heading span,
.support-copy p,
.company-copy p,
.entry-copy p,
.contact-card p {
  max-width: 700px;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.work-grid article {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(17,134,64,.08);
}

.work-grid img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}

.work-grid h3,
.work-grid p {
  margin-right: 18px;
  margin-left: 18px;
}

.work-grid h3 {
  margin-top: 16px;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 18px;
}

.work-grid p {
  margin-top: 0;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.support {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  gap: 36px;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 42px;
  background: linear-gradient(135deg, #f2fbf2, #fff);
  border: 1px solid var(--line);
  border-radius: 22px;
}

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

.support-grid article {
  padding: 24px;
  background: #fff;
  border: 1px solid #d8ecd8;
  border-radius: 16px;
}

.support-grid span {
  color: var(--leaf);
  font-weight: 900;
}

.support-grid h3 {
  margin: 4px 0 8px;
  color: var(--green-dark);
  font-size: 20px;
}

.support-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

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

.voice-grid article {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(17,134,64,.07);
}

.voice-grid img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: 50%;
}

.voice-grid p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.voice-grid strong {
  color: var(--green-dark);
  font-size: 12px;
}

.numbers {
  max-width: 980px;
  margin: 78px auto 0;
  padding: 0 28px;
}

.numbers dl {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  overflow: hidden;
  background: #fffdf7;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.numbers div {
  padding: 20px 12px;
  text-align: center;
  border-right: 1px solid #e1ead9;
}

.numbers div:last-child {
  border-right: 0;
}

.numbers dt {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.numbers dd {
  margin: 2px 0 0;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.numbers strong {
  font-size: 32px;
  line-height: 1;
}

.company {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(320px, 1.05fr);
  gap: 34px;
  align-items: center;
}

.company-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 18px;
}

.company-copy ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.company-copy li {
  padding: 10px 14px;
  color: var(--green-dark);
  font-weight: 900;
  background: var(--green-light);
  border-radius: 999px;
}

.company-copy li::before {
  margin-right: 8px;
  content: "✓";
}

.entry {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
  gap: 34px;
  align-items: start;
  padding-top: 46px;
  padding-bottom: 46px;
  background: linear-gradient(135deg, #fff, #f1fbf2);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.entry-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(17,134,64,.07);
}

.entry-card h3 {
  margin: 0 0 16px;
  color: var(--green-dark);
  font-size: 22px;
}

.entry-card dl {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
}

.entry-card div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #d8ecd8;
}

.entry-card dt {
  color: var(--green);
  font-weight: 900;
}

.entry-card dd {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 78px;
}

.contact-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background: #fff;
  border: 2px solid var(--green);
  border-radius: 20px;
}

.work-contact {
  border-color: var(--blue);
}

.contact-card img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 16px;
}

.contact-card h2 {
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1.35;
}

.work-contact h2,
.blue-text {
  color: var(--blue);
}

.phone {
  display: block;
  margin: 8px 0 12px;
  color: var(--green-dark);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.1;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 26px 54px;
  background: linear-gradient(180deg, #f7fbf1, #fff);
  border-top: 1px solid #dcefdc;
}

.site-footer p,
.site-footer small {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    padding: 0 22px;
  }

  .menu-button {
    justify-self: end;
    display: grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
  }

  .menu-button span {
    height: 2px;
    background: var(--green);
  }

  .global-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .global-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .global-nav a {
    padding: 14px 24px;
    border-top: 1px solid #e2f0e2;
  }

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

  .hero,
  .support,
  .company,
  .entry,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    order: -1;
  }

  .hero-copy {
    padding: 38px 24px 46px;
  }

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

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

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

@media (max-width: 640px) {
  .brand {
    font-size: 22px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-message {
    right: 16px;
    bottom: 16px;
    max-width: 205px;
    padding: 14px 18px;
  }

  .intro-strip {
    margin: 18px 14px 0;
    padding: 20px;
  }

  .section,
  .support,
  .numbers,
  .company,
  .entry,
  .contact {
    margin-top: 58px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .work-grid,
  .support-grid,
  .numbers dl {
    grid-template-columns: 1fr;
  }

  .voice-grid article,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .voice-grid img,
  .contact-card img {
    width: 100%;
    height: 180px;
    border-radius: 14px;
  }

  .entry-card div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .phone {
    font-size: 23px;
  }
}
