/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--beige-2); padding-block: clamp(20px, 3vw, 40px) var(--section-y); }
.section-head { text-align: center; max-width: 46ch; margin: 0 auto clamp(36px, 5vw, 56px); }
.section-head h2 { font-size: clamp(34px, 5vw, 56px); margin-bottom: 14px; }
.section-head > p { font-size: 14px; color: var(--ink-soft); }

.accordion { max-width: 720px; margin-inline: auto; display: grid; gap: 14px; }
.acc-item {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(252, 251, 249, 0.55);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  backdrop-filter: blur(18px) saturate(170%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 30px -22px rgba(36, 28, 24, 0.5),
              inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease),
              background-color 0.35s var(--ease);
}
.acc-item:hover { background: rgba(255, 255, 255, 0.7); }
.acc-item.is-open {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(194, 160, 119, 0.55);
  box-shadow: 0 26px 50px -32px rgba(36, 28, 24, 0.6),
              inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 20px clamp(20px, 3vw, 30px);
  font-size: 14.5px;
  font-weight: 400;
}
.acc-icon { position: relative; flex: 0 0 16px; height: 16px; }
.acc-icon::before, .acc-icon::after {
  content: "";
  position: absolute;
  background: var(--ink-soft);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.acc-icon::before { top: 7.5px; left: 0; width: 16px; height: 1.4px; }
.acc-icon::after { left: 7.3px; top: 0; width: 1.4px; height: 16px; }
.acc-item.is-open .acc-icon::after { transform: rotate(90deg); opacity: 0; }

.acc-panel {
  overflow: hidden;
  height: 0;
  transition: height 0.45s var(--ease);
}
.acc-panel p {
  padding: 0 clamp(20px, 3vw, 30px) 24px;
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 62ch;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--beige-2); padding-bottom: clamp(90px, 12vw, 150px); }
.contact-kicker {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 14px;
}
.booking-note {
  max-width: 46ch;
  margin: 18px auto 0;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--accent-deep);
  background: rgba(194, 160, 119, 0.14);
  border: 1px solid rgba(194, 160, 119, 0.3);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 26px);
}
.contact-card {
  position: relative;
  isolation: isolate;
  border-radius: 18px;
  padding: clamp(28px, 3.4vw, 40px) 24px;
  text-align: center;
  background: rgba(252, 251, 249, 0.5);
  -webkit-backdrop-filter: blur(20px) saturate(175%);
  backdrop-filter: blur(20px) saturate(175%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 16px 36px -26px rgba(36, 28, 24, 0.5),
              inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
              background-color 0.4s var(--ease);
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 55%);
}
.contact-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 30px 56px -32px rgba(36, 28, 24, 0.55),
              inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.contact-icon {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(194, 160, 119, 0.18);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  color: var(--accent-deep);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 6px;
}
.contact-card p { font-size: 13px; color: var(--ink-soft); margin-bottom: 14px; }
.contact-card a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.6;
  transition: color 0.3s var(--ease);
}
.contact-card a:hover { color: var(--accent-deep); }

