/* ============================================
   Shared
============================================ */
.section-head {
  margin-bottom: 60px;
}

.section-head__en {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 80px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.section-head__lead {
  margin-top: 24px;
  font-size: 20px;
  line-height: 40px;
  font-weight: 500;
}

.section-head__sub {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1;
}

.section-head--center {
  text-align: center;
}

.section-head--right {
  text-align: right;
}

/* ============================================
   Site header
============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 30px 40px;
  pointer-events: none;
}

@media (min-width: 769px) {
  .site-header {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: var(--content-width);
  }
}

.site-header__menu {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 14px;
  pointer-events: auto;
  mix-blend-mode: difference;
}

.site-header__menu-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 18px;
}

.site-header__menu-icon span {
  display: block;
  height: 2px;
  background: #fff;
  transition: transform 0.3s;
}

.site-header.is-open .site-header__menu-icon span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-open .site-header__menu-icon span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .site-header__menu-icon span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   Global Nav (hamburger panel)
============================================ */
.global-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: #EFEEE8;
  z-index: 90;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  overflow-y: auto;
}

.global-nav.is-open {
  transform: translateX(0);
}

.global-nav__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 120px 50px 50px;
}

.global-nav__link {
  display: inline-block;
  font-size: 18px;
  color: #000;
  letter-spacing: 0.08em;
  transition: opacity 0.2s;
}

.global-nav__link:hover {
  opacity: 0.6;
}

.global-nav__link--cta {
  display: block;
  width: 100%;
  padding: 10px;
  border: 1px solid #000;
  background: transparent;
  color: #000;
  text-align: center;
  margin-top: 16px;
}

.global-nav__link--cta:hover {
  background: #000;
  color: #fff;
  opacity: 1;
}

.site-header__menu-label {
  letter-spacing: 0.1em;
}

/* ============================================
   Hero
============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 800px;
  background: url("../assets/images/hero-bg.png") center/cover no-repeat;
  color: #000;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1000px;
  height: 440px;
  max-width: calc(100% - 40px);
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.58);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 0 20px;
}

.hero__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.hero__logo {
  width: auto;
  display: block;
}

.hero__logo--ame {
  width: 130px;
  height: 200px;
}

.hero__logo--dct {
  width: 180px;
  height: 80px;
}

.hero__logo--cyan {
  width: 200px;
  height: 65px;
}

.hero__subtitle {
  margin-top: 40px;
  font-size: 36px;
  font-weight: 500;
  color: #1a1311;
  letter-spacing: 0.08em;
  padding-bottom: 24px;
  border-bottom: 1px solid #000;
  transform: rotate(-0.53deg);
}

/* ============================================
   CONCEPT
============================================ */
.concept {
  background: var(--bg-gray);
  padding-block: 120px 220px;
  position: relative;
}

.concept .section-head {
  margin-bottom: 40px;
}

.concept__brands {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 640px;
}

.concept-brand {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
}

.concept-brand__logo img {
  width: auto;
  object-fit: contain;
}

.concept-brand__logo--dct img { max-height: 80px; }
.concept-brand__logo--ame img { max-height: 200px; }
.concept-brand__logo--cyan img { max-height: 65px; }

.concept-brand__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 40px;
  margin-bottom: 12px;
}

.concept-brand__desc {
  font-size: 14px;
  line-height: 30px;
  color: #000;
}

.concept__photo-main {
  position: absolute;
  width: 512px;
  height: 690px;
  right: calc(50% - var(--content-width) / 2);
  bottom: -25px;
  z-index: 2;
  object-fit: cover;
}

.concept__photo-sub img {
  position: absolute;
  left: calc(50% - var(--content-width) / 2);
  bottom: -100px;
  z-index: 10;
  width: 500px;
  height: 300px;
  object-fit: cover;
  object-position: top;
}

/* ============================================
   CURRICULUM
============================================ */
.curriculum {
  background: var(--bg-beige);
  padding-block: 120px;
}

.curriculum__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding-inline: var(--content-padding);
}

.curriculum__content {
  margin-left: 50%;
  padding-left: 40px;
}

.curriculum .section-head {
  margin-bottom: 80px;
}

.curriculum__steps {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.curriculum-step__head {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 16px;
}

.curriculum-step__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 40px;
  background: transparent;
  color: #000;
  border: 1px solid #000;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.curriculum-step__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.curriculum-step__desc {
  font-size: 14px;
  line-height: 30px;
  color: #000;
  max-width: 600px;
}

