/* Fortune Power — Clean solar brand */
:root {
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --white: #FFFFFF;
  --surface: #F6F7F8;
  --surface-alt: #FAFAFB;
  --hairline: #E8EAED;
  --heading: #0B0C0E;
  --body: #4B5563;
  --muted: #9CA3AF;
  --orange: #E8910C;
  --orange-bright: #F5A623;
  --orange-tint: #FDF3E3;
  --navy: #0A1628;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--body);
  font-family: var(--font-body);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.font-display {
  font-family: var(--font-display);
  color: var(--heading);
  letter-spacing: -0.02em;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* Top strip */
.fp-topstrip {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  font-weight: 500;
}

.fp-topstrip-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.45rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 640px) {
  .fp-topstrip-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .fp-topstrip-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.fp-topstrip-hours {
  display: none;
}

@media (min-width: 640px) {
  .fp-topstrip-hours {
    display: inline;
  }
}

.fp-topstrip-contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: auto;
}

.fp-topstrip-email {
  display: none;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s;
}

.fp-topstrip-email:hover {
  color: #fff;
}

@media (min-width: 768px) {
  .fp-topstrip-email {
    display: inline;
  }
}

.fp-topstrip-phone {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Standard header — logo left, nav + CTA right */
.fp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--hairline);
  transition: box-shadow 0.25s ease;
}

.fp-header-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  min-height: 4.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .fp-header-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .fp-header-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.fp-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.fp-logo img {
  height: 2.75rem;
  width: auto;
  object-fit: contain;
  display: block;
}

@media (min-width: 768px) {
  .fp-logo img {
    height: 3rem;
  }
}

.fp-nav {
  display: none;
  align-items: center;
  gap: 0.15rem 1.1rem;
  flex: 1;
  justify-content: center;
}

.fp-nav-link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--body);
  padding: 0.5rem 0;
  white-space: nowrap;
  transition: color 0.2s;
}

.fp-nav-link:hover {
  color: var(--heading);
}

.fp-nav-link.is-active {
  color: var(--heading);
  font-weight: 600;
}

.fp-nav-link.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.2rem;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
}

.fp-header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-left: auto;
  flex-shrink: 0;
}

.fp-header-phone {
  display: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.fp-header-phone:hover {
  color: var(--orange);
}

@media (min-width: 1280px) {
  .fp-header-phone {
    display: inline;
  }
}

.fp-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  padding: 0.65rem 1.15rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.fp-header-cta:hover {
  background: #d18108;
  transform: translateY(-1px);
}

.fp-header-cta-block {
  width: 100%;
  margin-top: 0.5rem;
}

.fp-menu-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  color: var(--heading);
  background: transparent;
  border: none;
  cursor: pointer;
}

.fp-menu-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.fp-mobile-menu {
  display: none;
  border-top: 1px solid var(--hairline);
  background: #fff;
  padding: 0.75rem 1rem 1.25rem;
}

.fp-mobile-menu.is-open,
.fp-mobile-menu:not([hidden]) {
  display: block;
}

.fp-mobile-nav {
  display: flex;
  flex-direction: column;
}

.fp-mobile-link {
  padding: 0.85rem 0.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--body);
  border-bottom: 1px solid var(--hairline);
}

.fp-mobile-link.is-active {
  color: var(--orange);
  font-weight: 600;
}

.fp-mobile-phone {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--heading);
  font-size: 1rem;
}

@media (min-width: 1024px) {
  .fp-nav {
    display: flex;
  }
  .fp-menu-btn {
    display: none;
  }
  .fp-mobile-menu {
    display: none !important;
  }
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0;
  padding: 0.8rem 1.6rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  background: #d18108;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(232, 145, 12, 0.25);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border: 1px solid var(--hairline);
  color: var(--heading);
  background: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  background: transparent;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.btn-hero-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

/* Full-bleed home hero */
.fp-hero {
  position: relative;
  min-height: 34rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

@media (min-width: 768px) {
  .fp-hero {
    min-height: min(88vh, 760px);
    align-items: flex-end;
  }
}

.fp-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  animation: heroKen 18s ease-out both;
}

.fp-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 22, 40, 0.9) 0%, rgba(10, 22, 40, 0.72) 48%, rgba(10, 22, 40, 0.35) 100%),
    linear-gradient(0deg, rgba(10, 22, 40, 0.55) 0%, transparent 50%);
  pointer-events: none;
}

