/* ============================================================
   SABAL — styles.css
   Paleta:
     --navy:   #1B3A52  (primario)
     --blue:   #2E5C7F  (secundario)
     --teal:   #3D8A7A  (acento)
     --silver: #B8C5D6  (neutro)
   ============================================================ */

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

:root {
  --navy:   #1B3A52;
  --blue:   #2E5C7F;
  --teal:   #3D8A7A;
  --silver: #B8C5D6;
  --light:  #F4F7FA;
  --white:  #FFFFFF;
  --text:   #1A1A2E;
  --muted:  #5A6A7A;

  --ff-serif: Georgia, 'Times New Roman', serif;
  --ff-sans:  'Inter', Calibri, sans-serif;

  --radius: 8px;
  --shadow: 0 2px 16px rgba(27,58,82,.08);
  --transition: .25s ease;

  --max-w: 1100px;
  --section-gap: 5rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ── LAYOUT ──────────────────────────────────────────────── */
.container {
  width: 90%;
  max-width: var(--max-w);
  margin-inline: auto;
}

.section          { padding-block: var(--section-gap); }
.section--alt     { background: #F7F3E8; }
.center           { text-align: center; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.section__title {
  font-family: var(--ff-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.section__text {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 680px;
  line-height: 1.8;
}

.section__subtitle {
  font-size: 1.0625rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--ff-sans);
  font-size: .9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn--primary:hover {
  background: #2f7068;
  border-color: #2f7068;
  transform: translateY(-1px);
}

.btn--secondary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--secondary:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

/* ── NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav__logo {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: .9375rem;
  color: rgba(255,255,255,.8);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--white); }

/* Hamburger button — hidden on desktop */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* open state */
.nav__toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding-block: 6rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(61,138,122,.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero__inner { position: relative; z-index: 1; }

.hero__eyebrow {
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 720px;
}

.hero__subtitle {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.75);
  max-width: 600px;
  margin-bottom: 2.25rem;
  line-height: 1.8;
}

/* ── HERO DISCLAIMER ─────────────────────────────────────── */
.hero__disclaimer {
  margin-top: .875rem;
  font-size: .8125rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .02em;
}

/* ── DIAGNOSTIC ──────────────────────────────────────────── */
.diagnostic__inner {
  max-width: 680px;
}

.diagnostic__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.diagnostic__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.0625rem;
  color: var(--text);
  line-height: 1.5;
}

.diagnostic__x {
  font-size: .875rem;
  font-weight: 700;
  color: #c0392b;
  background: rgba(192,57,43,.08);
  border: 1px solid rgba(192,57,43,.2);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .1rem;
}

.diagnostic__cta-text {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

/* ── PROBLEM ─────────────────────────────────────────────── */
.problem__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.problem__inner .section__text { max-width: 100%; }

/* ── CARDS (tres clientes) ───────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--teal);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(27,58,82,.13);
}

.card__icon {
  width: 40px;
  height: 40px;
  color: var(--teal);
  margin-bottom: 1.25rem;
}
.card__icon svg { width: 100%; height: 100%; }

.card__title {
  font-family: var(--ff-serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: .75rem;
}

.card__quote {
  font-size: .9375rem;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 1rem;
  border-left: 3px solid var(--silver);
  padding-left: .875rem;
  line-height: 1.6;
}

.card__text {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── PILLARS (por qué Sabal) ─────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 4rem;
  margin-top: 2.5rem;
}

.pillar {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.pillar__number {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--teal);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
}

.pillar__title {
  font-family: var(--ff-serif);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: .5rem;
}

.pillar__text {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── MODELS (servicios preview) ──────────────────────────── */
.models {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.model {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(184,197,214,.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.model:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(27,58,82,.13);
}

.model--accent {
  background: var(--navy);
  border-color: var(--navy);
}
.model--accent .model__tag,
.model--accent .model__title,
.model--accent .model__text,
.model--accent .model__price { color: var(--white); }
.model--accent .model__text  { color: rgba(255,255,255,.75); }
.model--accent .model__tag   { color: var(--silver); }

.model__tag {
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .75rem;
}

.model__title {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: .875rem;
}

.model__text {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.model__price {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--navy);
}

/* ── CTA FINAL ───────────────────────────────────────────── */
.cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  text-align: center;
}

.cta__eyebrow {
  font-family: var(--ff-serif);
  font-size: .875rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1rem;
}

.cta__title {
  font-family: var(--ff-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: .75rem;
}

.cta__text {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 2rem;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: #111E29;
  padding-block: 2.5rem;
  color: rgba(255,255,255,.6);
  font-size: .875rem;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer__logo {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: .25rem;
}

.footer__tagline { color: rgba(255,255,255,.45); font-size: .8125rem; }

.footer__nav {
  display: flex;
  gap: 1.75rem;
}
.footer__nav a {
  color: rgba(255,255,255,.6);
  font-size: .875rem;
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--white); }

.footer__copy { color: rgba(255,255,255,.35); font-size: .8125rem; }
.footer__copy a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer__copy a:hover { color: var(--white); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .cards   { grid-template-columns: 1fr; }
  .models  { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; gap: 2rem; }

  .problem__inner { grid-template-columns: 1fr; gap: 1.5rem; }

  .footer__inner { flex-direction: column; align-items: flex-start; }
}

/* ── ACTIVE NAV LINK ─────────────────────────────────────── */
.nav__link--active {
  color: var(--white) !important;
  border-bottom: 2px solid var(--teal);
  padding-bottom: 2px;
}

/* ── HERO SHORT (páginas internas) ───────────────────────── */
.hero--short { padding-block: 4.5rem 3.5rem; }

/* ── SERVICE BLOCKS ──────────────────────────────────────── */
.service-block {
  background: var(--white);
  border: 1px solid rgba(184,197,214,.4);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

.service-block--accent {
  background: var(--navy);
  border-color: var(--navy);
}
.service-block--accent .service-block__tag   { color: var(--silver); }
.service-block--accent .service-block__title { color: var(--white); }
.service-block--accent .service-block__price { color: var(--teal); }
.service-block--accent .service-block__desc  { color: rgba(255,255,255,.75); }
.service-block--accent .service-block__label { color: var(--silver); }
.service-block--accent .service-block__list  { color: rgba(255,255,255,.75); }
.service-block--accent .service-block__detail p { color: rgba(255,255,255,.7); }

.service-block__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.service-block__tag {
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #B89B3F;
  margin-bottom: .4rem;
}

.service-block__title {
  font-family: var(--ff-serif);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 400;
  color: var(--navy);
}

.service-block__price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  padding: .4rem .9rem;
  background: var(--light);
  border-radius: 20px;
  align-self: center;
}
.service-block--accent .service-block__price {
  background: rgba(255,255,255,.1);
  color: var(--white);
}

.service-block__desc {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 760px;
}

/* ── ROI BADGE ───────────────────────────────────────────── */
.service-block__roi-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--teal);
  background: rgba(61,138,122,.1);
  border: 1px solid rgba(61,138,122,.25);
  border-radius: 20px;
  padding: .3rem .875rem .3rem .6rem;
  margin-top: .625rem;
}
.service-block__roi-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.service-block__roi-badge--light {
  color: #7ed6c8;
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
}

/* ── ROI CALLOUT ─────────────────────────────────────────── */
.service-block__roi {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  background: rgba(61,138,122,.07);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
}
.service-block__roi svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--teal);
  margin-top: .15rem;
}
.service-block__roi p {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.7;
}
.service-block__roi p strong { color: var(--navy); }

.service-block__roi--light {
  background: rgba(255,255,255,.08);
  border-left-color: var(--teal);
}
.service-block__roi--light p         { color: rgba(255,255,255,.75); }
.service-block__roi--light p strong  { color: var(--white); }
.service-block__roi--light svg       { color: var(--teal); }

.service-block__body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.service-block__label {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .75rem;
}

.service-block__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.service-block__list li {
  font-size: .9375rem;
  color: var(--muted);
  padding-left: 1.1rem;
  position: relative;
}
.service-block__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--teal);
}

.service-block--accent .service-block__list li {
  color: rgba(247, 243, 232, 0.9);
}
.service-block--accent .service-block__label {
  color: rgba(247, 243, 232, 0.7);
}

.service-block__detail p {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ── SERVICES GRID ───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.service-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(184,197,214,.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(27,58,82,.12);
}

.service-item__icon {
  width: 36px;
  height: 36px;
  color: var(--teal);
  margin-bottom: 1rem;
}
.service-item__icon svg { width: 100%; height: 100%; }

.service-item__title {
  font-family: var(--ff-serif);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: .5rem;
}

.service-item__text {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── GEOGRAFÍA ───────────────────────────────────────────── */
.geo__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.geo__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .625rem;
  margin-top: 1.5rem;
}

.geo__tag {
  font-size: .8125rem;
  font-weight: 500;
  color: var(--blue);
  background: rgba(46,92,127,.08);
  border: 1px solid rgba(46,92,127,.2);
  border-radius: 20px;
  padding: .3rem .875rem;
}

.geo__stat-group {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.geo__stat {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--teal);
}

.geo__stat-num {
  font-family: var(--ff-serif);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
}

.geo__stat-label {
  font-size: .875rem;
  color: var(--muted);
}

/* responsive servicios */
@media (max-width: 900px) {
  .service-block__body { grid-template-columns: 1fr; gap: 1.25rem; }
  .services-grid       { grid-template-columns: 1fr 1fr; }
  .geo__inner          { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 600px) {
  .service-block       { padding: 1.75rem 1.25rem; }
  .service-block__header { flex-direction: column; }
  .services-grid       { grid-template-columns: 1fr; }
}

/* ── PROFILE CARDS ───────────────────────────────────────── */
.profile-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

.profile-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(184,197,214,.3);
  overflow: hidden;
  display: flex;
  flex-direction: row;
}

.profile-card__photo {
  width: 200px;
  flex-shrink: 0;
  padding: 1.5rem 1.25rem;
  border-right: 1px solid rgba(184,197,214,.25);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-card__photo .profile__photo-placeholder {
  aspect-ratio: 1 / 1;
  margin-bottom: 1rem;
}

.profile-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.profile-card__name {
  font-family: var(--ff-serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
  margin: 0;
}

.profile-card__role {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0;
}

.profile-card__bio {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 600px) {
  .profile-card { flex-direction: column; }
  .profile-card__photo { width: 100%; border-right: none; border-bottom: 1px solid rgba(184,197,214,.25); }
  .profile__photo { aspect-ratio: 4 / 3; object-position: top center; }
}

/* ── ABOUT INTRO ─────────────────────────────────────────── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-intro__text .section__text { max-width: 100%; }

.about-intro__pillars {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.about-pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-pillar__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--teal);
  margin-top: .1rem;
}
.about-pillar__icon svg { width: 100%; height: 100%; }

.about-pillar__title {
  font-family: var(--ff-serif);
  font-size: 1.0625rem;
  color: var(--navy);
  margin-bottom: .25rem;
}

.about-pillar__text {
  font-size: .9375rem;
  color: var(--muted);
}

/* ── PROFILES ────────────────────────────────────────────── */
.profile {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3.5rem;
  align-items: start;
  padding-block: 3rem;
}

.profile--reverse {
  grid-template-columns: 1fr 260px;
}
.profile--reverse .profile__photo-col { order: 2; }
.profile--reverse .profile__content   { order: 1; }

.profile__divider {
  border: none;
  border-top: 1px solid rgba(184,197,214,.4);
}

.profile__photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--light);
  border-radius: var(--radius);
  border: 2px dashed var(--silver);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: var(--silver);
  margin-bottom: 1rem;
}
.profile__photo-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: .5;
}
.profile__photo-placeholder p {
  font-size: .8125rem;
  color: var(--silver);
}

/* When real photo is added — replace placeholder with: */
.profile__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.profile__linkedin {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--blue);
  transition: color var(--transition);
}
.profile__linkedin:hover { color: var(--navy); }
.profile__linkedin svg   { width: 18px; height: 18px; flex-shrink: 0; }

