:root {
  --green: #2f7549;
  --green-deep: #194b32;
  --green-soft: #68a762;
  --lime: #d9f078;
  --mint: #eaf5e7;
  --mint-strong: #cfe7d3;
  --cream: #fbfaf4;
  --white: #ffffff;
  --ink: #193329;
  --muted: #65756c;
  --line: #d5e1d5;
  --sans: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  --rounded: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  --page: min(1280px, calc(100vw - 64px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--lime); color: var(--green-deep); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--green-deep);
  transform: translateY(-140%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1340px, calc(100vw - 48px));
  min-height: 72px;
  padding: 0 16px 0 22px;
  border: 1px solid rgba(25, 75, 50, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 45px rgba(25, 70, 45, .1);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
  transition: top .25s ease, min-height .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { top: 8px; min-height: 64px; box-shadow: 0 14px 45px rgba(25, 70, 45, .16); }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-emblem {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.22), 0 6px 16px rgba(25,75,50,.16);
}
.brand-emblem::after { content: ""; position: absolute; top: 4px; right: 5px; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 3px rgba(217,240,120,.14); }
.brand-emblem img { width: 26px; height: 26px; filter: brightness(0) invert(1); }
.brand-type { display: flex; flex-direction: column; line-height: 1.1; }
.brand-type strong { font-family: var(--rounded); font-size: 18px; font-weight: 800; letter-spacing: .06em; }
.brand-type small { margin-top: 5px; color: var(--muted); font-size: 7px; font-weight: 700; letter-spacing: .24em; }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 12px; font-weight: 700; }
.site-nav > a:not(.nav-contact) { position: relative; padding: 12px 0; }
.site-nav > a:not(.nav-contact)::after { content: ""; position: absolute; right: 0; bottom: 5px; left: 0; height: 2px; border-radius: 2px; background: var(--lime); transform: scaleX(0); transition: transform .2s ease; }
.site-nav > a:not(.nav-contact):hover::after { transform: scaleX(1); }
.nav-contact { display: flex; align-items: center; gap: 24px; padding: 12px 17px 12px 20px; border-radius: 12px; background: var(--green-deep); color: var(--white); transition: background .2s ease, transform .2s ease; }
.nav-contact:hover { background: var(--green); transform: translateY(-2px); }
.menu-button { display: none; }

