/* =========================================================
   Behavioural rules ported from the original inline <style>
   blocks (index.html) so the carousel + FAQ work identically.
   ========================================================= */
html {
  scroll-behavior: smooth;
}

.prop-card--hidden {
  display: none !important;
}

.prop-card--active .prop-card__veil {
  display: none;
}

.faq__panel {
  display: none;
  flex-direction: column;
  gap: 10px;
}

.faq__panel--active {
  display: flex;
}

.faq__a {
  display: none;
  margin-top: 12px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--muted);
}

.faq__item--open .faq__a {
  display: block;
}

.faq__item--open .faq__chev {
  transform: rotate(180deg);
}

/* WordPress admin bar safety: keep fixed nav below the admin bar */
.admin-bar .nav {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .nav {
    top: 46px;
  }
}

/* =========================================================
   Legal document pages (Terms & Conditions / Privacy Policy)
   ported from the inline <style> in terms.html / privacy-policy.html
   ========================================================= */
.doc-hero {
  background: var(--teal);
  color: #fff;
  padding: 160px 56px 72px;
}
.doc-hero__kicker {
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sky);
  display: block;
  margin-bottom: 20px;
}
.doc-hero__title {
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.08;
  margin: 0 0 20px;
}
.doc-hero__meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: .04em;
}

.doc-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 40px 120px;
}
.doc-body h2 {
  font-family: var(--display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 500;
  color: var(--teal);
  margin: 56px 0 16px;
  padding-top: 8px;
  border-top: 1px solid var(--sky);
}
.doc-body h2:first-child {
  margin-top: 0;
}
.doc-body h3 {
  font-family: var(--ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--black);
  margin: 32px 0 10px;
}
.doc-body p {
  font-size: 15px;
  line-height: 1.75;
  color: #3a3a3a;
  margin: 0 0 16px;
}
.doc-body ul {
  margin: 0 0 16px 0;
  padding-left: 20px;
}
.doc-body ul li {
  font-size: 15px;
  line-height: 1.75;
  color: #3a3a3a;
  margin-bottom: 6px;
}
.doc-body a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.doc-body a:hover {
  color: var(--black);
}
.doc-callout {
  background: var(--bg-warm);
  border-left: 3px solid var(--sky);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 32px 0;
}
.doc-callout p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 700px) {
  .doc-hero {
    padding: 140px 24px 56px;
  }
  .doc-body {
    padding: 56px 24px 80px;
  }
}
