/**
 * =============================================================================
 * NEXUS LIVING HUB — HOMEPAGE STYLES
 * assets/css/home.css
 *
 * Page-specific styles for index.html only.
 * Global styles, resets, nav, footer, modal, WA button are in global.css.
 * All values reference CSS custom properties from style-tokens.css.
 * Zero hardcoded hex colours, fonts, or spacing values.
 *
 * Sections:
 *  01. Section 1  — Hero
 *  02. Section 2  — Trust Bar
 *  03. Section 3  — Services Overview
 *  04. Section 4  — Why Nexus (USPs)
 *  05. Section 5  — Our Process (Timeline)
 *  06. Section 6  — Featured Projects
 *  07. Section 7  — What's Included
 *  08. Section 8  — Testimonials Carousel
 *  09. Section 9  — CTA Banner
 *  10. Section 10 — FAQ Accordion
 * =============================================================================
 */


/* =============================================================================
   01. HERO SECTION
   ============================================================================= */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

/* ── Background gradient (placeholder until real photo is added) ──────────── */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: linear-gradient(
    160deg,
    var(--color-accent-dark) 0%,
    var(--color-bg-dark) 55%,
    var(--color-bg-dark) 100%
  );
}

/* ── Grain / noise texture overlay (SVG feTurbulence at low opacity) ─────── */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.04;
  pointer-events: none;
}

/* ── Directional gradient overlay (darkens bottom-to-top for text contrast) ─ */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgba(44, 31, 20, 0.70) 0%,
    rgba(44, 31, 20, 0.30) 50%,
    rgba(44, 31, 20, 0.15) 100%
  );
  pointer-events: none;
}

/* ── Content area ─────────────────────────────────────────────────────────── */
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 96px;   /* clear fixed nav */
  padding-bottom: var(--space-3xl);
}

.hero__inner {
  max-width: 820px;
  text-align: center;
  margin-inline: auto;
}

/* ── H1 Headline ─────────────────────────────────────────────────────────── */
.hero__headline {
  font-family: var(--font-display);
  font-size: var(--hero-size);
  font-weight: var(--fw-bold);
  color: var(--color-text-on-dark);
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-lg);
}

/* Each word wrapped in <span class="word"> for GSAP stagger */
.hero__headline .word {
  display: inline-block;
  margin-right: 0.18em;
}

.hero__headline .word:last-child {
  margin-right: 0;
  color: var(--color-accent-gold); /* "Reimagined." gets the gold tint */
}

/* ── Sub-headline ─────────────────────────────────────────────────────────── */
.hero__subheadline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: var(--fw-regular);
  color: var(--color-text-on-dark);
  opacity: 0.88;
  line-height: var(--lh-relaxed);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

/* ── CTA row ─────────────────────────────────────────────────────────────── */
.hero__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

@media (min-width: 480px) {
  .hero__ctas {
    flex-direction: row;
    justify-content: center;
  }
}

.hero__cta-btn {
  min-width: 200px;
  justify-content: center;
}

/* ── Scroll indicator ─────────────────────────────────────────────────────── */
.hero__scroll-indicator {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--color-text-on-dark);
  opacity: 0.65;
  animation: scroll-bounce 1.8s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}


/* =============================================================================
   02. TRUST BAR
   ============================================================================= */

.trust-bar {
  background-color: var(--color-bg-primary);
  padding: var(--section-pad-mobile);
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .trust-bar {
    padding: var(--section-pad-tablet);
  }
}

@media (min-width: 1280px) {
  .trust-bar {
    padding: var(--space-2xl) 0;
  }
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl) var(--space-lg);
  justify-items: center;
}

@media (min-width: 768px) {
  .trust-bar__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
  }
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  text-align: center;
}

.trust-stat__icon {
  font-size: 2.25rem;
  color: var(--color-accent-gold);
  margin-bottom: var(--space-xs);
  line-height: 1;
}

.trust-stat__number {
  font-family: var(--font-numbers);
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: var(--fw-bold);
  color: var(--color-accent-dark);
  line-height: 1;
  letter-spacing: var(--ls-tight);
}

.trust-stat__label {
  font-family: var(--font-accent);
  font-size: var(--small-size);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-text-muted);
  line-height: var(--lh-normal);
}


/* =============================================================================
   03. SERVICES OVERVIEW
   ============================================================================= */

.services-overview {
  background-color: var(--color-bg-secondary);
  padding: var(--section-pad-mobile);
}

