/* ─── IMPORT SHARED STYLES ──────────────────────────────────────────────────
   Nav, dropdown, reveal, footer, tokens, and reset from main.css
──────────────────────────────────────────────────────────────────────────── */
@import url('../main.css');


/* ─── FAQ SECTION ────────────────────────────────────────────────────────── */

.faq {
  min-height: 100svh;
  padding: calc(var(--nav-height) + 60px) 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-bg);
}

/* Header */
.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-title {
  font-family: var(--font-display);
 font-size: clamp(16px, 1.8vw, 28px);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 24px;
}

.faq-rule {
  width: 60px;
  height: 1px;
  background: var(--color-accent);
  margin: 0 auto;
}

/* List */
.faq-list {
  width: 100%;
  max-width: 780px;
  padding: 0 40px;
}

/* Individual item */
.faq-item {
  border-bottom: 1px solid rgba(245, 242, 237, 0.12);
}

.faq-item:first-child {
  border-top: 1px solid rgba(245, 242, 237, 0.12);
}

/* Question button */
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(13px, 1.2vw, 17px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  text-align: left;
  gap: 20px;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-item.open .faq-question {
  color: var(--color-accent);
}

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--color-accent);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.35s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22, 0.6, 0.36, 1);
}

.faq-answer p {
  font-family: var(--font-body);
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--color-white);
  opacity: 0.75;
  padding: 0 0 28px;
}

/* Contact button */
.faq-contact {
  margin-top: 64px;
  display: flex;
  justify-content: center;
}

.faq-cta {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-bg);
  background: var(--color-white);
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 38px;
  transition:
    background 0.35s ease,
    color      0.35s ease,
    transform  0.25s ease;
}

.faq-cta:hover {
  background: var(--color-accent);
  color: var(--color-bg);
  transform: translateY(-2px);
}


/* ─── FOOTER ─────────────────────────────────────────────────────────────── */

.site-footer {
  position: relative;
  z-index: 10;
  scroll-snap-align: none;
 display: flex;
}
.footer-left {
  margin: auto;
}
/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .faq-list      { padding: 0 24px; }
  .faq-question  { font-size: 12px; }

  .hamburger-label {
    display: none;
  }

  .hamburger-icon {
    display: flex;
  }

  /* Show "More" in place of "Behind The Curtain" in the dropdown on mobile */
  .hamburger-label--desktop { display: none; }
  .hamburger-label--mobile  { display: inline; }
}