/* ==========================================================================
   MEXIR Financial Services — Site Styles
   ========================================================================== */

/* --- Reset & base -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--p-size);
  line-height: var(--p-leading);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; }
h1, h2, h3, h4, h5, h6 { margin: 0; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
svg { display: block; }

/* --- Layout -------------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.container--wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 28px;
}
.section {
  padding: 128px 0;
}
.section--md { padding: 64px 0; }
.section--lg { padding: 96px 0; }

/* --- Eyebrow ------------------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--eyebrow-family);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--agave);
}
.eyebrow--muted { color: var(--fg-3); }
.eyebrow--masa  { color: var(--masa); }
.eyebrow--barro { color: var(--barro); }

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition:
    background var(--dur-base) var(--ease-out),
    transform   var(--dur-fast) var(--ease-out),
    box-shadow  var(--dur-base) var(--ease-out),
    color       var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out);
}
.btn:active { transform: scale(0.98); }
.btn--primary   { background: var(--agave);  color: var(--bone); }
.btn--primary:hover  { background: var(--agave-deep); }
.btn--dark      { background: var(--ink);    color: var(--bone); border-color: var(--ink); }
.btn--dark:hover     { background: var(--agave-deep); border-color: var(--agave-deep); }
.btn--secondary { background: transparent;  color: var(--ink); border-color: var(--border-strong); }
.btn--secondary:hover { background: var(--agave-soft); border-color: var(--agave); color: var(--agave-deep); }
.btn--ghost     { background: transparent;  color: var(--ink); }
.btn--ghost:hover    { background: var(--ink-06); }
.btn--accent    { background: var(--barro);  color: var(--bone); }
.btn--accent:hover   { background: var(--barro-deep); }
.btn--masa      { background: var(--masa);   color: var(--mole); }
.btn--masa:hover     { background: #d4b87a; }
.btn--sm { height: 36px; padding: 0 14px; font-size: 14px; }
.btn--lg { height: 56px; padding: 0 28px; font-size: 16px; }
.btn--text {
  height: auto;
  padding: 2px 0;
  background: transparent;
  border: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  border-radius: 0;
}
.btn--text:hover { border-bottom-color: var(--ink); }

/* --- Petate divider ------------------------------------------------------ */
.petate-divider {
  display: block;
  width: 100%;
  height: 22px;
  margin: 32px 0;
  opacity: 0.22;
}

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(246, 241, 232, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 220ms var(--ease-out), border-color 220ms var(--ease-out);
}
.site-header.is-scrolled {
  background: rgba(246, 241, 232, 0.88);
  border-bottom-color: rgba(14, 20, 18, 0.08);
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo__mark { width: 32px; height: 32px; }
.logo__word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
  padding-top: 3px;
  white-space: nowrap;
}
.logo--light .logo__word { color: var(--bone); }

/* Nav */
.nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.nav__link:hover { color: var(--agave-deep); }
.nav__link--active { color: var(--agave-deep); border-bottom-color: var(--agave); }

/* Header actions */
.header__actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--dur-fast);
}
.nav__hamburger:hover { background: var(--ink-06); }
.nav__hamburger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 200ms var(--ease-out), opacity 200ms;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--bone);
  border-top: 1px solid var(--border);
  padding: 16px 28px 24px;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 16px; }