@media (min-width: 768px) {
  .fp-hero-veil {
    background:
      linear-gradient(105deg, rgba(10, 22, 40, 0.88) 0%, rgba(10, 22, 40, 0.62) 42%, rgba(10, 22, 40, 0.28) 72%, rgba(10, 22, 40, 0.18) 100%),
      linear-gradient(0deg, rgba(10, 22, 40, 0.55) 0%, transparent 45%);
  }
}

.fp-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 2.75rem 1rem 3rem;
}

@media (min-width: 640px) {
  .fp-hero-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 768px) {
  .fp-hero-content {
    padding: 4.5rem 1.5rem 4rem;
  }
}

@media (min-width: 1024px) {
  .fp-hero-content {
    padding: 5.5rem 2rem 5rem;
  }
}

.fp-hero-brand {
  margin: 0 0 0.7rem;
  font-size: clamp(1.55rem, 6.5vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
  animation: fadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fp-hero-brand::after {
  content: '';
  display: block;
  width: 2.75rem;
  height: 3px;
  margin-top: 0.75rem;
  background: var(--orange);
  border-radius: 2px;
  animation: scaleIn 0.7s 0.2s both cubic-bezier(0.22, 1, 0.36, 1);
}

.fp-hero-title {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(1.85rem, 7.2vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: #fff;
  animation: fadeUp 0.9s 0.08s both cubic-bezier(0.22, 1, 0.36, 1);
}

.fp-hero-lead {
  margin: 1rem 0 0;
  max-width: 32rem;
  font-size: clamp(0.98rem, 2.4vw, 1.2rem);
  line-height: 1.55;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  animation: fadeUp 0.95s 0.14s both cubic-bezier(0.22, 1, 0.36, 1);
}

.fp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  animation: fadeUp 1s 0.22s both cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 768px) {
  .fp-hero-actions {
    margin-top: 1.85rem;
  }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scaleX(0); transform-origin: left center; }
  to { opacity: 1; transform: scaleX(1); transform-origin: left center; }
}

@keyframes heroKen {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

/* Section helpers */
.fp-slash {
  display: inline-block;
  width: 40px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 0.85rem;
}

.kicker {
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.fp-chapter {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.fp-chapter-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--orange);
  opacity: 0.45;
  flex-shrink: 0;
}

/* Pull-quote review band */
.fp-pullquote {
  background: var(--orange-tint);
  padding: 3.5rem 0;
}

.fp-pullquote-rule {
  height: 1px;
  background: rgba(232, 145, 12, 0.35);
}

.fp-pullquote blockquote {
  margin: 0;
  padding: 2rem 0;
  text-align: center;
}

.fp-pullquote blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.35rem, 3.2vw, 2.15rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--heading);
  margin: 0 0 1.25rem;
}

.fp-pullquote cite {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--body);
}

/* Editorial index (services) */
.fp-index {
  border-top: 1px solid var(--hairline);
}

.fp-index-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--hairline);
  transition: background 0.2s, padding-left 0.25s;
}

.fp-index-row:hover {
  padding-left: 0.5rem;
}

.fp-index-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--orange);
  min-width: 1.75rem;
}

.fp-index-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: -0.02em;
  transition: color 0.2s;
}

.fp-index-row:hover .fp-index-title {
  color: var(--orange);
}

.fp-index-desc {
  display: block;
  font-size: 0.875rem;
  color: var(--body);
  margin-top: 0.25rem;
  line-height: 1.5;
}

.fp-index-arrow {
  font-size: 1.35rem;
  color: var(--orange);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s, transform 0.25s;
}

.fp-index-row:hover .fp-index-arrow {
  opacity: 1;
  transform: none;
}

@media (max-width: 640px) {
  .fp-index-row {
    grid-template-columns: auto 1fr;
  }
  .fp-index-arrow {
    display: none;
  }
}

/* FAQ editorial */
.fp-faq {
  border-bottom: 1px solid var(--hairline);
}

.fp-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: -0.02em;
}

.fp-faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--orange);
  transition: transform 0.25s;
}

.fp-faq.is-open .fp-faq-icon {
  transform: rotate(180deg);
}

.fp-faq-panel {
  display: none;
  padding: 0 0 1.35rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--body);
}

.fp-faq.is-open .fp-faq-panel {
  display: block;
}

.service-tile {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--hairline);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.service-tile:hover {
  border-color: #dfe2e6;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  transform: translateY(-4px);
}

.service-tile img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-tile:hover img {
  transform: scale(1.04);
}

.stat-block {
  border-left: 3px solid var(--orange);
  padding-left: 1.25rem;
}

.fp-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  transition: box-shadow 0.25s;
}

.fp-card:hover {
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
}

