:root {
  --ink: #14210f;
  --muted: #5b6754;
  --line: #dfe8d2;
  --paper: #ffffff;
  --soft: #f7fbef;
  --teal: #7fb614;
  --teal-dark: #4e8708;
  --green: #b4da25;
  --navy: #264016;
  --coral: #f0a41d;
  --wood: #b88756;
  --leaf: #e9f6ca;
  --shadow: 0 18px 45px rgba(36, 64, 22, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.75;
  background:
    linear-gradient(90deg, rgba(180, 218, 37, .08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(180, 218, 37, .08) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 1px 18px rgba(36, 64, 22, .1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-text {
  display: block;
  padding-left: 14px;
  border-left: 6px solid var(--green);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  line-height: 1.3;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.3;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  color: #243717;
}

.nav-cta {
  position: relative;
  overflow: hidden;
  padding: 10px 18px;
  color: #1f310e !important;
  background: linear-gradient(135deg, #c8e934, #83ba12);
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(127, 182, 20, .22);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 118px clamp(20px, 7vw, 92px) 78px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    radial-gradient(circle at 8% 74%, rgba(180, 218, 37, .24), transparent 28%),
    linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.88) 38%, rgba(255,255,255,.18) 73%, rgba(255,255,255,.05) 100%);
}

.hero-inner {
  position: relative;
  width: min(650px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.25;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.35;
}

.hero-copy {
  max-width: 590px;
  margin: 24px 0 0;
  color: #384a2e;
  font-size: 18px;
}

.hero-actions,
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  position: relative;
  overflow: hidden;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}

.button::after,
.nav-cta::after,
.floating-cta::after {
  content: "";
  position: absolute;
  top: -45%;
  left: -75%;
  width: 42%;
  height: 190%;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,.72), transparent);
  transform: skewX(-22deg);
  pointer-events: none;
}

.button-primary::after,
.nav-cta::after,
.floating-cta::after {
  animation: shine-sweep 3.8s ease-in-out infinite;
}

.button:hover,
.nav-cta:hover,
.floating-cta:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #1f310e;
  background: linear-gradient(135deg, #c9ed33, #7fb614);
  box-shadow: 0 14px 24px rgba(127, 182, 20, .26);
}

.button-secondary {
  color: var(--teal-dark);
  background: white;
  border: 1px solid rgba(78, 135, 8, .22);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 8px 12px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(78, 135, 8, .18);
  border-radius: 8px;
  color: #293b1e;
  font-size: 13px;
  font-weight: 700;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-band div {
  padding: 28px clamp(20px, 4vw, 44px);
  background: rgba(255, 255, 255, .92);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  color: var(--teal-dark);
  font-size: 14px;
}

.trust-band span {
  margin-top: 6px;
  color: #384a2e;
  font-weight: 700;
}

.section {
  padding: clamp(72px, 10vw, 120px) clamp(20px, 6vw, 92px);
}

.split-section,
.restart-section,
.jobs-section,
.access-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.restart-section {
  background:
    radial-gradient(circle at 88% 10%, rgba(240, 164, 29, .18), transparent 26%),
    linear-gradient(135deg, #ffffff, #f8fced);
}

.restart-copy p {
  color: var(--muted);
}

.restart-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.restart-cards article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 8px 20px rgba(36, 64, 22, .06);
}

.restart-cards strong {
  display: inline-block;
  margin-bottom: 22px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--leaf);
  color: var(--teal-dark);
  font-size: 12px;
}

.restart-cards p {
  color: var(--muted);
}

.appeal-section {
  background: white;
}

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

.appeal-grid article {
  position: relative;
  min-height: 250px;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(248,252,237,.96));
  box-shadow: 0 10px 26px rgba(36, 64, 22, .08);
}

.appeal-grid span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--green);
  color: #1f310e;
  font-weight: 900;
}

.appeal-grid p,
.day-timeline p,
.proof-grid p {
  color: var(--muted);
}

.day-section {
  background:
    linear-gradient(90deg, rgba(180, 218, 37, .08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(180, 218, 37, .08) 1px, transparent 1px),
    #ffffff;
  background-size: 42px 42px;
}

.day-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1120px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
}

