/* =============================================================
   POSITIVE CARRY PARTNERS — DESIGN SYSTEM
   70/20/10 Color Rule:
     70% Ivory Cream     (#F2EDD7) — space, backgrounds
     20% Deep Steel Teal (#0E6678) — authority, type, nav
     10% Medium Teal     (#1A9196) — support, icons, dividers
      +4% Champagne Gold  (#C9A96E) — CTAs, accents, moments
============================================================= */

/* ─── RESET & ROOT ────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Color tokens */
  --ivory:         #F2EDD7;
  --ivory-dark:    #EAE3C8;
  --ivory-deep:    #DDD6BE;
  --teal-deep:     #0E6678;
  --teal-deep-dk:  #0A4F5E;
  --teal-deep-xdk: #071F25;
  --teal-mid:      #1A9196;
  --teal-mid-lt:   #2AABB0;
  --gold:          #C9A96E;
  --gold-lt:       #DEC08A;
  --gold-dk:       #B08C52;
  --white:         #FFFFFF;

  /* Typography */
  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-sans:     'Inter', system-ui, sans-serif;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   2rem;
  --space-lg:   4rem;
  --space-xl:   6rem;
  --space-2xl:  10rem;

  /* Transitions */
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:   cubic-bezier(0.0, 0.0, 0.2, 1);
  --duration:   0.35s;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--ivory);
  color: var(--teal-deep);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── TYPOGRAPHY UTILITIES ────────────────────────────────── */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--space-sm);
}

.eyebrow--gold  { color: var(--gold); }
.eyebrow--teal  { color: var(--teal-mid); }
.eyebrow--ivory { color: var(--ivory-dark); opacity: 0.7; }

/* ─── LAYOUT UTILITIES ────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.section--ivory { background-color: var(--ivory); }
.section--dark  { background-color: var(--teal-deep); }

.section__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--teal-deep);
  margin-bottom: var(--space-md);
}

.section__headline--light {
  color: var(--ivory);
}

.section__intro {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--teal-deep);
  opacity: 0.75;
  max-width: 600px;
  margin-bottom: var(--space-lg);
  line-height: 1.75;
}

.section__intro--light {
  color: var(--ivory);
  opacity: 0.75;
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.25rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--duration) var(--ease),
              color var(--duration) var(--ease),
              border-color var(--duration) var(--ease),
              transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.btn--gold {
  background-color: var(--gold);
  color: var(--teal-deep-xdk);
  border-color: var(--gold);
}

.btn--gold:hover {
  background-color: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.35);
}

.btn--ghost {
  background-color: transparent;
  color: var(--ivory);
  border-color: rgba(242, 237, 215, 0.4);
}

.btn--ghost:hover {
  background-color: rgba(242, 237, 215, 0.08);
  border-color: var(--ivory);
  transform: translateY(-2px);
}

.btn--large {
  padding: 1.25rem 3rem;
  font-size: 0.85rem;
}

/* ─── NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: transparent;
  transition: background var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
  padding: 1.5rem 0;
}

.nav.is-scrolled {
  background-color: var(--teal-deep-xdk);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  padding: 1rem 0;
}

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  text-decoration: none;
}

.nav__logo-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: 0.02em;
  transition: color var(--duration) var(--ease);
}

.nav__logo:hover .nav__logo-name {
  color: var(--gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav__link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(242, 237, 215, 0.7);
  transition: color var(--duration) var(--ease);
}

.nav__link:hover {
  color: var(--ivory);
}

.nav__cta {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--teal-deep-xdk);
  background-color: var(--gold);
  padding: 0.65rem 1.5rem;
  border: 1.5px solid var(--gold);
  transition: background var(--duration) var(--ease),
              transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}

.nav__cta:hover {
  background-color: var(--gold-lt);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.3);
}

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--space-2xl) var(--space-md) var(--space-xl);
}

.hero__bg-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(26, 145, 150, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(14, 102, 120, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

/* Subtle grain overlay */
.hero__bg-texture::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  animation: fadeUp 1s var(--ease-out) both;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ivory);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.hero__headline em {
  font-style: italic;
  color: var(--gold);
}

.hero__subhead {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  color: rgba(242, 237, 215, 0.65);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 2s 1.5s var(--ease-out) both;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ─── HERO SUMMARY CARDS ──────────────────────────────────── */
.hero__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: 900px;
  margin: 2.5rem auto 2.5rem;
  border: 1px solid rgba(26, 145, 150, 0.25);
  animation: fadeIn 1s 0.6s var(--ease-out) both;
}

