:root {
  --green: #0f8f3d;
  --green-dark: #075c2c;
  --lime: #b8f250;
  --ink: #101413;
  --muted: #63706b;
  --line: #dde6e1;
  --paper: #f6f8f5;
  --white: #fff;
  --gold: #f0c94b;
  --shadow: 0 18px 50px rgba(10, 28, 20, .16);
  --font: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }


/* Loading screen */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(15,143,61,.22), transparent 34%),
    #07110c;
  color: var(--white);
  transition: opacity .65s ease, visibility .65s ease;
}
#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader { text-align: center; }
.loader-logo {
  width: 118px;
  height: 118px;
  object-fit: contain;
  margin: 0 auto 16px;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.35));
  animation: loaderPulse 1.55s ease-in-out infinite;
}
.loader-name {
  margin-bottom: 24px;
  font-size: 1.08rem;
  font-weight: 1000;
  letter-spacing: .08em;
}
.loader-bar {
  width: min(220px, 62vw);
  height: 4px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
}
.loader-progress {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--lime);
  animation: loadingProgress 2s ease-in-out forwards;
}
@keyframes loaderPulse {
  0%, 100% { opacity: .76; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.055); }
}
@keyframes loadingProgress {
  0% { width: 0; }
  55% { width: 74%; }
  100% { width: 100%; }
}


.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(11, 17, 14, .92);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: .02em;
}
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand span { font-size: 1.1rem; }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 36px); }
.site-nav a {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  opacity: .9;
  position: relative;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav-toggle {
  display: grid;
  position: absolute;
  top: 17px;
  right: 18px;
  z-index: 3;
  gap: 5px;
  width: 42px;
  height: 42px;
  place-content: center;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  cursor: pointer;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--white); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 120px 24px 92px;
  color: var(--white);
  overflow: hidden;
}
.hero-video, .hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-video {
  object-fit: cover;
  background: #06110c;
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 12, 8, .86), rgba(3, 12, 8, .45) 45%, rgba(15, 143, 61, .36)),
    linear-gradient(0deg, rgba(3, 12, 8, .72), transparent 42%);
}
.hero-copy {
  position: relative;
  width: min(980px, 100%);
  margin-right: auto;
  padding-left: clamp(0px, 7vw, 82px);
}
.hero-logo { width: clamp(88px, 14vw, 154px); margin-bottom: 24px; filter: drop-shadow(0 10px 25px rgba(0,0,0,.35)); }
.eyebrow, .section-kicker {
  margin: 0 0 12px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
}
.hero .eyebrow { color: var(--lime); }
.hero h1, .page-hero h1 {
  margin: 0;
  font-size: clamp(4.2rem, 13vw, 11rem);
  line-height: .86;
  letter-spacing: 0;
  font-weight: 1000;
}
.lead {
  max-width: 720px;
  margin: 28px 0 0;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
}
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .04em;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--green); color: var(--white); box-shadow: 0 12px 30px rgba(15,143,61,.28); }
.button-primary:hover { background: var(--green-dark); }
.button-ghost { color: var(--white); border: 1px solid rgba(255,255,255,.58); }
.button-ghost.dark-text { color: var(--ink); border-color: rgba(16,20,19,.24); }
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  color: rgba(255,255,255,.78);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
}
.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 42px;
  margin: 8px auto 0;
  background: currentColor;
}