.form-input {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--hairline);
  color: var(--heading);
  padding: 0.7rem 1rem;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input::placeholder {
  color: var(--muted);
}

.form-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 145, 12, 0.18);
}

.form-input option {
  background: var(--white);
  color: var(--heading);
}

.consent-row {
  border: 1px solid var(--hairline);
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: var(--surface-alt);
}

.contact-sidebar {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 2.5rem 2rem;
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-tint);
  border-radius: 10px;
  color: var(--orange);
}

.contact-icon-box svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.page-banner {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--white);
  border-bottom: 1px solid var(--hairline);
}

.page-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8, 18, 28, 0.88) 0%, rgba(8, 18, 28, 0.55) 42%, rgba(8, 18, 28, 0.28) 100%);
}

.page-banner-inner {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 3rem;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(11, 12, 14, 0.4);
  backdrop-filter: blur(6px);
}

.quote-modal.is-open {
  display: flex;
}

.quote-modal-panel {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.18);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.75rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
  transition: transform 0.2s;
}

.wa-float:hover {
  transform: scale(1.08);
}

.fp-footer {
  background: var(--white);
  border-top: 1px solid var(--hairline);
}

.fp-footer h3 {
  font-family: var(--font-body);
  letter-spacing: 0.08em;
}

.blog-content p {
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.8;
}

.blog-content h2 {
  color: var(--heading);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 2.25rem 0 0.875rem;
}

.blog-content h3 {
  color: var(--heading);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 1.75rem 0 0.75rem;
}

.blog-content ul,
.blog-content ol {
  margin: 0 0 1.25rem 1.25rem;
  list-style: disc;
}

.blog-content ol {
  list-style: decimal;
}

.blog-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.blog-content strong {
  color: var(--heading);
}

.blog-content a {
  color: var(--orange);
  font-weight: 600;
}

/* ---------- Chapter numbering ---------- */
.chapter-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.chapter-head .no {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--orange);
  letter-spacing: 0.04em;
}

.chapter-head .rule {
  width: 2.25rem;
  height: 1px;
  background: var(--heading);
  align-self: center;
}

.chapter-head .tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--heading);
  font-family: var(--font-body);
}

/* ---------- Editorial services index ---------- */
.index-list {
  border-top: 2px solid var(--heading);
}

.index-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 1.25rem;
  padding: 1.6rem 0.25rem;
  border-bottom: 1px solid var(--hairline);
  transition: background 0.2s, padding 0.25s;
}

@media (min-width: 768px) {
  .index-row {
    grid-template-columns: 3.5rem minmax(0, 30%) 1fr auto;
    gap: 2rem;
  }
}

.index-row:hover {
  background: var(--surface-alt);
  padding-left: 0.9rem;
  padding-right: 0.9rem;
}

.index-row .idx {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.2s;
}

.index-row:hover .idx {
  color: var(--orange);
}

.index-row .title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.index-row .desc {
  font-size: 0.92rem;
  color: var(--body);
  line-height: 1.55;
}

@media (max-width: 767px) {
  .index-row .desc {
    grid-column: 2;
  }
}

.index-row .arrow {
  font-size: 1.3rem;
  color: var(--heading);
  transition: transform 0.25s, color 0.2s;
  justify-self: end;
}

.index-row:hover .arrow {
  transform: translateX(6px);
  color: var(--orange);
}

/* ---------- Pull-quote review band ---------- */
.pullquote-band {
  background: var(--orange-tint);
  border-top: 1px solid var(--heading);
  border-bottom: 1px solid var(--heading);
  padding: 4.5rem 0;
}

.pullquote-band blockquote {
  margin: 0 auto;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  line-height: 1.3;
  color: var(--heading);
  letter-spacing: -0.01em;
  text-align: center;
  max-width: 56rem;
}

.pullquote-band blockquote .qmark {
  color: var(--orange);
}

.pullquote-band cite {
  display: block;
  margin-top: 1.75rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--body);
  text-align: center;
}

/* ---------- Editorial FAQ (Q&A) ---------- */
.faq-editorial {
  border-top: 2px solid var(--heading);
}

.faq-editorial .faq-item {
  padding: 1.9rem 0;
  border-bottom: 1px solid var(--hairline);
  display: grid;
  gap: 0.7rem;
}

@media (min-width: 900px) {
  .faq-editorial .faq-item {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 3rem;
  }
}

.faq-editorial .faq-q {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.35;
  color: var(--heading);
}

.faq-editorial .faq-q::before {
  content: 'Q. ';
  color: var(--orange);
  font-style: italic;
}

.faq-editorial .faq-a {
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--body);
}