.hero__card {
  padding: 1.5rem 2rem;
  border-right: 1px solid rgba(26, 145, 150, 0.2);
  background: rgba(7, 31, 37, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  transition: background var(--duration) var(--ease);
}

.hero__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}

.hero__card:hover {
  background: rgba(7, 31, 37, 0.55);
}

.hero__card:hover::before {
  opacity: 1;
}

.hero__card:last-child {
  border-right: none;
}

.hero__card-step {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.hero__card-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.hero__card-body {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(242, 237, 215, 0.5);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero__cards {
    position: static;
    grid-template-columns: 1fr;
    border-top: none;
  }

  .hero__card {
    border-right: none;
    border-top: 1px solid rgba(26, 145, 150, 0.25);
  }
}

/* ─── TRUST BAR ───────────────────────────────────────────── */
.trust-bar {
  background-color: var(--ivory-dark);
  border-top: 1px solid var(--ivory-deep);
  border-bottom: 1px solid var(--ivory-deep);
  padding: var(--space-lg) var(--space-md);
}

.trust-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.trust-bar__stat {
  flex: 1;
  min-width: 180px;
  text-align: center;
}

.trust-bar__number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--teal-deep);
  margin-bottom: 0.4rem;
}

.trust-bar__label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--teal-deep);
  opacity: 0.6;
  line-height: 1.4;
}

.trust-bar__divider {
  width: 1px;
  height: 3rem;
  background: var(--teal-mid);
  opacity: 0.2;
  flex-shrink: 0;
}

/* ─── IMPACT / STATS SECTION ──────────────────────────────── */
.section--darkest {
  background-color: var(--teal-deep-xdk);
}

.impact {
  padding: var(--space-xl) 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.impact-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-lg);
}

.impact-header .section__intro {
  max-width: 100%;
  margin-bottom: 0;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.impact-card {
  background-color: rgba(14, 102, 120, 0.12);
  border: 1px solid rgba(26, 145, 150, 0.18);
  padding: 2.75rem 2.25rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--duration) var(--ease),
              background var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}

.impact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--teal-mid) 100%);
  opacity: 0.5;
  transition: opacity var(--duration) var(--ease);
}

.impact-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.impact-card:hover {
  border-color: rgba(201, 169, 110, 0.35);
  background-color: rgba(14, 102, 120, 0.2);
  transform: translateY(-3px);
}

.impact-card:hover::before {
  opacity: 1;
}

.impact-card__stat {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.impact-card__stat-plus {
  color: var(--gold);
  font-size: 0.55em;
  vertical-align: super;
  margin-left: 0.1em;
  font-weight: 300;
}

.impact-card__title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 1rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.impact-card__body {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(242, 237, 215, 0.55);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.impact-card__source {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-mid);
  opacity: 0.7;
}

@media (max-width: 768px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── SERVICES SECTION ────────────────────────────────────── */
.services-overview .container {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

/* ─── SERVICE CARDS ───────────────────────────────────────── */
.service-card {
  background-color: var(--teal-deep);
  color: var(--ivory);
  padding: 2.5rem 2rem 2rem;
  position: relative;
  border: 1px solid rgba(26, 145, 150, 0.2);
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              border-color var(--duration) var(--ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--teal-mid);
  transition: background var(--duration) var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(7, 31, 37, 0.4);
  border-color: rgba(201, 169, 110, 0.4);
}

.service-card:hover::before {
  background: var(--gold);
}

.service-card--featured {
  background-color: var(--teal-deep-dk);
  border-color: rgba(201, 169, 110, 0.25);
  transform: scale(1.02);
}

.service-card--featured::before {
  background: var(--gold);
}

.service-card--featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.service-card__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-deep-xdk);
  background: var(--gold);
  padding: 0.3rem 0.75rem;
}

.service-card__number {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 1.25rem;
  letter-spacing: 0.1em;
}

.service-card__icon {
  color: var(--teal-mid);
  margin-bottom: 1.25rem;
  transition: color var(--duration) var(--ease);
}

.service-card:hover .service-card__icon {
  color: var(--gold);
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.service-card__price {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 1.25rem;
  line-height: 1;
  letter-spacing: -0.01em;
}

.service-card__price-unit {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  vertical-align: middle;
  margin-left: 0.25rem;
}

.service-card__price-or {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: -0.65rem 0;
  color: rgba(242, 237, 215, 0.25);
}

.service-card__price-or::before,
.service-card__price-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
}

.service-card__price-or span {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-style: italic;
  font-weight: 300;
  white-space: nowrap;
}

.service-card__desc {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(242, 237, 215, 0.65);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.service-card__list {
  list-style: none;
  margin-bottom: 0;
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-card__list li {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(242, 237, 215, 0.8);
  padding-left: 1.25rem;
  position: relative;
}

.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 1px;
  background: var(--gold);
}

.service-card__link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 2rem;
  transition: gap var(--duration) var(--ease),
              color var(--duration) var(--ease);
}

.service-card__link:hover {
  gap: 0.85rem;
  color: var(--gold-lt);
}

/* ─── PROCESS ─────────────────────────────────────────────── */
.process .container {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.process-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-md);
  border-left: 1px solid rgba(26, 145, 150, 0.3);
  padding-left: var(--space-md);
  max-width: 740px;
}