.nav__mobile-link {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.nav__mobile-link:last-child { border-bottom: none; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  background: linear-gradient(180deg, #F6F1E8 0%, #F1EAD9 100%);
  padding: 80px 0 128px;
  overflow: hidden;
  border-bottom: 1px solid rgba(14, 20, 18, 0.06);
}

/* Grain/radial overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 500px at 50% 10%, rgba(255, 253, 246, 0.75), transparent 65%),
    radial-gradient(900px 600px at 50% 110%, rgba(237, 229, 213, 1), transparent 60%);
}

/* Brand mark watermark */
.hero__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 560px;
  height: 560px;
  opacity: 0.04;
  pointer-events: none;
}
.hero__watermark img { width: 100%; height: 100%; }

/* Floating portrait frames */
.hero__portrait {
  position: absolute;
  margin: 0;
  z-index: 3;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 36px 70px -28px rgba(58, 42, 34, 0.45), 0 1px 2px rgba(14, 20, 18, 0.1);
  padding: 8px;
  background: var(--paper);
  border: 1px solid rgba(14, 20, 18, 0.06);
}
.hero__portrait-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 2px;
}
.hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.03) sepia(0.04);
}
.hero__portrait--tl { top: 64px;   left: 40px;   width: 210px; height: 260px; transform: rotate(-1.2deg); }
.hero__portrait--tl img { object-position: 50% 15%; transform: scale(1.08); }
.hero__portrait--br img { object-position: 50% 15%; transform: scale(1.08); }
.hero__portrait--bl img { object-position: 50% 15%; transform: scale(1.08); }
.hero__portrait--tr img { object-position: 50% 15%; transform: scale(1.08); }
.hero__portrait--tr { top: 140px;  right: 56px;  width: 190px; height: 240px; transform: rotate(1.4deg);  }
.hero__portrait--bl { bottom: 270px; left: 72px;  width: 200px; height: 240px; transform: rotate(1.8deg);  }
.hero__portrait--br { bottom: 270px; right: 40px; width: 185px; height: 225px; transform: rotate(-1.6deg); }

/* Hero copy block */
.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding-top: 64px;
}
.hero__linegroup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--agave-deep);
}
.hero__linemark {
  width: 22px;
  height: 1px;
  background: var(--agave-deep);
  opacity: 0.5;
}
.hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(54px, 7vw, 104px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.96;
  margin: 26px 0 0;
  color: var(--ink);
}
.hero__h1-italic {
  font-family: 'Cormorant Garamond', 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.08em;
  letter-spacing: -0.02em;
  color: var(--agave-deep);
  display: inline-block;
  margin-top: 4px;
}
.hero__sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 520px;
  margin: 32px auto 0;
}
.hero__ctas {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Hero stats bar */
.hero__stats {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  margin: 120px auto 0;
  padding-top: 44px;
  border-top: 1px solid rgba(14, 20, 18, 0.14);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  text-align: center;
}
.hero__stat-big {
  font-family: var(--font-display);
  font-size: clamp(52px, 5.2vw, 76px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.hero__stat-big--accent { color: var(--barro-deep); }
.hero__stat-caption {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.hero__stat-sub {
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--fg-2);
  line-height: 1.5;
}

/* =========================================================================
   TRUST BAR
   ========================================================================= */
.trust-bar {
  background: var(--paper);
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-bar__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  font-weight: 600;
  flex-shrink: 0;
}
.trust-bar__names {
  display: flex;
  gap: 44px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  opacity: 0.85;
  flex-wrap: wrap;
}
.trust-bar__names span:nth-child(even) { font-style: italic; }

/* =========================================================================
   SERVICES PREVIEW
   ========================================================================= */
.services-preview { padding: 128px 0; }

.services-preview__header {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 80px;
  margin-bottom: 56px;
  align-items: end;
}
.services-preview__h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.2vw, 60px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-top: 18px;
}
.services-preview__h2 em {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  color: var(--agave-deep);
}
.services-preview__body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 520px;
}

.services-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(14, 20, 18, 0.08);
  border: 1px solid rgba(14, 20, 18, 0.08);
  border-radius: 4px;
  overflow: hidden;
}
.service-card {
  background: var(--paper);
  padding: 40px 36px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  text-decoration: none;
  color: var(--ink);
  transition: background var(--dur-base) var(--ease-out);
}
.service-card:hover { background: var(--bone); }
.service-card__num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--agave);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  padding-top: 2px;
  font-style: italic;
  flex-shrink: 0;
}
.service-card__body { flex: 1; }
.service-card__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.15;
}
.service-card__desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-2);
}
.service-card__more {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--agave-deep);
  letter-spacing: -0.005em;
}

/* =========================================================================
   CFO BOOK SECTION
   ========================================================================= */
