:root {
  --navy: #0b1f33;
  --navy-2: #12304a;
  --green: #1f8a5b;
  --green-2: #2bb673;
  --mint: #e8f7ef;
  --sand: #f4f7f5;
  --text: #1a2b3c;
  --muted: #5b6b7a;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(11, 31, 51, 0.12);
  --radius: 1.25rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--text);
  background: var(--sand);
  line-height: 1.6;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.boot-msg { text-align: center; padding: 4rem; color: var(--green); }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.section { padding: 5.5rem 0; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  margin: 0 0 0.8rem;
}
.section-title {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--navy);
}
.section-title span, .text-accent { color: var(--green-2); }
.section-text { color: var(--muted); font-size: 1.05rem; max-width: 54ch; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.2s ease;
}
.btn--primary { background: var(--green); color: #fff; }
.btn--primary:hover { background: #18734c; }
.btn--ghost { border-color: rgba(255,255,255,0.45); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,0.1); }
.btn--outline { border-color: var(--green); color: var(--green); background: #fff; }
.btn--outline:hover { background: var(--mint); }
.btn--full { width: 100%; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(244, 247, 245, 0.86);
  border-bottom: 1px solid rgba(11,31,51,0.06);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 74px; gap: 1rem;
}
.nav__brand { display: flex; align-items: center; gap: 0.7rem; font-weight: 700; color: var(--navy); }
.nav__logo { width: 42px; height: 42px; border-radius: 10px; }
.nav__links { display: flex; gap: 1.1rem; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav__links a { color: var(--muted); font-weight: 500; font-size: 0.95rem; }
.nav__links a:hover { color: var(--navy); }
.nav__cta {
  background: var(--navy) !important; color: #fff !important;
  padding: 0.55rem 1rem; border-radius: 999px;
}
.nav__toggle {
  display: none; width: 42px; height: 42px; border: 0; background: transparent;
}
.nav__toggle span {
  display: block; height: 2px; background: var(--navy); margin: 6px 8px; border-radius: 2px;
}

.hero {
  position: relative; min-height: 100vh; display: grid; align-items: end;
  padding: 8rem 0 4rem; color: #fff; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg-img, .hero__bg-video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,31,51,0.35), rgba(11,31,51,0.82)),
    linear-gradient(90deg, rgba(11,31,51,0.55), transparent 55%);
}
.hero__content { position: relative; z-index: 1; max-width: 760px; }
.hero__title {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.05; margin: 0 0 1rem;
}
.hero__lead { color: rgba(255,255,255,0.86); font-size: 1.12rem; max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.8rem; }

.stats { padding: 0; margin-top: -2.5rem; position: relative; z-index: 2; }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.stat-card {
  background: #fff; border-radius: var(--radius); padding: 1.4rem;
  box-shadow: var(--shadow); border: 1px solid rgba(11,31,51,0.05);
}
.stat-card__value, .stat-card__suffix {
  font-family: Fraunces, Georgia, serif; font-size: 2rem; color: var(--navy); font-weight: 700;
}
.stat-card__label { margin: 0.35rem 0 0; color: var(--muted); font-size: 0.92rem; }

.about__grid, .vdrs__grid, .book__grid, .ceo__grid, .contact__grid, .experience__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2.5rem; align-items: center;
}
.about__media, .media-card {
  position: relative; border-radius: 1.5rem; overflow: hidden; box-shadow: var(--shadow);
}
.about__photo, .media-card img, .media-card video { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about__badge {
  position: absolute; left: 1rem; bottom: 1rem; background: rgba(11,31,51,0.92);
  color: #fff; padding: 0.85rem 1rem; border-radius: 1rem;
}
.about__badge-title { display: block; font-size: 0.75rem; color: #8fe0b8; text-transform: uppercase; letter-spacing: 0.12em; }
.about__badge-name { font-weight: 700; }
.about__list { padding-left: 1.1rem; color: var(--muted); }
.about__list li { margin: 0.4rem 0; }

.solutions { background: #fff; }
.solutions__grid, .services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem;
}
.service-card {
  background: var(--sand); border: 1px solid rgba(11,31,51,0.06);
  border-radius: var(--radius); padding: 1.4rem; min-height: 180px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card__icon {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: var(--mint); color: var(--green); font-weight: 700; margin-bottom: 0.9rem;
}
.service-card h3 { margin: 0 0 0.5rem; color: var(--navy); font-size: 1.1rem; }
.service-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.vdrs { background: linear-gradient(160deg, var(--navy), var(--navy-2)); color: #fff; }
.vdrs .section-title, .vdrs .eyebrow { color: #fff; }
.vdrs .eyebrow { color: #8fe0b8; }
.vdrs .section-text, .vdrs li { color: rgba(255,255,255,0.82); }
.vdrs__points { padding-left: 1.1rem; }
.vdrs__points li { margin: 0.45rem 0; }

.book {
  background:
    radial-gradient(circle at top right, rgba(43,182,115,0.18), transparent 40%),
    #fff;
}
.book__card {
  border-radius: 1.5rem; padding: 1.6rem; background: var(--navy); color: #fff;
  box-shadow: var(--shadow);
}
.book__card h3 { font-family: Fraunces, Georgia, serif; font-size: 2rem; margin: 0.2rem 0; }
.book__card p { color: rgba(255,255,255,0.82); }
.book__media {
  border-radius: 1.5rem; overflow: hidden; min-height: 280px; background: var(--mint);
  display: grid; place-items: center; box-shadow: var(--shadow);
}
.book__media img, .book__media video { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.book__placeholder {
  padding: 2rem; text-align: center; color: var(--navy); font-family: Fraunces, Georgia, serif;
  font-size: 1.6rem;
}

.ceo { background: var(--mint); }
.ceo__social { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.2rem; }
.ceo__photo {
  width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 1.5rem; box-shadow: var(--shadow);
  background: #fff;
}
.ceo__role { color: var(--green); font-weight: 600; margin: 0.3rem 0 0.8rem; }

.cta-band { padding: 0 0 5rem; }
.cta-band__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
  background: linear-gradient(120deg, var(--green), #146c48);
  color: #fff; border-radius: 1.5rem; padding: 1.6rem 1.8rem; box-shadow: var(--shadow);
}
.cta-band__inner h2 { margin: 0 0 0.3rem; font-family: Fraunces, Georgia, serif; }
.cta-band__inner p { margin: 0; color: rgba(255,255,255,0.88); }

.contact__form, .contact__info {
  background: #fff; border-radius: 1.5rem; padding: 1.4rem; box-shadow: var(--shadow);
}
.contact__info { list-style: none; margin: 1rem 0 0; padding: 1rem 1.2rem; }
.contact__info li { padding: 0.45rem 0; border-bottom: 1px solid rgba(11,31,51,0.06); }
.contact__info li:last-child { border-bottom: 0; }
.contact__form label {
  display: block; font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 0.85rem;
}
.contact__form input, .contact__form select, .contact__form textarea {
  width: 100%; margin-top: 0.35rem; border: 1px solid rgba(11,31,51,0.12);
  border-radius: 0.8rem; padding: 0.75rem 0.85rem; font: inherit; background: #fff;
}
.contact__form input:focus, .contact__form select:focus, .contact__form textarea:focus {
  outline: 2px solid rgba(43,182,115,0.25); border-color: var(--green-2);
}

.footer {
  background: var(--navy); color: rgba(255,255,255,0.78); padding: 2rem 0;
}
.footer__inner {
  display: flex; justify-content: space-between; gap: 1rem; align-items: center; flex-wrap: wrap;
}
.footer__brand { display: flex; gap: 0.8rem; align-items: center; }
.footer__logo { width: 38px; height: 38px; border-radius: 10px; }
.footer__social { display: flex; gap: 0.8rem; }
.footer__social a:hover { color: #fff; }

.reveal { opacity: 0; transform: translateY(18px); transition: 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .stats__grid, .solutions__grid, .services__grid { grid-template-columns: 1fr 1fr; }
  .about__grid, .vdrs__grid, .book__grid, .ceo__grid, .contact__grid { grid-template-columns: 1fr; }
  .nav__toggle { display: block; }
  .nav__links {
    display: none; position: absolute; top: 74px; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 1rem; border-bottom: 1px solid rgba(11,31,51,0.08);
  }
  .nav__links.open { display: flex; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .stats__grid, .solutions__grid, .services__grid { grid-template-columns: 1fr; }
}

/* ═══ GOLD ACCENTS ═══ */
:root {
  --gold: #c9a227;
  --gold-2: #e0bc4a;
  --gold-soft: rgba(201, 162, 39, 0.14);
  --gold-glow: 0 12px 40px rgba(201, 162, 39, 0.22);
}

.eyebrow { color: var(--gold); }
.section-title span,
.text-accent { color: var(--gold-2); }
.btn--primary {
  background: linear-gradient(135deg, var(--gold), #a88412);
  color: #0b1f33;
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.28);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  transform: translateY(-2px);
  box-shadow: var(--gold-glow);
}
.btn--outline {
  border-color: var(--gold);
  color: #8a6d12;
}
.btn--outline:hover {
  background: var(--gold-soft);
  border-color: var(--gold-2);
}
.nav__cta {
  background: linear-gradient(135deg, var(--gold), #a88412) !important;
  color: #0b1f33 !important;
}
.nav__links a:hover { color: var(--gold); }
.stat-card__value,
.stat-card__suffix { color: var(--gold); }
.service-card__icon {
  background: var(--gold-soft);
  color: #8a6d12;
  border: 1px solid rgba(201, 162, 39, 0.25);
}
.about__badge-title { color: var(--gold-2); }
.ceo__role { color: #8a6d12; }

/* ═══ CARD HOVERS ═══ */
.stat-card,
.service-card,
.media-card,
.book__card,
.book__media,
.about__media,
.contact__form,
.contact__info {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.stat-card:hover,
.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--gold-glow);
  border-color: rgba(201, 162, 39, 0.35);
}
.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, var(--gold), #a88412);
  color: #0b1f33;
}
.media-card:hover,
.about__media:hover,
.book__media:hover {
  transform: translateY(-6px);
  box-shadow: var(--gold-glow);
}
.book__card {
  background: linear-gradient(155deg, #0b1f33 0%, #16324d 55%, #2a2410 100%);
  border: 1px solid rgba(201, 162, 39, 0.28);
}
.book__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gold-glow);
}
.book__tagline {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--gold-2);
  margin: 0.4rem 0 1rem;
  font-style: italic;
}
.book__copy p {
  color: rgba(255,255,255,0.84);
  margin: 0 0 0.85rem;
  line-height: 1.7;
  font-size: 0.98rem;
}
.book__copy p:last-of-type { margin-bottom: 1.2rem; }
.book__media img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  background: #0b1f33;
}
.book__grid {
  align-items: start;
  grid-template-columns: 0.85fr 1.15fr;
}
.book__media {
  position: sticky;
  top: 96px;
  background: #0b1f33;
  padding: 1rem;
}

/* ═══ PROGRESS BARS ═══ */
.experience {
  background: #fff;
}
.experience__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}
.progress-list { display: grid; gap: 1.1rem; }
.progress-item {
  background: var(--sand);
  border: 1px solid rgba(11,31,51,0.06);
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.progress-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--gold-glow);
  border-color: rgba(201, 162, 39, 0.35);
}
.progress-item__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.55rem;
  font-weight: 600;
  color: var(--navy);
}
.progress-item__head strong { color: var(--gold); }
.progress-item__bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(11,31,51,0.08);
  overflow: hidden;
}
.progress-item__bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--gold-2), #f0d57a);
  box-shadow: 0 0 16px rgba(201, 162, 39, 0.45);
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.cta-band__inner {
  background: linear-gradient(120deg, #0b1f33, #1a3a28 45%, #8a6d12);
  border: 1px solid rgba(201, 162, 39, 0.25);
}
.hero__title .text-accent {
  background: linear-gradient(90deg, var(--gold-2), #f0d57a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-card {
  border-top: 3px solid var(--gold);
}

@media (max-width: 900px) {
  .experience__grid, .book__grid { grid-template-columns: 1fr; }
  .book__media { position: static; }
}

/* ═══ SCROLL ANIMATIONS ═══ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.75s ease;
  filter: blur(4px);
  will-change: transform, opacity;
}
.reveal-up { transform: translateY(36px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: translateY(18px) scale(0.94); }
.reveal.visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.site-header {
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(244, 247, 245, 0.94);
  box-shadow: 0 10px 30px rgba(11, 31, 51, 0.08);
  border-bottom-color: rgba(201, 162, 39, 0.18);
}
.nav__links a {
  position: relative;
  transition: color 0.2s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav__links a.is-active,
.nav__links a:hover { color: var(--gold); }
.nav__links a.is-active::after,
.nav__links a:hover::after { transform: scaleX(1); }

.hero__bg {
  will-change: transform;
  transform-origin: center top;
}
.hero__content {
  will-change: transform, opacity;
}

.scroll-parallax {
  transform: translate3d(0, var(--scroll-shift, 0px), 0);
  transition: transform 0.12s linear;
  will-change: transform;
}

.title-draw.visible {
  position: relative;
}
.title-draw.visible::after {
  content: "";
  display: block;
  width: min(120px, 40%);
  height: 3px;
  margin-top: 0.75rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), transparent);
  animation: drawLine 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes drawLine {
  from { width: 0; opacity: 0; }
  to { width: min(120px, 40%); opacity: 1; }
}

.stat-card.visible,
.service-card.visible,
.progress-item.visible {
  animation: cardPop 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes cardPop {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to { opacity: 1; transform: none; }
}

.ceo__photo {
  object-fit: cover;
  object-position: center top;
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .scroll-parallax, .hero__bg, .hero__content, .stat-card, .service-card {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}