.day-timeline article {
  min-height: 230px;
  padding: 28px 24px;
  border-left: 1px solid var(--line);
}

.day-timeline article:first-child {
  border-left: 0;
}

.day-timeline time {
  display: inline-block;
  margin-bottom: 22px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--leaf);
  color: var(--teal-dark);
  font-weight: 900;
}

.proof-section {
  background:
    radial-gradient(circle at 12% 14%, rgba(201, 237, 51, .24), transparent 28%),
    linear-gradient(135deg, #f8fbf0, #ffffff);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.data-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.data-card {
  position: relative;
  min-height: 0;
  padding: 0;
  border: 1px solid rgba(127, 182, 20, .28);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 34px rgba(36, 64, 22, .1);
  overflow: hidden;
}

.data-photo {
  width: 100%;
  height: 190px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.data-content {
  padding: 22px 28px 26px;
}

.data-number {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #ff9818;
  color: white;
  font-size: 19px;
  font-weight: 900;
}

.data-card h3 {
  min-height: 0;
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.45;
}

.data-card p {
  margin-top: 0;
  color: var(--muted);
  font-size: 14px;
}

.metric-list {
  display: grid;
  gap: 14px;
}

.metric-list div {
  display: grid;
  grid-template-columns: 74px 54px 1fr;
  align-items: center;
  gap: 10px;
  color: #334229;
  font-weight: 900;
}

.metric-list i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff9818 var(--w), #edf3df var(--w));
}

.metric-list div:nth-child(2) i {
  background: linear-gradient(90deg, #afd629 var(--w), #edf3df var(--w));
}

.metric-list div:nth-child(3) i {
  background: linear-gradient(90deg, #d8ee33 var(--w), #edf3df var(--w));
}

.salary-metric,
.retention-metric {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.salary-metric div,
.retention-metric div {
  padding: 14px 16px;
  border-radius: 8px;
  background: #f3f5ef;
}

.salary-metric .accent,
.retention-metric .accent {
  background: linear-gradient(135deg, #ff9818, #f0a41d);
  color: white;
}

.salary-metric small,
.retention-metric small {
  display: block;
  color: inherit;
  opacity: .78;
  font-weight: 800;
}

.salary-metric strong,
.retention-metric strong {
  display: block;
  margin-top: 3px;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0;
}

.salary-metric b,
.retention-metric b {
  justify-self: start;
  padding: 7px 12px;
  border-radius: 999px;
  background: #afd629;
  color: white;
  font-size: 17px;
  line-height: 1.2;
}

.stat-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(127, 182, 20, .26);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 32px rgba(36, 64, 22, .08);
  overflow: hidden;
}

.stat-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -48px;
  width: 132px;
  height: 132px;
  border-radius: 999px;
  background: rgba(201, 237, 51, .3);
}

.stat-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--leaf);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.stat-card strong {
  display: block;
  color: var(--teal-dark);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: 0;
}

.stat-card p,
.proof-note,
.program-grid p {
  color: var(--muted);
}

.proof-note {
  max-width: 980px;
  margin: 22px auto 0;
  font-size: 13px;
  text-align: center;
}

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

.proof-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.proof-grid h3 {
  margin-top: 18px;
  color: var(--teal-dark);
}

.proof-grid h3:first-child {
  margin-top: 0;
}

.proof-grid h3 + p {
  margin-top: 8px;
}

.program-section {
  background: white;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
}

.program-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,252,237,.9));
  box-shadow: 0 10px 26px rgba(36, 64, 22, .07);
}

.program-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #f0a41d;
  color: #2d250d;
  font-weight: 900;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.representative-card {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 30px;
  align-items: start;
  max-width: 1060px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 18%, rgba(180, 218, 37, .18), transparent 30%),
    white;
  box-shadow: var(--shadow);
}

.representative-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(36, 64, 22, .12);
}

.representative-card h2 {
  margin-bottom: 10px;
}

.representative-card h3 {
  margin-bottom: 18px;
}