/* ============================================
   SALON GALLERY
============================================ */
.gallery {
  background: var(--bg-gray);
  padding-block: 120px;
  position: relative;
}

.gallery__curriculum-photo {
  position: absolute;
  width: 550px;
  bottom: 100%;
  left: calc(50% - var(--content-width) / 2);
  z-index: 5;
  object-fit: cover;
}

.gallery .section-head {
  margin-bottom: 40px;
}

.gallery__tabs {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 60px;
}

.gallery__tab,
.jobdetail__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 40px;
  background: transparent;
  color: #000;
  font-size: 14px;
  letter-spacing: 0.1em;
  border: 1px solid #000;
  transition: background 0.2s, color 0.2s;
}

.gallery__tab.is-active,
.jobdetail__tab.is-active {
  background: #000;
  color: #fff;
}

.gallery__panel {
  display: none;
}

.gallery__panel.is-active {
  display: block;
}

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

.gallery__grid figure {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.gallery__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   IN NUMBERS
============================================ */
.numbers {
  background: var(--bg-beige);
}

.numbers__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: var(--content-width);
  margin-inline: auto;
}

.numbers__photos img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top;
}

.numbers .container {
  padding-block: 80px 100px;
}

.numbers .section-head {
  margin-bottom: 60px;
}

.numbers__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}

.numbers-stat {
  text-align: center;
}

.numbers-stat__label {
  font-size: 15px;
  line-height: 30px;
  margin-bottom: 8px;
}

.numbers-stat__value {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.numbers-stat__num {
  font-size: 128px;
  line-height: 1;
}

.numbers-stat--ten .numbers-stat__num {
  letter-spacing: 0.08em;
}

.numbers-stat__unit {
  font-size: 15px;
}

.numbers-stat--ratio {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.numbers-stat--ratio .numbers-stat__label {
  margin-bottom: 0;
}

.numbers-stat--ratio .numbers-stat__value {
  display: flex;
  justify-content: center;
}

.numbers-stat__ratio-img {
  width: 178px;
  height: auto;
}

/* ============================================
   INTERVIEW
============================================ */
.interview {
  background: var(--bg-white);
  padding-block: 80px 120px;
}

.interview .section-head {
  margin-bottom: 60px;
}

.interview__carousel {
  position: relative;
}

.interview__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: transparent;
  border: 1px solid #000;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.interview__arrow svg {
  width: 60%;
  height: 60%;
  display: block;
}

.interview__arrow--prev {
  left: calc(-1 * var(--content-padding) + 40px);
}

.interview__arrow--next {
  right: calc(-1 * var(--content-padding) + 40px);
}

.interview__track {
  position: relative;
  overflow: hidden;
}

.interview__slide {
  display: none;
}

.interview__slide.is-active {
  display: block;
}

.interview__body {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 80px;
  align-items: start;
}

.interview__photo {
  width: 100%;
  height: 430px;
  overflow: hidden;
}

.interview__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview__person {
  margin-top: 30px;
  text-align: center;
}

.interview__badge {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 12px;
  border: 1px solid #000;
}

.interview__badge-label {
  background: transparent;
  color: #000;
  padding: 6px 14px;
  font-size: 12px;
  border-right: 1px solid #000;
}

.interview__badge-value {
  padding: 6px 14px;
  font-size: 12px;
}

.interview__role {
  font-size: 12px;
  margin-bottom: 4px;
}

.interview__name {
  font-size: 18px;
  font-weight: 700;
}

.interview__qa {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.interview__qa li {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.interview__q {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
}

.interview__q .heading-en {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #000;
  color: #fff;
  font-size: 14px;
  margin-right: 0;
}

.interview__q span:last-child {
  flex: 1;
  padding: 0 14px;
  height: 40px;
  display: flex;
  align-items: center;
  font-size: 12px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
}

.interview__a {
  font-size: 14px;
  line-height: 30px;
  padding-left: 0;
  color: #000;
}

/* ============================================
   LOOKING FOR
============================================ */
.looking {
  background: var(--bg-beige);
  padding-block: 120px;
  position: relative;
}

.looking .section-head {
  margin-bottom: 60px;
}

.looking__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 60px;
}

.looking-card {
  position: relative;
  padding: 30px 30px 30px 50px;
  border: 1px solid #000;
  background: transparent;
}

.looking-card__dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: #000;
}

.looking-card__title {
  font-size: 10px;
  margin-bottom: 8px;
  color: #000;
}

.looking-card__lead {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}

.looking-card__desc {
  font-size: 10px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #000;
}

.looking-card__points {
  font-size: 10px;
  line-height: 1.8;
  color: #000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.looking-card__points li {
  position: relative;
  padding-left: 22px;
}

.looking-card__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 15px;
  height: 15px;
  border: 1px solid #000;
}

