/* ==========================================================================
   Jorge Sabater — Executive Landing Page
   Palette: deep navy (dominant) · ice blue (support) · white content · gold accent
   Type:    Playfair Display (headings) + Libre Franklin (body), system fallbacks
   ========================================================================== */

:root {
  /* Color system */
  --navy:        #1E2761;   /* dominant deep navy */
  --navy-900:    #141a45;   /* darker navy for depth */
  --navy-700:    #2a3479;
  --ice:         #CADCFC;   /* soft / ice blue support */
  --ice-soft:    #eef3fd;   /* very light tint for section backgrounds */
  --gold:        #C8A24A;   /* refined gold accent */
  --gold-bright: #d9b65f;
  --white:       #ffffff;
  --ink:         #1c2233;   /* near-black body text on light */
  --ink-soft:    #4a5168;   /* secondary body text */
  --line:        #e3e8f3;   /* hairline borders on light */

  /* Type */
  --font-display: "Playfair Display", Georgia, Cambria, "Times New Roman", serif;
  --font-body:    "Libre Franklin", -apple-system, BlinkMacSystemFont, "Segoe UI",
                  Calibri, "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --nav-h: 68px;
  --radius: 14px;
  --shadow-sm: 0 2px 10px rgba(20, 26, 69, 0.06);
  --shadow-md: 0 18px 50px rgba(20, 26, 69, 0.12);
}

/* ----------------------------- Reset / base ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: clamp(1rem, 0.97rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Accessibility: skip link */
.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 200;
  background: var(--gold);
  color: var(--navy-900);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

/* Visible focus for keyboard users */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ------------------------------- Buttons -------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease,
              color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy-900);
  box-shadow: 0 8px 22px rgba(200, 162, 74, 0.35);
}
.btn--gold:hover { background: var(--gold-bright); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--ice);
  border-color: rgba(202, 220, 252, 0.45);
}
.btn--ghost:hover {
  background: rgba(202, 220, 252, 0.12);
  border-color: var(--ice);
  color: var(--white);
  transform: translateY(-2px);
}

.dot-sep { color: var(--gold); margin-inline: 0.5rem; }

/* =========================================================================
   STICKY NAV
   ========================================================================= */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 26, 69, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(202, 220, 252, 0.12);
}
.nav-inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-brand { display: flex; flex-direction: column; line-height: 1.1; gap: 0.28rem; }
.nav-brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
}
.nav-brand__role {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.4vw, 1.4rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ice);
  padding: 0.4rem 0.2rem;
  position: relative;
  transition: color 0.18s ease;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.22s ease;
}
.nav-menu a:hover { color: var(--white); }
.nav-menu a:hover::after,
.nav-menu a.is-active::after { width: 100%; }
.nav-menu a.is-active { color: var(--white); }

.nav-cta {
  background: var(--gold);
  color: var(--navy-900) !important;
  padding: 0.45rem 1rem !important;
  border-radius: 999px;
  font-weight: 600;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--gold-bright); }

/* Language switcher (flags) */
.lang-switch {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 0.5rem;
  margin-left: auto;
}
.lang-switch__flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  padding: 0.22rem;
  border-radius: 5px;
  border: 1px solid rgba(202, 220, 252, 0.18);
  opacity: 0.5;
  transition: opacity 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.lang-switch__flag svg {
  display: block;
  width: auto;
  height: 16px;
  border-radius: 2px;
}
.lang-switch__flag:hover { opacity: 1; transform: translateY(-1px); }
.lang-switch__flag.is-active {
  opacity: 1;
  border-color: var(--gold);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(202, 220, 252, 0.3);
  border-radius: 10px;
  cursor: pointer;
  padding: 0 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ice);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding-top: clamp(3.5rem, 8vw, 6rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}
/* Atmospheric layered background: radial glows + subtle grid */
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 55% at 78% 12%, rgba(200, 162, 74, 0.16), transparent 60%),
    radial-gradient(55% 50% at 8% 90%, rgba(202, 220, 252, 0.14), transparent 60%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy) 55%, var(--navy-700) 120%);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(202, 220, 252, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(202, 220, 252, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 60% 30%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 60% 30%, black, transparent 75%);
}
.hero__grid { position: relative; }
.hero__content { max-width: 760px; }

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.hero__name {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 0.98;
  margin-bottom: 0.6rem;
}
.hero__title {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  font-weight: 500;
  color: var(--ice);
}
.hero__subtitle {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: rgba(202, 220, 252, 0.75);
  margin-top: 0.25rem;
}

.hero__headline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  margin-top: 2rem;
  max-width: 18ch;
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
}
.hero__lede {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 62ch;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.8rem;
  padding: 0.7rem 1.15rem;
  border: 1px solid rgba(200, 162, 74, 0.4);
  border-radius: 999px;
  background: rgba(200, 162, 74, 0.08);
  font-size: 0.88rem;
  color: var(--ice);
}
.availability strong { color: var(--white); font-weight: 600; }
.availability__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(200, 162, 74, 0.7);
  animation: pulse 2.4s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(200, 162, 74, 0.55); }
  70%  { box-shadow: 0 0 0 12px rgba(200, 162, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 162, 74, 0); }
}

