:root {
  --brand-navy: #0f1f67;
  --brand-navy-deep: #08123f;
  --brand-green: #0faa5d;
  --brand-sand: #f7f4ef;
  --brand-ink: #18213b;
  --brand-muted: #5d6786;
  --brand-line: rgba(15, 31, 103, 0.12);
  --brand-shadow: 0 24px 60px rgba(10, 22, 67, 0.12);
  --brand-radius: 28px;
  --nav-height: 102px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--brand-ink);
  background:
    radial-gradient(circle at top left, rgba(15, 170, 93, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f9fafc 100%);
}

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

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #09154b 0%, #142779 100%);
  color: #fff;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.site-loader.is-hidden { opacity: 0; visibility: hidden; }

.loader-mark {
  width: 92px;
  height: 92px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  position: relative;
  animation: pulse 1.8s infinite ease-in-out;
}

.loader-mark::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  top: 20px;
  left: 20px;
  background: var(--brand-green);
  box-shadow: 24px 0 0 var(--brand-green), 0 24px 0 var(--brand-green), 24px 24px 0 var(--brand-green);
}

.site-loader p {
  margin: 14px 0 0;
  letter-spacing: 0.4rem;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.page-shell {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.page-ready .page-shell { opacity: 1; transform: translateY(0); }

.site-header-wrap {
  position: relative;
  z-index: 1040;
}

.header-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1045;
  background: linear-gradient(90deg, var(--brand-navy-deep), #112979);
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 42px;
}

.topbar-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.82rem;
}

.topbar-copy span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.topbar-action {
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.site-navbar {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 31, 103, 0.08);
  min-height: var(--nav-height);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  top: 42px;
}

.site-navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 34px rgba(8, 18, 63, 0.08);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--brand-navy);
  font-weight: 800;
  letter-spacing: 0.08rem;
  white-space: nowrap;
  min-width: 0;
}

.navbar-brand img { width: 56px; border-radius: 10px; }

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-lockup strong {
  font-size: 1.15rem;
  line-height: 1;
  color: var(--brand-navy);
  text-transform: uppercase;
  letter-spacing: 0.08rem;
}

.brand-lockup span {
  font-size: 0.7rem;
  line-height: 1;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: var(--brand-muted);
}

.nav-shell {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 31, 103, 0.08);
  border-radius: 24px;
  margin-top: 0.75rem;
  padding: 0.55rem 0.95rem;
  box-shadow: 0 20px 44px rgba(8, 18, 63, 0.08);
}

.nav-pill-group {
  background: rgba(15, 31, 103, 0.04);
  border-radius: 999px;
  padding: 0.2rem 0.45rem;
}

.header-cta {
  white-space: nowrap;
}

.navbar-nav .nav-link {
  color: var(--brand-ink);
  font-weight: 700;
  padding: 1rem 0.95rem;
  position: relative;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover,
.dropdown-item:hover,
.dropdown-item.active { color: var(--brand-navy); }

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.72rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-navy));
  transition: transform 0.3s ease;
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after { transform: scaleX(1); }

.dropdown-menu {
  border: 1px solid rgba(15, 31, 103, 0.08);
  border-radius: 18px;
  box-shadow: 0 24px 40px rgba(8, 18, 63, 0.12);
  padding: 0.6rem;
}

.dropdown-item {
  border-radius: 12px;
  font-weight: 600;
  padding: 0.7rem 0.9rem;
}

.btn-brand,
.btn-outline-brand {
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.btn-brand {
  background: linear-gradient(135deg, var(--brand-green), #0b9250);
  color: #fff;
  border: none;
  box-shadow: 0 20px 40px rgba(15, 170, 93, 0.25);
}

.btn-outline-brand {
  border: 1px solid rgba(15, 31, 103, 0.18);
  color: var(--brand-navy);
  background: transparent;
}

.btn-brand:hover,
.btn-outline-brand:hover,
.btn-outline-light:hover,
.btn-brand:focus,
.btn-outline-brand:focus,
.btn-outline-light:focus { transform: translateY(-2px); }

.btn-outline-brand:hover {
  background: var(--brand-navy);
  color: #fff;
  border-color: var(--brand-navy);
}

.hero-section { padding-top: var(--nav-height); }

.hero-slide,
.page-hero {
  min-height: 100vh;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero {
  min-height: 62vh;
  padding-top: var(--nav-height);
}

.hero-copy,
.page-hero .container { position: relative; z-index: 1; }

.hero-copy {
  max-width: 700px;
  padding: 7rem 0 5rem;
}

.hero-copy h1,
.hero-copy h2,
.page-hero h1,
.section-heading h2,
.section-copy h2,
.cta-banner h2,
.map-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 0.95;
}

.hero-copy h1,
.hero-copy h2 {
  font-size: clamp(3.2rem, 7vw, 6rem);
  margin: 0 0 1rem;
}

.page-hero h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  margin-bottom: 1rem;
}

.hero-copy p,
.page-hero p {
  max-width: 620px;
  font-size: 1.08rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.88);
}

