:root {
  --navy: #0b1f3a;
  --navy-2: #123056;
  --amber: #f0a202;
  --amber-2: #ffb703;
  --teal: #1b9aaa;
  --sand: #f4f1ea;
  --ink: #142033;
  --muted: #5b667a;
  --header-h: 120px;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(11,31,58,.16);
  --font: "Manrope", system-ui, sans-serif;
  --display: "Oswald", Impact, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--amber);
  margin: 0 0 .75rem;
}
h1,h2,h3 { font-family: var(--display); line-height: 1.1; margin: 0 0 1rem; }
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); text-transform: uppercase; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); text-transform: uppercase; }
.lead { font-size: 1.15rem; max-width: 38rem; color: rgba(255,255,255,.88); }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11,31,58,.08);
  min-height: var(--header-h);
}
.header__inner {
  min-height: var(--header-h);
  display: flex; align-items: center; gap: 1.25rem;
}
.brand { display: flex; align-items: center; gap: .9rem; }
.brand__logo { height: 88px; width: auto; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__text strong { font-family: var(--display); font-size: 1.35rem; letter-spacing: .04em; color: var(--navy); }
.brand__text small { color: var(--muted); font-size: .8rem; }
.nav { margin-left: auto; display: flex; gap: 1.1rem; }
.nav a { font-weight: 600; font-size: .92rem; color: var(--navy); position: relative; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--amber); transition: width .25s ease;
}
.nav a:hover::after { width: 100%; }
.header__cta { margin-left: .5rem; }
.nav-toggle { display: none; border: 0; background: var(--navy); color: #fff; width: 44px; height: 44px; border-radius: 12px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 1.35rem; border-radius: 999px; font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--amber { background: linear-gradient(135deg, var(--amber), var(--amber-2)); color: #1a1200; box-shadow: 0 10px 30px rgba(240,162,2,.35); }
.btn--ghost { border: 1px solid rgba(255,255,255,.45); color: #fff; }
.btn--ghost-dark { border: 1px solid rgba(11,31,58,.2); color: var(--navy); }
.btn--xl { padding: 1rem 1.6rem; font-size: 1.05rem; }

.hero {
  position: relative; min-height: 92vh; display: grid; align-items: end;
  padding: calc(var(--header-h) + 2rem) 0 5rem; color: #fff; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,31,58,.35), rgba(11,31,58,.88) 70%);
}
.hero__content { position: relative; z-index: 1; }
.hero h1 span { color: var(--amber-2); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem; }

.stats { margin-top: -3rem; 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 1.2rem; box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.stat-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(11,31,58,.22); }
.stat-card__num { font-family: var(--display); font-size: 2.6rem; color: var(--navy); }
.stat-card p { margin: .2rem 0 0; color: var(--muted); font-weight: 600; }

.section { padding: 5.5rem 0; }
.section--dark { background: linear-gradient(160deg, var(--navy), var(--navy-2)); color: #fff; }
.section__head { max-width: 40rem; margin-bottom: 2.5rem; }
.section__head p:last-child { color: var(--muted); }
.section--dark .section__head p:last-child,
.section--dark .check { color: rgba(255,255,255,.82); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.card {
  background: #fff; border-radius: var(--radius); padding: 1.5rem; border: 1px solid rgba(11,31,58,.06);
  box-shadow: 0 10px 30px rgba(11,31,58,.06);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.card:hover { transform: translateY(-10px) scale(1.01); box-shadow: var(--shadow); border-color: rgba(240,162,2,.45); }
.card__icon {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(240,162,2,.15); color: #9a6500; font-weight: 800; margin-bottom: 1rem;
}

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.5rem; align-items: center; }
.check { padding-left: 1.1rem; }
.check li { margin: .55rem 0; }

.bars { display: grid; gap: 1.2rem; }
.bar__label { display: flex; justify-content: space-between; margin-bottom: .45rem; font-weight: 700; }
.bar__track { height: 12px; border-radius: 999px; background: rgba(255,255,255,.12); overflow: hidden; }
.bar__track span {
  display: block; height: 100%; width: 0; border-radius: inherit;
  background: linear-gradient(90deg, var(--amber), var(--teal));
  transition: width 1.4s cubic-bezier(.2,.8,.2,1);
}

.about__media { position: relative; }
.about__media > img:first-child { border-radius: 24px; box-shadow: var(--shadow); }
.about__float {
  position: absolute; right: -4%; bottom: -8%; width: min(220px, 42%);
  border-radius: 20px; background: #fff; padding: .6rem; box-shadow: var(--shadow);
}

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery__item {
  margin: 0; overflow: hidden; border-radius: 18px; aspect-ratio: 1 / 1; background: #ddd;
  transition: transform .3s ease, box-shadow .3s ease;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery__item:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.gallery__item:hover img { transform: scale(1.08); }

.map-wrap {
  border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(11,31,58,.08);
  aspect-ratio: 16 / 8; background: #cfd8e3;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

.cta__box {
  display: grid; grid-template-columns: 1.3fr .7fr; gap: 2rem; align-items: center;
  background: #fff; border-radius: 28px; padding: 2.2rem; box-shadow: var(--shadow);
}
.contact-list { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.contact-list li { margin: .55rem 0; }
.contact-list a { color: var(--teal); font-weight: 700; }
.cta__actions { display: grid; gap: .8rem; }

.footer { padding: 2rem 0 5rem; color: var(--muted); }
.footer__inner { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer__logo { height: 48px; width: auto; }
.footer a { margin-left: auto; font-weight: 700; color: var(--navy); }

.wa-float {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: #25d366; color: #fff; font-weight: 800; box-shadow: 0 12px 30px rgba(37,211,102,.4);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 920px) {
  :root { --header-h: 92px; }
  .brand__logo { height: 64px; }
  .nav, .header__cta { display: none; }
  .nav.open {
    display: flex; position: absolute; left: 1rem; right: 1rem; top: calc(var(--header-h) - .4rem);
    flex-direction: column; background: #fff; padding: 1rem; border-radius: 16px; box-shadow: var(--shadow);
  }
  .nav-toggle { display: inline-grid; place-items: center; margin-left: auto; }
  .stats__grid, .cards, .gallery, .split, .cta__box { grid-template-columns: 1fr; }
  .map-wrap { aspect-ratio: 1 / 1.05; }
  .about__float { display: none; }
}
