/* ============================================
   ARK NEXT Recruit Site - Stylesheet
   ============================================ */

/* Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.8;
  color: #2c2c2c;
  background-color: #faf9f7;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ---- Container ---- */
.container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
}

/* ---- Section Common ---- */
.section-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #8b7e6a;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.section-label--white {
  color: rgba(255, 255, 255, 0.8);
}

.section-header {
  text-align: center;
  margin-bottom: 6rem;
}

.section-header .section-label {
  margin-bottom: 1.6rem;
}

.section-title {
  font-family: "Noto Serif JP", serif;
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #1a1a1a;
}

/* ---- Fade Up Animation ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  transform: scale(1.05);
  animation: heroZoom 8s ease forwards;
}

.hero__slide--active {
  opacity: 1;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.45) 100%
  );
  z-index: 1;
}

.hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: #fff;
  width: 90%;
}

.hero__label {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  margin-bottom: 2.4rem;
  opacity: 0;
  animation: fadeInUp 1s 0.3s forwards;
}

.hero__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 7.2rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeInUp 1s 0.6s forwards;
}

.hero__subtitle {
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  margin-bottom: 4rem;
  opacity: 0;
  animation: fadeInUp 1s 0.9s forwards;
}

.hero__lead {
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  opacity: 0;
  animation: fadeInUp 1s 1.2s forwards;
  padding: 1.6rem 3.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero__scroll span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ============================================
   Message
   ============================================ */
.message {
  padding: 12rem 0 10rem;
}

.message__inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 6rem;
  align-items: center;
}

.message__heading {
  font-family: "Noto Serif JP", serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin-bottom: 3.2rem;
  color: #1a1a1a;
}

.message__body {
  font-size: 1.5rem;
  line-height: 2.2;
  color: #555;
  margin-bottom: 2rem;
}

.message__author {
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  color: #8b7e6a;
  margin-top: 3.2rem;
  letter-spacing: 0.1em;
}

.message__image {
  position: relative;
}

.message__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 2px;
}

.message__image::after {
  display: none;
}

/* ============================================
   About
   ============================================ */
.about {
  padding: 10rem 0;
  background-color: #f0ede8;
}

.about__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12rem;
  margin-bottom: 8rem;
}

.about__text p {
  font-size: 1.5rem;
  line-height: 2.2;
  color: #555;
  margin-bottom: 2rem;
}

.about__numbers {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-shrink: 0;
}

.about__number-item {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.about__number-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 7.2rem;
  font-weight: 300;
  line-height: 1;
  color: #8b7e6a;
}

.about__number-unit {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  color: #8b7e6a;
}

.about__number-label {
  display: block;
  width: 100%;
  font-size: 1.3rem;
  color: #888;
  margin-top: 0.4rem;
}

/* Services */
.about__services-section {
  position: relative;
  margin-top: 6rem;
}

.about__services-bg,
.about__services-overlay {
  display: none;
}

.about__services-inner {
  position: relative;
}

.about__services-header {
  margin-bottom: 3.2rem;
}

.about__services-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 1rem;
}

.about__services-title {
  font-family: "Noto Serif JP", serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: 0.08em;
}

.about__services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.about__services-dots {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 2.4rem;
}
.about__services-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}
.about__services-dot.active {
  background: #8b7e6a;
}

.about__service-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  aspect-ratio: 3 / 4;
}

.about__service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.about__service-icon {
  position: absolute;
  inset: 0;
}

.about__service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  display: block;
}

.about__service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.05) 100%
  );
  pointer-events: none;
}

.about__service-card h4,
.about__service-card p {
  position: absolute;
  left: 2rem;
  right: 2rem;
  z-index: 1;
  font-family: "Noto Serif JP", serif;
}

.about__service-card h4 {
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.4rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.05em;
  text-align: center;
}

.about__service-card p {
  bottom: 1.8rem;
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  letter-spacing: 0.03em;
  text-align: center;
}

