
:root {
  --green: #5fae87;
  --green-dark: #236b4b;
  --green-deep: #174b36;
  --green-pale: #edf8f2;
  --green-soft: #d8f0e4;
  --orange: #f5a452;
  --ink: #3f4744;
  --muted: #77807c;
  --white: #ffffff;
  --line: #dce7e1;
  --shadow: 0 18px 50px rgba(34, 79, 58, 0.11);
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-feature-settings: "palt";
  margin: 0;
}

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

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

:focus-visible {
  outline: 3px solid #ffba66;
  outline-offset: 4px;
}

.topbar {
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(35, 107, 75, 0.14);
  box-shadow: 0 5px 22px rgba(35, 75, 57, 0.06);
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 124px;
  height: 96px;
  left: 0;
  padding: 0 4vw;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 20;
}

.logo {
  height: 76px;
  overflow: hidden;
  width: 140px;
}

.logo img,
.footer-logo img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.topbar nav {
  align-items: center;
  display: flex;
  gap: clamp(16px, 2vw, 34px);
  justify-content: center;
  min-width: 0;
}

.topbar nav a {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.topbar nav a:hover {
  color: var(--green-dark);
}

.top-contact {
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--green-dark);
  color: var(--green-dark);
  display: flex;
  font-size: 12px;
  font-weight: 700;
  justify-self: end;
  min-height: 44px;
  padding: 13px 18px;
  white-space: nowrap;
}

.floating-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: fixed;
  right: 0;
  top: 34%;
  z-index: 50;
}

.floating-actions a {
  align-items: center;
  border-radius: 13px 0 0 13px;
  box-shadow: 0 8px 24px rgba(23, 75, 54, 0.16);
  color: white;
  display: flex;
  font-size: 13px;
  font-weight: 700;
  height: 170px;
  justify-content: center;
  letter-spacing: 0.1em;
  width: 58px;
  writing-mode: vertical-rl;
}

.float-consult {
  background: var(--green-dark);
}

.float-contact {
  background: var(--orange);
}

