/* ==========================================================================
   Lakshya Academy — "Escape Velocity" Anti-Gravity Theme
   ========================================================================== */
:root {
  --deep-space: #071410;
  --ink: #0B3D2E;
  --ink-2: #0F4D39;
  --emerald: #2E9A66;
  --emerald-soft: #1E7A4E;
  --gold: #C9A227;
  --gold-light: #E4C767;
  --mist: #F4FAF6;
  --mist-2: #E7F1EA;
  --starlight: #9FB8AC;
  --charcoal: #10201A;
  --line: #1B4636;
  --line-light: #D8E7DE;
  --radius: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--mist);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.serif {
  font-family: 'Fraunces', serif;
}

.mono {
  font-family: 'IBM Plex Mono', monospace;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  position: relative;
}

::selection {
  background: var(--gold-light);
  color: var(--ink);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn-launch {
  background: var(--gold);
  color: var(--ink);
}

.btn-launch:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(201, 162, 39, .5);
}

.btn-outline-dark {
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
  background: transparent;
}

.btn-outline-dark:hover {
  border-color: #fff;
}

.btn-outline-light {
  border-color: var(--line-light);
  color: var(--ink);
  background: transparent;
}

.btn-outline-light:hover {
  border-color: var(--emerald);
  color: var(--emerald-soft);
}

.btn-primary {
  background: var(--emerald-soft);
  color: #fff;
}

.btn-primary:hover {
  background: var(--emerald);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.btn:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none !important;
}

/* ---------------- Starfield background ---------------- */
.starfield-section {
  background: var(--deep-space);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.starfield-section canvas.starfield {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .35;
  pointer-events: none;
}

.glow-orb.g1 {
  width: 420px;
  height: 420px;
  background: var(--emerald);
  top: -140px;
  right: -100px;
}

.glow-orb.g2 {
  width: 320px;
  height: 320px;
  background: var(--gold);
  bottom: -120px;
  left: -80px;
  opacity: .18;
}

/* ---------------- Top bar ---------------- */
.topbar {
  background: #04100C;
  color: #B9D3C4;
  font-size: 12.5px;
  position: relative;
  z-index: 5;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 32px;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar-links a:hover {
  color: var(--gold-light);
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .07);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ---------------- Nav ---------------- */
header.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 20, 16, .85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

nav.wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: linear-gradient(155deg, var(--emerald), var(--ink));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 19px;
  box-shadow: 0 0 22px -4px rgba(46, 154, 102, .7);
}

.logo-text {
  line-height: 1.1;
}

.logo-text b {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 16.5px;
  color: #fff;
}

.logo-text span {
  font-size: 10.5px;
  letter-spacing: .06em;
  color: var(--starlight);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #E4EEE8;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--gold-light);
}

.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}

/* ---------------- Hero ---------------- */
.hero {
  padding: 90px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201, 162, 39, .12);
  border: 1px solid rgba(201, 162, 39, .3);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

h1.hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.1;
  letter-spacing: -.01em;
  color: #fff;
  margin-bottom: 22px;
}

h1.hero-title em {
  font-style: normal;
  color: var(--emerald);
}

.hero-sub {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--starlight);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-trust .item {
  display: flex;
  flex-direction: column;
}

.hero-trust .num {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 22px;
  color: var(--gold-light);
}

.hero-trust .lbl {
  font-size: 12px;
  color: var(--starlight);
}

/* Orbit visual */
.orbit-stage {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-core {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--emerald), var(--ink) 70%);
  box-shadow: 0 0 70px -6px rgba(46, 154, 102, .65), inset 0 0 40px rgba(0, 0, 0, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.orbit-core b {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  color: #fff;
}

.orbit-core span {
  font-size: 10.5px;
  color: var(--starlight);
  margin-top: 2px;
}

.orbit-ring {
  position: absolute;
  border: 1px dashed rgba(255, 255, 255, .14);
  border-radius: 50%;
}

.orbit-ring.r1 {
  width: 280px;
  height: 280px;
}

.orbit-ring.r2 {
  width: 380px;
  height: 380px;
}

.badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(11, 61, 46, .85);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(6px);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 12.5px;
  box-shadow: 0 10px 26px -10px rgba(0, 0, 0, .5);
}

.badge .air {
  font-family: 'IBM Plex Mono', monospace;
  color: var(--gold-light);
  font-weight: 600;
}