.profile__role {
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .5rem;
}

.profile__name {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.profile__bio {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 620px;
}

.profile__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.75rem;
}

.profile__tag {
  font-size: .8rem;
  font-weight: 500;
  color: var(--blue);
  background: rgba(46,92,127,.08);
  border: 1px solid rgba(46,92,127,.2);
  border-radius: 20px;
  padding: .25rem .75rem;
}

.profile__career {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  border-left: 2px solid var(--silver);
  padding-left: 1.25rem;
}

.profile__career-item {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.profile__career-co {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--navy);
}

.profile__career-role {
  font-size: .875rem;
  color: var(--muted);
}

/* ── TOGETHER ────────────────────────────────────────────── */
.together__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.together__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.together__stat {
  padding-left: 1.1rem;
  border-left: 3px solid var(--teal);
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.together__num {
  font-family: var(--ff-serif);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
}

.together__label {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.4;
}

/* responsive nosotros */
@media (max-width: 900px) {
  .about-intro    { grid-template-columns: 1fr; gap: 2.5rem; }
  .together__inner{ grid-template-columns: 1fr; gap: 2.5rem; }

  .profile {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .profile--reverse .profile__photo-col,
  .profile--reverse .profile__content { order: unset; }
  .profile--reverse { grid-template-columns: 1fr; }

  .profile__photo-placeholder { aspect-ratio: 4 / 3; max-width: 320px; }
}

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

/* ── CONTACT LAYOUT ──────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}

/* ── FORM WRAP ───────────────────────────────────────────── */
.contact-form-wrap__title {
  font-family: var(--ff-serif);
  font-size: 1.625rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: .35rem;
}

.contact-form-wrap__sub {
  font-size: .9375rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* ── FORM FIELDS ─────────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-field { display: flex; flex-direction: column; gap: .4rem; }

.form-label {
  font-size: .875rem;
  font-weight: 500;
  color: var(--navy);
}
.form-label span { color: var(--teal); }

.form-input {
  font-family: var(--ff-sans);
  font-size: .9375rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--silver);
  border-radius: var(--radius);
  padding: .7rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-input::placeholder { color: #aab4be; }
.form-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(46,92,127,.12);
}
.form-input.is-invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,.1);
}

.form-textarea { resize: vertical; min-height: 130px; }

.form-error {
  font-size: .8125rem;
  color: #c0392b;
  min-height: 1rem;
}

.form-submit { align-self: flex-start; margin-top: .25rem; }

/* ── FORM SUCCESS ────────────────────────────────────────── */
.form-success {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(61,138,122,.08);
  border: 1px solid rgba(61,138,122,.3);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
}
.form-success svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--teal);
  margin-top: .1rem;
}
.form-success strong { font-size: .9375rem; color: var(--navy); display: block; margin-bottom: .2rem; }
.form-success p      { font-size: .875rem; color: var(--muted); }