.section { padding: clamp(72px, 10vw, 132px) 0; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}
.split-reverse { grid-template-columns: minmax(280px, .65fr) minmax(0, 1fr); }
h2 {
  margin: 0 0 22px;
  font-size: clamp(2rem, 4.7vw, 4.7rem);
  line-height: 1.08;
  letter-spacing: 0;
}
h3 { margin: 0 0 10px; font-size: 1.25rem; line-height: 1.35; }
p { margin: 0 0 16px; }
.photo-frame {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--line);
}
.photo-frame img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.portrait { max-width: 430px; justify-self: center; }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}
.stats div, .recruit-list div {
  border-top: 2px solid var(--green);
  padding-top: 12px;
}
.stats strong {
  display: block;
  color: var(--green-dark);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.1;
}
.stats span, .recruit-list span { color: var(--muted); font-size: .9rem; }
.dark {
  background: var(--ink);
  color: var(--white);
}
.dark p { color: rgba(255,255,255,.78); }
.dark .section-kicker { color: var(--lime); }
.signature {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.18);
  color: var(--white) !important;
  font-weight: 900;
}
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 42px; }
.activity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.activity-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 270px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.activity-card img { width: 100%; height: 100%; object-fit: cover; }
.activity-card div { padding: 26px; }
.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
}
.activity-card p { color: var(--muted); font-size: .94rem; }
.results { background: var(--paper); }
.timeline {
  max-width: 860px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.timeline li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.timeline time { color: var(--green-dark); font-weight: 1000; font-size: 1.2rem; }
.mosaic {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-auto-rows: 220px;
  gap: 10px;
}
.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.mosaic img:first-child { grid-row: span 2; }
.center { text-align: center; margin-top: 34px; }
.contact-band { background: linear-gradient(135deg, #eaf6ec, #f7f8ef); }
.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.contact-panel p { max-width: 640px; color: var(--muted); }

.site-footer {
  background: #0b110e;
  color: rgba(255,255,255,.72);
  padding: 56px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr .7fr;
  gap: 36px;
  align-items: start;
}
.footer-logo { width: 72px; margin-bottom: 12px; }
.footer-name { color: var(--white); font-weight: 1000; font-size: 1.25rem; margin-bottom: 2px; }
.site-footer nav { display: grid; gap: 8px; }
.site-footer nav a { color: var(--white); font-weight: 800; font-size: .88rem; }
.sns { display: flex; gap: 12px; }
.sns a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
}
.sns svg { width: 20px; height: 20px; fill: var(--white); }
.copyright {
  margin: 36px auto 0;
  width: min(1160px, calc(100% - 40px));
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .78rem;
  text-align: center;
}
.compact { text-align: center; padding: 34px 20px; }
.compact p { margin: 0; }
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 18;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 1000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: .2s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
}
.to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

.page-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: end start;
  padding: 150px clamp(22px, 7vw, 88px) 70px;
  color: var(--white);
  overflow: hidden;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(3,12,8,.82), rgba(3,12,8,.22)), linear-gradient(0deg, rgba(3,12,8,.7), transparent);
}
.page-hero p { max-width: 680px; font-weight: 700; }
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}
.filter-tabs button {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 900;
  cursor: pointer;
}
.filter-tabs button.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 12px;
}
.gallery-tile {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: var(--line);
}
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.gallery-tile:hover img { transform: scale(1.04); }
.gallery-tile span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  color: var(--white);
  font-size: .76rem;
  font-weight: 900;
}
.gallery-tile.wide { grid-column: span 2; }
.gallery-tile.tall { grid-row: span 2; }
.gallery-tile.hidden { display: none; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(0,0,0,.88);
}
.lightbox.open { display: grid; }
.lightbox img { max-height: 86vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.45); }
.lightbox button {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 1.5rem;
  cursor: pointer;
}
.recruit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.recruit-list strong { display: block; color: var(--green-dark); }
.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.flow-grid div {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.05);
}
.flow-grid span { color: var(--lime); font-size: 1.8rem; font-weight: 1000; }

@media (max-width: 920px) {
  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: grid;
    gap: 0;
    padding: 18px 24px 28px;
    background: rgba(11,17,14,.96);
    transform: translateY(-120%);
    transition: transform .25s ease;
  }
  .site-nav.open { transform: translateY(0); }
  .site-nav a { padding: 12px 0; }
  .nav-toggle {
    display: grid;
    position: absolute;
    top: 12px;
    right: 16px;
    z-index: 3;
    gap: 5px;
    width: 42px;
    height: 42px;
    place-content: center;
    background: rgba(0,0,0,.28);
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 50%;
    cursor: pointer;
  }
  .nav-toggle span { width: 24px; height: 2px; background: var(--white); }
  .split, .split-reverse, .activity-grid, .footer-grid, .flow-grid {
    grid-template-columns: 1fr;
  }
  .activity-card { grid-template-columns: 1fr; }
  .activity-card img { height: 260px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-panel { display: block; }
}

@media (min-width: 921px) {
  .nav-toggle { display: none; }
}