/* ============================================
   Culture
   ============================================ */
.culture {
  padding: 10rem 0;
}

/* MVV */
.culture__mvv {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 8rem;
}

.culture__mvv-item {
  padding: 4rem 4.8rem;
  background: #fff;
  border-radius: 4px;
  border-left: 4px solid #8b7e6a;
}

.culture__mvv-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #8b7e6a;
  margin-bottom: 1.6rem;
  letter-spacing: 0.05em;
}

.culture__mvv-label span {
  font-family: "Noto Serif JP", serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-left: 1rem;
  color: #999;
}

.culture__mvv-title {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.8;
  color: #1a1a1a;
  margin-bottom: 1.6rem;
}

.culture__mvv-text {
  font-size: 1.4rem;
  line-height: 2;
  color: #666;
}

/* 3つの価値観 */
.culture__values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
  margin-bottom: 8rem;
}

.culture__value-card {
  padding: 4rem;
  background: #fff;
  border-radius: 4px;
  border-left: 3px solid #8b7e6a;
  transition: transform 0.3s, box-shadow 0.3s;
}

.culture__value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.culture__value-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.6rem;
  font-weight: 300;
  color: #8b7e6a;
  line-height: 1;
  display: block;
  margin-bottom: 1.6rem;
}

.culture__value-title {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1.6rem;
  color: #1a1a1a;
}

.culture__value-text {
  font-size: 1.4rem;
  line-height: 2;
  color: #666;
}

/* 四方よしの循環 */


/* ============================================
   Benefits
   ============================================ */
.benefits {
  padding: 10rem 0;
  background: #f0ede8;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.2rem;
}

.benefits__item {
  background: #fff;
  padding: 4rem 3.2rem;
  border-radius: 4px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.benefits__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.benefits__icon {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.benefits__item h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  color: #1a1a1a;
}

.benefits__item p {
  font-size: 1.3rem;
  color: #777;
  line-height: 1.8;
}

/* ============================================
   Jobs
   ============================================ */
.jobs {
  padding: 10rem 0;
}

.jobs__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}

.jobs__item {
  background: #fff;
  border: 1px solid #e8e4de;
  border-radius: 4px;
  padding: 3rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.jobs__item:hover {
  border-color: #8b7e6a;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.jobs__item-header {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.jobs__item-tag {
  display: inline-block;
  font-size: 1.2rem;
  padding: 0.3rem 1.2rem;
  border: 1px solid #8b7e6a;
  color: #8b7e6a;
  border-radius: 2px;
  letter-spacing: 0.05em;
}

.jobs__item-tag--new {
  background: #8b7e6a;
  color: #fff;
}

.jobs__item-title {
  font-family: "Noto Serif JP", serif;
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  color: #1a1a1a;
}

.jobs__item-desc {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.9;
  margin-bottom: 2rem;
}

.jobs__item-details {
  display: flex;
  gap: 2.0rem;
  margin-bottom: 2.4rem;
  flex-wrap: wrap;
}

.jobs__item-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
}

.jobs__item-detail-label {
  font-size: 1.2rem;
  color: #8b7e6a;
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.jobs__item-btn {
  display: inline-block;
  padding: 1rem 3.2rem;
  border: 1px solid #1a1a1a;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #1a1a1a;
  border-radius: 2px;
  transition: background-color 0.3s, color 0.3s;
}

.jobs__item-btn:hover {
  background: #1a1a1a;
  color: #fff;
  opacity: 1;
}

/* ============================================
   Flow
   ============================================ */
.flow {
  padding: 10rem 0;
  background: #f0ede8;
}

.flow__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.6rem;
}

.flow__step {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 1.2rem 2rem;
  background: #fff;
  border-radius: 4px;
}

.flow__step-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.2rem;
  font-weight: 300;
  color: #8b7e6a;
  line-height: 1;
  margin-bottom: 1.6rem;
}