/* ── CONTACT INFO SIDEBAR ────────────────────────────────── */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 1.75rem;
  background: var(--light);
  border-radius: var(--radius);
  border: 1px solid rgba(184,197,214,.4);
}

.contact-info__title {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .6rem;
}

.contact-info__link {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9375rem;
  color: var(--blue);
  font-weight: 500;
  transition: color var(--transition);
}
.contact-info__link:hover { color: var(--navy); }
.contact-info__link svg   { width: 17px; height: 17px; flex-shrink: 0; }

.contact-info__text {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.7;
}

.contact-info__note {
  border-top: 1px solid rgba(184,197,214,.5);
  padding-top: 1.25rem;
  font-size: .8125rem;
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
}

/* responsive contacto */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ── NAV SCROLL STATE ────────────────────────────────────── */
.nav--scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.nav--scrolled .nav__inner {
  height: 64px;
  transition: height .25s ease;
}

/* ── FADE-IN ON SCROLL ───────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger cards and pillars */
.cards .card:nth-child(2)   { transition-delay: .1s; }
.cards .card:nth-child(3)   { transition-delay: .2s; }
.models .model:nth-child(2) { transition-delay: .1s; }
.models .model:nth-child(3) { transition-delay: .2s; }
.pillars .pillar:nth-child(2) { transition-delay: .08s; }
.pillars .pillar:nth-child(3) { transition-delay: .16s; }
.pillars .pillar:nth-child(4) { transition-delay: .24s; }