.process-step {
  display: flex;
  gap: var(--space-md);
  padding-bottom: var(--space-lg);
  position: relative;
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.process-step.is-visible {
  opacity: 1;
  transform: translateX(0);
}

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

.process-step::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-md) - 4px);
  top: 0.25rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--teal-deep);
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.process-step__num {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.1em;
  white-space: nowrap;
  padding-top: 0.15rem;
  min-width: 2rem;
}

.process-step__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

.process-step__desc {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(242, 237, 215, 0.6);
  line-height: 1.75;
}

/* ─── PHILOSOPHY ──────────────────────────────────────────── */
.philosophy {
  background-color: var(--teal-mid);
  min-height: auto;
  padding: var(--space-xl) var(--space-md);
}

.philosophy__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.philosophy__rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto var(--space-md);
  opacity: 0.7;
}

.philosophy__quote {
  font-style: normal;
}

.philosophy__quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.5;
  margin-bottom: var(--space-md);
}

.philosophy__cite {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ─── FAQ ACCORDION ───────────────────────────────────────── */
.faq {
  min-height: auto;
  padding: var(--space-xl) 0;
}

.faq__header {
  margin-bottom: var(--space-lg);
}

.faq__header .section__headline {
  margin-bottom: 0;
}

.faq__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--ivory-deep);
}

.faq__item {
  border-bottom: 1px solid var(--ivory-deep);
}

.faq__question {
  margin: 0;
}

.faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 1.75rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--teal-deep);
  transition: color var(--duration) var(--ease);
}

.faq__trigger:hover {
  color: var(--teal-mid);
}

.faq__trigger:hover .faq__chevron {
  color: var(--gold);
}

.faq__trigger[aria-expanded="true"] {
  color: var(--teal-mid);
}

.faq__trigger[aria-expanded="true"] .faq__chevron {
  color: var(--gold);
  transform: rotate(180deg);
}

.faq__question-text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  line-height: 1.3;
}

.faq__chevron {
  flex-shrink: 0;
  color: var(--teal-mid);
  opacity: 0.7;
  transition: transform var(--duration) var(--ease),
              color var(--duration) var(--ease);
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-out);
  margin: 0;
}

/* When not hidden, max-height is set by JS */
.faq__answer:not([hidden]) {
  display: block;
}

/* Override browser default hiding so we animate instead */
.faq__answer[hidden] {
  display: block;
  max-height: 0;
  visibility: hidden;
}

.faq__answer-inner {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--teal-deep);
  opacity: 0.7;
  line-height: 1.8;
  padding-bottom: 1.75rem;
  max-width: 680px;
}

/* ─── ENGAGE CTA ──────────────────────────────────────────── */
.engage {
  text-align: center;
}

.engage .container {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.engage-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  margin-bottom: var(--space-md);
}

.engage-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(26, 145, 150, 0.3);
  background: rgba(26, 145, 150, 0.08);
  transition: background var(--duration) var(--ease),
              border-color var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}

.engage-card:hover {
  background: rgba(26, 145, 150, 0.15);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.engage-card--featured {
  border-color: rgba(201, 169, 110, 0.4);
  background: rgba(201, 169, 110, 0.06);
}

.engage-card__label {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}

.engage-card__action {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--duration) var(--ease);
}

.engage__or {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(242, 237, 215, 0.4);
  margin: var(--space-md) 0;
}

.engage__note {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(242, 237, 215, 0.4);
  margin-top: 1.25rem;
  letter-spacing: 0.02em;
}

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer {
  background-color: var(--teal-deep-xdk);
  padding: var(--space-lg) var(--space-md) var(--space-md);
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(242, 237, 215, 0.08);
  flex-wrap: wrap;
}

.footer__logo {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

.footer__tagline {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(242, 237, 215, 0.35);
  font-style: italic;
}

.footer__nav {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  align-items: center;
}

.footer__link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(242, 237, 215, 0.45);
  transition: color var(--duration) var(--ease);
}