.flow__step h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.flow__step p {
  font-size: 1.3rem;
  color: #777;
  line-height: 1.8;
}

.flow__step-arrow {
  width: 40px;
  height: 2px;
  background: #c4bdb2;
  margin-top: 6rem;
  position: relative;
  flex-shrink: 0;
}

.flow__step-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #c4bdb2;
  border-top: 2px solid #c4bdb2;
  transform: rotate(45deg);
}

/* ============================================
   Entry CTA
   ============================================ */
.entry {
  position: relative;
  padding: 12rem 0;
  overflow: hidden;
}

.entry__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.entry__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 30, 28, 0.7);
}

.entry__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.entry__title {
  font-family: "Noto Serif JP", serif;
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin-bottom: 2.4rem;
}

.entry__text {
  font-size: 1.5rem;
  line-height: 2;
  margin-bottom: 4rem;
  opacity: 0.85;
}

.entry__buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.entry__btn {
  display: inline-block;
  padding: 1.6rem 4rem;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  border-radius: 2px;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
}

.entry__btn:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.entry__btn--primary {
  background: #8b7e6a;
  color: #fff;
  border: 1px solid #8b7e6a;
}

.entry__btn--primary:hover {
  background: #7a6e5b;
}

.entry__btn--secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.entry__btn--secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* Entry Form */
.entry-form {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.entry-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.entry-form__field {
  display: flex;
  flex-direction: column;
}

.entry-form__field--full {
  grid-column: 1 / -1;
}

.entry-form__label {
  font-size: 1.3rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.6rem;
  letter-spacing: 0.03em;
}

.entry-form__req {
  font-size: 1.1rem;
  color: #e8a87c;
  margin-left: 0.4rem;
}

.entry-form__input,
.entry-form__select,
.entry-form__textarea {
  width: 100%;
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: border-color 0.3s, background 0.3s;
}

.entry-form__input::placeholder,
.entry-form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.entry-form__input:focus,
.entry-form__select:focus,
.entry-form__textarea:focus {
  outline: none;
  border-color: #8b7e6a;
  background: rgba(255, 255, 255, 0.15);
}

.entry-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23fff' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.4rem center;
  padding-right: 3.6rem;
}

.entry-form__select option {
  color: #333;
  background: #fff;
}

.entry-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.entry-form__radio-group {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  padding-top: 0.6rem;
}

.entry-form__radio {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.85);
}

.entry-form__radio input[type="radio"] {
  accent-color: #8b7e6a;
  width: 1.6rem;
  height: 1.6rem;
  cursor: pointer;
}

.entry-form__privacy {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.entry-form__privacy a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}

.entry-form__privacy a:hover {
  color: #fff;
  opacity: 1;
}

.entry-form__submit {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 1.6rem 5rem;
  background: #8b7e6a;
  color: #fff;
  border: 1px solid #8b7e6a;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  margin-top: 1rem;
  width: 100%;
  max-width: 320px;
}

.entry-form__submit:hover {
  background: #7a6e5b;
  transform: translateY(-2px);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 10rem 0;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid #e8e4de;
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.4rem 0;
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #1a1a1a;
  text-align: left;
  gap: 2rem;
  transition: color 0.3s;
}

.faq__question:hover {
  color: #8b7e6a;
}

.faq__icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: #8b7e6a;
  transition: transform 0.3s;
}

