@charset "UTF-8";

/* =============================================================
   株式会社グリーンストリート コーポレートサイト
   Design System — White / Green / Orange(CTA only)
   全配色は CSS 変数で管理
   ============================================================= */

:root {
  /* ---- Color: White dominant (85-90%) ---- */
  --c-bg:            #ffffff;
  --c-bg-subtle:     #f6f9f7;   /* very light green-tinted surface */
  --c-bg-sunken:     #eef3ef;

  /* ---- Color: Green (8-12%) ---- */
  --c-green:         #2e7d54;
  --c-green-strong:  #1f5c3d;
  --c-green-soft:    #e9f2ec;
  --c-green-line:    #d5e5db;

  /* ---- Color: Orange (2-3%) — CTA ONLY ---- */
  --c-orange:        #f26a21;
  --c-orange-strong: #d9551a;

  /* ---- Text ---- */
  --c-text:          #1e2a24;
  --c-text-muted:    #5c6b63;
  --c-text-faint:    #8a978f;
  --c-text-invert:   #ffffff;

  /* ---- Lines / shadow ---- */
  --c-border:        #e6ece8;
  --shadow-sm:       0 1px 2px rgba(24, 45, 34, .05);
  --shadow-md:       0 8px 24px rgba(24, 45, 34, .07);
  --shadow-lg:       0 20px 48px rgba(24, 45, 34, .10);

  /* ---- Typography ---- */
  --font-base: "Noto Sans JP", "Noto Sans SC", -apple-system, BlinkMacSystemFont,
               "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-bold:   700;

  /* ---- Layout ---- */
  --maxw:        1160px;
  --maxw-narrow: 760px;
  --gutter:      clamp(20px, 5vw, 48px);
  --header-h:    72px;
  --radius:      14px;
  --radius-sm:   10px;
  --radius-pill: 999px;

  /* ---- Motion ---- */
  --ease:  cubic-bezier(.22, .61, .36, 1);
  --dur:   .5s;
}

/* ============================= Reset / Base ============================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-base);
  font-weight: var(--fw-normal);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.8;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--c-green); outline-offset: 3px; border-radius: 3px; }

/* ============================= Layout helpers ============================= */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.narrow   { max-width: var(--maxw-narrow); }
.section  { padding-block: clamp(64px, 10vw, 128px); }
.section--subtle { background: var(--c-bg-subtle); }
.section--sunken { background: var(--c-bg-sunken); }

/* ============================= Typography ============================= */
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: var(--fw-bold);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px; height: 2px;
  background: var(--c-green);
  vertical-align: middle;
  margin-right: 12px;
  transform: translateY(-3px);
}
.h-xl { font-size: clamp(2rem, 5.2vw, 3.4rem);  font-weight: var(--fw-bold); line-height: 1.28; letter-spacing: .01em; }
.h-lg { font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: var(--fw-bold); line-height: 1.35; }
.h-md { font-size: clamp(1.25rem, 2.4vw, 1.6rem); font-weight: var(--fw-bold); line-height: 1.5; }
.lead { font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: var(--c-text-muted); }
.muted { color: var(--c-text-muted); }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; margin: 0; }

/* ============================= Buttons ============================= */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-size: .95rem; font-weight: var(--fw-bold);
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease),
              color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* Primary = green (main actions) */
.btn--primary { background: var(--c-green); color: var(--c-text-invert); }
.btn--primary:hover { background: var(--c-green-strong); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Ghost / outline */
.btn--ghost { border-color: var(--c-green-line); color: var(--c-green-strong); background: var(--c-bg); }
.btn--ghost:hover { border-color: var(--c-green); background: var(--c-green-soft); }

/* CTA = orange (ONLY for the primary conversion action, e.g. Contact) */
.btn--cta { background: var(--c-orange); color: var(--c-text-invert); box-shadow: 0 8px 20px rgba(242,106,33,.25); }
.btn--cta:hover { background: var(--c-orange-strong); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(242,106,33,.32); }

.btn--sm { padding: 10px 20px; font-size: .86rem; }
.btn--block { display: flex; width: 100%; justify-content: center; }

/* ============================= Header ============================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--c-border); box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
/* Brand wordmark (site logo — refined, minimal; NOT the automotive logo) */
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark {
  width: 30px; height: 30px; flex: none;
  display: grid; place-items: center;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--c-green), var(--c-green-strong));
  color: #fff; font-weight: var(--fw-bold); font-size: 1rem;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__en { font-weight: var(--fw-bold); font-size: 1.06rem; letter-spacing: .04em; color: var(--c-text); }