.looking__tagline {
  margin-top: 100px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.looking__photo img {
  width: 384px;
  height: 384px;
  object-fit: cover;
  object-position: top;
  position: absolute;
  left: calc(50% - var(--content-width) / 2);
  bottom: -120px;
  z-index: 3;
}

/* ============================================
   JOB DETAIL
============================================ */
.jobdetail {
  background: var(--bg-gray);
  padding-block: 120px;
}

.jobdetail .section-head {
  margin-bottom: 30px;
}

.jobdetail__tabs {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 60px;
}

.jobdetail__panel {
  display: none;
}

.jobdetail__panel.is-active {
  display: block;
}

.jobtable {
  display: flex;
  flex-direction: column;
}

.jobtable__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 50px;
  padding: 24px 0;
  border-top: 1px solid #000;
  font-size: 12px;
}

.jobtable__row:last-child {
  border-bottom: 1px solid #000;
}

.jobtable__row dt {
  font-weight: 700;
}

.jobtable__row dd {
  line-height: 1.8;
}

/* ============================================
   BENEFITS
============================================ */
.benefits {
  background: var(--bg-beige);
  padding-block: 180px 120px;
  position: relative;
}

.benefits .section-head {
  margin-bottom: 60px;
}

.benefits__body {
  position: relative;
  min-height: 460px;
}

.benefits__photo {
  position: absolute;
  object-fit: cover;
  z-index: 1;
}

.benefits__photo--top {
  top: -470px;
  right: calc(-1 * var(--content-padding));
  width: 500px;
  height: 360px;
}

.benefits__photo--bottom {
  bottom: -290px;
  left: calc(-1 * var(--content-padding));
  width: 400px;
  height: 330px;
}

.benefits__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 13px;
  line-height: 30px;
  color: #000;
  max-width: 690px;
  margin-left: auto;
  margin-right: auto;
}

.benefits__list li {
  position: relative;
  padding-left: 16px;
}

.benefits__list li::before {
  content: "■";
  position: absolute;
  left: 0;
  top: 0;
}

.benefits__list strong {
  font-weight: 700;
  margin-right: 10px;
}

/* ============================================
   Q&A
============================================ */
.faq {
  background: var(--bg-gray);
  padding-block: 120px;
}

.faq .section-head {
  margin-bottom: 40px;
}

.faq__list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid #000;
}

.faq-item:last-child {
  border-bottom: 1px solid #000;
}

.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 24px 0;
  text-align: left;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.faq-item__q > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.faq-item__q .heading-en {
  font-size: 16px;
}

.faq-item__icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: #000;
  transition: transform 0.3s;
}

.faq-item__icon::before {
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
}

.faq-item__icon::after {
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-item__q[aria-expanded="true"] .faq-item__icon::after {
  transform: translateX(-50%) scaleY(0);
}

.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s;
}

.faq-item__q[aria-expanded="true"] + .faq-item__a {
  grid-template-rows: 1fr;
}

.faq-item__a > p {
  overflow: hidden;
  font-size: 14px;
  line-height: 30px;
  color: #000;
}

.faq-item__q[aria-expanded="true"] + .faq-item__a > p {
  padding-bottom: 24px;
}

/* ============================================
   HOW TO
============================================ */
.howto {
  background: var(--bg-beige);
  padding-block: 120px;
  position: relative;
}

.howto .section-head {
  margin-bottom: 60px;
}

.howto__body {
  max-width: 700px;
}

.howto__block + .howto__block {
  margin-top: 60px;
}

.howto__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 40px;
  background: transparent;
  color: #000;
  border: 1px solid #000;
  font-size: 14px;
  margin-bottom: 24px;
}

.howto__text {
  font-size: 12px;
  line-height: 30px;
  color: #000;
}

.howto-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}

.howto-step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  align-items: start;
  position: relative;
}

.howto-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid #000;
  border-radius: 50%;
  font-size: 14px;
  background: var(--bg-beige);
  z-index: 1;
}

/* connector line between circles (Figma Line 15-17, ids 4:123-4:125) */
.howto-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 50px;
  width: 1px;
  height: calc(100% + 30px);
  background: #000;
}

.howto-step__body {
  padding-top: 8px;
}

.howto-step__title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}

.howto-step__desc {
  font-size: 12px;
  line-height: 30px;
  color: #000;
}