.topbar {
  animation: header-enter 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fv-image {
  animation: hero-image-enter 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fv-mini,
.fv h1,
.fv-tags span,
.fv-description,
.fv-badge,
.floating-actions a {
  animation: hero-copy-enter 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fv-mini {
  animation-delay: 180ms;
}

.fv h1 {
  animation-delay: 260ms;
}

.fv-tags span:nth-child(1) {
  animation-delay: 390ms;
}

.fv-tags span:nth-child(2) {
  animation-delay: 450ms;
}

.fv-tags span:nth-child(3) {
  animation-delay: 510ms;
}

.fv-tags span:nth-child(4) {
  animation-delay: 570ms;
}

.fv-description {
  animation-delay: 650ms;
}

.fv-badge {
  animation-delay: 760ms;
}

.floating-actions a:first-child {
  animation-delay: 880ms;
}

.floating-actions a:last-child {
  animation-delay: 960ms;
}

.fv {
  height: min(840px, 92vh);
  min-height: 700px;
  overflow: hidden;
  position: relative;
}

.fv-image {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.fv-copy {
  left: 6.2vw;
  position: absolute;
  top: 142px;
  width: min(570px, 44vw);
  z-index: 2;
}

.fv-mini {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin: 0 0 22px;
}

.fv h1 {
  color: #3c4340;
  font-family: var(--serif);
  font-size: clamp(51px, 5vw, 78px);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.42;
  margin: 0;
}

.fv h1 strong {
  color: var(--green-dark);
  font-family: "Times New Roman", serif;
  font-size: 1.08em;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.fv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 24px;
  max-width: 480px;
}

.fv-tags span {
  background: rgba(255, 255, 255, 0.87);
  border: 1px solid var(--green-dark);
  border-radius: 5px;
  box-shadow: 4px 4px 0 rgba(95, 174, 135, 0.22);
  color: var(--green-deep);
  font-family: var(--serif);
  font-size: 14px;
  padding: 8px 15px;
}

.fv-description {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 2;
  margin: 0;
}

.fv-badge {
  align-items: center;
  background: var(--green-dark);
  bottom: 32px;
  color: white;
  display: flex;
  gap: 14px;
  left: 6.2vw;
  padding: 14px 22px;
  position: absolute;
}

.fv-badge b {
  font-size: 13px;
  letter-spacing: 0.12em;
}

.fv-badge span {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 12px;
  padding-left: 14px;
}

.section {
  padding: 120px max(6vw, calc((100vw - 1180px) / 2));
}

.section-title {
  margin-bottom: 70px;
  text-align: center;
}

.section-title > span {
  color: var(--green);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  margin-bottom: 16px;
}

.section-title h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(37px, 4.2vw, 60px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.45;
  margin: 0;
}

.about {
  background: var(--white);
}

.about-lead {
  margin: 0 auto;
  max-width: 780px;
  text-align: center;
}

.small-catch {
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
}

.about-lead h3,
.vision-copy h3,
.courses-intro h3,
.workshop-copy h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(32px, 3.7vw, 52px);
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

.about-body {
  font-size: 15px;
  line-height: 2.2;
  margin: 32px auto 0;
  max-width: 680px;
  text-align: left;
}

.about-stats {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin: 65px auto;
  max-width: 1000px;
}

.about-stats article {
  align-items: center;
  background: var(--green-pale);
  border-radius: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 150px;
  padding: 25px;
  text-align: center;
}

.about-stats b {
  color: var(--green-dark);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
}

.about-stats span {
  font-size: 12px;
  margin-top: 8px;
}

.about-details {
  align-items: stretch;
  display: grid;
  gap: 36px;
  grid-template-columns: 0.9fr 1.1fr;
  margin: 0 auto 95px;
  max-width: 1080px;
}

.about-details ul {
  list-style: none;
  margin: 0;
  padding: 4px 0;
}

.about-details li {
  align-items: flex-start;
  display: flex;
  font-size: 14px;
  gap: 13px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-details li span {
  align-items: center;
  background: var(--green);
  border-radius: 50%;
  color: white;
  display: inline-flex;
  flex: 0 0 22px;
  font-size: 12px;
  height: 22px;
  justify-content: center;
}

.about-position {
  background: var(--green-dark);
  color: white;
  padding: 35px;
}

.position-label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 22px;
  text-align: center;
}

.position-row {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto 1fr auto 1fr;
}

.position-row p {
  align-items: center;
  background: white;
  border-radius: 50%;
  color: var(--green-deep);
  display: flex;
  font-family: var(--serif);
  font-size: 13px;
  height: 104px;
  justify-content: center;
  margin: 0;
  text-align: center;
}

.position-row b {
  color: var(--green-soft);
}

.features {
  display: grid;
  gap: 70px;
  margin: 0 auto 70px;
  max-width: 1040px;
}

.feature {
  align-items: center;
  display: grid;
  gap: 6vw;
  grid-template-columns: 1fr 0.85fr;
}

.feature:nth-child(even) .feature-copy {
  order: 2;
}

.feature:nth-child(even) figure {
  order: 1;
}

.feature-copy {
  position: relative;
}

.feature-number {
  color: var(--green-soft);
  font-family: "Times New Roman", serif;
  font-size: 90px;
  left: -15px;
  line-height: 1;
  position: absolute;
  top: -38px;
  z-index: 0;
}

.feature-copy > p,
.feature-copy h3,
.feature-text {
  position: relative;
  z-index: 1;
}

.feature-copy > p {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0 0 12px;
}

.feature-copy h3 {
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 600;
  line-height: 1.6;
  margin: 0 0 22px;
}

.feature-text {
  font-size: 14px;
  line-height: 2;
}

.feature figure {
  border-radius: 3px;
  box-shadow: 16px 16px 0 var(--green-pale);
  height: 260px;
  margin: 0;
  overflow: hidden;
}

.feature figure img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.more-button {
  align-items: center;
  border: 1px solid var(--green-dark);
  color: var(--green-dark);
  display: flex;
  font-size: 13px;
  font-weight: 700;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 430px;
  padding: 19px 22px;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.more-button:hover {
  background: var(--green-dark);
  color: white;
}

.vision {
  background: var(--green-pale);
}

.vision-layout {
  align-items: center;
  display: grid;
  gap: 4vw;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  max-width: 1120px;
}

.vision-copy h3 {
  font-size: clamp(27px, 2.1vw, 32px);
}

.vision-copy h3 em {
  color: var(--green-dark);
  display: inline-block;
  font-style: normal;
  white-space: nowrap;
}

.vision-copy > p:last-child {
  font-size: 14px;
  line-height: 2.1;
  margin: 30px 0 0;
}

.vision-board {
  align-items: center;
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr auto 1fr;
}

.vision-board article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 50%;
  min-height: 230px;
  padding: 58px 34px;
  text-align: center;
}

.vision-board span {
  color: var(--muted);
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 19px;
}

.vision-board b {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.8;
}

.vision-board .vision-after {
  background: var(--green-dark);
  color: white;
}

.vision-after span {
  color: var(--green-soft);
}

.vision-board i {
  color: var(--green-dark);
  font-style: normal;
}

.courses {
  background: white;
}

.courses-intro {
  text-align: center;
}

.courses-intro > p {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
}

.courses-intro h3 {
  font-size: clamp(29px, 3.4vw, 47px);
}

.course-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  margin: 65px auto 45px;
  max-width: 1060px;
}

.course-grid article {
  border: 1px solid var(--line);
  min-height: 190px;
  padding: 28px;
  position: relative;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.course-grid article:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.course-grid span {
  color: var(--green);
  font-family: "Times New Roman", serif;
  font-size: 34px;
}

.course-grid h3 {
  font-family: var(--serif);
  font-size: 20px;
  margin: 20px 0 8px;
}

.course-grid p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
  margin: 0;
}

.course-note {
  align-items: center;
  background: var(--green-dark);
  color: white;
  display: grid;
  gap: 18px;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1060px;
  padding: 24px 30px;
}

.course-note b {
  font-family: var(--serif);
  font-size: 16px;
}

.course-note p {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 12px;
  margin: 0;
  padding-left: 18px;
}

.curriculum {
  background: #f8fbf9;
}

.curriculum-list {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto 55px;
  max-width: 1080px;
}

.curriculum-list article {
  background: white;
  box-shadow: var(--shadow);
  min-height: 360px;
  padding: 33px;
}

.step-heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.step-heading span {
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.step-heading b {
  color: var(--green-soft);
  font-family: "Times New Roman", serif;
  font-size: 54px;
  font-weight: 400;
}

.curriculum-list h3 {
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.5;
  margin: 30px 0 18px;
}

.curriculum-list p {
  font-size: 13px;
  line-height: 2;
}

.step-keywords {
  border-top: 1px dashed var(--green);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
  margin-top: 28px;
  padding-top: 20px;
  text-align: center;
}

.workshop {
  background: white;
}

.workshop-card {
  align-items: center;
  display: grid;
  gap: 6vw;
  grid-template-columns: 0.9fr 1.1fr;
  margin: 0 auto;
  max-width: 1080px;
}

.workshop-copy h3 {
  font-size: clamp(23px, 1.75vw, 25px);
  letter-spacing: 0;
  white-space: nowrap;
}

.workshop-copy > p:not(.small-catch) {
  font-size: 14px;
  line-height: 2.1;
  margin-top: 25px;
}

.workshop-copy dl {
  border-top: 1px solid var(--line);
  margin: 35px 0 0;
}

.workshop-copy dl div {
  border-bottom: 1px solid var(--line);
  display: grid;
  font-size: 12px;
  grid-template-columns: 80px 1fr;
  padding: 14px 0;
}

.workshop-copy dt {
  color: var(--green-dark);
  font-weight: 700;
}

.workshop-copy dd {
  margin: 0;
}

.workshop-photos {
  display: grid;
  gap: 12px;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: 180px 180px;
}

.workshop-photos img {
  height: 100%;
  object-fit: cover;
  transition:
    filter 500ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.workshop-photos img:first-child {
  grid-row: 1 / 3;
}

.fit {
  background: var(--green-pale);
}

.fit-card {
  background: white;
  box-shadow: var(--shadow);
  display: grid;
  gap: 6vw;
  grid-template-columns: 0.75fr 1.25fr;
  margin: 0 auto;
  max-width: 1040px;
  padding: 70px;
}

.fit-card .section-title {
  margin: 0;
  text-align: left;
}

.fit-card .section-title h2 {
  font-size: clamp(29px, 2.4vw, 32px);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.fit-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fit-card li {
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.8;
  padding: 16px 0 16px 34px;
  position: relative;
}

.fit-card li::before {
  color: var(--green-dark);
  content: "✓";
  font-family: var(--sans);
  left: 0;
  position: absolute;
}

.flow {
  background: white;
}

.flow-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto 55px;
  max-width: 1100px;
}

.flow-grid article {
  background: var(--green-pale);
  min-height: 230px;
  padding: 30px 24px;
  text-align: center;
}

.flow-grid b {
  color: var(--green);
  font-family: "Times New Roman", serif;
  font-size: 40px;
  font-weight: 400;
}

.flow-grid h3 {
  font-family: var(--serif);
  font-size: 18px;
  margin: 28px 0 13px;
}

.flow-grid p {
  font-size: 12px;
  line-height: 1.9;
  margin: 0;
}

.notice {
  background: var(--green-dark);
  color: white;
  margin: 0 auto;
  max-width: 760px;
  padding: 35px;
  text-align: center;
}

.notice p {
  font-size: 11px;
  letter-spacing: 0.12em;
  margin: 0 0 10px;
}

.notice h3 {
  font-family: var(--serif);
  font-size: 24px;
  margin: 0 0 18px;
}

.notice span {
  color: var(--green-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.contact-options {
  align-items: start;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1.45fr) minmax(270px, 0.55fr);
  margin: 28px auto 0;
  max-width: 1080px;
  scroll-margin-top: 30px;
}

.contact-option {
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 38px;
  scroll-margin-top: 30px;
}

.application-panel {
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 42px;
  scroll-margin-top: 30px;
}

.application-heading > span {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.application-heading h3 {
  font-family: var(--serif);
  font-size: clamp(25px, 2.4vw, 34px);
  margin: 17px 0 13px;
}

.application-heading p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
  margin: 0 0 32px;
}

.application-form {
  display: grid;
  gap: 22px 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 12px;
  font-weight: 700;
}

.form-field label span {
  background: var(--green-dark);
  color: white;
  display: inline-block;
  font-size: 9px;
  margin-left: 7px;
  padding: 2px 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  appearance: none;
  background: #fbfdfc;
  border: 1px solid #cbdcd3;
  border-radius: 0;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  min-height: 50px;
  padding: 12px 14px;
  width: 100%;
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(95, 174, 135, 0.16);
  outline: 0;
}

.privacy-check {
  align-items: flex-start;
  display: flex;
  font-size: 11px;
  gap: 10px;
  line-height: 1.7;
}

.privacy-check input {
  accent-color: var(--green-dark);
  flex: 0 0 auto;
  height: 18px;
  margin: 2px 0 0;
  width: 18px;
}

.form-honeypot {
  height: 0;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  width: 0;
}

.form-submit {
  align-items: center;
  background: var(--green-dark);
  border: 0;
  color: white;
  cursor: pointer;
  display: flex;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  justify-content: space-between;
  min-height: 58px;
  padding: 16px 20px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-message {
  grid-column: 1 / -1;
  margin: 0;
}

.form-message.is-error {
  color: #a23b32;
  font-size: 12px;
}

html.dialog-open,
html.dialog-open body {
  overflow: hidden;
}

.form-dialog {
  inset: 0;
  position: fixed;
  z-index: 100;
}

.form-dialog-backdrop {
  background: rgba(23, 75, 54, 0.45);
  inset: 0;
  position: absolute;
}

.form-dialog-panel {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  left: 50%;
  max-width: min(420px, calc(100vw - 32px));
  padding: 28px 24px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.form-dialog-panel h2 {
  color: var(--green-dark);
  font-family: var(--serif);
  font-size: 22px;
  margin: 0;
}

.form-dialog-panel p {
  font-size: 14px;
  line-height: 1.8;
  margin: 14px 0 22px;
}

.form-dialog-close {
  background: var(--green-dark);
  border: 0;
  color: white;
  cursor: pointer;
  display: block;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  min-height: 48px;
  padding: 12px 20px;
  width: 100%;
}

.contact-option-label {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.contact-option-icon {
  align-items: center;
  background: var(--green-pale);
  border-radius: 50%;
  color: var(--green-dark);
  display: flex;
  font-family: var(--serif);
  font-size: 24px;
  height: 66px;
  justify-content: center;
  margin: 24px 0;
  width: 66px;
}

.contact-option h3 {
  font-family: var(--serif);
  font-size: 24px;
  margin: 0 0 15px;
}

.contact-option > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
  margin: 0 0 28px;
}

.contact-option-button {
  align-items: center;
  background: var(--green-dark);
  color: white;
  display: flex;
  font-size: 13px;
  font-weight: 700;
  justify-content: space-between;
  margin-top: auto;
  min-height: 54px;
  padding: 15px 18px;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.contact-option-button:hover {
  background: var(--green);
  transform: translateY(-2px);
}

.line-option {
  background: #f4fff7;
  border-color: rgba(6, 199, 85, 0.28);
}

.line-icon {
  background: #06c755;
  border-radius: 16px;
  color: white;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.line-button {
  background: #06a947;
}

.line-button:hover {
  background: #06c755;
}

.contact-option-button.is-disabled {
  background: #dce7e1;
  color: #718078;
  cursor: not-allowed;
  justify-content: center;
}

.contact-option-button.is-disabled:hover {
  background: #dce7e1;
  transform: none;
}

.faq {
  background: #f8fbf9;
}

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

.faq details {
  background: white;
  border-bottom: 1px solid var(--line);
}

.faq summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  font-family: var(--serif);
  font-size: 15px;
  gap: 20px;
  grid-template-columns: 36px 1fr 30px;
  list-style: none;
  padding: 25px 28px;
}

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

.faq summary span {
  color: var(--green-dark);
  font-family: "Times New Roman", serif;
  font-size: 24px;
}

.faq summary b {
  color: var(--green);
  font-family: var(--sans);
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq details[open] summary b {
  transform: rotate(45deg);
}

.faq details > p {
  font-size: 13px;
  line-height: 2;
  margin: 0 60px 0 84px;
  padding-bottom: 28px;
}

.motion-ready .motion-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--motion-delay, 0ms);
}

.motion-ready .motion-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) {
  .top-contact,
  .floating-actions a,
  .more-button span,
  .footer-bottom a {
    transition:
      background-color 220ms ease,
      color 220ms ease,
      transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .top-contact:hover {
    background: var(--green-dark);
    color: white;
    transform: translateY(-2px);
  }

  .floating-actions a:hover {
    transform: translateX(-5px);
  }

  .feature figure:hover img,
  .workshop-photos img:hover {
    transform: scale(1.045);
  }

  .workshop-photos:hover img:not(:hover) {
    filter: saturate(0.82);
  }

  .more-button:hover span,
  .footer-bottom a:hover {
    transform: translateX(5px);
  }
}

@keyframes header-enter {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-image-enter {
  from {
    filter: saturate(0.8);
    opacity: 0.72;
    transform: scale(1.035);
  }
  to {
    filter: saturate(1);
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes hero-copy-enter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.message {
  background: var(--green-dark);
  color: white;
  padding: 120px 7vw;
}

.message > div {
  margin: 0 auto;
  max-width: 840px;
}

.message > div > p:first-child {
  color: var(--green-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.message h2 {
  font-family: var(--serif);
  font-size: clamp(35px, 4.2vw, 58px);
  font-weight: 500;
  line-height: 1.6;
  margin: 26px 0 45px;
}

.message h2 ~ p {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 2.2;
}

.message strong {
  color: var(--green-soft);
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  margin-top: 45px;
}

footer {
  background: white;
  padding: 50px 6vw 24px;
}

.footer-main {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1120px;
}

.footer-logo {
  display: block;
  height: 122px;
  overflow: visible;
  width: 190px;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-end;
}

.footer-main nav a {
  font-size: 11px;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  display: flex;
  font-size: 10px;
  justify-content: space-between;
  margin: 35px auto 0;
  max-width: 1120px;
  padding-top: 22px;
}

@media (max-width: 1080px) {
  .topbar {
    grid-template-columns: 150px 1fr 120px;
  }

  .topbar nav {
    gap: 14px;
  }

  .topbar nav a {
    font-size: 11px;
  }

  .fv-copy {
    left: 5vw;
    width: 50vw;
  }

  .fv h1 {
    font-size: clamp(48px, 5.7vw, 66px);
  }

  .section {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

@media (max-height: 800px) and (min-width: 821px) {
  .fv {
    height: 100vh;
    min-height: 700px;
  }

  .fv-copy {
    top: 120px;
  }

  .fv-mini {
    margin-bottom: 12px;
  }

  .fv h1 {
    font-size: clamp(47px, 4.4vw, 62px);
    line-height: 1.3;
  }

  .fv-tags {
    margin: 17px 0 13px;
  }

  .fv-description {
    font-size: 15px;
    line-height: 1.75;
  }

  .fv-badge {
    display: none;
  }
}

@media (max-width: 820px) {
  .topbar {
    grid-template-columns: 1fr auto;
    height: 78px;
    padding: 0 20px;
  }

  .topbar nav {
    display: none;
  }

  .logo {
    height: 64px;
    width: 130px;
  }

  .top-contact {
    padding: 11px 14px;
  }

  .floating-actions {
    bottom: 0;
    flex-direction: row;
    gap: 0;
    left: 0;
    right: 0;
    top: auto;
  }

  .floating-actions a {
    border-radius: 0;
    height: 52px;
    width: 50%;
    writing-mode: horizontal-tb;
  }

  .fv {
    height: 760px;
    min-height: 0;
  }

  .fv-image {
    object-position: 61% center;
  }

  .fv-copy {
    background: rgba(255, 255, 255, 0.88);
    bottom: 50px;
    left: 20px;
    padding: 25px;
    top: auto;
    width: calc(100% - 40px);
  }

  .fv-mini {
    font-size: 10px;
    margin-bottom: 12px;
  }

  .fv h1 {
    font-size: clamp(36px, 10vw, 50px);
    line-height: 1.35;
  }

  .fv-tags {
    gap: 8px;
    margin: 18px 0 15px;
  }

  .fv-tags span {
    font-size: 11px;
    padding: 6px 9px;
  }

  .fv-description {
    font-size: 13px;
    line-height: 1.8;
  }

  .fv-badge {
    display: none;
  }

  .section {
    padding: 80px 20px;
  }

  .section-title {
    margin-bottom: 45px;
  }

  .about-stats,
  .about-details,
  .feature,
  .vision-layout,
  .course-grid,
  .curriculum-list,
  .workshop-card,
  .fit-card,
  .flow-grid,
  .contact-options {
    grid-template-columns: 1fr;
  }

  .about-stats {
    gap: 12px;
  }

  .about-stats article {
    border-radius: 12px;
    min-height: 110px;
  }

  .about-details {
    margin-bottom: 75px;
  }

  .position-row p {
    font-size: 11px;
    height: 84px;
  }

  .features {
    gap: 65px;
  }

  .feature {
    gap: 32px;
  }

  .feature:nth-child(even) .feature-copy,
  .feature:nth-child(even) figure {
    order: initial;
  }

  .feature figure {
    height: 220px;
  }

  .vision-board article {
    min-height: 180px;
    padding: 42px 22px;
  }

  .vision-board b {
    font-size: 13px;
  }

  .course-grid {
    gap: 12px;
  }

  .course-grid article {
    min-height: 155px;
  }

  .course-note {
    display: block;
  }

  .course-note p {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    margin-top: 15px;
    padding: 15px 0 0;
  }

  .curriculum-list article {
    min-height: auto;
  }

  .workshop-photos {
    grid-template-rows: 140px 140px;
  }

  .fit-card {
    gap: 36px;
    padding: 42px 26px;
  }

  .fit-card .section-title {
    text-align: center;
  }

  .flow-grid article {
    min-height: 180px;
  }

  .contact-option {
    min-height: 350px;
  }

  .application-panel {
    padding: 32px 24px;
  }

  .application-form {
    grid-template-columns: 1fr;
  }

  .form-field-wide {
    grid-column: auto;
  }

  .message {
    padding: 85px 20px;
  }

  .footer-main {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

  .footer-main nav {
    justify-content: flex-start;
  }

  footer {
    padding-bottom: 78px;
  }
}

@media (max-width: 520px) {
  .position-row {
    gap: 5px;
  }

  .position-row p {
    font-size: 9px;
    height: 72px;
  }

  .vision-board {
    display: block;
  }

  .vision-board article {
    border-radius: 10px;
  }

  .vision-board i {
    display: block;
    padding: 12px;
    text-align: center;
    transform: rotate(90deg);
  }

  .workshop-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 120px;
  }

  .workshop-photos img:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .faq summary {
    font-size: 13px;
    gap: 12px;
    padding: 20px 16px;
  }

  .workshop-copy h3,
  .fit-card .section-title h2,
  .vision-copy h3 em {
    white-space: normal;
  }

  .faq details > p {
    margin: 0 30px 0 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-delay: 0ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .motion-ready .motion-reveal {
    opacity: 1;
    transform: none;
  }
}