@media (max-width: 620px) {
  .site-header { height: 66px; padding: 0 16px; }
  .site-header { width: 100vw; }
  .brand img { width: 40px; height: 40px; }
  .brand span { font-size: 1rem; }
  .site-nav { inset: 66px 0 auto; }
  .hero { place-items: end start; min-height: 92svh; padding: 100px 20px 78px; }
  .hero-copy { width: calc(100vw - 40px); padding-left: 0; }
  .hero h1 { font-size: clamp(3rem, 15vw, 3.8rem); }
  .lead { max-width: 100%; font-size: .98rem; overflow-wrap: anywhere; }
  .page-hero h1 { font-size: clamp(3.4rem, 21vw, 5rem); }
  .scroll-cue { display: none; }
  .stats, .recruit-list, .mosaic, .gallery-grid { grid-template-columns: 1fr; }
  .mosaic { grid-auto-rows: 210px; }
  .mosaic img:first-child { grid-row: span 1; }
  .timeline li { grid-template-columns: 1fr; gap: 4px; }
  .gallery-tile.wide, .gallery-tile.tall { grid-column: span 1; grid-row: span 1; }
  .page-hero { min-height: 440px; padding: 120px 20px 48px; }
}

/* Recruit page renewed */
.recruit-page {
  background: var(--white);
}
.recruit-fv {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 132px clamp(20px, 6vw, 88px) 110px;
  overflow: hidden;
  color: var(--white);
  background: #0b2718 url("../images/recruit-main.jpg") center 38% / cover no-repeat;
}
.recruit-fv__bg,
.recruit-fv__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.recruit-fv__bg {
  object-fit: cover;
  object-position: center 38%;
  z-index: 0;
}
.recruit-fv__shade {
  z-index: 1;
  background:
    radial-gradient(circle at 78% 18%, rgba(184,242,80,.38), transparent 30%),
    linear-gradient(100deg, rgba(3,12,8,.9) 0%, rgba(3,12,8,.62) 48%, rgba(15,143,61,.3) 100%),
    linear-gradient(0deg, rgba(3,12,8,.82), transparent 46%);
}
.recruit-fv::after {
  content: "";
  position: absolute;
  inset: auto -8vw -20vw auto;
  width: 54vw;
  height: 54vw;
  min-width: 430px;
  min-height: 430px;
  border-radius: 50%;
  background: rgba(15,143,61,.52);
  filter: blur(10px);
  z-index: 1;
}
.recruit-fv__inner {
  width: min(920px, 100%);
  position: relative;
  z-index: 2;
}
.recruit-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--lime);
  font-size: .82rem;
  font-weight: 1000;
  letter-spacing: .22em;
}
.recruit-label::before {
  content: "";
  width: 42px;
  height: 2px;
  background: currentColor;
}
.recruit-fv h1 {
  margin: 0;
  font-size: clamp(3.2rem, 8.6vw, 8.8rem);
  line-height: .95;
  letter-spacing: -.04em;
  font-weight: 1000;
  text-shadow: 0 16px 38px rgba(0,0,0,.36);
}
.recruit-fv__lead {
  max-width: 740px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(1.03rem, 1.7vw, 1.32rem);
  font-weight: 800;
}
.recruit-fv__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.recruit-fv__card {
  z-index: 2;
  position: absolute;
  right: clamp(20px, 6vw, 88px);
  bottom: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: min(480px, calc(100% - 40px));
  padding: 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(11,17,14,.54);
  backdrop-filter: blur(14px);
}
.recruit-fv__card span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: var(--white);
  font-size: .86rem;
  font-weight: 900;
}
.recruit-intro {
  background:
    linear-gradient(135deg, rgba(246,248,245,1), rgba(234,246,236,1));
}
.recruit-intro__grid,
.recruit-vibe__grid,
.recruit-faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}
.recruit-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.recruit-summary article {
  min-height: 148px;
  padding: 24px;
  border: 1px solid rgba(15,143,61,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 18px 45px rgba(10,28,20,.08);
}
.recruit-summary strong {
  display: block;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 1.05rem;
}
.recruit-summary span {
  color: var(--muted);
  font-weight: 800;
}
.recruit-vibe {
  background:
    linear-gradient(135deg, rgba(11,17,14,.98), rgba(7,92,44,.94)),
    var(--ink);
}
.recruit-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
  margin: 0;
}
.recruit-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
}
.recruit-collage img:first-child {
  grid-row: span 2;
}
.welcome-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.welcome-list p {
  margin: 0;
  padding: 18px 20px 18px 52px;
  position: relative;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.86);
  font-weight: 800;
}
.welcome-list p::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 17px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--green-dark);
  font-size: .86rem;
  font-weight: 1000;
}
.recruit-flow-section {
  background: var(--white);
}
.recruit-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: flow;
}
.recruit-flow article {
  position: relative;
  min-height: 260px;
  padding: 28px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.recruit-flow article::after {
  content: "";
  position: absolute;
  right: -52px;
  top: -52px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(15,143,61,.12);
}
.recruit-flow span {
  display: block;
  margin-bottom: 36px;
  color: var(--green);
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 1000;
}
.recruit-flow h3 {
  font-size: 1.36rem;
}
.recruit-flow p {
  color: var(--muted);
  font-size: .94rem;
}
.recruit-faq {
  background: linear-gradient(135deg, #f7f8ef, #eaf6ec);
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details {
  border: 1px solid rgba(15,143,61,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 12px 32px rgba(10,28,20,.07);
  overflow: hidden;
}
.faq-list summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--green-dark);
  font-weight: 1000;
}
.faq-list details p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}
.recruit-cta {
  background: var(--white);
}
.recruit-cta__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 6vw, 70px);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(7,92,44,.96), rgba(15,143,61,.86)),
    var(--green-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}