.howto__photo {
  position: absolute;
  right: calc(50% - var(--content-width) / 2);
  top: 592px;
  width: 480px;
  height: 550px;
  object-fit: cover;
  z-index: 1;
}

/* ============================================
   CONTACT
============================================ */
.contact {
  background: var(--bg-gray);
  padding-block: 120px;
}

.contact .section-head {
  margin-bottom: 60px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.form-field label {
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.form-field__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 25px;
  background: transparent;
  border: 1px solid #c00;
  color: #c00;
  font-size: 10px;
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #d3d3d3;
  font-size: 14px;
  font-family: inherit;
}

.form-field input {
  height: 70px;
}

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

.form-consent {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 12px;
  margin-top: 20px;
  cursor: pointer;
}

.form-consent input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #000;
}

.form-submit {
  width: 400px;
  max-width: 100%;
  height: 70px;
  margin: 10px auto 0;
  background: #000;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  transition: opacity 0.2s;
}

.form-submit:disabled {
  background: #999;
  cursor: not-allowed;
}

.form-submit:not(:disabled):hover {
  opacity: 0.85;
}

/* ============================================
   Footer
============================================ */
.site-footer {
  background: var(--bg-black);
  color: #fff;
  padding-block: 40px;
  text-align: center;
}

.site-footer__nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  margin-bottom: 20px;
}

.site-footer__nav a:hover {
  text-decoration: underline;
}

.site-footer__copy {
  font-size: 10px;
}

/* ============================================
   Responsive (Tablet) — ≤ 1024px
============================================ */
@media (max-width: 1024px) {
  :root {
    --content-padding: 60px;
  }

  .section-head__en {
    font-size: 56px;
  }

  /* Hamburger panel wider on tablet */
  .global-nav {
    width: 50%;
  }

  /* INTERVIEW: arrows pulled inside container */
  .interview__arrow--prev {
    left: -40px;
  }
  .interview__arrow--next {
    right: -40px;
  }

  /* HOW TO photo scaled */
  .howto__photo {
    width: 360px;
    height: 440px;
    top: auto;
    bottom: 60px;
  }
}

