:root {
  --bg: #f2f1ef;
  --cream: #faf9e4;
  --green: #328267;
  --orange: #ef6a51;
  --ink: #2f5549;
  --text: #40514a;
  --muted: #66756f;
  --white: #fffdf8;
  --line: #d9dfcf;
  --shadow: 0 18px 38px rgba(66, 89, 72, 0.13);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Zen Maru Gothic", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.9;
  padding-bottom: 76px;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
}

body::before {
  width: 160px;
  height: 130px;
  right: -34px;
  top: 140px;
  background:
    radial-gradient(circle at 22px 22px, transparent 16px, #bdd8b9 17px 19px, transparent 20px),
    radial-gradient(circle at 78px 56px, transparent 16px, #ef6a51 17px 19px, transparent 20px);
}

body::after {
  width: 170px;
  height: 170px;
  left: -42px;
  bottom: 110px;
  background:
    linear-gradient(48deg, transparent 47%, #328267 48% 52%, transparent 53%),
    linear-gradient(-30deg, transparent 47%, #ef6a51 48% 52%, transparent 53%);
  border-radius: 50%;
}

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

a {
  color: inherit;
}

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

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 20;
  left: 16px;
  top: 16px;
  padding: 8px 12px;
  background: var(--ink);
  color: white;
  border-radius: var(--radius);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(50, 130, 103, 0.14);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(1120px, calc(100% - 32px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 190px;
  height: auto;
}

.header-nav {
  display: none;
  gap: 18px;
  margin-left: auto;
  color: var(--ink);
  font-weight: 700;
}

.header-nav a {
  text-decoration: none;
}

.header-actions {
  display: none;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  line-height: 1.25;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(47, 85, 73, 0.13);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(47, 85, 73, 0.2);
}

.btn-line {
  background: var(--green);
}

.btn-phone {
  background: var(--orange);
}

.btn-large {
  min-height: 54px;
  padding: 14px 24px;
  font-size: 17px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 22px 16px 34px;
  background: var(--cream);
}

.hero-image {
  width: min(1120px, 100%);
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-cta,
.cta-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: min(560px, 100%);
  margin: 18px auto 0;
}

.section {
  padding: 64px 0;
  position: relative;
}

.section-cream {
  background: var(--cream);
}

.container {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--green);
  font-weight: 900;
}

h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(26px, 7vw, 42px);
  line-height: 1.35;
}

h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.45;
}

p {
  margin: 0 0 16px;
}

.lead {
  max-width: 780px;
}

.split {
  display: grid;
  gap: 28px;
  align-items: center;
}

.section-photo,
.staff-card img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
}

.job-grid,
.point-grid,
.check-grid,
.staff-grid {
  display: grid;
  gap: 14px;
}

.job-card,
.staff-card {
  position: relative;
  padding: 22px;
  background: var(--white);
  border: 2px solid rgba(50, 130, 103, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.job-card::before {
  content: "";
  position: absolute;
  width: 58px;
  height: 20px;
  right: 16px;
  top: 14px;
  border-radius: 50%;
  transform: rotate(-8deg);
}

.job-card p {
  color: var(--orange);
  font-weight: 900;
}

.job-card a {
  display: inline-flex;
  margin-top: 4px;
  color: var(--green);
  font-weight: 900;
  background: #fefefe;
  padding: 5px;
  border-radius: 9999px;
  padding: 10px 20px;
  border: 2px solid  var(--green);
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(47, 85, 73, 0.13);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.job-card a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(47, 85, 73, 0.2);
}




.feature-list,
.check-grid,
.point-grid {
  padding: 0;
  list-style: none;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}

.feature-list li,
.check-grid li,
.point-grid li {
  background: var(--white);
  border: 1px solid rgba(50, 130, 103, 0.12);
  border-radius: var(--radius);
  padding: 14px 16px 14px 46px;
  position: relative;
}

.feature-list li::before,
.check-grid li::before,
.point-grid li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
  line-height: 1;
}

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

.accordion-item {
  scroll-margin-top: calc(var(--header-height) + 16px);
  background: var(--white);
  border: 2px solid rgba(50, 130, 103, 0.13);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(66, 89, 72, 0.08);
}

.accordion-trigger {
  width: 100%;
  min-height: 72px;
  padding: 18px 52px 18px 18px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  text-align: left;
  display: grid;
  gap: 4px;
  position: relative;
  cursor: pointer;
}

.accordion-trigger::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--green);
  font-size: 24px;
}

.accordion-trigger[aria-expanded="true"]::after {
  content: "−";
}

.salary {
  color: var(--orange);
  font-size: 15px;
}

.accordion-panel {
  padding: 0 18px 22px;
  border-top: 1px dashed rgba(50, 130, 103, 0.25);
}

.detail-list,
.info-list {
  margin: 0;
}

.detail-list dt,
.info-list dt {
  margin-top: 18px;
  color: var(--green);
  font-weight: 900;
}

.detail-list dd,
.info-list dd {
  margin: 6px 0 0;
}

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

.staff-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 18px;
}





.flow-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.flow-list li {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(50, 130, 103, 0.12);
}

.flow-list span {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: white;
  font-weight: 900;
}

.note {
  margin-top: 18px;
  color: var(--muted);
}

.final-cta {
  text-align: center;
  background:
    linear-gradient(180deg, rgba(250, 249, 228, 0.7), rgba(242, 241, 239, 0.9)),
    var(--bg);
}

.final-cta p {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  padding: 28px 16px 108px;
  text-align: center;
  background: var(--ink);
  color: white;
}

.sticky-cta {
  position: fixed;
  z-index: 12;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px;
  background: rgba(255, 253, 248, 0.96);
  border-top: 1px solid rgba(50, 130, 103, 0.14);
  box-shadow: 0 -12px 30px rgba(47, 85, 73, 0.13);
}

.sticky-cta .btn {
  min-height: 50px;
  padding: 10px 12px;
  font-size: 14px;
}

@media (min-width: 720px) {
  body {
    padding-bottom: 0;
  }

  .header-nav {
    display: flex;
  }

  .hero {
    padding: 34px 24px 48px;
  }

  .hero-cta,
  .cta-row {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .split {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  }

  .reverse {
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  }

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

  .sticky-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 28px;
  }
}

@media (min-width: 980px) {
  .header-actions {
    display: flex;
  }

  .brand img {
    width: 220px;
  }

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

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

  .section {
    padding: 84px 0;
  }
}