.hero { padding: 112px 24px 0; background: var(--cream); }
.hero-main {
  position: relative;
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  min-height: 720px;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 34px;
  background: var(--green);
  color: var(--white);
}
.hero-main::before {
  content: "";
  position: absolute;
  top: -190px;
  left: -170px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 46% 54% 59% 41%;
  transform: rotate(24deg);
}
.hero-main::after {
  content: "";
  position: absolute;
  bottom: -70px;
  left: 37%;
  width: 150px;
  height: 150px;
  border-radius: 42% 58% 32% 68%;
  background: rgba(217, 240, 120, .16);
  transform: rotate(35deg);
}
.hero-copy { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: 110px 5.2vw 70px 6vw; }
.hero-kicker { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 0 0 30px; color: rgba(255,255,255,.8); font-size: 10px; font-weight: 600; letter-spacing: .08em; }
.hero-kicker span { padding: 6px 11px; border-radius: 100px; background: var(--lime); color: var(--green-deep); }
.hero-kicker i { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.55); }
.hero h1 { margin: 0; font-family: var(--rounded); font-size: clamp(48px, 4.9vw, 76px); font-weight: 800; line-height: 1.35; letter-spacing: .015em; }
.hero h1 em { color: var(--lime); font-style: normal; }
.hero-lead { margin: 30px 0 0; color: rgba(255,255,255,.86); font-size: 15px; line-height: 2; letter-spacing: .03em; }
.hero-actions { display: flex; gap: 12px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: space-between; min-width: 190px; padding: 15px 18px 15px 21px; border: 0; border-radius: 13px; cursor: pointer; font-size: 13px; font-weight: 700; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button span { font-size: 16px; }
.button:hover { transform: translateY(-3px); }
.button-dark { background: var(--lime); color: var(--green-deep); box-shadow: 0 10px 28px rgba(22, 58, 38, .16); }
.button-dark:hover { background: var(--white); }
.button-ghost { border: 1px solid rgba(255,255,255,.4); background: rgba(255,255,255,.08); color: var(--white); }
.button-ghost:hover { background: rgba(255,255,255,.16); }
.hero-points { display: flex; gap: 24px; margin: 47px 0 0; padding: 22px 0 0; border-top: 1px solid rgba(255,255,255,.2); list-style: none; }
.hero-points li { display: flex; flex-direction: column; }
.hero-points b { color: var(--lime); font-size: 8px; letter-spacing: .18em; }
.hero-points span { margin-top: 2px; color: rgba(255,255,255,.72); font-size: 10px; }
.hero-media { position: relative; z-index: 2; min-width: 0; padding: 28px 28px 28px 0; }
.hero-image-wrap { position: relative; height: 100%; min-height: 664px; overflow: hidden; border-radius: 25px 25px 145px 25px; background: var(--mint); }
.hero-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(16, 49, 31, .44)); }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }
.hero-image-wrap p { position: absolute; right: 36px; bottom: 34px; z-index: 2; margin: 0; font-family: var(--rounded); font-size: 21px; font-weight: 700; line-height: 1.65; text-align: right; }
.hero-image-wrap small { position: absolute; top: 25px; right: 25px; z-index: 2; padding: 5px 9px; border-radius: 99px; background: rgba(255,255,255,.8); color: var(--green-deep); font-size: 7px; font-weight: 700; letter-spacing: .16em; }
.hero-message { position: absolute; bottom: 38px; left: -42px; z-index: 4; display: grid; grid-template-columns: 1fr auto; width: 250px; padding: 22px 20px; border-radius: 20px; background: var(--white); color: var(--ink); box-shadow: 0 16px 44px rgba(21, 58, 36, .17); }
.hero-message span { grid-column: 1; color: var(--green); font-size: 10px; font-weight: 700; }
.hero-message strong { grid-column: 1; margin-top: 4px; font-family: var(--rounded); font-size: 15px; line-height: 1.6; }
.hero-message a { grid-column: 2; grid-row: 1 / 3; display: grid; place-items: center; align-self: end; width: 38px; height: 38px; border-radius: 50%; background: var(--lime); color: var(--green-deep); font-size: 18px; }
.hero-seal {
  position: absolute;
  top: 44px;
  left: -36px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(255,255,255,.76);
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 45px rgba(18,58,35,.16);
  backdrop-filter: blur(10px);
}
.hero-seal::after { content: ""; position: absolute; inset: 7px; border: 1px solid rgba(47,117,73,.16); border-radius: 50%; }
.hero-seal > img { z-index: 1; width: 38px; height: 38px; }
.hero-seal small { z-index: 1; margin-top: 5px; color: var(--green-deep); font-size: 6px; font-weight: 800; letter-spacing: .22em; }
.hero-ribbon { display: flex; align-items: center; justify-content: center; gap: 28px; max-width: 1440px; min-height: 86px; margin: 0 auto; color: var(--green-deep); }
.hero-ribbon span { font-family: var(--rounded); font-size: 15px; font-weight: 700; }
.hero-ribbon i { width: 5px; height: 5px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(104,167,98,.12); }
.hero-ribbon b { margin-left: 20px; color: var(--green-soft); font-size: 8px; letter-spacing: .2em; }

.section { width: var(--page); margin: 0 auto; padding: 130px 0; }
.label { display: flex; align-items: center; gap: 14px; margin: 0; }
.label b { display: inline-flex; align-items: center; min-height: 27px; padding: 0 10px; border-radius: 99px; background: var(--mint); color: var(--green); font-size: 8px; letter-spacing: .17em; }
.label span { color: var(--muted); font-size: 10px; font-weight: 600; letter-spacing: .08em; }
.label-light b { background: var(--lime); color: var(--green-deep); }
.label-light span { color: rgba(255,255,255,.75); }
.about h2, .support h2, .flow h2, .community h2, .contact h2 { margin: 0; font-family: var(--rounded); font-size: clamp(39px, 4vw, 61px); font-weight: 800; line-height: 1.48; letter-spacing: .01em; }