.hero__tagline {
  margin-top: 1.6rem;
  font-style: italic;
  color: var(--ice);
  font-size: 1.02rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.hero__contact {
  margin-top: 1.6rem;
  font-size: 0.9rem;
  color: rgba(202, 220, 252, 0.85);
}
.hero__contact a { transition: color 0.18s ease; }
.hero__contact a:hover { color: var(--gold-bright); }

/* Hero stat row */
.hero__stats {
  position: relative;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(202, 220, 252, 0.18);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.hstat { display: flex; flex-direction: column; }
.hstat__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hstat__plus { color: var(--gold); }
.hstat__label {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: rgba(202, 220, 252, 0.8);
  max-width: 22ch;
}

/* =========================================================================
   GENERIC SECTION
   ========================================================================= */
.section {
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}
.section--tint {
  background: var(--ice-soft);
  border-block: 1px solid var(--line);
}

.section-head { max-width: 760px; margin-bottom: clamp(2.2rem, 5vw, 3.4rem); }
.section-kicker {
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.section-title {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  color: var(--navy);
  letter-spacing: -0.01em;
}
.section-meta {
  margin-top: 0.6rem;
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.section-intro {
  margin-top: 1rem;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: var(--ink-soft);
}

/* ------------------------------ Card grids ------------------------------ */
.card-grid { display: grid; gap: 1.5rem; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Differentiator cards (Value) */
.diff-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.diff-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.diff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--ice); }
.diff-card:hover::before { transform: scaleX(1); }
.diff-card__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ice);
  display: block;
  line-height: 1;
}
.diff-card__title {
  font-size: 1.4rem;
  color: var(--navy);
  margin: 0.8rem 0 0.7rem;
}
.diff-card p { color: var(--ink-soft); font-size: 0.96rem; }

/* Chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  margin: 2.4rem 0 0;
  padding: 0;
}
.chip {
  background: var(--navy);
  color: var(--ice);
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
}
.chip strong { color: var(--gold-bright); margin-right: 0.35rem; }

/* Release cards (Booking) */
.release-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-left-color 0.22s ease;
}
.release-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-left-color: var(--gold); }
.release-card__num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 700;
}
.release-card h3 { font-size: 1.3rem; color: var(--navy); margin: 0.4rem 0 0.6rem; }
.release-card p { color: var(--ink-soft); font-size: 0.95rem; }

/* Role block */
.role-block {
  margin-top: 2.5rem;
  background: var(--navy);
  color: var(--ice);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  position: relative;
  overflow: hidden;
}
.role-block::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(200,162,74,0.18), transparent 70%);
}
.role-block__title { color: var(--white); font-size: 1.6rem; }
.role-block__sub { margin: 0.5rem 0 1.4rem; color: rgba(202,220,252,0.85); max-width: 60ch; }
.role-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem 2rem;
  position: relative;
}
.role-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--white);
  font-size: 0.96rem;
}
.role-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* ------------------------------- Timeline ------------------------------- */
.timeline {
  list-style: none;
  margin: 0; padding: 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--ice), var(--gold));
}
.timeline__item {
  position: relative;
  padding: 0 0 2rem 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 1.4rem;
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: 4px; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--ice);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.timeline__item:hover::before { border-color: var(--gold); transform: scale(1.15); }
.timeline__item--current::before { border-color: var(--gold); background: var(--gold); }
.timeline__year {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.1rem;
  min-width: 9ch;
}
.timeline__body h3 { font-size: 1.2rem; color: var(--ink); display: inline; }
.timeline__body p { color: var(--ink-soft); font-size: 0.95rem; }
.timeline__item--current .timeline__body h3 { color: var(--navy); }

/* Callout */
.callout {
  margin-top: 2.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.section--tint .callout { background: var(--white); }
.callout__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Impact cards */
.impact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.impact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.impact-card__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.impact-card__unit {
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--gold);
  display: inline-block;
}
.impact-card p { margin-top: 1rem; color: var(--ink-soft); font-size: 0.92rem; }

/* ------------------------------ Steps (Method) -------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.step {
  position: relative;
  padding: 1.8rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.step__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--ice);
  line-height: 1;
  display: block;
}
.step h3 { font-size: 1.2rem; color: var(--navy); margin: 0.7rem 0 0.6rem; }
.step p { color: var(--ink-soft); font-size: 0.93rem; }

.principles {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1rem;
  padding: 1.4rem 1.6rem;
  background: var(--navy);
  border-radius: var(--radius);
}
.principles__label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.principles ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.8rem;
  list-style: none;
  margin: 0; padding: 0;
}
.principles li {
  color: var(--ice);
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.1rem;
}
.principles li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ------------------------------- Reach grid ----------------------------- */
.reach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.reach-stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.reach-stat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.reach-stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.reach-stat__label {
  margin-top: 0.6rem;
  display: block;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* ----------------------------- Credentials ------------------------------ */
.cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cred-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--navy);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.cred-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 0.6rem; }
.cred-card p { color: var(--ink-soft); font-size: 0.95rem; }

