/* Heart & Mind Management Consulting — shared custom styles
   Complements the Tailwind Play CDN utilities. Keeps the brand's
   "tonal layers + soft corners + ambient lift" language from DESIGN.md. */

:root {
  --primary: #002045;
  --secondary: #13696a;
}

/* Smooth in-page anchor scrolling, offset for the sticky header. */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---- Hero ---- */
.hero-gradient {
  background: linear-gradient(135deg, rgba(0, 32, 69, 0.05) 0%, rgba(19, 105, 106, 0.05) 100%);
}

/* ---- Cards (ambient lift on hover) ---- */
.bento-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(26, 54, 93, 0.08);
}

/* ---- Service card top accents ---- */
.service-card-accent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
}
.mind-accent::before { background-color: #002045; }
.heart-accent::before { background-color: #13696a; }

/* ---- Brand bullet points ---- */
.custom-bullet-mind::before {
  content: "\25C6"; /* ◆ gold "Mind" diamond */
  color: #d39137;
  margin-right: 8px;
  font-size: 10px;
}
.custom-bullet-heart::before {
  content: "\25CF"; /* ● teal "Heart" circle */
  color: #13696a;
  margin-right: 8px;
  font-size: 10px;
}

/* ---- Material Symbols ---- */
.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  display: inline-block;
  vertical-align: middle;
}

/* ---- Scroll-reveal animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---- FAQ accordion ---- */
.faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer {
  max-height: 480px;
}
.faq-item .faq-icon {
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

/* ---- Mobile menu ---- */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.mobile-menu.open {
  max-height: 520px;
}
