/* ============================================================
   FYR PARTNERS COMMUNITY — Design System
   Community-first. Navy / Teal / Gold. Editorial modern.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400;1,9..144,500&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy: #0B1F33;
  --navy-deep: #061626;
  --navy-ink: #0F2A44;
  --teal: #4FB8B0;
  --teal-soft: #B8E0DC;
  --teal-pale: #E8F4F2;
  --teal-deep: #2C8A83;
  --gold: #C9A34E;
  --gold-soft: #E6D6A8;
  --white: #FFFFFF;
  --bone: #F7F5F0;
  --paper: #FAFAF7;
  --gray-900: #1A1D23;
  --gray-700: #4A4F57;
  --gray-500: #7A7F87;
  --gray-300: #C8CCD2;
  --gray-200: #E3E5E9;
  --gray-100: #EEEFF1;

  --serif: 'Fraunces', 'Georgia', serif;
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--paper);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--navy);
}
h1 { font-size: clamp(2.75rem, 7vw, 5.5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 5vw, 3.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: 1.25rem; font-weight: 600; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-deep);
  display: inline-block;
}
.eyebrow--gold { color: var(--gold); }
.eyebrow--white { color: var(--teal-soft); }

.lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.45;
  color: var(--gray-700);
}

em { font-style: italic; }
strong { font-weight: 700; color: var(--navy); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
section { padding: clamp(4rem, 9vw, 8rem) 0; }

.split { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--60-40 { grid-template-columns: 3fr 2fr; }
  .split--40-60 { grid-template-columns: 2fr 3fr; }
}

/* ---------- Nav ---------- */

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid rgba(11, 31, 51, 0.08);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem var(--gutter);
  max-width: var(--container); margin: 0 auto;
}
.nav__brand { display: flex; align-items: center; gap: 0.75rem; }
.nav__brand img { width: 42px; height: 42px; object-fit: contain; }
.nav__brand-text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.nav__brand-text .top { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--navy); letter-spacing: -0.01em; }
.nav__brand-text .sub { font-family: var(--serif); font-style: italic; font-size: 0.85rem; color: var(--teal-deep); font-weight: 400; }

.nav__links { display: none; gap: 2.25rem; align-items: center; list-style: none; }
@media (min-width: 1050px) { .nav__links { display: flex; } }

.nav__links a {
  font-size: 0.88rem; font-weight: 500; color: var(--gray-700);
  position: relative; transition: color 0.2s;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--teal);
  transition: width 0.25s ease;
}
.nav__links a:hover, .nav__links a.active { color: var(--navy); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }

.nav__cta {
  background: var(--navy); color: var(--white);
  padding: 0.7rem 1.35rem; border-radius: 999px;
  font-size: 0.85rem; font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.nav__cta:hover { background: var(--teal-deep); transform: translateY(-1px); }

.nav__toggle { display: flex; flex-direction: column; gap: 5px; padding: 8px; }
@media (min-width: 1050px) { .nav__toggle { display: none; } }
.nav__toggle span { width: 24px; height: 2px; background: var(--navy); display: block; }

.nav__mobile {
  display: none; flex-direction: column;
  padding: 0 var(--gutter) 1.5rem;
  border-bottom: 1px solid rgba(11, 31, 51, 0.08);
  background: var(--paper);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--navy); font-weight: 500;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 1.8rem; border-radius: 999px;
  font-family: var(--sans); font-weight: 600; font-size: 0.95rem;
  transition: all 0.25s ease; cursor: pointer; white-space: nowrap;
}
.btn--primary { background: var(--navy); color: var(--white); }
.btn--primary:hover { background: var(--teal-deep); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(11, 31, 51, 0.2); }
.btn--ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn--ghost:hover { background: var(--navy); color: var(--white); }
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: var(--navy); color: var(--gold); }
.btn--light { background: var(--white); color: var(--navy); }
.btn--light:hover { background: var(--teal-soft); }
.btn__arrow { transition: transform 0.25s; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 9vw, 7rem);
  background: linear-gradient(180deg, var(--paper) 0%, var(--bone) 100%);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.6;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(79, 184, 176, 0.14), transparent 45%),
    radial-gradient(circle at 15% 90%, rgba(201, 163, 78, 0.08), transparent 40%);
}
.hero__grid {
  position: relative;
  display: grid; grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 4rem); align-items: center;
}
@media (min-width: 900px) { .hero__grid { grid-template-columns: 1.15fr 1fr; } }