.page-hero .container,
.hero-slide .container {
  width: 100%;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-control-prev,
.carousel-control-next { width: 7%; }

.carousel-indicators { bottom: 2.2rem; }

.carousel-indicators [data-bs-target] {
  width: 48px;
  height: 4px;
  border: 0;
  border-radius: 999px;
}

.carousel-item.active .hero-copy > * { animation: riseIn 0.8s ease both; }
.carousel-item.active .hero-copy > *:nth-child(2) { animation-delay: 0.1s; }
.carousel-item.active .hero-copy > *:nth-child(3) { animation-delay: 0.2s; }
.carousel-item.active .hero-copy > *:nth-child(4) { animation-delay: 0.3s; }

.section-pad { padding: 6rem 0; }

.section-soft {
  background:
    linear-gradient(180deg, rgba(15, 170, 93, 0.03), rgba(15, 31, 103, 0.03)),
    var(--brand-sand);
}

.section-heading { max-width: 700px; }

.section-heading h2,
.section-copy h2,
.cta-banner h2,
.map-card h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin-bottom: 1rem;
  color: var(--brand-navy-deep);
}

.section-heading p,
.section-copy p,
.detail-panel p,
.value-card p,
.mission-card p,
.contact-panel p,
.contact-form,
.map-card p,
.video-card p,
.info-card p,
.media-card p {
  color: var(--brand-muted);
  line-height: 1.9;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  letter-spacing: 0.22rem;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
}

.text-brand { color: var(--brand-green); }

.info-card,
.value-card,
.mission-card,
.detail-panel,
.media-card,
.video-card,
.contact-panel,
.contact-form,
.map-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--brand-line);
  border-radius: var(--brand-radius);
  padding: 2rem;
  box-shadow: var(--brand-shadow);
  height: 100%;
}

.info-card i,
.value-card i {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, rgba(15, 170, 93, 0.14), rgba(15, 31, 103, 0.08));
  color: var(--brand-navy);
  font-size: 1.4rem;
}

.info-card h3,
.value-card h3,
.mission-card h3,
.detail-panel h3,
.video-card h3,
.media-card h3 {
  color: var(--brand-navy-deep);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.image-stack { position: relative; padding: 2.2rem 2.2rem 4rem; }

.stack-main {
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--brand-shadow);
  padding: 1rem;
}

.stack-accent {
  position: absolute;
  width: 46%;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  border: 10px solid #fff;
  box-shadow: var(--brand-shadow);
}

.section-estate {
  background:
    radial-gradient(circle at top right, rgba(15, 170, 93, 0.15), transparent 25%),
    linear-gradient(180deg, rgba(8, 18, 63, 0.03), rgba(8, 18, 63, 0.06));
}

.estate-panel,
.about-visual {
  border-radius: 32px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--brand-shadow);
}

.estate-panel--original {
  padding: 1rem;
}

.estate-panel img,
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.estate-panel--original img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 2rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.8rem;
  color: var(--brand-muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-navy));
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding: 2rem;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--brand-navy-deep), var(--brand-navy));
  color: #fff;
  box-shadow: var(--brand-shadow);
}

.stat-item { text-align: center; }

.stat-item strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  margin-bottom: 0.5rem;
  color: #fff;
}

.stat-item span { color: rgba(255, 255, 255, 0.76); }

.ticker-wrap {
  overflow: hidden;
  background: linear-gradient(90deg, var(--brand-navy-deep), var(--brand-navy));
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ticker-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 1rem 0;
  animation: tickerMove 24s linear infinite;
}