@media (max-width: 700px) {
  :root { --section-gap: 3.5rem; }

  /* Mobile nav */
  .nav__toggle { display: flex; }

  .nav__links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 1rem 5%;
    border-top: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
  }
  .nav__links.is-open { display: flex; }

  .nav__links a {
    padding: .75rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav__links .btn--outline {
    margin-top: .5rem;
    border-color: rgba(255,255,255,.3);
  }

  .hero { padding-block: 4rem 3rem; }
  .hero__title br { display: none; }

  .cards { gap: 1rem; }
  .models { gap: 1rem; }

  .footer__nav { flex-wrap: wrap; gap: 1rem; }
}

/* SABAL DISCOVERY */
.discovery-block {
  background: #1a2f4a;
  color: #F7F3E8;
  border-radius: 12px;
  padding: 2.5rem;
  margin-top: 2rem;
  border-left: 6px solid #B89B3F;
}
.discovery-block__header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(247, 243, 232, 0.2);
}
.discovery-block__tag {
  font-size: 0.85rem;
  font-weight: 600;
  color: #B89B3F;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.discovery-block__title {
  font-size: 1.875rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.discovery-block__body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.discovery-block__desc {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: rgba(247, 243, 232, 0.9);
}
.discovery-block__what-label,
.discovery-block__why-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #B89B3F;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.discovery-block__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.discovery-block__list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(247, 243, 232, 0.9);
}
.discovery-block__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #B89B3F;
  font-weight: 600;
}
.discovery-block__why {
  background: rgba(247, 243, 232, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 3px solid #B89B3F;
}
.discovery-block__why p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(247, 243, 232, 0.9);
  margin: 0;
}
.discovery-block .btn--primary {
  background: #F7F3E8;
  color: #1a2f4a;
  border: none;
}
.discovery-block .btn--primary:hover {
  background: #ffffff;
}
@media (max-width: 768px) {
  .discovery-block { padding: 1.5rem; }
  .discovery-block__body { grid-template-columns: 1fr; gap: 1.5rem; }
  .discovery-block__title { font-size: 1.5rem; }
}