.brand__jp { font-size: .64rem; letter-spacing: .12em; color: var(--c-text-faint); }

.nav { display: flex; align-items: center; gap: 6px; }
.nav__link {
  position: relative;
  font-size: .92rem; font-weight: var(--fw-medium);
  padding: 8px 14px; border-radius: 8px;
  color: var(--c-text);
}
.nav__link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--c-green);
  transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.nav__link:hover { color: var(--c-green-strong); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--c-green-strong); font-weight: var(--fw-bold); }

.header-right { display: flex; align-items: center; gap: 18px; }

/* Language switcher */
.lang { display: inline-flex; align-items: center; gap: 2px; font-size: .82rem; }
.lang a {
  padding: 4px 8px; border-radius: 6px; color: var(--c-text-muted);
  font-weight: var(--fw-medium); letter-spacing: .04em;
}
.lang a:hover { color: var(--c-green-strong); background: var(--c-green-soft); }
.lang a.is-active { color: var(--c-green-strong); font-weight: var(--fw-bold); }
.lang span.sep { color: var(--c-border); }

/* Hamburger */
.nav-toggle {
  display: none; width: 42px; height: 42px; border: none; background: none;
  position: relative; border-radius: 8px;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 10px; width: 22px; height: 2px;
  background: var(--c-text); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span { top: 20px; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 7px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span::after  { transform: translateY(-7px) rotate(-45deg); }

/* ============================= Hero ============================= */
.hero { position: relative; overflow: hidden; background: var(--c-bg-subtle); }
.hero__inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(56px, 8vw, 104px);
}
.hero__copy { position: relative; z-index: 2; }
.hero__title { margin-bottom: 26px; }
.hero__title .accent { color: var(--c-green); }
.hero__sub { font-size: clamp(1.05rem, 1.7vw, 1.28rem); color: var(--c-text-muted); margin-bottom: 38px; line-height: 1.9; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__media { position: relative; }
.hero__media img {
  width: 100%; border-radius: 20px; object-fit: cover;
  box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5;
}
.hero__badge {
  position: absolute; left: -18px; bottom: 28px;
  background: #fff; border-radius: 14px; padding: 16px 20px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px;
  max-width: 260px;
}
.hero__badge .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--c-green); flex: none; }
.hero__badge small { font-size: .82rem; color: var(--c-text-muted); line-height: 1.5; }

/* decorative soft blobs */
.hero::before {
  content: ""; position: absolute; top: -120px; right: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, var(--c-green-soft), transparent 70%);
  z-index: 0;
}

/* ============================= Generic split (ROOT / MISSION) ============================= */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media img { width: 100%; border-radius: 18px; object-fit: cover; box-shadow: var(--shadow-md); }
.split__body p + p { margin-top: 1.1em; }
.split__body .quote {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem); font-weight: var(--fw-bold);
  line-height: 1.6; color: var(--c-text); margin: 4px 0 24px;
}
.split__body .quote .accent { color: var(--c-green); }

/* Mission values */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.value {
  background: var(--c-bg); border: 1px solid var(--c-border); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
}
.value__num { font-size: .8rem; font-weight: var(--fw-bold); color: var(--c-green); letter-spacing: .1em; }
.value h4 { margin: 10px 0 8px; font-size: 1.08rem; }
.value p { font-size: .9rem; color: var(--c-text-muted); line-height: 1.75; }

/* ============================= Cards (Business / Achievements) ============================= */
.card-grid { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--c-bg); border: 1px solid var(--c-border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--c-green-line); }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--c-bg-sunken); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.card__tag {
  align-self: flex-start; font-size: .72rem; font-weight: var(--fw-bold); letter-spacing: .08em;
  color: var(--c-green-strong); background: var(--c-green-soft);
  padding: 4px 12px; border-radius: var(--radius-pill); margin-bottom: 14px;
}
.card__title { font-size: 1.15rem; font-weight: var(--fw-bold); margin-bottom: 10px; }
.card__text { font-size: .9rem; color: var(--c-text-muted); line-height: 1.75; flex: 1; }
.card__foot { margin-top: 18px; }
.card__link { display: inline-flex; align-items: center; gap: .4em; font-size: .88rem; font-weight: var(--fw-bold); color: var(--c-green-strong); }
.card__link .arrow { transition: transform .25s var(--ease); }
.card__link:hover .arrow { transform: translateX(4px); }