.badge .nm {
  color: #EAF3EC;
}

/* Float / orbit animation base classes (JS also animates via GSAP) */
.float {
  animation: floaty 5s ease-in-out infinite;
}

.float-slow {
  animation: floaty 7s ease-in-out infinite;
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ---------------- Trust strip ---------------- */
.trust-strip {
  background: var(--ink);
  color: #fff;
  padding: 22px 0;
  position: relative;
  z-index: 2;
}

.trust-strip .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-strip .stat {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.trust-strip .stat .n {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--gold-light);
}

.trust-strip .stat .l {
  font-size: 11.5px;
  color: var(--starlight);
  margin-top: 4px;
  letter-spacing: .03em;
  text-transform: uppercase;
}

/* ---------------- Section shared ---------------- */
.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--mist-2);
}

.section-dark {
  background: var(--deep-space);
  color: #fff;
}

.kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--emerald-soft);
  margin-bottom: 12px;
}

.section-dark .kicker {
  color: var(--emerald);
}

h2.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(27px, 3.2vw, 38px);
  color: var(--ink);
  letter-spacing: -.01em;
  margin-bottom: 14px;
}

.section-dark h2.section-title {
  color: #fff;
}

.section-desc {
  color: #5B665F;
  font-size: 15.5px;
  max-width: 600px;
  line-height: 1.65;
}

.section-dark .section-desc {
  color: var(--starlight);
}

.section-head {
  margin-bottom: 52px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head.center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* ---------------- Cards ---------------- */
.card {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -26px rgba(11, 61, 46, .35);
  border-color: var(--emerald);
}

.icon-chip {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--mist-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--emerald-soft);
  font-size: 19px;
}

.card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 17.5px;
  margin-bottom: 9px;
  color: var(--ink);
}

.card p {
  font-size: 14px;
  color: #5B665F;
  line-height: 1.6;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* ---------------- Dark program card ---------------- */
.program-card {
  background: linear-gradient(165deg, var(--ink) 0%, #082A1F 100%);
  border-radius: var(--radius);
  padding: 26px 22px;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease;
  border: 1px solid rgba(255, 255, 255, .06);
}

.program-card:hover {
  transform: translateY(-6px);
}

.program-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  color: var(--gold-light);
  border: 1px solid rgba(201, 162, 39, .4);
  padding: 3px 9px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 16px;
}

.program-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
}

.program-card p {
  font-size: 12.5px;
  color: #B9D3C4;
  line-height: 1.55;
  flex: 1;
}

.program-card .for {
  font-size: 11.5px;
  color: #8FB39E;
  margin-top: 14px;
}

.program-card a {
  font-size: 12.5px;
  color: var(--gold-light);
  font-weight: 600;
  margin-top: 14px;
  display: inline-block;
}

/* ---------------- Ledger / results marquee ---------------- */
.ledger-card {
  background: var(--ink);
  border-radius: 20px;
  padding: 26px;
  position: relative;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .5);
  border: 1px solid rgba(255, 255, 255, .06);
}

.ledger-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #CFE3D8;
  font-size: 12px;
  margin-bottom: 16px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.ledger-head b {
  color: var(--gold-light);
  font-weight: 600;
}

.ledger-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, .1);
}

.ledger-row:last-child {
  border-bottom: none;
}

.ledger-name {
  color: #E9F3EC;
  font-size: 14px;
  font-weight: 500;
}

.ledger-name small {
  display: block;
  color: #8FB39E;
  font-size: 11px;
  font-weight: 400;
  margin-top: 2px;
}

.ledger-rank {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--gold-light);
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.ledger-rank span {
  font-size: 9.5px;
  color: #8FB39E;
  font-weight: 500;
  text-transform: uppercase;
}

.results-strip {
  background: var(--ink);
  border-radius: 20px;
  padding: 6px 0;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, .06);
}

.marquee {
  display: flex;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 30px;
  border-right: 1px solid rgba(255, 255, 255, .08);
  white-space: nowrap;
}

.marquee-item .air {
  font-family: 'IBM Plex Mono', monospace;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 14.5px;
}

.marquee-item .nm {
  color: #E9F3EC;
  font-size: 13.5px;
}

.marquee-item .sub {
  color: #8FB39E;
  font-size: 11.5px;
}

