/* ===== Footer Top — Newsletter + Navigation ===== */

.footer-top-section {
  width: 100%;
  background-color: #CDC4BC;
  color: #332C30;
  padding: 48px 0;
}

.footer-top-section .page-width {
  max-width: var(--page-width, 1200px);
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 50px;
}

/* Newsletter */
.footer-top__newsletter {
  width: 100%;
  max-width: 960px;
  text-align: center;
}

.footer-top__subtitle {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #332C30;
  line-height: 1;
  margin-block-end: 16px;
}

.footer-top__title {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 48px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #FAF6F2;
  margin: 0 0 30px 0;
  line-height: 1;
}

.footer-top__form {
  display: flex;
  align-items: stretch;
  width: 100%;
  background-color: #FFFFFF;
}

.footer-top__input-wrapper {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
}

.footer-top__input {
  width: 100%;
  height: 56px;
  border: none;
  outline: none;
  background: transparent;
  color: #332C30;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 20px;
  text-align: left;
  display: block;
}

.footer-top__input::placeholder {
  color: #B6ABA2;
  opacity: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-top__input:-webkit-autofill {
  -webkit-text-fill-color: #332C30;
  -webkit-box-shadow: 0 0 0 1000px #FFFFFF inset;
}

.footer-top__submit {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 22px;
  min-width: 56px;
  border: none;
  background-color: #332C30;
  color: #FAF6F2;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.footer-top__submit:hover {
  background-color: #1F1A1D;
}

.footer-top__submit svg {
  display: block;
  width: 7px;
  height: 12px;
}

/* Navigation columns */
.footer-top__nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-top-nav {
  flex: 1 1 0;
  min-width: 200px;
  max-width: 300px;
  text-align: center;
  padding: 0 20px;
}

.footer-top-nav__title {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0 0 8px 0;
  line-height: 1.2;
  display: block;
}

/* 横线：在标题下方居中，30px 宽 */
.footer-top-nav__title::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #fff;
  margin: 12px auto 18px;
}

.footer-top-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-top-nav__item {
  padding: 6px 0;
}

.footer-top-nav__item a {
  color: #332C30;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding: 4px 0;
  transition: color 0.25s ease;
}

.footer-top-nav__item a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: #000000;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.footer-top-nav__item a:hover {
  color: #1F1A1D;
}

.footer-top-nav__item a:hover::after {
  transform: scaleX(1);
}

/* ===== Mobile ===== */
@media (max-width: 959px) {
  .footer-top__inner {
    row-gap: 30px;
  }

  .footer-top__title {
    font-size: 32px;
    letter-spacing: 0.2em;
  }

  .footer-top__nav {
    flex-direction: column;
    gap: 0;
  }

  .footer-top-nav {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    text-align: left;
    padding: 0;
    border-bottom: 1px solid rgba(51, 44, 48, 0.15);
  }

  .footer-top-nav__title {
    font-size: 22px;
    padding: 18px 0 12px;
  }

  .footer-top-nav__title::after {
    display: none;
  }

  .footer-top-nav__list {
    padding-bottom: 12px;
  }
}