/* Automotive card carries the GREEN STREET brand logo */
.card--brand .card__media { background: #fffdf5; display: grid; place-items: center; padding: 18px; }
.card--brand .card__media img { object-fit: contain; }

/* Achievements */
.achievement .card__media { aspect-ratio: 16 / 10; }
.achievement__date { font-size: .78rem; color: var(--c-text-faint); font-weight: var(--fw-medium); }

/* ============================= Numbered / list blocks ============================= */
.deflist { display: grid; grid-template-columns: max-content 1fr; gap: 0; border-top: 1px solid var(--c-border); }
.deflist dt, .deflist dd { padding: 18px 8px; border-bottom: 1px solid var(--c-border); margin: 0; }
.deflist dt { font-weight: var(--fw-bold); color: var(--c-text); padding-right: 36px; white-space: nowrap; }
.deflist dd { color: var(--c-text-muted); }

.offices { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 28px; }
.office { border: 1px solid var(--c-border); border-radius: var(--radius); padding: 22px 24px; background: var(--c-bg); }
.office h4 { font-size: 1rem; margin-bottom: 6px; }
.office h4 .tag { font-size: .68rem; color: var(--c-green-strong); background: var(--c-green-soft); padding: 2px 9px; border-radius: 99px; margin-left: 8px; vertical-align: middle; font-weight: 700; }
.office p { font-size: .88rem; color: var(--c-text-muted); }

/* Profile */
.profile { display: grid; grid-template-columns: 300px 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.profile__photo img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); aspect-ratio: 1/1; object-fit: cover; }
.profile__name { display: flex; align-items: baseline; gap: 12px; margin: 6px 0 4px; }
.profile__name .en { font-size: .82rem; color: var(--c-text-faint); letter-spacing: .14em; }
.profile__role { font-size: .9rem; color: var(--c-green-strong); font-weight: var(--fw-bold); margin-bottom: 18px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chip { font-size: .78rem; border: 1px solid var(--c-green-line); color: var(--c-green-strong); border-radius: 99px; padding: 5px 14px; }

/* ============================= Contact strip ============================= */
.contact-cta { text-align: center; }
.contact-cta .h-lg { margin-bottom: 16px; }
.contact-cta .lead { margin-bottom: 34px; }
.contact-methods { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 30px; }
.contact-method {
  display: flex; align-items: center; gap: 14px; text-align: left;
  border: 1px solid var(--c-border); border-radius: var(--radius); padding: 18px 26px; background: var(--c-bg);
  min-width: 260px; box-shadow: var(--shadow-sm); transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.contact-method:hover { border-color: var(--c-green-line); transform: translateY(-2px); }
.contact-method .ic { width: 44px; height: 44px; flex: none; border-radius: 12px; background: var(--c-green-soft); color: var(--c-green-strong); display: grid; place-items: center; }
.contact-method small { display: block; font-size: .74rem; color: var(--c-text-faint); letter-spacing: .06em; }
.contact-method strong { font-size: 1.12rem; color: var(--c-text); font-weight: var(--fw-bold); }

/* ============================= Contact form ============================= */
.contact-form { max-width: 720px; margin: 40px auto 0; text-align: left; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 22px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: .88rem; font-weight: var(--fw-bold); color: var(--c-text); }
.form-field .req {
  display: inline-block; margin-left: 8px; padding: 1px 8px; border-radius: 4px;
  background: var(--c-orange); color: var(--c-text-invert); font-size: .68rem; vertical-align: 1px;
}
.form-field input, .form-field select, .form-field textarea {
  font: inherit; color: var(--c-text); background: var(--c-bg);
  border: 1px solid var(--c-green-line); border-radius: 10px; padding: 12px 14px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--c-green); box-shadow: 0 0 0 3px var(--c-green-soft);
}
.form-field textarea { min-height: 170px; resize: vertical; }
.form-field ::placeholder { color: var(--c-text-faint); }
.form-consent label { display: flex; align-items: center; gap: 10px; font-weight: 400; font-size: .9rem; color: var(--c-text-muted); }
.form-consent input { width: 18px; height: 18px; accent-color: var(--c-green); flex: none; }
.form-consent a { color: var(--c-green-strong); text-decoration: underline; }
.form-submit { margin-top: 32px; text-align: center; }
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } }

/* ============================= Solicitation / Legal prose ============================= */
.prose { max-width: var(--maxw-narrow); }
.prose h2 { font-size: 1.3rem; margin: 40px 0 14px; padding-bottom: 10px; border-bottom: 2px solid var(--c-green-soft); }
.prose h3 { font-size: 1.05rem; margin: 26px 0 8px; color: var(--c-green-strong); }
.prose p { color: var(--c-text-muted); margin-bottom: 1em; }
.prose ol.numbered { counter-reset: item; margin: 12px 0; }
.prose ol.numbered > li { counter-increment: item; position: relative; padding-left: 40px; margin-bottom: 16px; color: var(--c-text-muted); }
.prose ol.numbered > li::before {
  content: counter(item); position: absolute; left: 0; top: 2px;
  width: 26px; height: 26px; background: var(--c-green); color: #fff;
  border-radius: 50%; display: grid; place-items: center; font-size: .8rem; font-weight: 700;
}
.prose .note { background: var(--c-bg-subtle); border-left: 3px solid var(--c-green); padding: 16px 20px; border-radius: 8px; font-size: .88rem; }

/* Page hero (interior pages) */
.page-hero { background: var(--c-bg-subtle); padding-block: clamp(52px, 7vw, 92px); border-bottom: 1px solid var(--c-border); }
.page-hero .eyebrow { margin-bottom: 14px; }
.breadcrumb { font-size: .8rem; color: var(--c-text-faint); margin-top: 16px; }
.breadcrumb a:hover { color: var(--c-green-strong); }