/* ---------------- Testimonials ---------------- */
.testi-card {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.testi-quote {
  color: var(--gold);
  font-family: 'Fraunces', serif;
  font-size: 36px;
  line-height: .4;
  margin-bottom: 14px;
}

.testi-card p {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}

.testi-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line-light);
  padding-top: 14px;
}

.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--mist-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-soft);
  font-weight: 600;
  font-size: 13px;
  font-family: 'Fraunces', serif;
}

.testi-foot b {
  display: block;
  font-size: 13px;
  color: var(--ink);
}

.testi-foot span {
  font-size: 11.5px;
  color: var(--emerald-soft);
  font-family: 'IBM Plex Mono', monospace;
}

.testi-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.chip {
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--line-light);
  font-size: 13px;
  cursor: pointer;
  background: #fff;
  transition: .2s;
}

.chip.active,
.chip:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* ---------------- Faculty ---------------- */
.faculty-card {
  display: flex;
  gap: 22px;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 26px;
}

.faculty-photo {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  flex-shrink: 0;
  background: repeating-linear-gradient(45deg, var(--mist-2) 0 8px, #DCEBE1 8px 16px);
  border: 1.5px dashed var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-soft);
  font-size: 10.5px;
  text-align: center;
  padding: 6px;
  cursor: pointer;
}

.faculty-info h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
}

.faculty-info .role {
  font-size: 12px;
  color: var(--emerald-soft);
  font-weight: 600;
  margin: 4px 0 10px;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.faculty-info p {
  font-size: 13.5px;
  color: #5B665F;
  line-height: 1.6;
}

/* ---------------- Steps ---------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.step {
  padding: 0 20px;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 22px;
  right: -4px;
  width: calc(100% - 44px);
  height: 1.5px;
  background: repeating-linear-gradient(90deg, var(--line-light) 0 6px, transparent 6px 12px);
}

.section-dark .step:not(:last-child)::after {
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .2) 0 6px, transparent 6px 12px);
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.step h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--ink);
}

.section-dark .step h3 {
  color: #fff;
}

.step p {
  font-size: 13px;
  color: #5B665F;
  line-height: 1.55;
}

.section-dark .step p {
  color: var(--starlight);
}

/* ---------------- Gallery / Lightbox ---------------- */
.gallery-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-thumb {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: repeating-linear-gradient(45deg, var(--mist-2) 0 10px, #DCEBE1 10px 20px);
  border: 1.5px dashed var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-soft);
  font-size: 11.5px;
  text-align: center;
  padding: 10px;
  transition: transform .25s ease;
}

.gallery-thumb:hover {
  transform: scale(1.03);
}

.gallery-thumb .zoom-hint {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(11, 61, 46, .85);
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 16, 12, .92);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 40px;
}

.lightbox-overlay.open {
  display: flex;
}

.lightbox-box {
  max-width: 800px;
  width: 100%;
  background: var(--ink);
  border-radius: 16px;
  padding: 20px;
  position: relative;
  transform: scale(.92);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
}

.lightbox-overlay.open .lightbox-box {
  transform: scale(1);
  opacity: 1;
}

.lightbox-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 10px;
  background: repeating-linear-gradient(45deg, #0F4D39 0 10px, #0B3D2E 10px 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CFE3D8;
  font-size: 13px;
  text-align: center;
  padding: 20px;
}

.lightbox-caption {
  color: #CFE3D8;
  font-size: 13.5px;
  margin-top: 14px;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  border: none;
  font-size: 17px;
  cursor: pointer;
  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, .5);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
}

.lightbox-prev {
  left: -56px;
}

.lightbox-next {
  right: -56px;
}

/* ---------------- CTA banner ---------------- */
.cta-banner {
  background: linear-gradient(120deg, var(--ink) 0%, #082A1F 55%, var(--emerald-soft) 140%);
  border-radius: 24px;
  padding: 54px 46px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 60%;
  height: 220%;
  background: radial-gradient(circle, rgba(201, 162, 39, .18), transparent 60%);
}

.cta-banner h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(23px, 2.8vw, 30px);
  margin-bottom: 10px;
  position: relative;
}

.cta-banner p {
  color: #BFDACB;
  font-size: 14.5px;
  position: relative;
  max-width: 440px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  position: relative;
  flex-wrap: wrap;
}