@media (min-width: 768px) {
  .services-overview {
    padding: var(--section-pad-tablet);
  }
}

@media (min-width: 1280px) {
  .services-overview {
    padding: var(--section-pad-desktop);
  }
}

/* ── 5-column grid (desktop) / horizontal scroll snap (mobile) ───────────── */
/* Wrapper is positioned so we can layer a right-edge fade cue that signals
   more cards are scrollable horizontally on mobile. */
.services-grid-wrap {
  position: relative;
}
.services-grid-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: var(--space-sm);
  width: 32px;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(245, 240, 230, 0) 0%,
    var(--color-bg-secondary) 90%
  );
  opacity: 0.6;
}

.services-grid {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-sm);    /* space for scrollbar */
  padding-right: var(--space-lg);     /* trailing room so last card isn't flush */
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent-gold) var(--color-bg-secondary);
}

.services-grid::-webkit-scrollbar {
  height: 4px;
}

.services-grid::-webkit-scrollbar-thumb {
  background: var(--color-accent-gold);
  border-radius: var(--radius-pill);
}

/* Scroll-cue chip under the carousel — subtle nudge that more cards exist. */
.services-scroll-cue {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  margin-top: var(--space-sm);
  font-family: var(--font-accent);
  font-size: var(--small-size);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-text-muted);
  opacity: 0.75;
}
.services-scroll-cue::before,
.services-scroll-cue::after {
  content: "";
  display: inline-block;
  width: 1.75rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

@media (min-width: 1024px) {
  .services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow-x: visible;
    padding-bottom: 0;
    padding-right: 0;
    scroll-snap-type: none;
  }
  .services-grid-wrap::after,
  .services-scroll-cue {
    display: none;
  }
}

/* ── Service card ─────────────────────────────────────────────────────────── */
.service-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-md) var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-xs);
  transition: var(--transition-card), border-left-color var(--transition-base);
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .service-card {
    flex: unset;
  }
}

/* Gold left border accent on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: var(--color-accent-gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition-base);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleY(1);
}

/* Photo area at top of service cards */
.service-card__photo {
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
  align-self: stretch;
  margin: calc(-1 * var(--space-xl)) calc(-1 * var(--space-md)) var(--space-sm);
  overflow: hidden;
}
.service-card__photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--color-bg-primary));
  pointer-events: none;
}
.service-card:hover .service-card__photo {
  transform: scale(1.05);
}
.service-card--has-photo .service-card__icon {
  display: none;
}
@media (min-width: 768px) {
  .service-card__photo { height: 180px; }
}

.service-card__icon {
  font-size: 2.75rem;
  color: var(--color-accent-gold);
  line-height: 1;
  margin-bottom: var(--space-xs);
  transition: transform var(--transition-base);
}

.service-card:hover .service-card__icon {
  transform: scale(1.1);
}

.service-card__name {
  font-family: var(--font-heading);
  font-size: var(--h4-size);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  line-height: var(--lh-snug);
}

.service-card__desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: var(--lh-relaxed);
  flex: 1;
  max-width: 100%;
}

.service-card__link {
  font-family: var(--font-accent);
  font-size: var(--small-size);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-accent-gold);
  text-decoration: none;
  margin-top: var(--space-xs);
  transition: color var(--transition-fast), gap var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.service-card__link:hover {
  color: var(--color-cta);
  gap: 0.625rem;
}


/* =============================================================================
   04. WHY NEXUS LIVING HUB (USP ZIGZAG)
   ============================================================================= */

.why-nexus {
  background-color: var(--color-bg-primary);
  padding: var(--section-pad-mobile);
}

@media (min-width: 768px) {
  .why-nexus {
    padding: var(--section-pad-tablet);
  }
}

@media (min-width: 1280px) {
  .why-nexus {
    padding: var(--section-pad-desktop);
  }
}

/* ── Zigzag grid — 2-col desktop, 1-col mobile ──────────────────────────── */
.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl) var(--space-xl);
  margin-top: var(--space-xl);
}

@media (min-width: 768px) {
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1280px) {
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl) var(--space-3xl);
  }
}

/* ── USP block ───────────────────────────────────────────────────────────── */
.usp-block {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
}

/* Alternate layout: even blocks have icon on the right (mobile: still stacked) */
@media (min-width: 1280px) {
  .usp-block:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
  }
}