/* LA VÍA SABAL */
.method { background: #F7F3E8; }
.method-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.method-step {
  background: #fff;
  padding: 1.75rem 1.25rem;
  border-radius: 8px;
  text-align: center;
  border-top: 3px solid #B89B3F;
}
.method-step__num {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #B89B3F;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}
.method-step__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1F3B2A;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.method-step__text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #4A4A4A;
}
@media (max-width: 1024px) {
  .method-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .method-grid { grid-template-columns: 1fr; }
}

/* NOTAS EN MODELOS */
.service-block__note {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-style: italic;
  color: #B89B3F;
  border-top: 1px dashed rgba(184, 155, 63, 0.3);
  padding-top: 0.75rem;
}
.service-block--accent .service-block__note {
  color: #F7F3E8;
  border-top-color: rgba(247, 243, 232, 0.3);
}

/* FOOTER LEGAL */
.footer__legal {
  font-size: 0.8rem;
  color: rgba(247, 243, 232, 0.7);
  margin-top: 0.75rem;
  max-width: 350px;
  line-height: 1.4;
}

/* CONTRAST GRID (¿Por qué Sabal Partners?) */
.contrast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.contrast-item {
  padding: 1.75rem;
  background: #fff;
  border-radius: 8px;
  border-top: 3px solid #B89B3F;
}
.contrast-item--accent {
  background: #1F3B2A;
  color: #F7F3E8;
}
.contrast-item--accent .contrast-item__title { color: #fff; }
.contrast-item__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1F3B2A;
}
.contrast-item__text {
  font-size: 0.95rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .contrast-grid { grid-template-columns: 1fr; }
}

/* PROCESS FLOW (hero) */
.process-flow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.process-flow__step {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: 0.6rem 1.125rem;
}
.process-flow__num {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #B89B3F;
}
.process-flow__label {
  font-size: 0.875rem;
  color: rgba(255,255,255,.85);
}
.process-flow__arrow {
  color: rgba(255,255,255,.35);
  font-size: 1.125rem;
}

/* STEP BADGE (sections) */
.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
}
.step-badge.center { display: flex; justify-content: center; }
.step-badge__num {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #B89B3F;
  background: rgba(184,155,63,0.1);
  border: 1px solid rgba(184,155,63,0.3);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
}
.step-badge__label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* SECTION CONNECTOR (entre Discovery y modelos) */
.section-connector {
  text-align: center;
  padding: 2.25rem 0;
  background: var(--white);
  border-top: 1px solid rgba(184,197,214,.2);
  border-bottom: 1px solid rgba(184,197,214,.2);
}
.section-connector__icon {
  display: block;
  font-size: 1.375rem;
  color: var(--teal);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.section-connector__text {
  font-size: 0.9375rem;
  color: var(--muted);
}
.section-connector__text strong {
  color: var(--navy);
  font-weight: 600;
}

/* DISCOVERY CALLOUT (index preview) */
.discovery-callout {
  background: rgba(26,47,74,.04);
  border: 1px solid rgba(184,155,63,.25);
  border-left: 4px solid #B89B3F;
  border-radius: 8px;
  padding: 1.25rem 1.75rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.discovery-callout__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B89B3F;
  white-space: nowrap;
  flex-shrink: 0;
}
.discovery-callout__text {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}
.discovery-callout__text strong { color: var(--navy); }
.discovery-callout__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--teal);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--transition);
}
.discovery-callout__link:hover { color: var(--navy); }

/* MODEL NUMBER */
.model__num {
  font-family: var(--ff-serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.625rem;
}
.model--accent .model__num { color: rgba(255,255,255,.3); }

/* SERVICE BLOCK BUTTON OVERRIDES */
.service-block .btn--primary {
  background-color: #1a2f4a;
  color: #F7F3E8;
  border: none;
}
.service-block .btn--primary:hover {
  background-color: #243d5e;
}
.service-block--accent .btn--primary {
  background-color: #F7F3E8;
  color: #1a2f4a;
  border: none;
}
.service-block--accent .btn--primary:hover {
  background-color: #ffffff;
}