.faq__icon::before {
  width: 16px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__icon::after {
  width: 1px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__question[aria-expanded="true"] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__answer.is-open {
  max-height: 300px;
}

.faq__answer p {
  padding: 0 0 2.4rem;
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  color: #666;
  line-height: 2;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: #141e1c;
  color: #fff;
  padding: 6rem 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 4rem;
  align-items: start;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand-top {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 0.8rem;
}

.footer__logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__company {
  font-size: 1.4rem;
  font-weight: 500;
}

.footer__address {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer__nav a {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.footer__nav a:hover {
  color: #fff;
  opacity: 1;
}

.footer__social {
  display: flex;
  gap: 1.6rem;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: border-color 0.3s, background-color 0.3s;
}

.footer__social a:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  opacity: 1;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.4rem 0;
}

.footer__bottom p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__bottom-nav {
  display: flex;
  gap: 2.4rem;
}

.footer__bottom-nav a {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
}

.footer__bottom-nav a:hover {
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .about__services-inner {
    padding: 4rem 3rem;
  }

  .flow__steps {
    flex-wrap: wrap;
  }

  .flow__step-arrow {
    display: none;
  }

  .flow__step {
    max-width: none;
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  /* Hero */
  .hero__title {
    font-size: 4.4rem;
  }

  .hero__subtitle {
    font-size: 1.4rem;
  }

  .hero__lead {
    font-size: 1.5rem;
    padding: 1.2rem 2rem;
    letter-spacing: 0.15em;
  }

  /* Message */
  .message {
    padding: 8rem 0;
  }

  .message__inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .message__heading {
    font-size: 2.6rem;
  }

  .message__image {
    display: none;
  }

  /* About */
  .about {
    padding: 8rem 0;
  }

  .about__content {
    flex-direction: column-reverse;
    gap: 4rem;
  }

  .about__numbers {
    flex-direction: row;
    justify-content: space-around;
  }

  .about__number-item {
    text-align: center;
    justify-content: center;
  }

  .about__number-value {
    font-size: 5rem;
  }

  .about__services {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
  }
  .about__services::-webkit-scrollbar {
    display: none;
  }
  .about__services-dots {
    display: flex;
  }
  .about__service-card {
    min-width: 100%;
    flex-shrink: 0;
    scroll-snap-align: start;
    aspect-ratio: 4 / 3;
  }
  .about__services-inner {
    padding: 0;
  }

  .about__services-title {
    font-size: 2.2rem;
  }

  /* Culture */
  .culture {
    padding: 8rem 0;
  }

  .culture__mvv-item {
    padding: 3rem;
  }

  .culture__mvv-title {
    font-size: 1.7rem;
  }

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

  .culture__value-card {
    padding: 2rem;
  }


  /* Benefits */
  .benefits {
    padding: 8rem 0;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  /* Jobs */
  .jobs {
    padding: 8rem 0;
  }

  .jobs__list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1.6rem;
    padding-bottom: 1rem;
  }

  .jobs__item {
    width: 75vw;
    min-width: 75vw;
    flex-shrink: 0;
    scroll-snap-align: center;
    padding: 2rem;
  }

  .jobs__item-title {
    font-size: 1.6rem;
  }

  .jobs__item-desc {
    font-size: 1.3rem;
  }

  .jobs__item-details {
    flex-direction: column;
    gap: 1rem;
  }

  /* Flow */
  .flow {
    padding: 8rem 0;
  }

  .flow__step {
    flex: 0 0 100%;
  }

  /* Entry */
  .entry {
    padding: 8rem 0;
  }

  .entry__bg {
    background-attachment: scroll;
  }

  .entry__title {
    font-size: 2.8rem;
  }

  .entry-form__row {
    grid-template-columns: 1fr;
  }

  /* FAQ */
  .faq {
    padding: 8rem 0;
  }

  /* Footer */
  .footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer__brand-top {
    justify-content: center;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
  }

  /* Section */
  .section-title {
    font-size: 2.6rem;
  }

  .section-header {
    margin-bottom: 4rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 3.6rem;
  }

  .about__numbers {
    flex-direction: row;
    justify-content: space-around;
  }
  .about__number-value {
    font-size: 3.6rem;
  }
  .about__number-unit {
    font-size: 1.4rem;
  }
  .about__number-label {
    font-size: 1.1rem;
  }
}