.cfo-book {
  background: var(--ink);
  color: var(--bone);
  padding: 128px 0;
}
.cfo-book__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
}
.cfo-book__h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 18px 0 22px;
}
.cfo-book__h2 em {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  color: var(--masa);
}
.cfo-book__body {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(246, 241, 232, 0.78);
  margin-bottom: 28px;
  max-width: 460px;
}
.cfo-book__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cfo-book__list li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 15px;
  color: var(--bone);
}
.cfo-book__bullet {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--masa);
  flex-shrink: 0;
}

/* Report card */
.report-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.6), 0 1px 2px rgba(0, 0, 0, 0.15);
  position: relative;
}
.report-card__badge {
  position: absolute;
  top: -14px;
  right: -14px;
  background: var(--masa);
  color: var(--mole);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}
.report-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(14, 20, 18, 0.1);
  margin-bottom: 22px;
}
.report-card__date {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--agave);
  font-weight: 600;
}
.report-card__name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-top: 4px;
}
.report-card__sub {
  font-size: 12px;
  color: var(--fg-3);
  margin-top: 2px;
}
.report-card__mark { width: 42px; height: 42px; opacity: 0.85; }

.report-card__stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
.mini-stat {
  background: var(--bone);
  border-radius: 8px;
  padding: 14px;
}
.mini-stat__label {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
  font-weight: 600;
  margin-bottom: 6px;
}
.mini-stat__value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.mini-stat__delta {
  font-size: 11px;
  font-weight: 600;
  margin-top: 8px;
  font-variant-numeric: tabular-nums;
  color: var(--fg-2);
}
.mini-stat__delta--pos { color: var(--agave); }

/* Sparkline */
.sparkline {
  background: var(--ink);
  color: var(--bone);
  border-radius: 8px;
  padding: 14px 16px;
}
.sparkline__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.sparkline__label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, 0.6);
  font-weight: 600;
}
.sparkline__trend {
  font-size: 11px;
  color: var(--masa);
  font-weight: 600;
}
.sparkline svg { display: block; }

.report-card__note {
  margin-top: 20px;
  padding: 16px 18px;
  background: var(--agave-soft);
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--agave-deep);
  line-height: 1.55;
}

/* =========================================================================
   PULL QUOTE
   ========================================================================= */
.pull-quote {
  background: var(--bone-deep);
  padding: 96px 0;
}
.pull-quote__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}
.pull-quote__portrait {
  width: 140px;
  height: 170px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 50px -20px rgba(14, 20, 18, 0.3);
  border: 1px solid rgba(14, 20, 18, 0.08);
  flex-shrink: 0;
  padding: 6px;
  background: var(--paper);
}
.pull-quote__portrait-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.pull-quote__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pull-quote blockquote { margin: 0; }
.pull-quote__text {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
}
.pull-quote__text em {
  font-style: normal;
  color: var(--agave-deep);
}
.pull-quote__footer {
  margin-top: 22px;
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 13px;
  color: var(--fg-2);
}
.pull-quote__dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--fg-3);
}
.pull-quote__name { font-weight: 600; color: var(--ink); }

/* =========================================================================
   CTA BAND
   ========================================================================= */
.cta-band { padding: 96px 0; background: var(--bone); }
.cta-band__card {
  background: var(--ink);
  color: var(--bone);
  border-radius: 20px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1.6fr auto;
  gap: 40px;
  align-items: center;
  box-shadow: 0 40px 80px -30px rgba(14, 20, 18, 0.35);
  position: relative;
  overflow: hidden;
}
.cta-band__mark {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  opacity: 0.14;
  pointer-events: none;
}
.cta-band__copy { position: relative; }
.cta-band__h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 14px 0 12px;
}
.cta-band__h3 em {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  color: var(--masa);
}
.cta-band__body {
  font-size: 16px;
  color: rgba(246, 241, 232, 0.78);
  max-width: 520px;
  line-height: 1.55;
}
.cta-band__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  flex-shrink: 0;
}
.cta-band__secondary {
  height: 42px;
  padding: 0 12px;
  font-family: var(--font-sans);
  font-size: 14px;
  cursor: pointer;
  opacity: 0.85;
  color: var(--bone);
  transition: opacity var(--dur-fast);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cta-band__secondary:hover { opacity: 1; }

/* =========================================================================
   SERVICES PAGE
   ========================================================================= */
/* Generic page hero (About, Contact) */
.page-hero { padding: 96px 0 56px; }
.page-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 64px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin: 20px 0 22px;
  max-width: 820px;
}
.page-hero__h1 em { font-style: italic; color: var(--agave-deep); }
.page-hero__body {
  font-size: 20px;
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 680px;
}