.usp-block__icon-wrap {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background-color: var(--color-bg-secondary);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--color-accent-gold);
  transition: background-color var(--transition-base), border-color var(--transition-base);
}

.usp-block:hover .usp-block__icon-wrap {
  background-color: var(--color-accent-gold);
  border-color: var(--color-accent-gold);
  color: var(--color-bg-dark);
}

.usp-block__content {
  flex: 1;
}

.usp-block__title {
  font-family: var(--font-heading);
  font-size: var(--h3-size);
  font-weight: var(--fw-semibold);
  color: var(--color-accent-dark);
  margin-bottom: var(--space-xs);
  line-height: var(--lh-snug);
}

.usp-block__desc {
  font-family: var(--font-body);
  font-size: var(--body-size);
  color: var(--color-text-muted);
  line-height: var(--lh-relaxed);
  max-width: 100%;
}


/* =============================================================================
   05. OUR PROCESS (TIMELINE)
   ============================================================================= */

.our-process {
  background-color: var(--color-accent-green);
  padding: var(--section-pad-mobile);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .our-process {
    padding: var(--section-pad-tablet);
  }
}

@media (min-width: 1280px) {
  .our-process {
    padding: var(--section-pad-desktop);
  }
}

/* Subtle background pattern */
.our-process::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(201, 169, 110, 0.04) 0px,
    rgba(201, 169, 110, 0.04) 1px,
    transparent 1px,
    transparent 80px
  ),
  repeating-linear-gradient(
    0deg,
    rgba(201, 169, 110, 0.04) 0px,
    rgba(201, 169, 110, 0.04) 1px,
    transparent 1px,
    transparent 80px
  );
  pointer-events: none;
}

.our-process .section-header {
  position: relative;
  z-index: 1;
}

/* Override heading-accent for dark section */
.our-process .heading-accent {
  background: var(--color-accent-gold);
}

.process-subtitle {
  font-family: var(--font-body);
  font-size: var(--body-size);
  color: var(--color-text-on-dark);
  opacity: 0.8;
  line-height: var(--lh-relaxed);
  text-align: center;
  max-width: 60ch;
  margin-inline: auto;
}

/* ── Timeline wrapper ─────────────────────────────────────────────────────── */
.process-timeline-wrapper {
  position: relative;
  z-index: 1;
  margin-top: var(--space-xl);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.process-timeline-wrapper::-webkit-scrollbar {
  display: none;
}

/* ── Timeline list ────────────────────────────────────────────────────────── */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  position: relative;
}

/* Vertical connecting line (mobile) */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 23px;        /* center of 48px circle */
  width: 2px;
  height: calc(100% - 48px);
  background: rgba(201, 169, 110, 0.3);
  z-index: 0;
}

@media (min-width: 1024px) {
  .process-timeline {
    flex-direction: row;
    gap: 0;
    flex-wrap: nowrap;
    min-width: max-content;
  }

  /* Horizontal connecting line (desktop) */
  .process-timeline::before {
    top: 23px;        /* center of 48px circle */
    left: 48px;       /* start from first circle center */
    width: calc(100% - 96px);
    height: 2px;
    background: rgba(201, 169, 110, 0.3);
  }
}

/* ── Individual step ──────────────────────────────────────────────────────── */
.process-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: 0 0 var(--space-xl) 0;
  position: relative;
  z-index: 1;
}

.process-step:last-child {
  padding-bottom: 0;
}

@media (min-width: 1024px) {
  .process-step {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 var(--space-xl) 0 0;
    width: 200px;
    flex-shrink: 0;
  }

  .process-step:last-child {
    padding-right: 0;
  }
}

/* Numbered circle */
.process-step__circle {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-accent-gold);
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-on-dark);
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  transition: background-color var(--transition-base), color var(--transition-base);
  position: relative;
  z-index: 2;
}

.process-step:hover .process-step__circle {
  background-color: var(--color-accent-gold);
  color: var(--color-bg-dark);
}

.process-step__body {
  padding-top: 4px;
}

.process-step__title {
  font-family: var(--font-heading);
  font-size: var(--h4-size);
  font-weight: var(--fw-semibold);
  color: var(--color-text-on-dark);
  margin-bottom: var(--space-xs);
  line-height: var(--lh-snug);
}

.process-step__desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text-on-dark);
  opacity: 0.85;
  line-height: var(--lh-relaxed);
  max-width: 180px;
}

/* ── Process CTA ─────────────────────────────────────────────────────────── */
.process-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-2xl);
  position: relative;
  z-index: 1;
}