.ticker-track span {
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  font-weight: 800;
  white-space: nowrap;
}

.ticker-track span::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-green);
  margin-right: 1rem;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.journey-card,
.spotlight-card,
.quote-card,
.home-cta {
  border-radius: 32px;
  box-shadow: var(--brand-shadow);
}

.journey-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--brand-line);
}

.journey-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -45% auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(15, 170, 93, 0.15), transparent 65%);
  transition: transform 0.4s ease;
}

.journey-card:hover::after {
  transform: scale(1.2);
}

.journey-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.2rem;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-green));
  color: #fff;
  font-weight: 800;
}

.journey-card h3,
.spotlight-card h2,
.quote-card blockquote,
.home-cta h2 {
  color: var(--brand-navy-deep);
}

.spotlight-card {
  padding: 2.3rem;
  background:
    radial-gradient(circle at top right, rgba(15, 170, 93, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid var(--brand-line);
}

.spotlight-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.8rem;
}

.spotlight-points div {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(15, 31, 103, 0.04);
}

.spotlight-points strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--brand-navy);
}

.quote-card {
  height: 100%;
  padding: 2.3rem;
  background: linear-gradient(160deg, var(--brand-navy-deep), #16318f);
  color: rgba(255, 255, 255, 0.82);
}

.quote-card blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  color: #fff;
  margin: 0 0 1rem;
}

.quote-card p,
.home-cta p {
  color: inherit;
}

.home-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.6rem;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(15, 170, 93, 0.28), transparent 28%),
    linear-gradient(135deg, #09154b, #16318f);
}

.home-cta h2 {
  color: #fff;
}

.media-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.6rem;
}

.media-pill {
  display: inline-block;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 170, 93, 0.12);
  color: var(--brand-green);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.video-thumb {
  min-height: 240px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  margin-bottom: 1.4rem;
}

.video-thumb span {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.video-frame {
  overflow: hidden;
  border-radius: 24px;
  margin-bottom: 1.4rem;
  box-shadow: var(--brand-shadow);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.25rem;
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--brand-shadow);
}

.promo-board {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.4rem;
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(15, 170, 93, 0.12), transparent 26%),
    linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid var(--brand-line);
  box-shadow: var(--brand-shadow);
}

.promo-copy {
  max-width: 520px;
}

.promo-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem;
}

.promo-tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(15, 31, 103, 0.06);
  color: var(--brand-navy);
  font-weight: 800;
}

.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.landmark-list,
.quick-meta {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}

.landmark-list li,
.quick-meta li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.85rem;
  color: var(--brand-muted);
}

.landmark-list li i,
.quick-meta li i {
  color: var(--brand-green);
  margin-top: 0.15rem;
}

.contact-item { display: flex; gap: 1rem; margin-top: 1.5rem; }

.contact-item i {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(15, 170, 93, 0.1);
  color: var(--brand-green);
}

.contact-item strong { color: var(--brand-navy-deep); }

.form-note {
  color: var(--brand-green);
  font-weight: 700;
}

.form-control,
.form-select {
  border-radius: 16px;
  border: 1px solid rgba(15, 31, 103, 0.16);
  padding: 0.95rem 1rem;
  min-height: 56px;
}

textarea.form-control { min-height: 180px; }

.form-control:focus,
.form-select:focus {
  border-color: var(--brand-green);
  box-shadow: 0 0 0 0.2rem rgba(15, 170, 93, 0.12);
}

.map-card {
  text-align: center;
  padding: 4rem 2rem;
  background:
    linear-gradient(135deg, rgba(15, 170, 93, 0.06), rgba(15, 31, 103, 0.07)),
    #fff;
}

.site-footer {
  background:
    radial-gradient(circle at top right, rgba(15, 170, 93, 0.18), transparent 24%),
    linear-gradient(180deg, #07113b 0%, #0d1e61 100%);
  color: rgba(255, 255, 255, 0.78);
  padding: 5rem 0 2rem;
}

.promo-modal .modal-content {
  background: transparent;
  border: 0;
  box-shadow: none;
  position: relative;
}

.promo-modal .modal-dialog {
  max-width: min(92vw, 760px);
}

.promo-modal-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(5, 14, 48, 0.32);
}

.promo-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(8, 18, 63, 0.78);
  color: #fff;
  display: inline-grid;
  place-items: center;
}