/* Tiers section */
.tiers { padding: 64px 0 128px; }

.services-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(14, 20, 18, 0.08);
  border: 1px solid rgba(14, 20, 18, 0.08);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 2px;
}
.service-row {
  background: var(--paper);
  padding: 48px 52px;
  display: grid;
  grid-template-columns: 56px 1fr 1.2fr;
  gap: 36px;
  align-items: flex-start;
  transition: background var(--dur-base) var(--ease-out);
}
.service-row:hover { background: #fdfcf9; }
.service-row__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--agave-soft);
  color: var(--agave-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-row__icon i { width: 26px; height: 26px; }
.service-row__num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--barro);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.service-row__title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.service-row__body {
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.6;
  margin-bottom: 18px;
}
.service-row__bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-row__bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--ink);
}
.service-row__bullets li i {
  color: var(--agave);
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px;
  height: 16px;
}

/* Pricing tiers */
.tiers { padding: 64px 0 128px; }
.tiers__intro {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.tiers__intro-h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin: 14px 0 16px;
}
.tiers__intro-body {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.6;
}
.tiers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.tier {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.tier:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.tier--recommended {
  border-color: var(--agave);
  box-shadow: var(--shadow-md);
}
.tier--recommended:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.tier__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--agave);
  color: var(--bone);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.tier__name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--ink);
  margin-bottom: 14px;
}
.tier--recommended .tier__name { color: var(--agave-deep); font-size: 28px; }
.tier__price {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.tier__price-unit {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--fg-2);
  letter-spacing: 0;
  margin-left: 4px;
}
.tier__fit {
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.5;
  margin-top: 10px;
}
.tier__divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}
.tier__tagline {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.4;
}
.tier__features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
  margin-bottom: 32px;
}
.tier__feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink-80);
  line-height: 1.45;
}
.tier__feature i,
.tier__feature svg {
  color: var(--agave);
  flex-shrink: 0;
  margin-top: 1px;
  width: 15px;
  height: 15px;
  min-width: 15px;
  min-height: 15px;
  stroke-width: 2.5;
}
.tier__cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* =========================================================================
   ABOUT PAGE
   ========================================================================= */
.about-hero { padding: 96px 0 64px; }
.about-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 20px 0 22px;
  max-width: 860px;
}
.about-hero__h1 em { font-style: italic; color: var(--agave-deep); }
.about-hero__body {
  font-size: 20px;
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 680px;
  margin-top: 20px;
}

.about-stats {
  background: var(--bone-deep);
  padding: 96px 0;
}
.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-stat-card {
  background: var(--paper);
  border-radius: 16px;
  padding: 28px 32px;
  border: 1px solid var(--border);
}
.about-stat-card__num {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.5vw, 48px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--agave-deep);
  font-variant-numeric: tabular-nums;
}
.about-stat-card__label {
  font-size: 14px;
  color: var(--fg-2);
  margin-top: 6px;
}