.hero__title {
  font-size: clamp(2.75rem, 7vw, 5.25rem);
  line-height: 0.98; letter-spacing: -0.035em;
  font-weight: 400; margin: 1.5rem 0;
}
.hero__title .script { font-style: italic; font-weight: 300; color: var(--teal-deep); }
.hero__title .underline {
  background: linear-gradient(transparent 65%, var(--gold-soft) 65%);
  padding: 0 0.1em;
}
.hero__lede {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem); color: var(--gray-700);
  max-width: 560px; margin-bottom: 2rem; line-height: 1.55;
}
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__image {
  position: relative; aspect-ratio: 4 / 5;
  max-height: 640px; margin: 0 auto; width: 100%;
}
.hero__image::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--teal-soft) 0%, transparent 60%);
  border-radius: 50% 50% 4px 4px / 30% 30% 4px 4px;
  transform: translate(4%, 4%); z-index: 0;
}
.hero__image img {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: contain; object-position: bottom;
  filter: drop-shadow(0 20px 60px rgba(11, 31, 51, 0.18));
}

/* ---------- Stats Band ---------- */

.stats-band {
  background: var(--navy); color: var(--white);
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative; overflow: hidden;
}
.stats-band::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(79, 184, 176, 0.15), transparent 50%),
    radial-gradient(circle at 10% 20%, rgba(201, 163, 78, 0.08), transparent 40%);
}
.stats-band .container { position: relative; }
.stats-band__lead {
  text-align: center; margin-bottom: 3rem;
}
.stats-band__lead .eyebrow { color: var(--gold); margin-bottom: 0.75rem; }
.stats-band__lead h3 {
  color: var(--white); font-weight: 400;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}
.stats-band__lead h3 em { color: var(--teal); font-style: italic; }

.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 2rem;
}
@media (min-width: 800px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat__num {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400; line-height: 1;
  color: var(--white); letter-spacing: -0.03em;
  display: flex; align-items: baseline; gap: 0.1em;
}
.stat__num .prefix, .stat__num .suffix { font-size: 0.55em; color: var(--teal); font-weight: 500; }
.stat__label {
  margin-top: 0.75rem; font-size: 0.82rem; font-weight: 500;
  color: var(--teal-soft); text-transform: uppercase; letter-spacing: 0.12em;
  line-height: 1.4;
}

/* ---------- Section headers ---------- */

.section-header { max-width: 820px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-header--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header__eyebrow { margin-bottom: 1rem; }
.section-header__title { margin-bottom: 1.25rem; }
.section-header__lede { font-size: 1.2rem; color: var(--gray-700); line-height: 1.55; }

/* ---------- Pillar cards (3-up) ---------- */

.pillars { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 800px) { .pillars { grid-template-columns: repeat(3, 1fr); } }

.pillar {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 18px;
  padding: 2.25rem 1.75rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex; flex-direction: column; gap: 1rem;
  position: relative; overflow: hidden;
}
.pillar::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(11, 31, 51, 0.1);
  border-color: transparent;
}
.pillar:hover::before { transform: scaleX(1); }

.pillar__badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--teal-soft); color: var(--navy);
  font-family: var(--serif); font-weight: 600; font-size: 1.15rem;
}
.pillar h3 { font-size: 1.5rem; }
.pillar p { color: var(--gray-700); font-size: 0.98rem; line-height: 1.55; }
.pillar__link {
  margin-top: auto; padding-top: 1rem;
  color: var(--teal-deep); font-weight: 600; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap 0.25s;
}
.pillar__link:hover { gap: 0.7rem; color: var(--navy); }

/* ---------- Value pillar grid (Why eXp) ---------- */

.value-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 700px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .value-grid { grid-template-columns: repeat(4, 1fr); } }

.value-card {
  background: var(--white); border-radius: 14px; padding: 2rem 1.5rem;
  border: 1px solid var(--gray-100);
  transition: border-color 0.25s, transform 0.25s;
}
.value-card:hover { border-color: var(--teal); transform: translateY(-3px); }
.value-card__num {
  font-family: var(--serif); font-size: 1.25rem; font-style: italic;
  color: var(--teal-deep); margin-bottom: 0.75rem; display: block;
}
.value-card h4 { margin-bottom: 0.6rem; color: var(--navy); }
.value-card p { font-size: 0.93rem; color: var(--gray-700); line-height: 1.55; }

