@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@500;700;900&family=Noto+Sans+JP:wght@400;500;700&display=swap');

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #FAF7F1;
  color: #1C1A17;
  font-family: 'Noto Sans JP', sans-serif;
}

a { color: #C4491F; text-decoration: none; }
a:hover { color: #8F3315; }
::selection { background: #F4C7B3; }

.wrap { width: 100%; overflow-x: hidden; }

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

.zen { font-family: 'Noto Sans JP', sans-serif; }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(28, 26, 23, 0.08);
}

.site-header .logo {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: #1C1A17;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #1C1A17;
}

.site-nav a.active {
  font-weight: 700;
  color: #C4491F;
}

.site-nav .cta {
  font-weight: 700;
  color: #fff;
  background: #C4491F;
  padding: 11px 24px;
  border-radius: 100px;
  transition: background 0.2s ease;
}

.site-nav .cta:hover { background: #8F3315; }

.nav-toggle { display: none; }
.nav-toggle-label { display: none; }

/* BREADCRUMB */
.breadcrumb {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 48px 0;
  font-size: 13px;
  color: #8A8478;
}

.breadcrumb a { color: #8A8478; }

/* HERO */
.hero {
  padding: 32px 48px 0;
  max-width: 1240px;
  margin: 0 auto;
}

.hero h1 {
  font-weight: 900;
  font-size: 38px;
  margin: 0 0 28px;
}

.hero-images {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  margin-bottom: 80px;
}

.hero-images img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* PURPOSE / STANDARDS */
.purpose-section {
  padding: 0 48px 96px;
  max-width: 900px;
  margin: 0 auto;
}

.panel {
  padding: 44px 48px;
  background: #fff;
  border: 1px solid rgba(28, 26, 23, 0.08);
  border-radius: 6px;
}

.panel + .panel { margin-top: 12px; }

.panel-title {
  font-weight: 700;
  font-size: 19px;
  text-align: center;
  margin-bottom: 28px;
}

.numbered-list { list-style: none; margin: 0; padding: 0; }

.numbered-list li {
  display: flex;
  gap: 14px;
  font-size: 14.5px;
  line-height: 1.9;
  margin-bottom: 16px;
}

.numbered-list li:last-child { margin-bottom: 0; }

.numbered-list .n { font-weight: 700; color: #C4491F; flex-shrink: 0; }

.arrow-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 12px 0;
}

.arrow-down.lg { margin: 16px 0 40px; }

.arrow-down span {
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 12px solid #C9C4BB;
}

.arrow-down.lg span {
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 14px solid #B9B4AA;
}

/* EXTERNAL ENVIRONMENT */
.section { padding: 104px 48px; max-width: 1240px; margin: 0 auto; }

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #C4491F;
  margin-bottom: 16px;
  text-align: center;
}

.section-title {
  font-weight: 700;
  font-size: 28px;
  text-align: center;
  margin: 0 0 56px;
}

.env-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 12px;
}

.env-card {
  position: relative;
  padding: 32px;
  background: #fff;
  border: 1px solid rgba(28, 26, 23, 0.08);
  border-radius: 4px;
}

.badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: #F5E642;
  color: #3E3A10;
  font-size: 11.5px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 100px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.env-card h3 {
  font-weight: 700;
  font-size: 17px;
  margin: 0 0 18px;
  line-height: 1.6;
}

.env-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 16px;
}

.env-card p {
  font-size: 13.5px;
  line-height: 1.9;
  color: #4A453F;
  margin: 0;
}

.env-list li {
  font-size: 13.5px;
  line-height: 1.8;
  color: #4A453F;
  margin-bottom: 10px;
}

.callout {
  padding: 28px 36px;
  background: #F1EAE0;
  border-radius: 4px;
  text-align: center;
  font-size: 14.5px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.callout-strong {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #C4491F;
}

/* TWO GOALS */
.goals-section { padding: 104px 48px; background: #FAF7F1; }
.goals-inner { max-width: 1100px; margin: 0 auto; }

.goals-lead {
  max-width: 640px;
  margin: 0 auto 64px;
  font-size: 14px;
  line-height: 2;
  color: #4A453F;
  text-align: center;
}

.goals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 8px;
}

.goal-card {
  padding: 36px 32px;
  background: #fff;
  border: 1px solid rgba(28, 26, 23, 0.08);
  border-top: 4px solid #6EA82E;
  border-radius: 6px;
}

.goal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.goal-step {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #6EA82E;
}

.goal-tag {
  font-size: 11.5px;
  font-weight: 700;
  color: #8A8478;
  background: #F1EAE0;
  padding: 6px 12px;
  border-radius: 100px;
}

.goal-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.goal-dot-outer {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(141, 198, 63, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.goal-dot-inner {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #6EA82E;
}

.goal-title { font-weight: 700; font-size: 17px; line-height: 1.5; }

.goal-items { list-style: none; margin: 0; padding: 0; }

.goal-items li {
  display: flex;
  gap: 12px;
  font-size: 13.5px;
  line-height: 1.9;
  color: #4A453F;
  margin-bottom: 12px;
}

.goal-items .n { font-weight: 700; color: #6EA82E; flex-shrink: 0; }

.goal-outcome {
  position: relative;
  overflow: hidden;
  padding: 36px 40px;
  background: #2E9BD6;
  border-radius: 6px;
}

.goal-outcome::before {
  content: '';
  position: absolute;
  left: -60px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 24px solid rgba(255, 255, 255, 0.12);
}

.goal-outcome-eyebrow {
  position: relative;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #FFD59E;
  margin-bottom: 14px;
}

.goal-outcome p {
  position: relative;
  font-size: 14.5px;
  line-height: 2;
  color: #fff;
  margin: 0 0 20px;
  max-width: 600px;
}

.image-points {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.image-points li { font-size: 13px; line-height: 1.8; color: #F5E642; }

/* PROGRAM */
.program-images {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  margin: 44px 0 32px;
}

.program-images img { width: 100%; height: 200px; object-fit: cover; }

.program-lead {
  max-width: 820px;
  margin: 0 auto 56px;
  font-size: 14.5px;
  line-height: 2;
  color: #4A453F;
  text-align: center;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.course-card {
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(28, 26, 23, 0.08);
  border-radius: 4px;
  border-top: 4px solid #C4491F;
}

.course-card .title { font-weight: 700; font-size: 15.5px; margin-bottom: 12px; }
.course-card .body { font-size: 13.5px; line-height: 1.9; color: #4A453F; }

/* EFFECT MEASUREMENT */
.effect-section { padding: 104px 48px; background: #F1EAE0; }
.effect-inner { max-width: 1240px; margin: 0 auto; }

.effect-table {
  overflow-x: auto;
  border: 1px solid rgba(28, 26, 23, 0.12);
  border-radius: 4px;
  margin-bottom: 12px;
  background: #fff;
}

.effect-head-row, .effect-row {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr 1fr 1fr;
}

.effect-head-row { background: #1C1A17; }

.effect-head-row div {
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 700;
  color: #FAF7F1;
}

.effect-row { border-top: 1px solid rgba(28, 26, 23, 0.1); }

.effect-row .item { padding: 16px 20px; font-size: 13.5px; font-weight: 700; }
.effect-row .purpose { padding: 16px 20px; font-size: 13px; line-height: 1.7; color: #4A453F; }
.effect-row .execution { padding: 16px 20px; font-size: 13px; color: #4A453F; }
.effect-row .action { padding: 16px 20px; font-size: 13px; color: #4A453F; }

.effect-arrow {
  text-align: center;
  font-size: 22px;
  color: #8A8478;
  margin: 20px 0 8px;
}

.effect-note {
  text-align: center;
  font-size: 14.5px;
  color: #4A453F;
  margin-bottom: 40px;
}

.effect-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.col-eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #8A8478;
  margin-bottom: 16px;
}

.monitor-cards { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }

.monitor-card {
  padding: 22px 26px;
  background: #fff;
  border: 1px solid rgba(28, 26, 23, 0.08);
  border-radius: 4px;
  border-left: 4px solid #C4491F;
}

.monitor-card .title { font-weight: 700; font-size: 14.5px; margin-bottom: 6px; }
.monitor-card .desc { font-size: 13px; line-height: 1.8; color: #4A453F; }

.verify-card {
  padding: 32px 36px;
  background: #1C1A17;
  border-radius: 4px;
  color: #FAF7F1;
}

.verify-card .col-eyebrow { color: #F2B98F; }
.verify-card .title { font-weight: 700; font-size: 16px; margin-bottom: 20px; }
.verify-card .desc { font-size: 13px; line-height: 1.8; color: #C9C4BB; margin-bottom: 20px; }

.verify-list { list-style: none; margin: 0; padding: 0; }

.verify-list li {
  display: flex;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.9;
  color: #C9C4BB;
  margin-bottom: 10px;
}

.verify-list .n { font-weight: 700; color: #F2B98F; flex-shrink: 0; }

/* CONTACT CTA */
.contact-cta { padding: 120px 48px; text-align: center; }

.contact-cta .eyebrow { margin-bottom: 20px; }

.contact-cta h2 { font-weight: 700; font-size: 32px; margin: 0 0 36px; color: #1C1A17; }

.contact-cta .btn {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: #C4491F;
  padding: 18px 44px;
  border-radius: 100px;
  transition: background 0.2s ease;
}

.contact-cta .btn:hover { background: #8F3315; }

.contact-cta.dark { background: #C4491F; }
.contact-cta.dark .eyebrow { color: #FCE3D4; }
.contact-cta.dark h2 { color: #fff; }
.contact-cta.dark .btn { color: #C4491F; background: #fff; }
.contact-cta.dark .btn:hover { background: #FCE3D4; }

/* PAGE HERO (inner pages) */
.page-hero { padding: 96px 48px 72px; max-width: 1240px; margin: 0 auto; }
.page-hero h1 { font-weight: 900; font-size: 44px; margin: 0 0 20px; line-height: 1.4; }
.page-hero p { max-width: 680px; font-size: 15.5px; line-height: 2; color: #4A453F; margin: 0; }

/* HOME HERO */
@keyframes heroFade {
  0% { opacity: 0; }
  2% { opacity: 1; }
  18% { opacity: 1; }
  20% { opacity: 0; }
  100% { opacity: 0; }
}

.home-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.home-hero .bg {
  position: absolute;
  inset: 0;
  filter: saturate(0.85) brightness(0.62);
}

.home-hero .bg img { width: 100%; height: 100%; object-fit: cover; }

.home-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 17, 14, 0.15) 0%, rgba(20, 17, 14, 0.75) 100%);
  pointer-events: none;
}

.home-hero .content { position: relative; padding: 0 48px 88px; max-width: 980px; }

.home-hero .eyebrow-light {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #F2B98F;
  margin-bottom: 20px;
}

.home-hero h1 { font-weight: 900; font-size: 76px; line-height: 1.15; color: #fff; margin: 0 0 28px; }

.home-hero .lines { height: 34px; overflow: hidden; position: relative; }

.home-hero .lines span {
  position: absolute;
  inset: 0;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  opacity: 0;
  animation: heroFade 18s ease infinite;
}

.home-hero .lines span:nth-child(2) { animation-delay: 3.6s; }
.home-hero .lines span:nth-child(3) { animation-delay: 7.2s; }
.home-hero .lines span:nth-child(4) { animation-delay: 10.8s; }
.home-hero .lines span:nth-child(5) { animation-delay: 14.4s; }

/* AUDIENCE */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.audience-card {
  display: block;
  padding: 36px 32px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid rgba(28, 26, 23, 0.08);
  transition: transform 0.2s, border-color 0.2s;
}

.audience-card:hover { transform: translateY(-4px); border-color: #C4491F; }

.audience-card .tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #C4491F;
  margin-bottom: 16px;
}

.audience-card .title { font-weight: 700; font-size: 21px; color: #1C1A17; margin-bottom: 14px; line-height: 1.5; }
.audience-card .body { font-size: 14px; line-height: 1.9; color: #4A453F; }
.audience-card .more { margin-top: 22px; font-size: 13px; font-weight: 700; color: #C4491F; }

/* DARK SECTION (about/process, mission, business model) */
.dark-section { padding: 104px 48px; background: #1C1A17; color: #FAF7F1; }
.dark-section .inner { max-width: 1240px; margin: 0 auto; }
.dark-section .eyebrow-light { font-size: 13px; font-weight: 700; letter-spacing: 0.2em; color: #F2B98F; margin-bottom: 14px; }
.dark-section h2 { font-weight: 700; font-size: 34px; margin: 0 0 24px; max-width: 680px; line-height: 1.5; }
.dark-section .lead { max-width: 680px; font-size: 15px; line-height: 2; color: #C9C4BB; margin: 0 0 72px; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(250, 247, 241, 0.14); }
.step-card { background: #1C1A17; padding: 36px 28px 8px; }
.step-card .num { font-weight: 900; font-size: 36px; color: #C4491F; margin-bottom: 20px; }
.step-card .title { font-weight: 700; font-size: 16px; margin-bottom: 12px; }
.step-card .body { font-size: 13.5px; line-height: 1.9; color: #A6A099; }

/* SERVICE (home) SECTION */
.service-block + .service-block { margin-top: 64px; }
.service-block-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
  border-bottom: 2px solid #1C1A17;
  padding-bottom: 20px;
}
.service-block-head .tag { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; color: #C4491F; }
.service-block-head h3 { font-weight: 700; font-size: 26px; margin: 0; flex: 1; }
.service-block-head .link {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  background: #1C1A17;
  padding: 12px 24px;
  border-radius: 100px;
  white-space: nowrap;
  transition: background 0.2s;
}
.service-block-head .link:hover { background: #C4491F; }

.prog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.prog-card { padding: 32px; background: #fff; border: 1px solid rgba(28, 26, 23, 0.08); border-radius: 4px; }
.prog-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: #1C1A17;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.prog-card .headline { font-weight: 700; font-size: 17px; margin-bottom: 12px; line-height: 1.6; }
.prog-card .body { font-size: 14px; line-height: 1.9; color: #4A453F; }

/* COMPANY SECTION (home + company page) */
.company-section { padding: 104px 48px; background: #F1EAE0; }
.company-section .inner { max-width: 1240px; margin: 0 auto; }
.company-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: start; }

.company-rows { display: flex; flex-direction: column; }
.company-row { display: flex; padding: 18px 0; border-bottom: 1px solid rgba(28, 26, 23, 0.12); }
.company-row .label { width: 160px; flex-shrink: 0; font-size: 13px; font-weight: 700; color: #8A8478; }
.company-row .value { font-size: 14.5px; color: #1C1A17; }

.company-photos { display: flex; flex-direction: column; gap: 20px; }
.company-photos img { width: 100%; height: 240px; object-fit: cover; border-radius: 4px; }

/* MISSION */
.mission-list { display: flex; flex-direction: column; }
.mission-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid rgba(250, 247, 241, 0.14);
  font-size: 15px;
  line-height: 2;
  color: #C9C4BB;
  max-width: 820px;
}
.mission-item:last-child { border-bottom: 1px solid rgba(250, 247, 241, 0.14); }
.mission-icon { flex: none; width: 40px; height: 40px; margin-top: 4px; }

@media (max-width: 640px) {
  .mission-item { gap: 20px; }
  .mission-icon { width: 32px; height: 32px; }
}

/* ACCESS */
.access-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.access-card { padding: 32px; background: #fff; border: 1px solid rgba(28, 26, 23, 0.08); border-radius: 4px; }
.access-card .name { font-weight: 700; font-size: 17px; margin-bottom: 10px; }
.access-card .address { font-size: 14px; line-height: 1.9; color: #4A453F; }

.map-embed { width: 100%; height: 220px; margin-bottom: 20px; border-radius: 4px; overflow: hidden; }
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(100%); }

/* ABOUT PAGE */
.about-hero-img { max-width: 1240px; margin: 0 auto; padding: 32px 48px 0; }
.about-hero-img img { width: 100%; height: 280px; object-fit: cover; border-radius: 4px; }

.about-title-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-title-hero .bg { position: absolute; inset: 0; filter: saturate(0.85) brightness(0.55); }
.about-title-hero .bg img { width: 100%; height: 100%; object-fit: cover; }

.about-title-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 17, 14, 0.25) 0%, rgba(20, 17, 14, 0.7) 100%);
  pointer-events: none;
}

.about-title-hero .content { position: relative; padding: 48px; max-width: 1240px; margin: 0 auto; width: 100%; }
.about-title-hero .eyebrow-light { font-size: 13px; font-weight: 700; letter-spacing: 0.2em; color: #F2B98F; margin-bottom: 16px; }
.about-title-hero h1 { font-weight: 900; font-size: 34px; margin: 0; color: #fff; }

.whofor-section { padding: 64px 48px; background: #1C1A17; color: #FAF7F1; }
.whofor-section .inner { max-width: 900px; margin: 0 auto; }
.whofor-section h2 { font-weight: 700; font-size: 24px; text-align: center; margin: 0 0 40px; }
.whofor-list { display: flex; flex-direction: column; gap: 20px; }
.whofor-list li { display: flex; gap: 14px; font-size: 15px; line-height: 1.9; color: #EDE9E1; list-style: none; }
.whofor-list .dot { color: #F2B98F; flex-shrink: 0; }

.narrative-section { padding: 96px 48px; max-width: 1000px; margin: 0 auto; }
.narrative-grid { display: grid; grid-template-columns: 1fr 140px; gap: 40px; align-items: start; }
.narrative-grid h2 { font-weight: 700; font-size: 28px; margin: 0 0 32px; }
.narrative-grid .lead { font-size: 15px; line-height: 2.1; color: #1C1A17; font-weight: 500; margin: 0 0 24px; }
.narrative-grid p.body-text { font-size: 14px; line-height: 2; color: #4A453F; margin: 0 0 20px; }
.narrative-icon { width: 100%; aspect-ratio: 1 / 1.4; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.narrative-icon .head { width: 34px; height: 34px; border-radius: 50%; margin-bottom: 44px; position: relative; }
.narrative-icon .body-shape { position: absolute; top: 38px; left: 50%; transform: translateX(-50%); width: 52px; height: 64px; border-radius: 16px 16px 0 0; opacity: 0.85; }

.goalplan-section { padding: 96px 48px 120px; max-width: 1240px; margin: 0 auto; }
.goalplan-image { text-align: center; margin: 0 0 48px; }
.goalplan-image img { max-width: 100%; height: auto; border-radius: 8px; margin: 0 auto; }
.goalplan-section h2 { font-weight: 700; font-size: 28px; text-align: center; margin: 0 0 64px; }
.goalplan-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 16px; }
.goalplan-row .arrow { font-size: 20px; color: #C9C4BB; }
.goalplan-start {
  padding: 20px 26px; background: #1C1A17; color: #fff; border-radius: 8px; font-weight: 700; font-size: 16px; text-align: center; flex-shrink: 0;
}
.goalplan-steps { display: flex; gap: 14px; flex-wrap: wrap; }
.goalplan-step {
  width: 96px; height: 96px; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; text-align: center; padding: 8px;
}
.goalplan-mid {
  padding: 20px 26px; background: #fff; border: 1px solid rgba(28, 26, 23, 0.12); border-radius: 8px; font-weight: 700; font-size: 14.5px; text-align: center; max-width: 180px; flex-shrink: 0;
}
.goalplan-end {
  width: 120px; height: 120px; border-radius: 50%; background: #C4491F; color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; text-align: center; padding: 12px; flex-shrink: 0;
}
.goalplan-revenge {
  margin-top: 32px; padding: 24px 32px; background: #F1EAE0; border-radius: 8px; text-align: center; display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.goalplan-revenge .icon { font-size: 22px; color: #C4491F; }
.goalplan-revenge .text { font-size: 14px; line-height: 1.8; color: #1C1A17; }
.goalplan-note { max-width: 700px; margin: 40px auto 0; font-size: 14px; line-height: 2; color: #4A453F; text-align: center; }

/* SERVICE (top level) PAGE */
.service-banner { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 40px 44px; background: #C4DCC6; border-radius: 6px; margin-bottom: 32px; }
.service-banner > div { flex: 1 1 260px; min-width: 0; }
.service-banner .kicker { font-weight: 900; font-size: 30px; color: #3E4A3E; margin-bottom: 8px; }
.service-banner .tag { font-weight: 700; font-size: 18px; color: #3E4A3E; margin-bottom: 16px; }
.service-banner .copy { font-size: 13.5px; color: #5A6B5A; margin-bottom: 16px; }
.service-banner .link { display: inline-block; font-size: 13.5px; font-weight: 700; color: #fff; background: #1C1A17; padding: 12px 24px; border-radius: 100px; transition: background 0.2s; }
.service-banner .link:hover { background: #C4491F; }
.service-banner img { width: 120px; height: 120px; flex-shrink: 0; object-fit: cover; border-radius: 4px; }

.results-head { text-align: center; margin-bottom: 64px; }
.results-head h2 { font-weight: 700; font-size: 32px; margin: 0 0 16px; }
.results-head p { font-size: 14.5px; color: #4A453F; margin: 0; }

.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 56px; }
.result-card { padding: 32px; background: #fff; border: 1px solid rgba(28, 26, 23, 0.08); border-radius: 4px; }
.result-mark {
  width: 36px; height: 36px; border-radius: 100px; background: #F1EAE0; color: #C4491F; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 16px; margin-bottom: 20px;
}
.result-card .title { font-weight: 700; font-size: 16px; line-height: 1.6; margin-bottom: 14px; }
.result-card .body { font-size: 13.5px; line-height: 1.9; color: #4A453F; }

.results-table { overflow-x: auto; border: 1px solid rgba(28, 26, 23, 0.12); border-radius: 4px; }
.results-head-row, .results-row { display: grid; grid-template-columns: 1.3fr 1.3fr 1fr 1fr 1.1fr; }
.results-head-row { background: #1C1A17; }
.results-head-row div { padding: 16px 20px; font-size: 13px; font-weight: 700; color: #FAF7F1; }
.results-row { border-top: 1px solid rgba(28, 26, 23, 0.1); }
.results-row div { padding: 18px 20px; font-size: 13.5px; }
.results-row .place, .results-row .item { color: #1C1A17; }
.results-row .before { color: #8A3B2B; }
.results-row .after { color: #2E7D4F; font-weight: 700; }
.results-row .detail { color: #4A453F; }

.pricing-head { text-align: center; margin-bottom: 56px; }
.pricing-head h2 { font-weight: 700; font-size: 32px; margin: 0 0 16px; }
.pricing-head p { font-size: 14.5px; color: #4A453F; margin: 0; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card { padding: 40px 32px; background: #fff; border: 1px solid rgba(28, 26, 23, 0.08); border-radius: 4px; text-align: center; display: flex; flex-direction: column; }
.pricing-card.featured { border-color: #C4491F; box-shadow: 0 8px 24px rgba(196, 73, 31, 0.12); }
.pricing-card .plan-name { font-weight: 900; font-size: 18px; margin-bottom: 8px; }
.pricing-card .plan-desc { font-size: 13px; color: #4A453F; margin-bottom: 24px; min-height: 40px; }
.pricing-card .plan-price { font-size: 14px; color: #4A453F; margin-bottom: 32px; }
.pricing-card .plan-price .amount { font-weight: 900; font-size: 34px; color: #1C1A17; }
.pricing-card ul { text-align: left; font-size: 13.5px; line-height: 2; color: #4A453F; margin: 0 0 32px; flex-grow: 1; }
.pricing-card ul li { display: flex; gap: 8px; }
.pricing-card ul li span { color: #C4491F; flex-shrink: 0; }
.pricing-card .link { display: inline-block; font-size: 13.5px; font-weight: 700; color: #fff; background: #1C1A17; padding: 12px 24px; border-radius: 100px; transition: background 0.2s; }
.pricing-card .link:hover { background: #C4491F; }
.pricing-note { max-width: 700px; margin: 32px auto 0; font-size: 13px; line-height: 2; color: #4A453F; text-align: center; }

.bizmodel-head { text-align: center; margin-bottom: 64px; }
.bizmodel-head h2 { font-weight: 700; font-size: 32px; margin: 0 0 20px; }
.bizmodel-head p { font-size: 14.5px; color: #C9C4BB; max-width: 640px; margin: 0 auto; }

.bizmodel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bizmodel-start {
  grid-column: span 3; padding: 28px 32px; background: rgba(250, 247, 241, 0.06); border: 1px solid rgba(250, 247, 241, 0.16); border-radius: 6px; text-align: center;
}
.bizmodel-start .name { font-weight: 900; font-size: 22px; margin-bottom: 6px; }
.bizmodel-start .desc { font-size: 13.5px; color: #C9C4BB; }
.bizmodel-card { padding: 26px 28px; background: rgba(250, 247, 241, 0.04); border: 1px solid rgba(250, 247, 241, 0.12); border-radius: 6px; border-top: 4px solid; }
.bizmodel-card .title { font-weight: 700; font-size: 15.5px; margin-bottom: 14px; }
.bizmodel-card ul { list-style: none; margin: 0; padding: 0; }
.bizmodel-card li { font-size: 13px; line-height: 1.9; color: #C9C4BB; padding-left: 16px; position: relative; }
.bizmodel-card li .dot { position: absolute; left: 0; }

.concept-section { padding: 104px 48px; max-width: 1240px; margin: 0 auto; }
.concept-section h2 { font-weight: 700; font-size: 30px; margin: 0 0 32px; max-width: 760px; line-height: 1.6; }
.concept-section .lead { max-width: 720px; font-size: 14.5px; line-height: 2; color: #4A453F; margin: 0 0 48px; }
.concept-section .sub-title { font-weight: 700; font-size: 15px; margin-bottom: 20px; }
.partners-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 32px; }
.partners-grid div { font-size: 14px; line-height: 1.8; color: #4A453F; padding-left: 20px; position: relative; }
.partners-grid .dot { position: absolute; left: 0; color: #C4491F; }

/* USERS PAGE */
.users-jumpnav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.users-jumpnav a {
  display: block; padding: 18px 20px; background: #fff; border: 1px solid rgba(28, 26, 23, 0.08); border-left: 4px solid; border-radius: 4px; font-size: 13.5px; font-weight: 700; color: #1C1A17;
}

.segment-section { padding: 80px 48px; max-width: 900px; margin: 0 auto; }
.segment-photo { position: relative; margin-bottom: 36px; }
.segment-photo img { width: 100%; height: 220px; object-fit: cover; border-radius: 4px; }
.segment-photo .label { position: absolute; left: 20px; bottom: 20px; color: #fff; font-weight: 700; font-size: 16px; padding: 10px 20px; border-radius: 4px; }

.segment-questions { padding: 28px 32px; background: #fff; border: 1px solid rgba(28, 26, 23, 0.08); border-radius: 4px; margin-bottom: 32px; }
.segment-questions div { font-size: 14.5px; line-height: 2.2; color: #4A453F; }

.segment-section h2 { font-weight: 700; font-size: 20px; line-height: 1.6; margin: 0 0 20px; }
.segment-section h2.mt { margin: 32px 0 20px; }
.segment-section p.body-text { font-size: 14px; line-height: 2; color: #4A453F; margin: 0 0 20px; }
.segment-tagline { margin-top: 32px; padding: 28px 32px; background: #F1EAE0; border-radius: 6px; font-weight: 700; font-size: 15px; line-height: 1.9; color: #1C1A17; text-align: center; }

/* FOOTER */
.site-footer { padding: 56px 48px 40px; background: #14120F; color: #8A8478; }

.footer-top {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-logo {
  font-weight: 900;
  font-size: 17px;
  color: #FAF7F1;
  margin-bottom: 12px;
}

.footer-address { font-size: 13px; line-height: 2; }

.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a { font-size: 13px; color: #C9C4BB; }

.footer-bottom {
  max-width: 1240px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
}

/* CONTACT FORM PAGE */
.form-section { padding: 0 48px 120px; max-width: 760px; margin: 0 auto; }

.form-intro { font-size: 14.5px; line-height: 2; color: #4A453F; margin: 0 0 48px; }

.form-notice {
  margin: 0 0 32px;
  padding: 20px 24px;
  background: #FBEAE3;
  border: 2px solid #C4491F;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
  color: #C4491F;
}

.form-card {
  background: #fff;
  border: 1px solid rgba(28, 26, 23, 0.08);
  border-radius: 6px;
  padding: 48px;
}

.form-row { margin-bottom: 32px; }
.form-row:last-of-type { margin-bottom: 0; }

.form-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
}

.form-required, .form-optional {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}

.form-required { color: #fff; background: #C4491F; }
.form-optional { color: #8A8478; background: #F1EAE0; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: inherit;
  font-size: 14.5px;
  color: #1C1A17;
  background: #FAF7F1;
  border: 1px solid rgba(28, 26, 23, 0.16);
  border-radius: 4px;
  padding: 14px 16px;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #C4491F;
  background: #fff;
}

.form-textarea { resize: vertical; min-height: 160px; line-height: 1.8; }

.form-radio-group { display: flex; flex-wrap: wrap; gap: 12px; }

.form-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  padding: 12px 18px;
  border: 1px solid rgba(28, 26, 23, 0.16);
  border-radius: 100px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.form-radio:has(input:checked) { border-color: #C4491F; background: #F1EAE0; }
.form-radio input { accent-color: #C4491F; }

.form-hint { font-size: 12.5px; color: #8A8478; margin-top: 8px; }

.form-privacy {
  margin-top: 40px;
  padding: 24px 28px;
  background: #F1EAE0;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.9;
  color: #4A453F;
  max-height: 160px;
  overflow-y: auto;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 24px;
  font-size: 13.5px;
  line-height: 1.8;
}

.form-consent input { margin-top: 3px; accent-color: #C4491F; }

.form-submit-row { text-align: center; margin-top: 40px; }

.form-submit {
  display: inline-block;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: #C4491F;
  padding: 18px 56px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.form-submit:hover { background: #8F3315; }
.form-submit:disabled { background: #C9C4BB; cursor: not-allowed; }

@media (max-width: 900px) {
  .env-grid, .goals-grid, .course-grid, .effect-cols { grid-template-columns: 1fr; }
  .hero-images, .program-images { grid-template-columns: 1fr; }
  .effect-head-row, .effect-row { min-width: 640px; }
  .audience-grid, .steps-grid, .prog-grid, .company-grid, .access-grid,
  .narrative-grid, .results-grid, .bizmodel-grid, .partners-grid, .users-jumpnav,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .bizmodel-start { grid-column: span 1; }
  .results-head-row, .results-row { min-width: 640px; }
  .home-hero h1 { font-size: 48px; }
  .goalplan-row { flex-direction: column; }
  .goalplan-row .arrow { transform: rotate(90deg); }
  .goalplan-mid { max-width: none; width: 100%; }
  .service-banner { flex-wrap: wrap; padding: 28px 24px; }
  .service-banner > div { flex-basis: 100%; }
  .service-banner img { margin: 0 auto; }
  .service-banner .kicker { font-size: 22px; }
  .company-row { flex-wrap: wrap; }
  .company-row .label { width: 100%; margin-bottom: 4px; }
}

@media (max-width: 640px) {
  .site-header, .breadcrumb, .hero, .section, .goals-section, .effect-section, .contact-cta, .site-footer,
  .page-hero, .company-section, .dark-section, .whofor-section, .narrative-section,
  .goalplan-section, .concept-section, .segment-section, .form-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero h1 { font-size: 28px; }
  .form-card { padding: 28px 24px; }

  .site-header { padding: 14px 20px; }
  .page-hero h1 { font-size: 30px; }
  .home-hero h1 { font-size: 34px; }
  .home-hero .lines span { font-size: 16px; }
  .about-title-hero h1 { font-size: 26px; }
  .dark-section h2 { font-size: 24px; }
  .section-title { font-size: 22px; }

  .nav-toggle-label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 200;
  }

  .nav-toggle-label span {
    display: block;
    width: 100%;
    height: 2px;
    background: #1C1A17;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 150;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: min(78vw, 320px);
    height: 100vh;
    padding: 88px 32px 32px;
    background: #FAF7F1;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }

  .nav-toggle:checked ~ .site-nav {
    transform: translateX(0);
  }

  .site-nav a {
    font-size: 15px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(28, 26, 23, 0.08);
  }

  .site-nav .cta {
    margin-top: 20px;
    text-align: center;
  }
}