.about-founders {
  padding: 56px 0 80px;
  background: var(--bone-deep);
}
.about-founders__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}
.about-founders__h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 14px 0 16px;
}
.about-founders__h2 em { font-style: italic; color: var(--agave-deep); }
.about-founders__sub {
  font-size: 18px;
  color: var(--fg-2);
  line-height: 1.6;
}
.about-founders__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
}
.founder-card {
  background: var(--paper);
  border-radius: 20px;
  border: 1px solid rgba(14, 20, 18, 0.07);
  overflow: hidden;
  box-shadow: 0 8px 32px -12px rgba(14, 20, 18, 0.12);
}
.founder-card__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.founder-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
  filter: grayscale(1);
}
.founder-card__body {
  padding: 32px;
}
.founder-card__name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}
.founder-card__role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--agave-deep);
  margin-bottom: 18px;
}
.founder-card__bio {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-2);
  margin-bottom: 24px;
}
.founder-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.founder-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--agave-deep);
  border: 1px solid rgba(36, 81, 58, 0.28);
  border-radius: 999px;
  padding: 5px 12px;
  background: rgba(36, 81, 58, 0.05);
}
.founders-banner {
  max-width: 880px;
  margin: 56px auto 0;
  padding-top: 48px;
  border-top: 1px solid rgba(14, 20, 18, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.founders-banner__heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
}
.founders-banner__heading em { font-style: italic; color: var(--agave-deep); }
.founders-banner__sub {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.6;
  max-width: 500px;
}

/* =========================================================================
   CONTACT PAGE
   ========================================================================= */
.contact-page { padding: 96px 0 128px; }
.contact-page__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
}
.contact-page__h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 54px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 18px 0 20px;
}
.contact-page__body {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 460px;
}
.contact-lines {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-line {
  display: flex;
  gap: 14px;
  align-items: center;
}
.contact-line__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--agave-soft);
  color: var(--agave-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-line__icon i { width: 18px; height: 18px; }
.contact-line__meta-label {
  font-size: 11px;
  color: var(--fg-2);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact-line__meta-value {
  font-size: 16px;
  color: var(--ink);
  margin-top: 2px;
  font-weight: 500;
}

/* Contact form */
.calendly-wrapper {
  background: var(--paper);
  border-radius: 20px;
  border: 1px solid rgba(14, 20, 18, 0.08);
  box-shadow: 0 20px 50px -20px rgba(14, 20, 18, 0.15);
  overflow: hidden;
}
.contact-form {
  background: var(--paper);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(14, 20, 18, 0.08);
  box-shadow: 0 20px 50px -20px rgba(14, 20, 18, 0.15);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-80);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bone);
  border: 1px solid rgba(14, 20, 18, 0.12);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  box-shadow: inset 0 1px 2px rgba(14, 20, 18, 0.04);
  outline: none;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  -webkit-appearance: none;
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--agave);
  box-shadow: inset 0 1px 2px rgba(14, 20, 18, 0.04), var(--shadow-focus);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238C908E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.contact-form__note {
  font-size: 12px;
  color: var(--fg-3);
  text-align: center;
}
.form-success {
  padding: 28px 4px;
  text-align: center;
}
.form-success__icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--agave-soft);
  color: var(--agave-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.form-success__icon i { width: 28px; height: 28px; }
.form-success__h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.form-success__body { color: var(--fg-2); font-size: 15px; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
  background: var(--ink);
  color: var(--bone);
  padding: 80px 0 40px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 0;
}
.footer__brand .logo__word { color: var(--bone); }
.footer__tagline {
  margin-top: 18px;
  font-size: 14px;
  color: rgba(246, 241, 232, 0.65);
  line-height: 1.6;
  max-width: 320px;
}
.footer__social {
  margin-top: 22px;
  display: flex;
  gap: 10px;
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(246, 241, 232, 0.18);
  color: var(--bone);
  transition: background var(--dur-fast), border-color var(--dur-fast);
}
.footer__social-link:hover { background: rgba(246, 241, 232, 0.1); border-color: rgba(246, 241, 232, 0.35); }
.footer__social-link i { width: 16px; height: 16px; }
.footer__col-title {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--masa);
  font-weight: 600;
  margin-bottom: 18px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  color: rgba(246, 241, 232, 0.85);
  font-size: 14px;
  transition: color var(--dur-fast);
}
.footer__links a:hover { color: var(--bone); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(246, 241, 232, 0.5);
  flex-wrap: wrap;
  gap: 8px;
}

/* =========================================================================
   ANIMATION INITIAL STATES (populated by GSAP)
   ========================================================================= */
.gsap-ready .hero__copy > *,
.gsap-ready .hero__portrait,
.gsap-ready .hero__stats {
  /* GSAP sets visibility; avoid FOUC without JS */
}
.no-js .hero__copy > *,
.no-js .hero__portrait,
.no-js .hero__stats {
  opacity: 1 !important;
  transform: none !important;
}

/* =========================================================================
   RESPONSIVE — TABLET (≤1024px)
   ========================================================================= */