.representative-card p {
  color: var(--muted);
}

.featured-staff {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.featured-staff-card {
  display: grid;
  grid-template-columns: minmax(150px, 220px) 1fr;
  gap: 22px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 26px rgba(36, 64, 22, .08);
}

.staff-photo {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(36, 64, 22, .1);
}

.featured-staff-card p:not(.eyebrow),
.staff-card p {
  color: var(--muted);
}

.featured-staff-card h4 {
  margin: -6px 0 18px;
  color: var(--teal-dark);
  font-size: 16px;
}

.team-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.team-photo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 26px rgba(36, 64, 22, .08);
}

.team-photo-placeholder {
  min-height: 300px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  background:
    linear-gradient(135deg, rgba(20, 33, 15, .62), rgba(127, 182, 20, .45)),
    url("assets/hero-it-classroom.png") center / cover;
  color: white;
  text-align: center;
}

.team-photo-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.team-photo-placeholder span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  font-weight: 900;
}

.team-photo-placeholder strong {
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.1;
}

.team-photo-card figcaption {
  padding: 22px 24px;
}

.team-photo-card p {
  color: var(--muted);
}

.job-openings {
  display: grid;
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}

.job-opening-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .75fr);
  gap: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 26px rgba(36, 64, 22, .08);
}

.job-opening-card p:not(.eyebrow),
.job-meta dd {
  color: var(--muted);
}

.job-meta {
  display: grid;
  gap: 10px;
}

.job-meta dl {
  margin: 0;
  padding: 14px 16px;
  border-radius: 8px;
  background: #f7fbef;
}

.job-meta dt {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.job-meta dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.atmosphere-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.atmosphere-gallery figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: white;
  box-shadow: 0 10px 26px rgba(36, 64, 22, .08);
}

.atmosphere-gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.atmosphere-gallery figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-weight: 800;
}

.location-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.location-photo-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 26px rgba(36, 64, 22, .08);
}

.location-photo-grid img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.location-photo-grid figcaption {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
}

.location-photo-grid strong {
  color: var(--ink);
}

.location-photo-grid span {
  color: var(--muted);
}

.staff-card {
  min-height: 310px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 8px 20px rgba(36, 64, 22, .06);
}

.staff-avatar {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c9ed33, #7fb614);
  color: #1f310e;
  font-size: 24px;
  font-weight: 900;
}

.section-copy p {
  color: var(--muted);
  font-size: 16px;
}

.section-copy p:first-of-type {
  color: var(--teal-dark);
}

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

.feature-card,
.course-card,
.job-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.feature-card,
.course-card,
.content-card,
.staff-card,
.featured-staff-card,
.team-photo-card,
.job-opening-card,
.location-photo-grid figure,
.atmosphere-gallery figure,
.map-card,
.restart-cards article,
.appeal-grid article,
.proof-grid article,
.stat-card,
.program-grid article,
.data-card {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.feature-card:hover,
.course-card:hover,
.content-card:hover,
.staff-card:hover,
.featured-staff-card:hover,
.team-photo-card:hover,
.job-opening-card:hover,
.location-photo-grid figure:hover,
.atmosphere-gallery figure:hover,
.map-card:hover,
.restart-cards article:hover,
.appeal-grid article:hover,
.proof-grid article:hover,
.stat-card:hover,
.program-grid article:hover,
.data-card:hover {
  transform: translateY(-4px);
  border-color: rgba(127, 182, 20, .45);
  box-shadow: 0 18px 36px rgba(36, 64, 22, .13);
}

.feature-card img,
.course-visual,
.team-photo-img,
.atmosphere-gallery img,
.location-photo-grid img,
.representative-photo,
.staff-photo,
.page-hero-photo {
  transition: transform .35s ease, filter .35s ease;
}

.feature-card:hover img,
.course-card:hover .course-visual,
.team-photo-card:hover .team-photo-img,
.atmosphere-gallery figure:hover img,
.location-photo-grid figure:hover img {
  transform: scale(1.035);
}

.feature-card {
  min-height: 360px;
  padding: 18px 20px 24px;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  margin-bottom: 18px;
  border-radius: 8px;
}

.feature-card .icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: var(--leaf);
  color: var(--teal-dark);
  font-weight: 800;
}