.promo-modal .modal-body {
  overflow: hidden;
  border-radius: 28px;
}

.footer-top {
  margin-bottom: 2rem;
}

.footer-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-badge span {
  color: var(--brand-green);
  font-weight: 800;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.footer-badge strong {
  color: #fff;
  font-size: 0.95rem;
}

.footer-grid {
  padding-top: 1rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1050;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.32);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 24px 40px rgba(37, 211, 102, 0.38);
}

.whatsapp-float i {
  font-size: 1.25rem;
}

.footer-brand {
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.footer-brand img {
  width: 70px;
  margin-bottom: 1rem;
  border-radius: 12px;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.footer-socials a {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: transform 0.25s ease, background 0.25s ease;
}

.footer-socials a:hover {
  color: #fff;
  background: rgba(15, 170, 93, 0.9);
  transform: translateY(-2px);
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 0.75rem;
}

.footer-title { color: #fff; font-weight: 800; margin-bottom: 1.2rem; }

.footer-links a:hover,
.footer-contact a:hover { color: #fff; }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed { opacity: 1; transform: translateY(0); }

@keyframes riseIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 991.98px) {
  :root { --nav-height: 84px; }
  .header-topbar {
    display: none;
  }
  .site-navbar .container {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }
  .site-navbar {
    top: 0;
  }
  .nav-shell {
    margin-top: 0.4rem;
    border-radius: 18px;
  }
  .navbar-brand {
    gap: 10px;
    letter-spacing: 0.04rem;
    font-size: 1.05rem;
    max-width: calc(100% - 64px);
  }
  .navbar-brand img {
    width: 40px;
    border-radius: 8px;
    flex: 0 0 auto;
  }
  .navbar-toggler {
    padding: 0.35rem 0.45rem;
    margin-left: 0.5rem;
    flex: 0 0 auto;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  .brand-lockup strong {
    font-size: 0.95rem;
  }
  .brand-lockup span {
    font-size: 0.58rem;
    letter-spacing: 0.12rem;
  }
  .nav-pill-group {
    background: transparent;
    border-radius: 0;
    padding: 0;
  }
  .header-cta {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
  }
  .navbar-nav .nav-link::after { display: none; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .journey-grid,
  .spotlight-points { grid-template-columns: 1fr; }
  .home-cta,
  .footer-badge,
  .promo-board { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 767.98px) {
  :root { --nav-height: 76px; }
  .navbar-brand {
    font-size: 0.86rem;
    letter-spacing: 0.03rem;
    gap: 8px;
    max-width: calc(100% - 56px);
  }
  .navbar-brand img {
    width: 34px;
    border-radius: 6px;
  }
  .brand-lockup strong {
    font-size: 0.82rem;
    letter-spacing: 0.05rem;
  }
  .brand-lockup span {
    font-size: 0.5rem;
    letter-spacing: 0.08rem;
  }
  .site-navbar .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .hero-slide,
  .page-hero { min-height: 88vh; }
  .page-hero { min-height: 54vh; }
  .hero-copy,
  .page-hero .container {
    padding-top: 5.75rem;
    padding-bottom: 3rem;
  }
  .hero-copy {
    max-width: 100%;
  }
  .hero-copy h1,
  .hero-copy h2,
  .page-hero h1 {
    font-size: clamp(2.35rem, 9vw, 3.4rem);
    line-height: 0.96;
    margin-bottom: 0.8rem;
  }
  .hero-copy p,
  .page-hero p {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 100%;
  }
  .hero-actions {
    gap: 0.75rem;
  }
  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .page-hero {
    background-position: center center;
  }
  .page-hero::before,
  .hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 18, 63, 0.28), rgba(8, 18, 63, 0.58));
    pointer-events: none;
  }
  .page-hero .container,
  .hero-copy {
    position: relative;
    z-index: 1;
  }
  .stats-band { grid-template-columns: 1fr; }
  .image-stack { padding: 1.2rem 1.2rem 3.8rem; }
  .stack-accent { width: 52%; }
  .site-footer { padding-top: 4rem; }
  .whatsapp-float span { display: none; }
  .journey-grid { grid-template-columns: 1fr; }
  .whatsapp-float {
    width: 58px;
    height: 58px;
    justify-content: center;
    padding: 0;
  }
}