/* =============================================================================
   06. FEATURED PROJECTS
   ============================================================================= */

.featured-projects {
  background-color: var(--color-bg-primary);
  padding: var(--section-pad-mobile);
}

@media (min-width: 768px) {
  .featured-projects {
    padding: var(--section-pad-tablet);
  }
}

@media (min-width: 1280px) {
  .featured-projects {
    padding: var(--section-pad-desktop);
  }
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Project card ─────────────────────────────────────────────────────────── */
.project-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-card);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.project-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.project-card__placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--color-bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-border);
  font-size: 3rem;
  transition: transform var(--transition-slow);
}

.project-card:hover .project-card__placeholder {
  transform: scale(1.05);
}

.project-card__badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  z-index: 1;
  transition: transform var(--transition-base);
}

.project-card:hover .project-card__badge {
  transform: translateY(-3px);
}

.project-card__body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.project-card__name {
  font-family: var(--font-heading);
  font-size: var(--h4-size);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  line-height: var(--lh-snug);
}

.project-card__locality {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

.project-card__locality .fa-location-dot {
  color: var(--color-accent-gold);
  font-size: 0.875rem;
}

.project-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-accent);
  font-size: var(--small-size);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-accent-gold);
  text-decoration: none;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.project-card__link:hover {
  gap: 0.625rem;
  color: var(--color-cta);
}

/* ── View all CTA ─────────────────────────────────────────────────────────── */
.projects-view-all {
  display: flex;
  justify-content: center;
}


/* =============================================================================
   07. WHAT'S INCLUDED
   ============================================================================= */

.whats-included {
  background-color: var(--color-terracotta);
  padding: var(--section-pad-mobile);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .whats-included {
    padding: var(--section-pad-tablet);
  }
}

@media (min-width: 1280px) {
  .whats-included {
    padding: var(--section-pad-desktop);
  }
}

/* Subtle thin-line grid background pattern */
.whats-included__pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(245, 240, 232, 0.06) 0px,
      rgba(245, 240, 232, 0.06) 1px,
      transparent 1px,
      transparent 40px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(245, 240, 232, 0.06) 0px,
      rgba(245, 240, 232, 0.06) 1px,
      transparent 1px,
      transparent 40px
    );
  pointer-events: none;
}

.whats-included__content {
  position: relative;
  z-index: 1;
}

/* Override heading-accent for this section */
.whats-included .heading-accent {
  background: rgba(245, 240, 232, 0.5);
  margin-inline: auto;
}

.inclusions-subtitle {
  font-family: var(--font-body);
  font-size: var(--body-size);
  color: var(--color-text-on-dark);
  opacity: 0.85;
  text-align: center;
  max-width: 56ch;
  margin-inline: auto;
  line-height: var(--lh-relaxed);
}

/* ── Inclusions grid ─────────────────────────────────────────────────────── */
.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl) var(--space-lg);
  margin-top: var(--space-xl);
  list-style: none;
}

@media (min-width: 480px) {
  .inclusions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .inclusions-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .inclusions-grid {
    grid-template-columns: repeat(7, 1fr);
  }
}

.inclusion-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
  transition: transform var(--transition-base);
}

.inclusion-item:hover {
  transform: translateY(-4px);
}

.inclusion-item__icon {
  font-size: 2.25rem;
  color: var(--color-text-on-dark);
  line-height: 1;
}

.inclusion-item__label {
  font-family: var(--font-accent);
  font-size: var(--small-size);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-text-on-dark);
  line-height: var(--lh-normal);
}


/* =============================================================================
   08. TESTIMONIALS CAROUSEL
   ============================================================================= */

.testimonials {
  background-color: var(--color-highlight);
  padding: var(--section-pad-mobile);
}

@media (min-width: 768px) {
  .testimonials {
    padding: var(--section-pad-tablet);
  }
}

@media (min-width: 1280px) {
  .testimonials {
    padding: var(--section-pad-desktop);
  }
}

/* ── Carousel track wrapper ───────────────────────────────────────────────── */
.testimonials-carousel {
  overflow: hidden;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
  border-radius: var(--radius-md);
}