.feature-card p,
.course-card p,
.course-card li,
.flow-list p,
.job-panel li,
.faq-list p {
  color: var(--muted);
}

.color-section {
  background:
    linear-gradient(135deg, rgba(180, 218, 37, .16), rgba(255,255,255,.7)),
    var(--soft);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.compact {
  margin-bottom: 30px;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.skill-strip {
  display: grid;
  grid-template-columns: repeat(10, minmax(92px, 1fr));
  max-width: 1160px;
  margin: 0 auto 34px;
  border: 2px solid #9ccc1f;
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 28px rgba(36, 64, 22, .1);
  overflow: hidden;
}

.skill-logo {
  position: relative;
  min-height: 134px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 14px 10px;
  border-left: 1px solid #e3ecd3;
  overflow: hidden;
  transition: background .2s ease, transform .2s ease;
}

.skill-logo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(180, 218, 37, .2), transparent 34%);
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}

.skill-logo:hover {
  background: #fbfdf5;
  transform: translateY(-2px);
}

.skill-logo:hover::before {
  opacity: 1;
}

.skill-logo > * {
  position: relative;
  z-index: 1;
}

.skill-logo:first-child {
  border-left: 0;
}

.skill-logo strong {
  font-size: 14px;
  line-height: 1.25;
  text-align: center;
}

.office-icons {
  position: relative;
  width: 68px;
  height: 56px;
}

.office-icons span {
  position: absolute;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: white;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 800;
}

.office-icons span:nth-child(1) {
  left: 0;
  bottom: 2px;
  background: #285aa8;
}

.office-icons span:nth-child(2) {
  right: 0;
  bottom: 2px;
  background: #18884f;
}

.office-icons span:nth-child(3) {
  left: 21px;
  top: 0;
  background: #c4472d;
}

.figma-mark {
  display: grid;
  grid-template-columns: repeat(2, 22px);
  grid-template-rows: repeat(3, 22px);
}

.figma-mark i {
  display: block;
}

.figma-mark i:nth-child(1) {
  background: #f24e1e;
  border-radius: 12px 0 0 12px;
}

.figma-mark i:nth-child(2) {
  background: #ff7262;
  border-radius: 0 12px 12px 0;
}

.figma-mark i:nth-child(3) {
  background: #a259ff;
  border-radius: 12px 0 0 12px;
}

.figma-mark i:nth-child(4) {
  background: #1abcfe;
  border-radius: 12px;
}

.figma-mark i:nth-child(5) {
  background: #0acf83;
  border-radius: 12px 0 12px 12px;
}

.round-mark,
.shield-mark,
.square-mark,
.app-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  font-weight: 900;
}

.round-mark {
  border: 5px solid #145f91;
  border-radius: 999px;
  color: #145f91;
  font-family: Georgia, serif;
  font-size: 37px;
}

.shield-mark {
  color: white;
  font-size: 42px;
  clip-path: polygon(12% 0, 88% 0, 78% 88%, 50% 100%, 22% 88%);
}

.html .shield-mark {
  background: #e5532d;
}

.css .shield-mark {
  background: #2b64d8;
}

.square-mark {
  align-items: end;
  justify-items: end;
  padding: 8px;
  background: #e6ad27;
  color: white;
  font-size: 24px;
}

.gem-mark {
  width: 66px;
  height: 54px;
  background: #d71920;
  clip-path: polygon(50% 0, 86% 18%, 100% 50%, 50% 100%, 0 50%, 14% 18%);
}

.app-mark {
  border: 4px solid currentColor;
  background: #20252c;
  font-size: 30px;
  letter-spacing: 0;
}

.ai .app-mark {
  color: #ff8c24;
}

.ps .app-mark {
  color: #2ec9ff;
}

.pr .app-mark {
  color: #d06aff;
}

.course-card {
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(36, 64, 22, .06);
}

.course-card h3,
.course-card p,
.course-card ul {
  margin-left: 24px;
  margin-right: 24px;
}