.about { display: grid; grid-template-columns: .82fr 1fr; gap: 6vw 9vw; }
.about-heading .label { margin-bottom: 30px; }
.about-copy { align-self: end; padding-bottom: 8px; }
.about-copy p { margin: 0 0 18px; color: var(--muted); font-size: 14px; }
.about-copy .about-lead { color: var(--ink); font-family: var(--rounded); font-size: 21px; font-weight: 700; line-height: 1.9; }
.about-note { position: relative; min-height: 270px; padding: 46px 48px; overflow: hidden; border-radius: 30px; background: var(--lime); }
.about-note::after { content: ""; position: absolute; right: -75px; bottom: -105px; width: 235px; height: 235px; border: 1px solid rgba(25,51,41,.22); border-radius: 58% 42% 60% 40%; transform: rotate(28deg); box-shadow: 0 0 0 30px rgba(25,51,41,.035), 0 0 0 60px rgba(25,51,41,.025); }
.about-note span { color: var(--green); font-size: 8px; font-weight: 700; letter-spacing: .2em; }
.about-note p { position: relative; z-index: 1; margin: 20px 0 13px; font-family: var(--rounded); font-size: 26px; font-weight: 800; line-height: 1.65; }
.about-note small { position: relative; z-index: 1; color: rgba(25,51,41,.68); font-size: 11px; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.value-chip { display: flex; flex-direction: column; min-height: 190px; padding: 32px 28px; border-right: 1px solid var(--line); }
.value-chip:last-child { border-right: 0; }
.value-chip span { color: var(--green-soft); font-size: 9px; font-weight: 700; }
.value-chip b { margin-top: auto; font-family: var(--rounded); font-size: 17px; }
.value-chip small { margin-top: 3px; color: var(--muted); font-size: 10px; }

.support { width: 100%; max-width: none; padding: 130px max(32px, calc((100vw - 1280px) / 2)); background: var(--mint); }
.support-heading { display: grid; grid-template-columns: .55fr 1.45fr; gap: 6vw; max-width: 1280px; margin: 0 auto 70px; }
.support-heading > div { display: grid; grid-template-columns: 1.2fr .8fr; gap: 5vw; align-items: end; }
.support-heading > div > p { margin: 0 0 9px; color: var(--muted); font-size: 13px; }
.service-mosaic { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; max-width: 1280px; margin: 0 auto; }
.service-card { position: relative; min-height: 380px; padding: 34px 36px; overflow: hidden; border-radius: 30px; background: var(--white); }
.service-card::after { content: "↗"; position: absolute; top: 26px; right: 26px; display: grid; place-items: center; width: 39px; height: 39px; border: 1px solid currentColor; border-radius: 50%; font-size: 15px; opacity: .65; transition: transform .25s ease, background .25s ease; }
.service-card:hover::after { transform: rotate(45deg); }
.service-main { grid-column: span 7; grid-row: span 2; min-height: 610px; background: var(--green); color: var(--white); }
.service-home { grid-column: span 5; background: var(--lime); }
.service-talk { grid-column: span 5; border: 1px solid var(--line); }
.service-night { grid-column: span 7; min-height: 400px; background: var(--mint-strong); }
.service-word { position: absolute; right: 38px; bottom: -36px; color: rgba(255,255,255,.09); font-family: var(--rounded); font-size: 250px; font-weight: 800; line-height: 1; }
.service-home .service-word { color: rgba(47,117,73,.1); font-size: 170px; }
.service-talk .service-word, .service-night .service-word { color: rgba(47,117,73,.075); font-size: 180px; }
.service-meta { display: flex; flex-direction: column; }
.service-meta span { color: currentColor; font-size: 8px; font-weight: 700; letter-spacing: .2em; opacity: .62; }
.service-meta b { margin-top: 6px; font-size: 11px; }
.service-card h3 { position: relative; z-index: 1; margin: 90px 0 18px; font-family: var(--rounded); font-size: 29px; font-weight: 800; line-height: 1.62; }
.service-main h3 { margin-top: 180px; font-size: clamp(34px, 3.3vw, 48px); }
.service-card > p { position: relative; z-index: 1; max-width: 500px; margin: 0; font-size: 13px; opacity: .76; }
.service-card ul { position: absolute; bottom: 32px; left: 36px; z-index: 1; display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; list-style: none; }
.service-card li { padding: 5px 10px; border: 1px solid currentColor; border-radius: 99px; font-size: 9px; opacity: .7; }

.flow { padding-top: 135px; padding-bottom: 140px; }
.flow-top { display: grid; grid-template-columns: .5fr 1.05fr .55fr; gap: 5vw; align-items: end; }
.flow-top > p:last-child { margin: 0 0 8px; color: var(--muted); font-size: 13px; }
.flow-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 75px; }
.flow-item { position: relative; min-height: 330px; padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: var(--white); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.flow-item:hover { border-color: var(--green-soft); box-shadow: 0 18px 42px rgba(31,91,56,.1); transform: translateY(-6px); }
.flow-item:not(:last-child)::after { content: "→"; position: absolute; top: 50%; right: -25px; z-index: 2; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--lime); color: var(--green-deep); font-size: 13px; transform: translateY(-50%); }
.flow-mark { display: flex; align-items: center; justify-content: space-between; }
.flow-mark b { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 15px; background: var(--mint); color: var(--green); font-family: var(--rounded); font-size: 17px; }
.flow-mark span { color: var(--green-soft); font-size: 8px; font-weight: 700; letter-spacing: .2em; }
.flow-item h3 { margin: 75px 0 12px; font-family: var(--rounded); font-size: 22px; }
.flow-item p { margin: 0; color: var(--muted); font-size: 12px; }