.proof-quote {
  margin: 2.5rem 0 0;
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.2rem, 4vw, 2rem);
}
.proof-quote blockquote {
  margin: 0 auto;
  max-width: 60ch;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.35;
  color: var(--navy);
}
.proof-quote figcaption {
  margin-top: 1.2rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.avail-block {
  margin-top: 2rem;
  background: var(--navy);
  color: var(--ice);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.5rem);
}
.avail-block__lead { font-size: clamp(1.05rem, 1.7vw, 1.25rem); color: var(--white); max-width: 70ch; }
.avail-block__lead strong { color: var(--gold-bright); }
.avail-block__contact { margin-top: 1.2rem; font-size: 0.95rem; }
.avail-block__contact a { color: var(--ice); transition: color 0.18s ease; }
.avail-block__contact a:hover { color: var(--gold-bright); }

/* ----------------------------- Testimonials ----------------------------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  margin: 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial::before {
  content: "\201C";
  font-family: var(--font-display);
  position: absolute;
  top: 0.2rem; left: 1.1rem;
  font-size: 4rem;
  color: var(--ice);
  line-height: 1;
}
.testimonial blockquote {
  margin: 1.2rem 0 1.3rem;
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.55;
  position: relative;
}
.testimonial figcaption { display: flex; flex-direction: column; gap: 0.15rem; border-top: 1px solid var(--line); padding-top: 0.9rem; }
.testimonial__name { font-weight: 700; color: var(--navy); }
.testimonial__role { font-size: 0.85rem; color: var(--ink-soft); }
.testimonial__period {
  margin-top: 0.15rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
}

/* =========================================================================
   CONTACT / CLOSING (dark)
   ========================================================================= */
.contact {
  position: relative;
  background: var(--navy-900);
  color: var(--white);
  text-align: center;
  padding-block: clamp(4rem, 9vw, 7rem);
  overflow: hidden;
}
.contact__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 60% at 50% 0%, rgba(200,162,74,0.18), transparent 60%),
    radial-gradient(60% 60% at 50% 120%, rgba(202,220,252,0.12), transparent 60%);
}
.contact__inner { position: relative; }
.contact__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white);
  margin: 0.6rem auto 0;
  max-width: 18ch;
}
.contact__lede {
  margin: 1.2rem auto 0;
  color: var(--ice);
  max-width: none;
  white-space: nowrap;
  font-size: 1.08rem;
}
@media (max-width: 720px) {
  .contact__lede {
    max-width: 50ch;
    white-space: normal;
  }
}
.contact__cta { justify-content: center; margin-top: 2rem; }
.contact__line { margin-top: 2rem; font-size: 0.92rem; color: rgba(202,220,252,0.85); }
.contact__line a:hover { color: var(--gold-bright); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
  background: var(--navy-900);
  color: rgba(202, 220, 252, 0.7);
  border-top: 1px solid rgba(202, 220, 252, 0.12);
  padding-block: 2.2rem;
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
}
.site-footer__name { font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: 1.1rem; }
.site-footer__tag { font-size: 0.85rem; font-style: italic; }
.site-footer__contact a:hover { color: var(--gold-bright); }
.site-footer__copy { font-size: 0.85rem; }

/* =========================================================================
   SCROLL REVEAL
   ========================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--reveal-delay, 0) * 80ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 980px) {
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .reach-grid { grid-template-columns: repeat(2, 1fr); }
  .cred-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
}

@media (max-width: 860px) {
  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    background: var(--navy-900);
    border-bottom: 1px solid rgba(202, 220, 252, 0.12);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease;
  }
  .nav-menu.is-open { max-height: 80vh; }
  .nav-menu ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem var(--gutter) 1.2rem;
  }
  .nav-menu li { border-bottom: 1px solid rgba(202, 220, 252, 0.08); }
  .nav-menu a { display: block; padding: 0.9rem 0; font-size: 0.98rem; }
  .nav-menu a::after { display: none; }
  .nav-cta { text-align: center; margin-top: 0.8rem; }
}

@media (max-width: 720px) {
  .card-grid--3 { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .reach-grid { grid-template-columns: 1fr; }
  .role-list { grid-template-columns: 1fr; }
  .timeline__year { min-width: 100%; }
}

@media (max-width: 520px) {
  .card-grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .hero__headline { padding-left: 1rem; }
  .btn { width: 100%; }
  .hero__cta, .contact__cta { width: 100%; }
}

/* =========================================================================
   REDUCED MOTION
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================================
   PRINT
   ========================================================================= */
@media print {
  .site-nav, .nav-toggle, .hero__cta, .contact__cta { display: none !important; }
  body { color: #000; }
  .hero, .contact, .role-block, .avail-block, .principles { background: #fff !important; color: #000 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