.course-card h3 {
  margin-top: 24px;
}

.course-card ul {
  margin-bottom: 26px;
  padding-left: 20px;
}

.course-visual {
  width: 100%;
  height: 185px;
  border-bottom: 1px solid var(--line);
  object-fit: cover;
}

.support-section {
  background: #ffffff;
}

.concern-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.concern-list p {
  margin: 0;
  min-height: 78px;
  padding: 18px 20px;
  border-left: 5px solid #9ccc1f;
  background: #fbfdf5;
  font-weight: 700;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  position: relative;
  padding: 28px 22px;
  border-top: 4px solid #9ccc1f;
  background: rgba(255,255,255,.88);
  min-height: 250px;
}

.flow-list span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  font-weight: 800;
}

.jobs-section {
  background: linear-gradient(135deg, #f9fdf0, #fff8e8);
}

.job-panel {
  padding: 34px;
  box-shadow: var(--shadow);
}

.job-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.job-panel li {
  padding: 12px 14px;
  background: #f7fbef;
  border-radius: 8px;
  font-weight: 700;
}

.faq-section {
  background: #f8fbf0;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 12px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}

details[open] {
  border-color: rgba(127, 182, 20, .45);
  box-shadow: 0 12px 28px rgba(36, 64, 22, .08);
}

summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 800;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--leaf);
  color: var(--teal-dark);
  flex: 0 0 auto;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 0;
  padding: 0 24px 22px;
}

.map-grid {
  display: grid;
  gap: 16px;
}

.map-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
}

.map-card h3 {
  padding: 14px 18px;
  background: #f7fbef;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
}

.map-card iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

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

.location-list article {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-left: 5px solid #9ccc1f;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #fbfdf5);
}

.location-list h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.location-list p {
  margin: 0;
}

.shop-tel {
  margin-top: 8px !important;
  color: var(--ink) !important;
  font-size: 18px !important;
  font-weight: 800;
}