/* ---------- Pull quote ---------- */

.pullquote {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white); padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative; overflow: hidden;
}
.pullquote::before {
  content: '"'; position: absolute;
  top: -40px; left: 3%;
  font-family: var(--serif);
  font-size: clamp(14rem, 25vw, 22rem);
  color: rgba(79, 184, 176, 0.08);
  line-height: 1; pointer-events: none; font-weight: 400;
}
.pullquote__inner { position: relative; max-width: 900px; }
.pullquote blockquote {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  line-height: 1.25; letter-spacing: -0.015em;
  color: var(--white);
}
.pullquote blockquote em { color: var(--teal); font-style: italic; font-weight: 400; }
.pullquote cite {
  display: block; margin-top: 2rem;
  font-family: var(--sans); font-style: normal;
  font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal-soft);
}

/* ---------- Bio / Host block ---------- */

.bio-section { background: var(--bone); }
.bio__image-wrap { position: relative; aspect-ratio: 3 / 4; max-height: 600px; }
.bio__image-wrap::before {
  content: ''; position: absolute;
  inset: -12px -12px auto auto;
  width: 140px; height: 140px;
  background: var(--teal); border-radius: 50%;
  z-index: 0; opacity: 0.25;
}
.bio__image-wrap::after {
  content: ''; position: absolute;
  bottom: -16px; left: -16px;
  width: 100px; height: 100px;
  border: 2px solid var(--gold); border-radius: 4px;
  z-index: 0;
}
.bio__image-wrap img {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: contain; object-position: bottom center;
}
.bio__body h2 { margin-bottom: 1.5rem; }
.bio__body p { color: var(--gray-700); margin-bottom: 1.25rem; font-size: 1.05rem; line-height: 1.7; }
.bio__body p strong { color: var(--navy); }

/* ---------- CTA band ---------- */

.cta-band {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--navy) 100%);
  color: var(--white); padding: clamp(4rem, 7vw, 6rem) 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(201, 163, 78, 0.15), transparent 50%);
}
.cta-band .container { position: relative; }
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { font-size: 1.15rem; color: var(--teal-soft); max-width: 600px; margin: 0 auto 2rem; }

/* ---------- Member experience / week ---------- */

.week-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 800px) { .week-grid { grid-template-columns: repeat(3, 1fr); } }

.week-card {
  background: var(--white);
  border-left: 3px solid var(--teal);
  padding: 1.75rem 1.5rem;
  border-radius: 4px 12px 12px 4px;
  box-shadow: 0 2px 12px rgba(11, 31, 51, 0.04);
}
.week-card__day {
  font-family: var(--serif); font-style: italic;
  color: var(--teal-deep); font-size: 0.95rem; margin-bottom: 0.5rem;
}
.week-card h4 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.week-card p { color: var(--gray-700); font-size: 0.93rem; line-height: 1.5; }

/* ---------- Community mosaic (photo placeholders) ---------- */

.mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 140px;
  gap: 0.75rem;
}
@media (min-width: 700px) { .mosaic { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 160px; } }
@media (min-width: 1000px) { .mosaic { grid-auto-rows: 200px; } }

.mosaic__tile {
  background: linear-gradient(135deg, var(--teal-pale) 0%, var(--bone) 100%);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic;
  color: var(--teal-deep); font-size: 0.85rem;
  padding: 1rem; text-align: center;
  position: relative; overflow: hidden;
  border: 1px solid var(--gray-100);
}
.mosaic__tile--wide { grid-column: span 2; }
.mosaic__tile--tall { grid-row: span 2; }
.mosaic__tile--navy {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--teal-soft);
  border-color: var(--navy);
}
.mosaic__tile--teal {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: var(--white);
  border-color: var(--teal-deep);
}
.mosaic__tile--gold {
  background: var(--gold-soft);
  color: var(--navy);
  border-color: var(--gold);
}
.mosaic__tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- Principle / values list ---------- */

.principles { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 800px) { .principles { grid-template-columns: repeat(2, 1fr); } }

.principle {
  display: flex; gap: 1.25rem;
  padding: 1.75rem;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--gray-100);
}
.principle__num {
  font-family: var(--serif); font-style: italic;
  font-size: 2.25rem; line-height: 1;
  color: var(--teal); font-weight: 400;
  flex-shrink: 0;
}
.principle h4 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.principle p { color: var(--gray-700); font-size: 0.95rem; line-height: 1.55; }

