/* Ablaze Aesthetics — shared styles */

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #EBE9E4;
  color: #2C2A26;
}
.font-serif { font-family: 'Newsreader', serif; }

/* Selection */
::selection { background: #C9C5B9; color: #1A1917; }

/* Photo treatment for editorial cohesion */
.editorial-img { filter: grayscale(8%) sepia(6%) saturate(1.02); }

/* Soft warm shadow */
.shadow-warm { box-shadow: 0 24px 60px -30px rgba(184, 147, 94, 0.22); }
.shadow-warm-sm { box-shadow: 0 12px 28px -16px rgba(184, 147, 94, 0.18); }

/* Hero CTA glass */
.glass-cream {
  background: rgba(251, 249, 244, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease-out, transform 700ms ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Number eyebrow */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8C867D;
}

/* Italic gold word */
.word-pop {
  font-style: italic;
  color: #B8935E;
}

/* Section divider */
.hairline { background: #D1CEC7; height: 1px; }

/* No scrollbar utility */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Mobile menu */
#mobile-menu { transition: opacity 300ms ease, transform 300ms ease; }
body.menu-open { overflow: hidden; }

/* ideaaiincome credit (mandatory micro size) */
.iai-credit-wrap {
  background: #1A1917;
  padding: 8px 10px;
  display: flex;
  justify-content: center;
}
.iai-credit-btn {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 5px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: #E5E2DC;
  background: transparent;
  border: 1px solid rgba(184, 147, 94, 0.35);
  border-radius: 999px;
  text-decoration: none;
  transition: background 240ms ease, border-color 240ms ease, color 240ms ease;
}
.iai-credit-btn:hover {
  background: rgba(184, 147, 94, 0.12);
  border-color: rgba(184, 147, 94, 0.7);
  color: #FBF9F4;
}
.iai-credit-highlight {
  color: #D4A373;
  font-weight: 700;
}

/* FAQ accordion */
.acc-item .acc-icon { transition: transform 280ms ease; }
.acc-item[data-open="true"] .acc-icon { transform: rotate(45deg); }
.acc-item .acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 360ms ease;
}
.acc-item[data-open="true"] .acc-body { max-height: 600px; }

/* Sticky mobile booking bar */
.mobile-cta-bar {
  box-shadow: 0 -10px 30px -12px rgba(26, 25, 23, 0.18);
}

/* Active nav link */
.nav-active {
  color: #B8935E !important;
  position: relative;
}
.nav-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: #B8935E;
}

/* Form fields */
.field {
  width: 100%;
  background: #FBF9F4;
  border: 1px solid #D1CEC7;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #2C2A26;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.field:focus {
  outline: none;
  border-color: #B8935E;
  box-shadow: 0 0 0 1px #B8935E;
}
.field::placeholder { color: #AAA69D; }
textarea.field { resize: vertical; min-height: 140px; }
.field-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8C867D;
  margin-bottom: 8px;
}

/* ElevenLabs Conversational AI widget — push it above the sticky mobile CTA bar on small screens */
@media (max-width: 767px) {
  elevenlabs-convai {
    --el-widget-bottom-offset: 80px !important;
  }
  elevenlabs-convai::part(launcher),
  elevenlabs-convai::part(button) {
    bottom: 80px !important;
  }
}

/* Anchor offset for sticky nav (so anchored sub-sections don't hide under nav) */
.anchor-target {
  scroll-margin-top: 90px;
}