@media (max-width: 1024px) {
  /* Hide hero portraits */
  .hero__portrait { display: none; }
  .hero__copy { padding-top: 0; }
  .hero { padding: 64px 0 96px; }

  .services-preview__header {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .services-preview__grid {
    grid-template-columns: 1fr;
  }

  .cfo-book__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pull-quote__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pull-quote__portrait {
    width: 100px;
    height: 120px;
  }

  .cta-band__card {
    grid-template-columns: 1fr;
    padding: 48px 40px;
  }
  .cta-band__actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .service-row {
    grid-template-columns: 56px 1fr;
    gap: 24px;
    padding: 36px 32px;
  }
  .service-row__details {
    grid-column: 1 / -1;
  }

  /* Tiers: 2-col on tablet */
  .tiers__grid { grid-template-columns: 1fr 1fr; }
  .tier--recommended { grid-column: 1 / -1; max-width: 420px; margin: 0 auto; transform: none; }

  .about-founders__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
  .about-founders { padding: 80px 0; }

  .contact-page__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer__brand { grid-column: 1 / -1; }

  .trust-bar__names { gap: 24px; }
}

/* =========================================================================
   RESPONSIVE — MOBILE (≤768px)
   ========================================================================= */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  .section--md { padding: 48px 0; }
  .section--lg { padding: 64px 0; }

  /* Header */
  .nav, .header__actions { display: none; }
  .nav__hamburger { display: flex; }

  /* Hero */
  .hero { padding: 48px 0 72px; }
  .hero__h1 { font-size: clamp(44px, 12vw, 64px); }
  .hero__sub { font-size: 16px; }
  .hero__stats {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 64px;
  }
  .hero__stats > :last-child {
    grid-column: 1 / -1;
  }

  /* Trust bar */
  .trust-bar__inner { flex-direction: column; gap: 16px; }
  .trust-bar__names { font-size: 15px; gap: 16px; }

  /* Services preview */
  .services-preview { padding: 80px 0; }
  .service-card { padding: 28px 24px; gap: 16px; }
  .service-card__num { font-size: 34px; }
  .service-card__title { font-size: 22px; }

  /* CFO Book */
  .cfo-book { padding: 80px 0; }
  .cfo-book__inner { gap: 40px; }
  .report-card { padding: 24px; }
  .report-card__stats { grid-template-columns: 1fr 1fr; }
  .report-card__badge { right: 8px; font-size: 10px; padding: 6px 10px; }

  /* Pull quote */
  .pull-quote { padding: 64px 0; }
  .pull-quote__text { font-size: clamp(20px, 5vw, 28px); }
  .pull-quote__portrait { display: none; }

  /* CTA band */
  .cta-band { padding: 64px 0; }
  .cta-band__card { padding: 36px 28px; }
  .cta-band__h3 { font-size: clamp(24px, 6vw, 36px); }
  .cta-band__actions { flex-direction: column; }

  /* Services page */
  .page-hero { padding: 64px 0 40px; }
  .service-row {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 24px;
  }
  .service-row__icon { margin-bottom: 0; }
  .service-row__title { font-size: 26px; }

  /* Pricing tiers */
  .tiers__grid { grid-template-columns: 1fr; }
  .tier--recommended { transform: none; }
  .tier--recommended:hover { transform: translateY(-2px); }

  /* About */
  .about-hero { padding: 64px 0 40px; }
  .about-stats__grid { grid-template-columns: 1fr 1fr; }
  .about-stat-card { padding: 22px 20px; }
  .founders-banner { padding-top: 36px; }
  .founder-card__body { padding: 24px; }

  /* Contact */
  .contact-page { padding: 64px 0 80px; }
  .contact-form { padding: 24px; }
  .contact-form__row { grid-template-columns: 1fr; }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer__brand { grid-column: auto; }
  .footer__bottom { flex-direction: column; gap: 4px; }

  /* Hero stats edge case — 3-col still if screen is wide enough */
  @media (min-width: 520px) {
    .hero__stats {
      grid-template-columns: 1fr 1fr 1fr;
    }
    .hero__stats > :last-child {
      grid-column: auto;
    }
  }
}

/* =========================================================================
   REDUCED MOTION
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