.contact-section {
  background:
    radial-gradient(circle at 14% 20%, rgba(180, 218, 37, .28), transparent 28%),
    linear-gradient(135deg, #223a12, #426b14);
  color: white;
}

.contact-copy p {
  color: rgba(255,255,255,.78);
}

.contact-copy .eyebrow {
  color: #d8f270;
}

.contact-methods a {
  display: block;
  min-width: 210px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px;
  background: rgba(255,255,255,.1);
}

.contact-methods strong,
.contact-methods span {
  display: block;
}

.contact-methods span {
  color: rgba(255,255,255,.78);
}

.contact-form {
  padding: 28px;
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(36, 64, 22, .14);
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  margin-top: 7px;
  padding: 10px 12px;
  border: 1px solid #d5e1c5;
  border-radius: 8px;
  font: inherit;
  background: white;
}

.contact-form textarea {
  resize: vertical;
}

.form-check {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 36px clamp(20px, 6vw, 92px);
  background: #14210f;
  color: rgba(255,255,255,.82);
}

.site-footer p {
  margin: 6px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.footer-links a,
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
}

.social-link::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background:
    radial-gradient(circle at 70% 30%, #fff 0 8%, transparent 9%),
    radial-gradient(circle at 30% 105%, #feda75 0 18%, transparent 19%),
    linear-gradient(135deg, #833ab4, #fd1d1d 55%, #fcb045);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.8);
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  display: none;
  min-width: 112px;
  padding: 13px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c9ed33, #7fb614);
  color: #1f310e;
  font-weight: 800;
  text-align: center;
  box-shadow: var(--shadow);
  overflow: hidden;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-progress {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #b4da25, #f0a41d);
  box-shadow: 0 0 14px rgba(180, 218, 37, .55);
}

.to-top {
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 17;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--teal-dark);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}

.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@keyframes shine-sweep {
  0% {
    left: -75%;
    opacity: 0;
  }
  18% {
    opacity: .95;
  }
  38% {
    left: 125%;
    opacity: 0;
  }
  100% {
    left: 125%;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button,
  .nav-cta,
  .floating-cta {
    transition: none;
  }

  .button-primary::after,
  .nav-cta::after,
  .floating-cta::after {
    animation: none;
  }

  [data-reveal],
  .feature-card,
  .course-card,
  .content-card,
  .team-photo-img,
  .atmosphere-gallery img,
  .location-photo-grid img {
    transition: none;
    transform: none;
  }
}

.page-main {
  padding-top: 76px;
}

.page-hero {
  padding: clamp(76px, 10vw, 120px) clamp(20px, 6vw, 92px) clamp(48px, 7vw, 82px);
  background:
    radial-gradient(circle at 82% 20%, rgba(180, 218, 37, .22), transparent 28%),
    linear-gradient(135deg, #ffffff, #f8fced);
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(320px, .72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.page-hero-inner {
  max-width: 900px;
}

.page-hero h1 {
  max-width: 780px;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.page-hero-visual {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 20px 32px rgba(36, 64, 22, .14));
}

.page-hero-photo {
  aspect-ratio: 1.42;
  max-height: none;
  object-fit: cover;
  border: 8px solid white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  filter: none;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--teal-dark);
}

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

.content-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(250,253,244,.98));
  box-shadow: 0 8px 20px rgba(36, 64, 22, .06);
}

.content-card h2,
.content-card h3 {
  margin-bottom: 12px;
}

.content-card h2::before,
.content-card h3::before {
  content: "";
  display: block;
  width: 42px;
  height: 5px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b4da25, #f0a41d);
}

.content-card p,
.content-card li {
  color: var(--muted);
}

.content-card ul,
.content-card ol {
  padding-left: 20px;
}

.wide-card {
  grid-column: span 2;
}

.page-band {
  background: #f8fbf0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 16px 18px;
  border-left: 5px solid #9ccc1f;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #fbfdf5);
  color: var(--muted);
  font-weight: 700;
}

.cta-panel {
  padding: clamp(28px, 5vw, 44px);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 20%, rgba(240, 164, 29, .18), transparent 30%),
    linear-gradient(135deg, #223a12, #426b14);
  color: white;
}

.cta-panel p {
  color: rgba(255,255,255,.8);
}

.cta-panel .button {
  margin-top: 18px;
}

.table-like {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: white;
}

.table-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-top: 1px solid var(--line);
}

.table-row:first-child {
  border-top: 0;
}

.table-row strong,
.table-row span {
  padding: 16px 18px;
}

.table-row strong {
  background: #f7fbef;
  color: var(--teal-dark);
}

.table-row span {
  color: var(--muted);
}

@media (max-width: 980px) {
  .content-grid,
  .page-hero,
  .two-column {
    grid-template-columns: 1fr;
  }

  .wide-card {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .table-row {
    grid-template-columns: 1fr;
  }

  .table-row span {
    padding-top: 0;
  }
}

@media (max-width: 980px) {
  .site-header {
    background: rgba(255,255,255,.96);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 22px;
    background: white;
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 32px rgba(16, 32, 41, .12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 0;
  }

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

  .hero {
    min-height: auto;
    padding-top: 122px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(255,255,255,.97), rgba(255,255,255,.82));
  }

  .trust-band,
  .split-section,
  .restart-section,
  .jobs-section,
  .access-section,
  .contact-section,
  .course-grid,
  .flow-list,
  .concern-list {
    grid-template-columns: 1fr;
  }

  .skill-strip {
    grid-template-columns: repeat(5, minmax(96px, 1fr));
  }

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

  .restart-cards {
    grid-template-columns: 1fr;
  }

  .appeal-grid,
  .day-timeline,
  .proof-grid,
  .stat-grid,
  .data-card-grid,
  .program-grid,
  .featured-staff,
  .staff-grid {
    grid-template-columns: 1fr;
  }

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

  .representative-card {
    grid-template-columns: 1fr;
  }

  .team-photo-grid {
    grid-template-columns: 1fr;
  }

  .job-opening-card {
    grid-template-columns: 1fr;
  }

  .atmosphere-gallery {
    grid-template-columns: 1fr;
  }

  .location-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .atmosphere-gallery img {
    height: 260px;
  }

  .day-timeline article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .day-timeline article:first-child {
    border-top: 0;
  }
}

@media (max-width: 640px) {
  body {
    line-height: 1.68;
  }

  .site-header {
    height: 64px;
    padding: 9px 14px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    max-width: 220px;
    font-size: 14px;
  }

  .brand-text {
    padding-left: 10px;
    border-left-width: 5px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    padding: 8px;
  }

  .site-nav {
    top: 64px;
    padding: 8px 16px 18px;
  }

  .site-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  h1 {
    font-size: 34px;
    line-height: 1.14;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 19px;
  }

  .hero {
    min-height: 86svh;
    display: grid;
    padding: 116px 16px 42px;
    align-items: end;
  }

  .hero-image,
  .hero-shade {
    bottom: 0;
    height: 100%;
  }

  .hero-image {
    object-position: 72% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.28) 34%, rgba(255,255,255,.86) 66%, rgba(255,255,255,.98) 100%),
      linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.68) 58%, rgba(255,255,255,.12) 100%);
  }

  .hero-inner {
    width: 100%;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 15.5px;
  }

  .hero-actions {
    margin-top: 22px;
    gap: 10px;
  }

  .hero-actions .button,
  .button {
    width: 100%;
    min-height: 50px;
    padding: 12px 16px;
  }

  .hero-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
  }

  .hero-points li {
    border-radius: 8px;
    background: rgba(255,255,255,.9);
  }

  .section {
    padding: 52px 16px;
  }

  .page-main {
    padding-top: 64px;
  }

  .page-hero {
    padding: 34px 16px 42px;
    gap: 22px;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 15.5px;
  }

  .page-hero-photo {
    aspect-ratio: 1.28;
    border-width: 5px;
  }

  .breadcrumb {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .trust-band div {
    padding: 20px 16px;
  }

  .section-heading {
    margin-bottom: 28px;
    text-align: left;
  }

  .content-grid,
  .appeal-grid,
  .course-grid,
  .proof-grid,
  .stat-grid,
  .data-card-grid,
  .program-grid,
  .restart-cards {
    gap: 12px;
  }

  .content-card,
  .feature-card,
  .course-card,
  .job-panel,
  .contact-form,
  .restart-cards article,
  .appeal-grid article,
  .proof-grid article,
  .stat-card,
  .data-card,
  .program-grid article {
    padding: 20px;
  }

  .data-card {
    min-height: auto;
    padding: 0;
  }

  .data-number {
    width: 44px;
    height: 44px;
    font-size: 19px;
  }

  .data-card h3 {
    min-height: auto;
    margin-bottom: 22px;
    font-size: 19px;
  }

  .data-content {
    padding: 20px;
  }

  .data-photo {
    height: 170px;
  }

  .metric-list div {
    grid-template-columns: 64px 50px 1fr;
    gap: 8px;
  }

  .salary-metric strong,
  .retention-metric strong {
    font-size: 30px;
  }

  .stat-card {
    min-height: auto;
  }

  .proof-note {
    text-align: left;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-card img,
  .course-visual {
    height: auto;
  }

  .course-card h3,
  .course-card p,
  .course-card ul {
    margin-left: 18px;
    margin-right: 18px;
  }

  .skill-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 24px;
  }

  .skill-logo {
    min-height: 116px;
  }

  .job-panel ul {
    grid-template-columns: 1fr;
  }

  .map-card iframe {
    height: 260px;
  }

  .contact-methods {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-methods a {
    min-width: 0;
  }

  .site-footer {
    display: block;
    padding: 30px 16px 88px;
  }

  .floating-cta {
    display: block;
    left: 16px;
    right: 16px;
    bottom: 12px;
    min-height: 52px;
    border-radius: 8px;
  }

  .location-photo-grid {
    grid-template-columns: 1fr;
  }

  .location-photo-grid img,
  .team-photo-img,
  .atmosphere-gallery img {
    height: 230px;
  }

  .table-row strong,
  .table-row span {
    padding: 14px 16px;
  }
}
