/* ===== ORDER PROCESS ===== */
.order-process {
  min-height: auto;
  padding-top: clamp(72px, 9vw, 128px);
  padding-bottom: clamp(72px, 9vw, 128px);
  background: #efebe5;
  overflow: hidden;
}

.order-process-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  column-gap: clamp(32px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(52px, 7vw, 88px);
}

.order-process-heading .section-label,
.order-process-heading .section-title {
  grid-column: 1;
}

.order-process-heading .section-title {
  margin-bottom: 0;
}

.order-process-heading .section-subtitle {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  padding-bottom: 8px;
}

.order-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 38px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.order-steps::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 25px;
  right: 25px;
  height: 1px;
  background: linear-gradient(90deg, rgba(58, 143, 163, 0.7), rgba(58, 143, 163, 0.16));
}

.order-step {
  position: relative;
  min-width: 0;
}

.order-step-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  border: 1px solid rgba(58, 143, 163, 0.42);
  border-radius: 50%;
  background: #efebe5;
  color: var(--accent-hover);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.order-step h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.1vw, 31px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.order-step p {
  margin: 0;
  color: #6f665f;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 300;
  line-height: 1.55;
}

/* ===== FAQ ===== */
.faq-section {
  min-height: auto;
  padding-top: clamp(72px, 9vw, 128px);
  padding-bottom: clamp(72px, 9vw, 128px);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(48px, 9vw, 148px);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading .section-subtitle {
  max-width: 430px;
}

.faq-list {
  border-top: 1px solid rgba(30, 30, 30, 0.16);
}

.faq-list details {
  border-bottom: 1px solid rgba(30, 30, 30, 0.16);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 82px;
  padding: 20px 56px 20px 0;
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -0.025em;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 8px;
  width: 22px;
  height: 1px;
  background: var(--accent);
  transition: transform 0.45s var(--ease-expo);
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0deg);
}

.faq-list summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
  border-radius: 2px;
}

.faq-answer {
  padding: 0 64px 26px 0;
}

.faq-answer p {
  max-width: 650px;
  margin: 0;
  color: #6f665f;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(15px, 1.15vw, 17px);
  font-weight: 300;
  line-height: 1.7;
}

@media (max-width: 1000px) {
  .order-process-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .order-process-heading .section-subtitle {
    grid-column: 1;
    grid-row: auto;
    padding-bottom: 0;
  }

  .order-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 44px;
  }

  .order-steps::before {
    display: none;
  }

  .faq-layout {
    grid-template-columns: minmax(230px, 0.7fr) minmax(360px, 1.3fr);
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .order-process,
  .faq-section {
    padding-top: clamp(58px, 12vw, 82px);
    padding-bottom: clamp(58px, 12vw, 82px);
  }

  .order-process-heading {
    margin-bottom: 42px;
  }

  .order-steps {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 0;
  }

  .order-steps::before {
    display: block;
    top: 25px;
    bottom: 25px;
    left: 24px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(58, 143, 163, 0.7), rgba(58, 143, 163, 0.12));
  }

  .order-step {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    column-gap: 20px;
    padding-bottom: 34px;
  }

  .order-step:last-child {
    padding-bottom: 0;
  }

  .order-step-number {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }

  .order-step h3,
  .order-step p {
    grid-column: 2;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .faq-heading {
    position: static;
  }

  .faq-list summary {
    min-height: 72px;
    padding-right: 48px;
  }

  .faq-answer {
    padding-right: 46px;
  }
}

@media (max-width: 420px) {
  .order-step {
    column-gap: 16px;
  }

  .faq-list summary {
    min-height: 68px;
    padding-block: 18px;
    font-size: 22px;
  }

  .faq-answer {
    padding-right: 28px;
    padding-bottom: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-list summary::before,
  .faq-list summary::after {
    transition: none;
  }
}