/* ============================================
   Responsive (SP) — ≤ 768px
============================================ */
@media (max-width: 768px) {
  :root {
    --content-padding: var(--content-padding-sp);
  }

  /* Shared */
  .section-head__en {
    font-size: 40px;
    letter-spacing: 0.06em;
  }
  .section-head {
    margin-bottom: 36px;
  }
  .section-head__lead {
    font-size: 14px;
    line-height: 26px;
    margin-top: 16px;
  }
  .section-head__sub {
    font-size: 13px;
  }

  /* Header */
  .site-header {
    padding: 16px 20px;
  }
  .site-header__menu {
    font-size: 12px;
    gap: 4px;
  }
  .site-header__menu-icon {
    width: 24px;
    height: 14px;
  }

  /* Global nav */
  .global-nav {
    width: 80%;
  }
  .global-nav__list {
    padding: 80px 30px 40px;
    gap: 20px;
  }
  .global-nav__link {
    font-size: 16px;
  }

  /* Hero */
  .hero {
    min-height: 500px;
  }
  .hero::before {
    width: 100%;
    height: 320px;
    max-width: calc(100% - 24px);
  }
  .hero__logos {
    gap: 24px;
  }
  .hero__logo--ame { width: 70px; height: 108px; }
  .hero__logo--dct { width: 110px; height: 49px; }
  .hero__logo--cyan { width: 120px; height: 39px; }
  .hero__subtitle {
    font-size: 18px;
    padding-bottom: 14px;
    margin-top: 24px;
  }

  /* CONCEPT */
  .concept {
    padding-block: 60px;
  }
  .concept__brands {
    max-width: 100%;
    gap: 40px;
  }
  .concept-brand {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: left;
  }
  .concept-brand__logo {
    height: auto;
  }
  .concept-brand__logo--dct img { max-height: 50px; }
  .concept-brand__logo--ame img { max-height: 120px; }
  .concept-brand__logo--cyan img { max-height: 40px; }
  .concept-brand__title {
    font-size: 18px;
    line-height: 32px;
  }
  .concept__photo-main {
    position: static;
    width: 100%;
    height: 280px;
    margin-top: 40px;
  }
  .concept__photo-sub img {
    position: static;
    width: 100%;
    height: 220px;
    margin-top: 20px;
  }

  /* CURRICULUM */
  .curriculum {
    padding-block: 60px 30px;
  }
  .curriculum .section-head {
    margin-bottom: 36px;
  }
  .curriculum__inner {
    padding-inline: var(--content-padding-sp);
  }
  .curriculum__content {
    margin-left: 0;
    padding-left: 0;
  }
  .curriculum-step__head {
    grid-template-columns: 110px 1fr;
    gap: 14px;
  }
  .curriculum-step__badge {
    width: 110px;
    height: 32px;
    font-size: 12px;
  }
  .curriculum-step__title {
    font-size: 13px;
  }
  .curriculum-step__desc {
    font-size: 13px;
    line-height: 24px;
  }

  /* GALLERY */
  .gallery {
    padding-block: 0 60px;
  }
  .gallery__curriculum-photo {
    position: static;
    width: 100%;
    margin-bottom: 40px;
  }
  .gallery__tabs {
    margin-bottom: 30px;
    gap: 20px;
  }
  .gallery__tab {
    flex: 1;
    width: auto;
    font-size: 12px;
  }
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  /* IN NUMBERS */
  .numbers__photos {
    grid-template-columns: 1fr 1fr;
  }
  .numbers__photos img {
    height: 200px;
  }
  .numbers .container {
    padding-block: 50px 60px;
  }
  .numbers__stats {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .numbers-stat__num {
    font-size: 80px;
  }
  .numbers-stat__ratio-img {
    width: 140px;
  }

  /* INTERVIEW */
  .interview {
    padding-block: 60px 100px;
  }
  .interview__arrow {
    width: 40px;
    height: 40px;
    top: auto;
    bottom: -70px;
    transform: none;
  }
  .interview__arrow--prev {
    left: calc(50% - 50px);
    right: auto;
  }
  .interview__arrow--next {
    left: calc(50% + 10px);
    right: auto;
  }
  .interview__body {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .interview__photo {
    height: 280px;
  }

  /* LOOKING FOR */
  .looking {
    padding-block: 60px 0;
  }
  .looking__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .looking-card {
    padding: 24px 20px 20px 36px;
  }
  .looking__tagline {
    margin-top: 60px;
  }
  .looking__photo {
    margin-top: 30px;
    line-height: 0;
  }
  .looking__photo img {
    position: static;
    width: 100%;
    height: 220px;
    margin: 0;
  }

  /* JOB DETAIL */
  .jobdetail {
    padding-block: 60px;
  }
  .jobdetail__tabs {
    gap: 20px;
  }
  .jobdetail__tab {
    flex: 1;
    width: auto;
    font-size: 12px;
  }
  .jobtable__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 0;
  }

  /* BENEFITS */
  .benefits {
    padding-block: 60px;
  }
  .benefits__body {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .benefits__photo {
    position: static;
    width: 100%;
    height: 220px;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
  }
  .benefits__photo--top {
    order: -1;
  }
  .benefits__list {
    font-size: 13px;
    line-height: 22px;
    gap: 0;
  }
  .benefits__list li {
    padding: 16px 0 16px 18px;
    border-bottom: 1px solid #000;
  }
  .benefits__list li:first-child {
    border-top: 1px solid #000;
  }
  .benefits__list li::before {
    top: 16px;
  }
  .benefits__list strong {
    display: block;
    font-weight: 700;
    margin: 0 0 6px;
    font-size: 14px;
  }

  /* FAQ */
  .faq {
    padding-block: 60px;
  }
  .faq-item__q {
    font-size: 12px;
    padding: 18px 0;
  }
  .faq-item__a > p {
    font-size: 13px;
    line-height: 24px;
  }

  /* HOW TO */
  .howto {
    padding-block: 60px;
  }
  .howto .section-head--right {
    text-align: center;
  }
  .howto__body {
    max-width: 100%;
  }
  .howto__photo {
    position: static;
    width: 100%;
    height: 280px;
    margin-top: 40px;
  }
  .howto-step {
    grid-template-columns: 40px 1fr;
  }
  .howto-step__num {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }
  .howto-step:not(:last-child)::before {
    left: 20px;
    top: 40px;
  }

  /* CONTACT */
  .contact {
    padding-block: 60px;
  }
  .form-field input {
    height: 56px;
    padding: 14px 16px;
  }
  .form-field textarea {
    padding: 14px 16px;
  }
  .form-submit {
    width: 100%;
  }

  /* Footer */
  .site-footer {
    padding-block: 30px;
  }
  .site-footer__nav {
    font-size: 9px;
  }
  .site-footer__copy {
    font-size: 9px;
  }
}