/* ---------- Page header (inner pages) ---------- */

.page-header {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  background: linear-gradient(180deg, var(--bone) 0%, var(--paper) 100%);
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 90% 10%, rgba(79, 184, 176, 0.1), transparent 40%);
}
.page-header .container { position: relative; }
.page-header__eyebrow { margin-bottom: 1rem; }
.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  max-width: 18ch; margin-bottom: 1.5rem;
}
.page-header h1 em { color: var(--teal-deep); font-weight: 300; }
.page-header__lede { max-width: 680px; }

/* ---------- Footer ---------- */

.footer {
  background: var(--navy-deep);
  color: var(--teal-soft);
  padding: clamp(3rem, 5vw, 4rem) 0 1.5rem;
}
.footer__grid {
  display: grid; grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(79, 184, 176, 0.15);
}
@media (min-width: 700px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer__brand { display: flex; flex-direction: column; gap: 1rem; max-width: 380px; }
.footer__brand-logo { display: flex; align-items: center; gap: 0.75rem; }
.footer__brand-logo img { width: 44px; height: 44px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.9; }
.footer__brand-logo span {
  font-family: var(--serif); color: var(--white);
  font-size: 1.1rem; font-weight: 500;
}
.footer__brand-logo span em { color: var(--teal); font-weight: 300; }
.footer__brand p { font-size: 0.93rem; line-height: 1.55; opacity: 0.8; }

.footer__col h4 {
  font-family: var(--sans); font-weight: 600;
  font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col a { font-size: 0.92rem; color: var(--teal-soft); opacity: 0.85; transition: opacity 0.2s, color 0.2s; }
.footer__col a:hover { color: var(--white); opacity: 1; }

.footer__bottom {
  padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between;
  font-size: 0.82rem; opacity: 0.6;
}
.footer__bottom em { font-style: italic; }

/* ---------- Form ---------- */

.form { display: flex; flex-direction: column; gap: 1.25rem; max-width: 600px; }
.form__row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 600px) { .form__row { grid-template-columns: 1fr 1fr; } }

.form__field { display: flex; flex-direction: column; gap: 0.5rem; }
.form__field label {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray-700);
}
.form__field input, .form__field select, .form__field textarea {
  font-family: var(--sans); font-size: 1rem;
  padding: 0.9rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px; background: var(--white);
  transition: border-color 0.2s;
}
.form__field input:focus, .form__field select:focus, .form__field textarea:focus {
  outline: none; border-color: var(--teal);
}
.form__field textarea { resize: vertical; min-height: 120px; }

/* ---------- FAQ ---------- */

.faq { max-width: 820px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--gray-200);
  padding: 1.5rem 0;
}
.faq__item summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  font-family: var(--serif); font-size: 1.2rem;
  color: var(--navy); font-weight: 500;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+'; font-family: var(--serif); font-size: 1.8rem;
  color: var(--teal-deep); font-weight: 300;
  transition: transform 0.25s;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding-top: 1rem; color: var(--gray-700); line-height: 1.65; }

/* ---------- Utility ---------- */

.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 2rem; }

/* ---------- Animation ---------- */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.8s ease-out both; }
.fade-up--delay-1 { animation-delay: 0.1s; }
.fade-up--delay-2 { animation-delay: 0.2s; }
.fade-up--delay-3 { animation-delay: 0.3s; }

/* ---------- Two-column numbered list ---------- */

.numbered-list {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
  counter-reset: item;
}
@media (min-width: 800px) { .numbered-list { grid-template-columns: repeat(2, 1fr); } }

.numbered-list li {
  list-style: none;
  counter-increment: item;
  padding: 1.5rem 1.5rem 1.5rem 4rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-100);
  position: relative;
}
.numbered-list li::before {
  content: counter(item, decimal-leading-zero);
  position: absolute;
  left: 1.5rem; top: 1.5rem;
  font-family: var(--serif); font-style: italic;
  font-size: 1.25rem; color: var(--teal-deep);
  font-weight: 400;
}
.numbered-list h4 { font-size: 1.05rem; margin-bottom: 0.4rem; color: var(--navy); }
.numbered-list p { font-size: 0.93rem; color: var(--gray-700); }