.recruit-cta__panel::after {
  content: "JOIN";
  position: absolute;
  right: -10px;
  bottom: -28px;
  color: rgba(255,255,255,.08);
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 1000;
  line-height: .8;
}
.recruit-cta__panel .section-kicker { color: var(--lime); }
.recruit-cta__panel h2,
.recruit-cta__panel p,
.recruit-cta__panel .contact-actions {
  position: relative;
  z-index: 1;
}
.recruit-cta__panel p {
  max-width: 720px;
  color: rgba(255,255,255,.84);
  font-weight: 700;
}
.recruit-cta__panel .button-ghost.dark-text {
  color: var(--white);
  border-color: rgba(255,255,255,.46);
}

@media (max-width: 920px) {
  .recruit-intro__grid,
  .recruit-vibe__grid,
  .recruit-faq__grid,
  .recruit-flow {
    grid-template-columns: 1fr;
  }
  .recruit-fv__card {
    left: 20px;
    right: 20px;
    justify-content: center;
    border-radius: 22px;
  }
  .recruit-collage {
    grid-template-rows: 180px 180px;
  }
}

@media (max-width: 620px) {
  .recruit-fv {
    min-height: 92svh;
    padding: 110px 20px 150px;
  }
  .recruit-fv__bg {
    object-position: center center;
  }
  .recruit-label {
    font-size: .72rem;
  }
  .recruit-label::before {
    width: 26px;
  }
  .recruit-fv h1 {
    font-size: clamp(2.8rem, 15vw, 4.2rem);
  }
  .recruit-summary,
  .recruit-collage {
    grid-template-columns: 1fr;
  }
  .recruit-collage {
    grid-template-rows: repeat(3, 210px);
  }
  .recruit-collage img:first-child {
    grid-row: span 1;
  }
  .recruit-flow article {
    min-height: auto;
  }
  .recruit-fv__card span {
    font-size: .8rem;
  }
}




/* Gallery mobile hero spacing fix */
@media (max-width: 620px) {
  .gallery-hero {
    min-height: 460px;
    padding: 132px 20px 70px;
  }
  .gallery-hero .eyebrow {
    margin-bottom: 20px;
  }
  .gallery-hero h1 {
    font-size: clamp(3.1rem, 17vw, 4.35rem);
    line-height: 1;
    margin-bottom: 22px;
  }
  .gallery-hero h1 + p {
    font-size: clamp(1rem, 4.8vw, 1.28rem);
    line-height: 1.7;
    max-width: 100%;
  }
}


/* Gallery mobile overlap final fix */
@media (max-width: 620px) {
  .gallery-hero {
    min-height: 560px;
    align-items: end;
    padding: 138px 20px 92px;
  }
  .gallery-hero > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
  .gallery-hero .eyebrow {
    margin: 0 0 22px;
  }
  .gallery-hero h1 {
    display: block;
    margin: 0 0 32px;
    font-size: clamp(4.4rem, 23vw, 5.7rem);
    line-height: .82;
    letter-spacing: -.04em;
  }
  .gallery-hero h1 + p {
    display: block;
    clear: both;
    margin: 0;
    padding-top: 4px;
    font-size: clamp(1.05rem, 5.2vw, 1.34rem);
    line-height: 1.9;
    max-width: 100%;
  }
}