.community { position: relative; min-height: 610px; padding: 105px max(32px, calc((100vw - 1280px) / 2)); overflow: hidden; background: radial-gradient(circle at 86% 8%, rgba(217,240,120,.2), transparent 28%), linear-gradient(125deg, #2f7549 0%, #4f9358 100%); color: var(--white); }
.community::before { content: ""; position: absolute; inset: 20px; border: 1px solid rgba(255,255,255,.2); border-radius: 30px; pointer-events: none; }
.community::after { content: ""; position: absolute; right: -80px; bottom: -190px; width: 430px; height: 430px; border-radius: 50%; background: rgba(217,240,120,.1); filter: blur(2px); }
.community-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(390px, .75fr); gap: clamp(60px, 7vw, 110px); align-items: center; max-width: 1280px; margin: 0 auto; }
.community h2 { margin-top: 30px; font-size: clamp(43px, 5vw, 72px); }
.community-copy > p:last-of-type { max-width: 620px; margin: 30px 0 0; color: rgba(255,255,255,.8); font-size: 14px; }
.community-area { display: flex; align-items: center; gap: 18px; margin-top: 58px; }
.community-area small { margin-right: 12px; color: var(--lime); font-size: 8px; font-weight: 700; letter-spacing: .2em; }
.community-area strong { font-family: var(--rounded); font-size: 22px; }
.community-area i { width: 35px; height: 1px; background: rgba(255,255,255,.45); }
.community-visual { position: relative; padding: 34px; border: 1px solid rgba(255,255,255,.35); border-radius: 30px; background: rgba(247,252,244,.94); color: var(--green-deep); box-shadow: 0 28px 75px rgba(18,58,35,.22); backdrop-filter: blur(12px); }
.community-visual::before { content: ""; position: absolute; top: -16px; right: 26px; width: 58px; height: 12px; border-radius: 99px; background: var(--lime); }
.community-visual-head { display: flex; align-items: end; justify-content: space-between; gap: 22px; padding-bottom: 24px; border-bottom: 1px solid rgba(25,75,50,.14); }
.community-visual-head span { color: var(--green); font-size: 7px; font-weight: 800; letter-spacing: .2em; }
.community-visual-head b { font-family: var(--rounded); font-size: 18px; }
.community-icon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.life-item { display: flex; align-items: center; gap: 13px; min-height: 92px; padding: 15px; border: 1px solid rgba(25,75,50,.1); border-radius: 18px; background: var(--white); }
.life-item > span { display: grid; place-items: center; width: 46px; height: 46px; flex: 0 0 46px; border-radius: 14px; background: var(--mint); }
.life-item:nth-child(2) > span, .life-item:nth-child(3) > span { background: #eef4cb; }
.life-item img { width: 25px; height: 25px; }
.life-item p { display: flex; flex-direction: column; margin: 0; line-height: 1.3; }
.life-item small { color: var(--green-soft); font-size: 6px; font-weight: 800; letter-spacing: .16em; }
.life-item b { margin-top: 5px; font-family: var(--rounded); font-size: 14px; white-space: nowrap; }
.community-visual-note { display: flex; align-items: center; justify-content: flex-end; gap: 9px; margin: 22px 0 0; color: var(--green); font-size: 7px; font-weight: 800; letter-spacing: .2em; }
.community-visual-note i { width: 28px; height: 1px; background: var(--green-soft); }

.contact { padding-top: 135px; padding-bottom: 140px; }
.contact-heading { display: grid; grid-template-columns: .5fr 1fr .65fr; gap: 5vw; align-items: end; }
.contact-heading > p:last-child { margin: 0 0 10px; color: var(--muted); font-size: 13px; }
.contact-links { display: grid; grid-template-columns: 1fr 1.35fr 1.3fr; margin-top: 66px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.contact-links > * { position: relative; display: flex; flex-direction: column; justify-content: center; min-height: 125px; padding: 20px 28px; border-right: 1px solid var(--line); }
.contact-links > *:last-child { border-right: 0; }
.contact-links span { color: var(--green); font-size: 9px; font-weight: 700; }
.contact-links strong { margin-top: 7px; font-size: 15px; font-weight: 600; overflow-wrap: anywhere; }
.contact-links b { position: absolute; top: 24px; right: 25px; color: var(--green-soft); font-size: 14px; }
.contact-links a { transition: background .2s ease; }
.contact-links a:hover { background: var(--mint); }
.form-shell { display: grid; grid-template-columns: .62fr 1fr; gap: 70px; margin-top: 55px; padding: 58px; border: 2px solid var(--green); border-radius: 30px; background: var(--white); box-shadow: 0 24px 70px rgba(31, 91, 56, .08); }
.form-intro > span { color: var(--green-soft); font-size: 8px; font-weight: 700; letter-spacing: .2em; }
.form-intro h3 { margin: 13px 0 17px; font-family: var(--rounded); font-size: 25px; }
.form-intro > p { margin: 0; color: var(--muted); font-size: 12px; }
.demo-badge { margin-top: 30px; padding: 12px 14px; border-radius: 12px; background: var(--mint); color: var(--green-deep); font-size: 9px; }
.demo-badge b { margin-right: 8px; padding: 3px 6px; border-radius: 5px; background: var(--lime); font-size: 7px; letter-spacing: .13em; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { display: block; margin-bottom: 17px; }
.field > span { display: block; margin-bottom: 7px; font-size: 10px; font-weight: 700; }
.field > span b { margin-left: 7px; color: var(--green); font-size: 8px; }
.field input, .field textarea, .field select { width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: 11px; outline: 0; background: #fbfdf9; color: var(--ink); font-size: 12px; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--green); background: var(--white); box-shadow: 0 0 0 4px rgba(47,117,73,.1); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #ad4935; }
.form-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 4px; }
.check-field { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 10px; }
.check-field input { width: 17px; height: 17px; accent-color: var(--green); }
.form-submit { min-width: 230px; background: var(--green-deep); color: var(--white); }
.form-submit:hover { background: var(--green); box-shadow: 0 12px 28px rgba(25,75,50,.18); }
.form-status { margin-top: 14px; font-size: 11px; font-weight: 700; text-align: right; }
.form-status.is-success { padding: 11px; border-radius: 9px; background: var(--mint); color: var(--green-deep); text-align: center; }
.form-status.is-error { color: #a7402d; }

.site-footer { padding: 65px max(32px, calc((100vw - 1280px) / 2)) 25px; background: #dcecd9; color: var(--green-deep); }
.footer-top { display: flex; align-items: end; justify-content: space-between; padding-bottom: 38px; border-bottom: 1px solid rgba(25,75,50,.18); }
.brand-footer .brand-type small { color: var(--green); }
.footer-top p { margin: 0; font-family: var(--rounded); font-size: 13px; font-weight: 700; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 25px; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 28px; color: var(--muted); font-size: 10px; }
.footer-bottom nav a:hover { color: var(--green); }
.footer-bottom > p { margin: 0; color: var(--muted); font-size: 8px; letter-spacing: .12em; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.25,1); }
.reveal-delay { transition-delay: .14s; }
.reveal-delay-sm { transition-delay: .08s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  :root { --page: calc(100vw - 48px); }
  .site-nav { gap: 20px; }
  .hero-main { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding-right: 4vw; padding-left: 4.5vw; }
  .hero h1 { font-size: 54px; }
  .hero-media { padding-left: 5px; }
  .hero-message { left: -20px; }
  .about { gap: 6vw; }
  .support-heading > div { display: block; }
  .support-heading > div > p { margin-top: 25px; }
  .service-card { padding: 30px; }
  .service-card ul { left: 30px; }
  .flow-top, .contact-heading { grid-template-columns: .45fr 1fr; }
  .flow-top > p:last-child, .contact-heading > p:last-child { grid-column: 2; }
  .form-shell { gap: 45px; padding: 45px; }
}

@media (max-width: 820px) {
  :root { --page: calc(100vw - 36px); }
  .site-header { top: 8px; width: calc(100vw - 20px); min-height: 64px; padding: 0 10px 0 15px; border-radius: 15px; }
  .brand-emblem { width: 38px; height: 38px; flex-basis: 38px; border-radius: 12px; transform: scale(.94); }
  .brand-type strong { font-size: 16px; }
  .menu-button { position: relative; z-index: 102; display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 43px; height: 43px; padding: 0 11px; border: 0; border-radius: 12px; background: var(--mint); }
  .menu-button span { width: 100%; height: 1px; background: var(--green-deep); transition: transform .25s ease, opacity .25s ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(6px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .site-nav { position: fixed; inset: -8px -10px auto; z-index: 101; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 0; height: 100vh; padding: 100px 28px 45px; border-radius: 0; background: var(--mint); visibility: hidden; opacity: 0; transform: translateY(-10px); transition: opacity .25s ease, transform .25s ease, visibility .25s; }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .site-nav > a:not(.nav-contact) { padding: 17px 0; border-bottom: 1px solid rgba(25,75,50,.18); font-family: var(--rounded); font-size: 20px; }
  .nav-contact { justify-content: space-between; margin-top: 24px; padding: 16px 18px; }
  .hero { padding: 86px 10px 0; }
  .hero-main { display: flex; flex-direction: column; min-height: 0; border-radius: 24px; }
  .hero-copy { padding: 70px 24px 44px; }
  .hero h1 { font-size: clamp(42px, 12vw, 59px); }
  .hero-lead { font-size: 14px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-points { gap: 11px; justify-content: space-between; }
  .hero-points span { font-size: 9px; }
  .hero-media { height: 490px; padding: 0 14px 14px; }
  .hero-image-wrap { min-height: 0; height: 100%; border-radius: 19px 19px 90px 19px; }
  .hero-image-wrap img { object-position: 56% center; }
  .hero-image-wrap p { right: 22px; bottom: 22px; font-size: 16px; }
  .hero-message { bottom: 28px; left: 2px; width: 215px; padding: 16px; border-radius: 15px; }
  .hero-message strong { font-size: 13px; }
  .hero-seal { top: 16px; left: 3px; width: 76px; height: 76px; }
  .hero-seal::after { inset: 5px; }
  .hero-seal > img { width: 32px; height: 32px; }
  .hero-seal small { display: none; }
  .hero-ribbon { flex-wrap: wrap; gap: 14px 18px; min-height: 90px; padding: 20px; }
  .hero-ribbon span { font-size: 12px; }
  .hero-ribbon b { width: 100%; margin: 0; text-align: center; }
  .section { padding: 92px 0; }
  .about h2, .support h2, .flow h2, .community h2, .contact h2 { font-size: 38px; }
  .about { display: block; }
  .about-heading .label { margin-bottom: 24px; }
  .about-copy { margin-top: 42px; }
  .about-copy .about-lead { font-size: 18px; }
  .about-note { min-height: 250px; margin-top: 50px; padding: 34px 28px; }
  .about-note p { font-size: 22px; }
  .about-values { grid-template-columns: 1fr; margin-top: 35px; }
  .value-chip { min-height: 115px; padding: 22px 10px; border-right: 0; border-bottom: 1px solid var(--line); }
  .value-chip b { margin-top: 22px; }
  .support { padding: 92px 18px; }
  .support-heading { display: block; margin-bottom: 48px; }
  .support-heading > div { margin-top: 25px; }
  .support-heading > div > p { font-size: 12px; }
  .service-mosaic { display: block; }
  .service-card { min-height: 410px; margin-bottom: 14px; padding: 28px; border-radius: 23px; }
  .service-main { min-height: 520px; }
  .service-card h3, .service-main h3 { margin-top: 110px; font-size: 27px; }
  .service-main h3 { margin-top: 150px; font-size: 34px; }
  .service-card ul { bottom: 27px; left: 28px; }
  .flow-top, .contact-heading { display: block; }
  .flow-top h2, .contact-heading h2 { margin-top: 25px; }
  .flow-top > p:last-child, .contact-heading > p:last-child { margin-top: 25px; }
  .flow-list { grid-template-columns: 1fr; margin-top: 50px; }
  .flow-item { min-height: 270px; }
  .flow-item:not(:last-child)::after { top: auto; right: 50%; bottom: -25px; transform: translateX(50%) rotate(90deg); }
  .flow-item h3 { margin-top: 50px; }
  .community { min-height: 0; padding: 82px 32px; }
  .community::before { inset: 10px; border-radius: 23px; }
  .community-inner { display: block; }
  .community h2 { font-size: 39px; }
  .community-area { flex-wrap: wrap; }
  .community-area small { width: 100%; }
  .community-visual { margin-top: 58px; padding: 24px; border-radius: 24px; }
  .community-visual-head { align-items: flex-start; flex-direction: column; gap: 7px; }
  .community-icon-grid { grid-template-columns: 1fr; }
  .life-item { min-height: 78px; }
  .contact-links { grid-template-columns: 1fr; margin-top: 45px; }
  .contact-links > * { min-height: 105px; padding: 18px 5px; border-right: 0; border-bottom: 1px solid var(--line); }
  .contact-links > *:last-child { border-bottom: 0; }
  .contact-links b { right: 5px; }
  .contact-links strong { font-size: 14px; }
  .form-shell { display: block; margin-top: 40px; padding: 30px 20px; border-radius: 23px; }
  .form-intro { margin-bottom: 36px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .form-bottom { align-items: stretch; flex-direction: column; }
  .form-submit { min-width: 0; }
  .footer-top, .footer-bottom { align-items: flex-start; flex-direction: column; gap: 22px; }
  .site-footer { padding: 50px 20px 22px; }
  .footer-bottom nav { gap: 15px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