/* ---------------- Forms ---------------- */
.form-card {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 20px;
  padding: 36px;
}

.form-card.dark {
  background: var(--ink);
  border-color: rgba(255, 255, 255, .08);
  color: #fff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.field {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.form-card.dark .field label {
  color: #E4EEE8;
}

.field input,
.field select,
.field textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--line-light);
  font-size: 14.5px;
  font-family: inherit;
  background: #fff;
  color: var(--charcoal);
  min-height: 46px;
}

.form-card.dark .field input,
.form-card.dark .field select,
.form-card.dark .field textarea {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .15);
  color: #fff;
}

.field textarea {
  min-height: 100px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--emerald);
}

.field.error input,
.field.error select,
.field.error textarea {
  border-color: #C0392B;
}

.error-msg {
  font-size: 12px;
  color: #C0392B;
  display: none;
}

.field.error .error-msg {
  display: block;
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px 20px;
}

.form-success.show {
  display: block;
}

.form-success .tick {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--emerald);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 16px;
}

.form-success h3 {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  margin-bottom: 8px;
}

.form-success p {
  font-size: 14px;
  color: #5B665F;
}

.form-card.dark .form-success p {
  color: var(--starlight);
}

.form-fields {
  display: block;
}

.form-fields.hide {
  display: none;
}

/* ---------------- Contact ---------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}

.contact-info-card {
  background: var(--ink);
  color: #fff;
  border-radius: 20px;
  padding: 36px;
}

.contact-info-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 22px;
}

.cinfo-row {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.cinfo-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-light);
}

.cinfo-row div b {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.cinfo-row div span {
  font-size: 13px;
  color: #B9D3C4;
  line-height: 1.5;
}

.map-placeholder {
  border-radius: 20px;
  border: 1.5px dashed var(--line-light);
  background: var(--mist-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--emerald-soft);
  font-size: 12.5px;
  text-align: center;
  padding: 30px;
  min-height: 280px;
}

/* ---------------- FAQ ---------------- */
.faq-item {
  border-bottom: 1px solid var(--line-light);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}

.faq-q .plus {
  font-size: 20px;
  color: var(--emerald-soft);
  transition: transform .25s ease;
}

.faq-item.open .faq-q .plus {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-a p {
  padding-bottom: 18px;
  font-size: 14px;
  color: #5B665F;
  line-height: 1.65;
}

/* ---------------- Footer ---------------- */
footer {
  background: var(--deep-space);
  color: #A9C6B6;
  padding: 56px 0 26px;
  position: relative;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

.foot-brand p {
  font-size: 13px;
  line-height: 1.65;
  margin-top: 14px;
  max-width: 280px;
}

.foot-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.foot-col a {
  display: block;
  font-size: 13px;
  margin-bottom: 11px;
  color: #A9C6B6;
}

.foot-col a:hover {
  color: var(--gold-light);
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------------- WhatsApp float ---------------- */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px -6px rgba(0, 0, 0, .4);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

/* ---------------- Placeholder blocks ---------------- */
.ph {
  background: repeating-linear-gradient(45deg, var(--mist-2) 0 10px, #DCEBE1 10px 20px);
  border: 1.5px dashed var(--emerald);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-soft);
  font-size: 12px;
  text-align: center;
}

/* ---------------- Breadcrumb / page hero (inner pages) ---------------- */
.page-hero {
  padding: 64px 0 56px;
}

.page-hero .kicker {
  color: var(--gold-light);
}

.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(30px, 4vw, 44px);
  color: #fff;
  margin-bottom: 14px;
}

.page-hero p {
  color: var(--starlight);
  font-size: 15.5px;
  max-width: 560px;
}

/* ---------------- Reveal ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
}

/* ---------------- Responsive ---------------- */
@media (max-width:980px) {

  .nav-links,
  .topbar-links,
  .hero-trust {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-grid,
  .grid-2,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-5,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip .wrap {
    justify-content: flex-start;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .step:not(:last-child)::after {
    display: none;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .orbit-stage {
    height: 320px;
  }
}

@media (max-width:560px) {

  .grid-3,
  .grid-5,
  .grid-4,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .foot-grid {
    grid-template-columns: 1fr;
  }

  .wrap {
    padding: 0 20px;
  }

  .cta-banner {
    padding: 40px 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .float,
  .float-slow,
  .wa-float {
    animation: none;
  }
}