/* Additional SEO/content sections */
.area-section {
  background: linear-gradient(135deg, #f6f8f5, #eaf6ec);
}
.request-section {
  background: var(--white);
}
.request-cards,
.trial-grid,
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0 30px;
}
.request-cards article,
.trial-grid article,
.voice-grid article {
  padding: 22px;
  border: 1px solid rgba(15,143,61,.16);
  border-radius: 18px;
  background: var(--paper);
}
.request-cards strong,
.trial-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 1.02rem;
}
.request-cards span,
.trial-grid span {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}
.voices-section {
  background: linear-gradient(135deg, #f7f8ef, #eaf6ec);
}
.voice-grid article {
  position: relative;
  background: rgba(255,255,255,.86);
  box-shadow: 0 14px 36px rgba(10,28,20,.08);
}
.voice-grid article::before {
  content: "“";
  display: block;
  color: rgba(15,143,61,.22);
  font-size: 4rem;
  line-height: .7;
  font-weight: 1000;
}
.voice-grid p {
  color: var(--ink);
  font-weight: 750;
}
.voice-grid span {
  display: inline-block;
  margin-top: 10px;
  color: var(--green-dark);
  font-size: .86rem;
  font-weight: 1000;
}
.faq-section {
  background: var(--white);
}
.trial-section {
  background: var(--white);
}
.narrow {
  width: min(880px, calc(100% - 40px));
}
.policy-hero {
  min-height: 420px;
}
.policy-page {
  background: var(--white);
}
.policy-page h2 {
  font-size: clamp(2rem, 4.2vw, 3.7rem);
}
.policy-updated {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}
.policy-block {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.policy-block:last-child {
  border-bottom: 1px solid var(--line);
}
.policy-block h3 {
  color: var(--green-dark);
  font-size: 1.2rem;
}
.policy-block p {
  color: var(--muted);
}
.footer-policy-links {
  margin: 8px 0 0;
  font-size: .82rem;
}
.footer-policy-links a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 920px) {
  .request-cards,
  .trial-grid,
  .voice-grid {
    grid-template-columns: 1fr;
  }
}


/* Gallery hero title spacing robust fix */
.gallery-hero > div {
  width: min(980px, 100%);
}
.gallery-hero h1 {
  line-height: .9;
  margin: 0 0 clamp(30px, 4vw, 56px);
}
.gallery-hero h1 + p {
  position: relative;
  z-index: 1;
  margin: 0;
  line-height: 1.75;
  max-width: min(760px, 100%);
}
@media (max-width: 620px) {
  .gallery-hero {
    min-height: 620px;
    padding: 138px 20px 110px;
  }
  .gallery-hero h1 {
    font-size: clamp(4rem, 22vw, 5.25rem);
    line-height: .92;
    margin-bottom: 44px;
  }
  .gallery-hero h1 + p {
    font-size: clamp(1rem, 4.8vw, 1.22rem);
    line-height: 1.9;
  }
}
@media (min-width: 621px) {
  .gallery-hero h1 {
    font-size: clamp(5.2rem, 12vw, 10rem);
  }
}


/* Final polish: recruit hero crop & gallery title spacing */
.recruit-fv__shade {
  background:
    radial-gradient(circle at 78% 18%, rgba(184,242,80,.22), transparent 30%),
    linear-gradient(100deg, rgba(3,12,8,.76) 0%, rgba(3,12,8,.52) 46%, rgba(15,143,61,.22) 100%),
    linear-gradient(0deg, rgba(3,12,8,.70), transparent 44%);
}
.recruit-fv__lead {
  text-shadow: 0 10px 28px rgba(0,0,0,.28);
}
.gallery-hero > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.gallery-hero h1 {
  margin-bottom: clamp(42px, 5vw, 76px);
}
.gallery-hero h1 + p {
  max-width: min(820px, 100%);
}
@media (min-width: 621px) {
  .gallery-hero {
    min-height: 520px;
    padding-bottom: 64px;
  }
  .gallery-hero h1 {
    font-size: clamp(4.8rem, 10vw, 8.6rem);
    line-height: .9;
  }
  .gallery-hero h1 + p {
    font-size: clamp(1.05rem, 1.9vw, 1.55rem);
    line-height: 1.7;
  }
}
@media (max-width: 620px) {
  .gallery-hero {
    min-height: 640px;
    padding: 138px 20px 116px;
  }
  .gallery-hero h1 {
    margin-bottom: 52px;
  }
}


/* Footer production credit */
.footer-credit {
  margin: 8px 0 0;
  color: rgba(255,255,255,.72);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.footer-credit a {
  color: var(--lime);
  text-decoration: none;
  font-weight: 1000;
}
.footer-credit a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.site-footer.compact .footer-credit {
  text-align: center;
}