/* ============================= Footer ============================= */
.site-footer { background: #14211a; color: #cdd8d1; padding-block: clamp(52px, 7vw, 80px) 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-brand .brand__en { color: #fff; }
.footer-brand .brand__jp { color: #8ba394; }
.footer-brand p { font-size: .86rem; color: #9db0a5; margin-top: 18px; max-width: 320px; }
.footer-col h5 { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: #7f978a; margin-bottom: 16px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: .9rem; color: #cdd8d1; }
.footer-col a:hover { color: #fff; }
.footer-contact li { font-size: .88rem; color: #b9c8bf; margin-bottom: 10px; }
.footer-bottom {
  margin-top: 48px; border-top: 1px solid rgba(255,255,255,.09);
  padding-block: 22px; display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center;
}
.footer-bottom small { font-size: .8rem; color: #8ba394; }
.footer-bottom .foot-links { display: flex; gap: 20px; }
.footer-bottom .foot-links a { font-size: .8rem; color: #9db0a5; }
.footer-bottom .foot-links a:hover { color: #fff; }

/* ============================= Scroll reveal ============================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================= Responsive ============================= */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { max-width: 460px; margin-inline: auto; order: -1; }
  .hero__media img { aspect-ratio: 16/10; }
  .split, .split--reverse { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: -1; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .profile { grid-template-columns: 1fr; }
  .profile__photo { max-width: 280px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--c-border);
    padding: 14px var(--gutter) 24px; box-shadow: var(--shadow-md);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav__link { padding: 14px 8px; font-size: 1rem; border-radius: 8px; }
  .nav__link::after { display: none; }
  .nav__link.is-active { background: var(--c-green-soft); }
  .values { grid-template-columns: 1fr; }
  .card-grid, .card-grid--2 { grid-template-columns: 1fr; }
  .offices { grid-template-columns: 1fr; }
  .deflist { grid-template-columns: 1fr; }
  .deflist dt { padding-bottom: 4px; border-bottom: none; }
  .deflist dd { padding-top: 4px; }
  .footer-top { grid-template-columns: 1fr; }
  .hero__badge { left: 0; }
}

/* ============================= Full-screen Hero (TOP) ============================= */
.hero--full {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-green-strong);
}
.hero--full .hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero--full .hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero--full::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(18,30,23,.82) 0%, rgba(18,30,23,.55) 42%, rgba(18,30,23,.18) 100%);
}
.hero--full .hero__content { position: relative; z-index: 2; color: #fff; max-width: 760px; padding-block: clamp(56px, 12vh, 120px); }
.hero--full .eyebrow { color: #8fd6ac; }
.hero--full .eyebrow::before { background: #8fd6ac; }
.hero--full .hero__title { color: #fff; margin-bottom: 26px; text-shadow: 0 2px 30px rgba(0,0,0,.28); }
.hero--full .hero__title .accent { color: #8fd6ac; }
.hero--full .hero__sub { color: rgba(255,255,255,.92); margin-bottom: 40px; text-shadow: 0 1px 20px rgba(0,0,0,.28); }
.hero--full .hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__scroll {
  position: absolute; left: var(--gutter); bottom: 26px; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  font-size: .68rem; font-weight: 700; letter-spacing: .24em; color: rgba(255,255,255,.85);
}
.hero__scroll::after { content: ""; width: 46px; height: 1px; background: rgba(255,255,255,.65); transform-origin: left; animation: scroll-line 2.4s var(--ease) infinite; }
@keyframes scroll-line { 0%,100% { transform: scaleX(.35); opacity:.5 } 50% { transform: scaleX(1); opacity:1 } }

.btn--on-dark { border-color: rgba(255,255,255,.55); color: #fff; background: transparent; }
.btn--on-dark:hover { border-color: #fff; background: rgba(255,255,255,.14); }

/* Mission value icons */
.value__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--c-green-soft); color: var(--c-green-strong); display: grid; place-items: center; margin-bottom: 18px; }
.value__icon svg { width: 26px; height: 26px; }

@media (prefers-reduced-motion: reduce) { .hero__scroll::after { animation: none; } }
@media (max-width: 720px) {
  .hero--full .hero__title { text-shadow: 0 2px 20px rgba(0,0,0,.45); }
  .hero__scroll { display: none; }
  /* Mobile FV: keep the meal handoff (hands & child) in frame, easing in with a slow pan */
  .hero--full .hero__bg img {
    object-position: 72% center;
    animation: hero-pan 5s cubic-bezier(.22,.61,.36,1) .3s both;
  }
  @keyframes hero-pan {
    from { object-position: 40% center; }
    to   { object-position: 72% center; }
  }
}
@media (min-width: 721px) {
  /* Desktop FV: one-shot slow zoom toward the meal handoff */
  .hero--full .hero__bg img {
    transform-origin: 72% 50%;
    animation: hero-zoom 15s cubic-bezier(.22,.61,.36,1) .2s both;
  }
  @keyframes hero-zoom {
    from { transform: scale(1); }
    to   { transform: scale(1.06); }
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero--full .hero__bg img { animation: none; }
}

/* =============================================================
   TOP: Stats / Partners / FAQ (added 2026-08)
   ============================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 44px;
}
.stat { grid-column: span 2; }
.stat:nth-child(4) { grid-column: 2 / span 2; }
.stat:nth-child(5) { grid-column: 4 / span 2; }
@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat,
  .stat:nth-child(4) { grid-column: span 1; }
  .stat:nth-child(5) { grid-column: span 2; }
}
.stat {
  text-align: center;
  padding: 30px 14px 26px;
  background: var(--c-green-soft);
  border-radius: 14px;
}
.stat__num {
  display: block;
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--c-green-strong);
  letter-spacing: .02em;
}
.stat__num small { font-size: .55em; font-weight: 700; margin-left: 2px; }
.stat__label {
  display: block;
  margin-top: 10px;
  font-size: .86rem;
  color: var(--c-text-muted);
}

.partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 40px;
}
.partner {
  background: var(--c-bg);
  border: 1px solid var(--c-green-line);
  border-radius: 12px;
  padding: 20px 22px;
}
.partner__name {
  display: block;
  font-weight: 700;
  color: var(--c-text);
  font-size: .98rem;
}
.partner__role {
  display: block;
  margin-top: 6px;
  font-size: .84rem;
  color: var(--c-text-muted);
}

.faq { margin-top: 36px; }
.faq details {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 0;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 52px 18px 22px;
  font-weight: 700;
  position: relative;
  color: var(--c-text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "＋";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-green);
  font-weight: 700;
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details[open] summary { color: var(--c-green-strong); }
.faq .faq__a {
  padding: 0 22px 20px;
  color: var(--c-text-muted);
  font-size: .95rem;
  line-height: 1.9;
}
.faq summary:hover { background: var(--c-bg-subtle); }