.testimonials-track {
  display: flex;
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ── Testimonial card ─────────────────────────────────────────────────────── */
.testimonial-card {
  flex: 0 0 100%;
  width: 100%;
  background-color: var(--color-bg-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg) var(--space-md) var(--space-md);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .testimonial-card {
    padding: var(--space-xl) var(--space-xl) var(--space-lg);
  }
}

/* Big decorative opening quote mark */
.testimonial-card__quote {
  font-family: var(--font-heading);
  font-size: 6rem;
  line-height: 0.6;
  color: var(--color-accent-gold);
  opacity: 0.25;
  font-style: italic;
  user-select: none;
  pointer-events: none;
  position: absolute;
  top: var(--space-lg);
  left: var(--space-xl);
}

.testimonial-card__text {
  font-family: var(--font-body);
  font-size: var(--body-size);
  font-style: italic;
  color: var(--color-text-primary);
  line-height: var(--lh-relaxed);
  padding-top: var(--space-xl);
}

.testimonial-card__text p {
  max-width: 100%;
  color: var(--color-text-primary);
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-sm);
}

.testimonial-card__name {
  font-family: var(--font-accent);
  font-size: 0.9375rem;
  font-weight: var(--fw-semibold);
  color: var(--color-accent-dark);
}

.testimonial-card__details {
  font-family: var(--font-body);
  font-size: var(--small-size);
  color: var(--color-text-muted);
}

/* ── Dot navigation ───────────────────────────────────────────────────────── */
.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  border: none;
  background-color: var(--color-border);
  cursor: pointer;
  transition: background-color var(--transition-base), transform var(--transition-base);
  padding: 0;
}

.carousel-dot.active,
.carousel-dot:hover {
  background-color: var(--color-accent-gold);
  transform: scale(1.25);
}


/* =============================================================================
   09. CTA BANNER
   ============================================================================= */

.cta-banner {
  background-color: var(--color-accent-dark);
  padding: var(--space-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Gold animated line separators */
.cta-banner::before,
.cta-banner::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-accent-gold),
    transparent
  );
  animation: cta-line-expand 2s ease-out forwards;
}

.cta-banner::before { top: 0; }
.cta-banner::after  { bottom: 0; }

@keyframes cta-line-expand {
  from { width: 0; }
  to   { width: 60%; }
}

.cta-banner__inner {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: var(--h2-size);
  font-weight: var(--fw-semibold);
  color: var(--color-text-on-dark);
  line-height: var(--lh-snug);
}

.cta-banner__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-on-dark);
  opacity: 0.85;
  line-height: var(--lh-relaxed);
  max-width: 52ch;
}

.cta-banner__btn {
  margin-top: var(--space-xs);
}


/* =============================================================================
   10. FAQ ACCORDION
   ============================================================================= */

.faq-section {
  background-color: var(--color-bg-primary);
  padding: var(--section-pad-mobile);
}

@media (min-width: 768px) {
  .faq-section {
    padding: var(--section-pad-tablet);
  }
}

@media (min-width: 1280px) {
  .faq-section {
    padding: var(--section-pad-desktop);
  }
}

.faq-list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

/* ── FAQ item ─────────────────────────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--color-bg-primary);
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.faq-item:hover {
  border-color: var(--color-accent-gold);
  box-shadow: var(--shadow-sm);
}

.faq-item.open {
  border-color: var(--color-accent-gold);
  box-shadow: var(--shadow-md);
}

/* ── Question button ──────────────────────────────────────────────────────── */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background-color: var(--color-bg-secondary);
}

.faq-item.open .faq-question {
  background-color: var(--color-bg-secondary);
}

.faq-question__text {
  font-family: var(--font-heading);
  font-size: var(--h4-size);
  font-weight: var(--fw-semibold);
  color: var(--color-accent-dark);
  line-height: var(--lh-snug);
  flex: 1;
}

.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  color: var(--color-accent-gold);
  transition: background-color var(--transition-base);
}

.faq-item.open .faq-toggle {
  background-color: var(--color-accent-gold);
  color: var(--color-bg-dark);
}

/* Plus icon rotates to X on open */
.faq-toggle .fa-plus {
  transition: transform var(--transition-base);
}

.faq-item.open .faq-toggle .fa-plus {
  transform: rotate(45deg);
}

/* ── Answer panel ─────────────────────────────────────────────────────────── */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 380ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 400px; /* large enough to never clip real content */
}

.faq-answer__inner {
  padding: 0 var(--space-lg) var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.faq-answer__inner p {
  font-family: var(--font-body);
  font-size: var(--body-size);
  color: var(--color-text-muted);
  line-height: var(--lh-relaxed);
  max-width: 100%;
  padding-top: var(--space-sm);
}