.footer__link:hover {
  color: var(--gold);
}

.footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: var(--space-md);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: rgba(242, 237, 215, 0.25);
}

/* ─── CONTACT PAGE ────────────────────────────────────────── */
.contact-page {
  min-height: 100vh;
  display: flex;
}

.contact-page__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  width: 100%;
}

/* Dark left panel */
.contact-page__panel--dark {
  background-color: var(--teal-deep);
  position: relative;
  overflow: hidden;
}

.contact-page__panel--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 70% 60% at 80% 30%, rgba(26, 145, 150, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(7, 31, 37, 0.5) 0%, transparent 50%);
  pointer-events: none;
}

/* Ivory right panel */
.contact-page__panel--form {
  background-color: var(--ivory);
}

.contact-page__panel-inner {
  position: relative;
  z-index: 1;
  padding: 5rem 3.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-page__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(242, 237, 215, 0.5);
  position: absolute;
  top: 2.5rem;
  left: 3.5rem;
  transition: color var(--duration) var(--ease);
}

.contact-page__back:hover {
  color: var(--gold);
}

.contact-page__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.contact-page__headline em {
  color: var(--gold);
  font-style: italic;
}

.contact-page__subhead {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(242, 237, 215, 0.6);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 420px;
}

.contact-page__commitments {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid rgba(26, 145, 150, 0.3);
  padding-top: 2rem;
}

.contact-page__commitment {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(242, 237, 215, 0.65);
  line-height: 1.5;
}

.contact-page__commitment strong {
  color: var(--ivory);
  font-weight: 500;
}

.contact-page__commitment-icon {
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* ─── CONTACT FORM ────────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 480px;
}

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form__label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.contact-form__label span[aria-hidden] {
  color: var(--gold);
  margin-left: 0.2em;
}

.contact-form__label-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--teal-deep);
  opacity: 0.5;
  font-size: 0.75em;
}

.contact-form__input {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--teal-deep);
  background-color: var(--ivory-dark);
  border: 1.5px solid var(--ivory-deep);
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              background var(--duration) var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.contact-form__input::placeholder {
  color: var(--teal-deep);
  opacity: 0.3;
}

.contact-form__input:focus {
  border-color: var(--teal-mid);
  background-color: var(--ivory);
  box-shadow: 0 0 0 3px rgba(26, 145, 150, 0.1);
}

.contact-form__input:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__select-wrap {
  position: relative;
}

.contact-form__select {
  cursor: pointer;
  padding-right: 2.5rem;
}

.contact-form__select-chevron {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--teal-mid);
  pointer-events: none;
}

.contact-form__submit {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.contact-form__note {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--teal-deep);
  opacity: 0.45;
  line-height: 1.6;
}

/* ─── CONTACT SUCCESS PAGE ────────────────────────────────── */
.success-page {
  min-height: 100vh;
  background-color: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem var(--space-md) var(--space-xl);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.success-page__bg-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 70% 30%, rgba(26, 145, 150, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(7, 31, 37, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.success-page__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  animation: fadeUp 0.8s var(--ease-out) both;
}

.success-page__icon {
  color: var(--gold);
  margin-bottom: 2rem;
}

.success-page__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.success-page__headline em {
  color: var(--gold);
  font-style: italic;
}

.success-page__body {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(242, 237, 215, 0.65);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.success-page__divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 2rem;
  opacity: 0.5;
}

.success-page__reminder {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(242, 237, 215, 0.5);
  line-height: 2;
}

.success-page__reminder strong {
  color: rgba(242, 237, 215, 0.8);
  font-weight: 500;
}

/* ─── CONTACT RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  .contact-page__split {
    grid-template-columns: 1fr;
  }

  .contact-page__panel--dark {
    min-height: auto;
    padding-bottom: 3rem;
  }

  .contact-page__panel-inner {
    padding: 6rem 2rem 2rem;
    justify-content: flex-start;
  }

  .contact-page__back {
    left: 2rem;
  }

  .contact-form {
    max-width: 100%;
  }
}

/* ─── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50%       { opacity: 0.4; transform: scaleY(0.6); transform-origin: top; }
}

/* Intersection observer fade-in utility */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .service-card--featured {
    transform: none;
  }

  .service-card--featured:hover {
    transform: translateY(-4px);
  }

  .engage-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .trust-bar__inner {
    flex-direction: column;
    text-align: center;
  }

  .trust-bar__divider {
    width: 3rem;
    height: 1px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .footer__inner {
    flex-direction: column;
  }

  .section {
    min-height: auto;
    padding: var(--space-lg) 0;
  }
}
