/* ===== Global header/footer alignment update ===== */
.header__inner--centered {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: auto;
  padding-top: 18px;
}

.brand--center {
  justify-self: center;
  align-items: center;
  padding: 0;
}

.brand__logo {
  height: 60px;
  width: auto;
}

.nav--desktop-left {
  justify-content: flex-end;
}

.nav--desktop-right {
  justify-content: flex-start;
}

.nav--desktop-left,
.nav--desktop-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header__enquire-row {
  display: flex;
  justify-content: center;
  padding: 10px 24px 14px;
}

.header__cta--center {
  min-width: 118px;
  text-align: center;
}

.footer-content--compact {
  max-width: 980px;
}

footer {
  margin-top: 28px;
  padding: 28px 0 24px;
  border-top: none;
  background: #050505;
}

.footer-sections {
  gap: 32px;
  margin-bottom: 22px;
}

.footer-section,
.footer-section::before,
.footer-sections::before,
.footer-section__title::before,
.footer-section__title::after {
  border-top: none !important;
  box-shadow: none !important;
  content: unset;
}

.footer-section__title {
  margin-bottom: 12px;
}

.footer-section__text,
.footer-contact__item,
.footer-contact__name {
  margin-top: 0;
}

.footer-section__text--tight {
  margin-bottom: 12px;
}

.footer-social {
  margin-top: 0;
}

.footer-bottom--compact {
  padding-top: 16px;
}

@media (min-width: 1061px) {
  .header__actions {
    display: none;
  }

  .nav--desktop {
    display: flex;
  }
}

@media (max-width: 1060px) {
  .header__inner--centered {
    grid-template-columns: 1fr auto;
    padding-top: 8px;
  }

  .header__inner--centered .brand--center {
    justify-self: start;
  }

  .brand__logo {
    height: 38px;
  }

  .header__enquire-row {
    display: none;
  }

  .nav--desktop-left,
  .nav--desktop-right {
    display: none;
  }
}

/* ===== FAQ Accordion Styles ===== */
.faq-container {
  margin: 0 auto;
}

.faq-section {
  margin-bottom: 36px;
}

.faq-section__title {
  font-family: 'Alta';
  font-size: 1.3rem;
  font-weight: 500;
  color: #f4efe6;
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  letter-spacing: 0.04em;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  color: #f4efe6;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  font-family: inherit;
  letter-spacing: 0.02em;
}

.faq-question:hover {
  color: #c6a46a;
}

.faq-question[aria-expanded="true"] {
  color: #c6a46a;
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.3s ease;
  color: #c6a46a;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  transition: all 0.3s ease;
  max-height: 0;
  opacity: 0;
}

.faq-answer.open {
  max-height: 1000px;
  opacity: 1;
  padding-bottom: 12px;
}

@media (max-width: 768px) {
  .faq-answer.open {
    max-height: 600px;
  }
}

.faq-answer p {
  color: rgba(244, 239, 230, 0.72);
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-section__title {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }

  .faq-question {
    font-size: 0.98rem;
    padding: 16px 0;
  }

  .faq-icon {
    width: 18px;
    height: 18px;
  }
}