:root {
  --forest: #123524;
  --forest-deep: #0B241A;
  --forest-light: #1E5138;
  --gold: #C89B3C;
  --gold-dark: #A67C25;
  --gold-light: #E9CC8A;
  --brick: #B5622E;
  --sand: #F7F3EA;
  --sage: #E4E8DD;
  --ink: #1B1B18;
  --ink-soft: #4A4A44;
  --white: #FFFFFF;
  --line: rgba(18, 53, 36, 0.14);
  --font-display: 'Fraunces', serif;
  --font-body: 'Work Sans', sans-serif;
  --radius-sm: 4px;
  --radius-md: 10px;
  --container-max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container-xl {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  margin: 0;
  color: var(--forest-deep);
  font-weight: 600;
}

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

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

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

.brand-logo-text {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  text-shadow: 0 0 6px rgba(0, 0,
   0, .35);}
/* ---------- ticker ---------- */
.ticker-bar {
  background: var(--forest-deep);
  color: var(--sand);
  display: flex;
  align-items: center;
  overflow: hidden;
  font-size: .82rem;
  letter-spacing: .02em;
}

.ticker-tag {
  flex: 0 0 auto;
  background: var(--gold);
  color: var(--forest-deep);
  font-weight: 700;
  padding: 7px 16px;
  font-size: .78rem;
}

.ticker-track {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  height: 32px;
}

.ticker-move {
  display: flex;
  gap: 48px;
  position: absolute;
  white-space: nowrap;
  padding-left: 100%;
  animation: ticker 55s linear infinite;
  align-items: center;
  height: 32px;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.ticker-phone {
  flex: 0 0 auto;
  padding: 7px 18px;
  font-weight: 600;
  border-left: 1px solid rgba(255, 255, 255, .12);
}

/* ---------- credential bar (3rd header tier, desktop) ---------- */
.credential-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.credential-bar .container-xl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}

.badges-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  min-width: 0;
}

.badge-item {
  flex: 0 0 auto;
}

@media (max-width:1420px) {
  .badges-row .badge-item:nth-child(2) {
    display: none;
  }
}

@media (max-width:1300px) {
  .badges-row {
    display: none;
  }
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  color: var(--ink-soft);
}

.badge-item strong {
  display: block;
  color: var(--forest-deep);
  font-size: .86rem;
}

.badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex: 0 0 auto;
}

.mobile-only-link {
  display: none;
}

@media (max-width:1200px) {
  .credential-bar {
    display: none;
  }
}

/* ---------- navbar (dark) ----------
   Links sit inline in the bar on tablet/desktop, inside their own
   horizontally-scrollable strip — so however many links exist, they
   can never push the Call/Enquire buttons out of place or off the
   row. Below 768px it becomes the familiar slide-in hamburger menu. */
.site-nav {
  background: rgba(11, 36, 26, .94);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: box-shadow .25s ease, background .25s ease, backdrop-filter .25s ease;
}

.site-nav.scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
  background: rgba(11, 36, 26, .98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-links a.active {
  color: var(--white);
  font-weight: 700;
}

.nav-links a.active::after {
  left: 15px;
  right: 15px;
  background: var(--gold);
}

.site-nav .container-xl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  flex-wrap: nowrap;
  gap: 10px 14px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.brand-block {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  flex: 0 0 auto;
}

.brand-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  margin-bottom: 3px;
}

.credential-bar .brand-logo-img {
  height: 56px;
}

.brand-logo-chip {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  border-radius: 6px;
  padding: 5px 10px;
  margin-bottom: 4px;
  width: fit-content;
}

.brand-logo-chip img {
  height: 26px;
  width: auto;
  object-fit: contain;
  display: block;
}

.brand-block .name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--forest-deep);
}

.brand-block .sub {
  font-size: .66rem;
  letter-spacing: .14em;
  color: var(--ink-soft);
  font-weight: 600;
  margin-top: 2px;
}

.site-nav .brand-block .name {
  color: var(--white);
}

.site-nav .brand-block .sub {
  color: rgba(247, 243, 234, .62);
}

.site-nav .brand-block {
  display: flex;
}

/* links — inline + internally scrollable on tablet/desktop */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a {
  position: relative;
  color: rgba(247, 243, 234, .85);
  padding: 10px 13px;
  font-size: .86rem;
  font-weight: 500;
  white-space: nowrap;
  flex: 0 0 auto;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: left .28s ease, right .28s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  left: 13px;
  right: 13px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.nav-actions .btn-register-premium {
  padding: 11px 18px;
  font-size: .84rem;
  white-space: nowrap;
}

.nav-call-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--white);
  font-size: 1.05rem;
  flex: 0 0 auto;
  transition: background .2s ease, transform .25s ease, border-color .2s ease;
}

.nav-call-icon:hover {
  background: rgba(255, 255, 255, .18);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1200;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: background .2s ease, color .2s ease;
  flex: 0 0 auto;
}

.nav-toggle.is-open {
  color: var(--white);
  background: rgba(255, 255, 255, .14);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 36, 26, .45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 1100;
}

.nav-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width:767px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(320px, 86vw);
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 90px 28px 28px;
    transition: right .35s ease;
    gap: 2px;
    box-shadow: -14px 0 34px rgba(0, 0, 0, .18);
    z-index: 1150;
    overflow-y: auto;
    -webkit-mask-image: none;
    mask-image: none;
    flex: none;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    padding: 14px 4px;
    white-space: normal;
  }

  .nav-links a:hover {
    color: var(--forest-deep);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a.active {
    color: var(--forest-deep);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-actions {
    display: none;
  }
}

/* ---------- animated / ripple buttons ---------- */
.btn-solid,
.btn-outline,
.nav-call,
.nav-register {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  border: none;
  transition: transform .28s cubic-bezier(.2, .8, .2, 1), background .2s ease, box-shadow .3s ease, color .2s ease;
  isolation: isolate;
}

.btn-solid {
  background: var(--gold);
  color: var(--forest-deep);
  padding: 14px 26px;
}

.btn-solid:hover {
  background: var(--gold-dark);
  transform: translateY(-3px) scale(1.02);
  color: var(--forest-deep);
  box-shadow: 0 14px 26px rgba(166, 124, 37, .32);
}

.btn-outline {
  border: 1.5px solid var(--forest);
  color: var(--forest-deep);
  padding: 13px 24px;
  background: transparent;
}

.btn-outline:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-3px) scale(1.02);
}

.hero .btn-outline {
  border-color: rgba(255, 255, 255, .55);
  color: var(--white);
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--white);
  color: var(--white);
}

.nav-call {
  background: var(--forest);
  color: var(--white) !important;
  padding: 10px 20px;
}

.nav-call:hover {
  background: var(--forest-light);
  transform: translateY(-3px) scale(1.02);
}

.nav-register {
  background: var(--gold);
  color: var(--forest-deep) !important;
  padding: 10px 18px;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(200, 155, 60, .55);
  }

  70% {
    box-shadow: 0 0 0 13px rgba(200, 155, 60, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(200, 155, 60, 0);
  }
}

@keyframes blinkDot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .25;
  }
}

.nav-register:hover {
  background: var(--gold-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 26px rgba(166, 124, 37, .35);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--forest-deep);
  display: inline-block;
  animation: blinkDot 1.3s ease-in-out infinite;
  margin-right: 2px;
}

.btn-solid i,
.btn-outline i,
.nav-call i,
.nav-register i {
  transition: transform .25s ease;
}

.btn-solid:hover i,
.nav-register:hover i {
  transform: translateX(3px);
}

.cta-arrow {
  display: inline-block;
  transition: transform .25s ease;
}

a:hover .cta-arrow,
button:hover .cta-arrow {
  transform: translateX(5px);
}

/* ripple */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  transform: scale(0);
  animation: rippleAnim .6s ease-out;
  pointer-events: none;
  z-index: 0;
}

.btn-outline .ripple {
  background: rgba(18, 53, 36, .25);
}

@keyframes rippleAnim {
  to {
    transform: scale(3.2);
    opacity: 0;
  }
}

/* ================================================================
   PREMIUM CTA SYSTEM — reusable, shared animation primitives.
   Base: .cta-premium (shared layout/transition rules)
   Variants: .btn-register-premium / .btn-phone-premium /
             .btn-whatsapp-premium / .btn-outline-premium
   ================================================================ */
@property --border-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

.cta-premium {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: .92rem;
  border-radius: 10px;
  cursor: pointer;
  transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s ease;
  isolation: isolate;
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-premium:hover {
  transform: translateY(-3px) scale(1.025);
}

.cta-premium:active {
  transform: translateY(-1px) scale(0.985);
}

/* --- Register: travelling light border --- */
.btn-register-premium {
  background:
    linear-gradient(135deg, var(--forest-light), var(--forest-deep)) padding-box,
    conic-gradient(from var(--angle), var(--gold) 0%, #b88611 22%, var(--gold-light) 45%, var(--gold) 78%, var(--gold-dark) 85%, var(--gold) 100%) border-box;
  border: 2px solid transparent;
  color: var(--white) !important;
  padding: 16px 30px;
  animation: rotateRegisterBorder 3s linear infinite, pulseGlow 2.4s infinite;
}

@property --angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

@keyframes rotateRegisterBorder {
  to {
    --angle: 360deg;
  }
}

.btn-register-premium:hover {
  animation-play-state: paused;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .35), 0 0 18px rgba(233, 204, 138, .5);
}

/* --- Phone CTA: ring-pulse icon + glowing border --- */
.btn-phone-premium {
  background: var(--forest);
  color: var(--white) !important;
  padding: 10px 20px 10px 12px;
  z-index: 0;
  white-space: nowrap;
  animation: phoneGlowPulse 2.8s ease-in-out infinite;
}

@keyframes phoneGlowPulse {

  0%,
  100% {
    box-shadow: 0 0 0 1.5px rgba(200, 155, 60, .4), 0 6px 16px rgba(18, 53, 36, .2);
  }

  50% {
    box-shadow: 0 0 0 1.5px rgba(233, 204, 138, .75), 0 6px 16px rgba(18, 53, 36, .2), 0 0 14px rgba(233, 204, 138, .4);
  }
}

.btn-phone-premium:hover {
  animation-play-state: paused;
  box-shadow: 0 12px 24px rgba(18, 53, 36, .28), 0 0 0 1.5px var(--gold-light);
}

.phone-icon-wrap {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.phone-icon-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .7);
  opacity: 0;
  animation: ringPulse 2.6s ease-out infinite;
}

@keyframes ringPulse {
  0% {
    transform: scale(1);
    opacity: .55;
  }

  80% {
    transform: scale(1.9);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* --- WhatsApp CTA: soft single pulse + tooltip --- */
.btn-whatsapp-premium {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .28);
  position: relative;
}

.btn-whatsapp-premium::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: .6;
  animation: ringPulse 2.8s ease-out infinite;
}

.btn-whatsapp-premium:hover {
  transform: translateY(-3px) scale(1.07);
}

.btn-whatsapp-premium .wa-tooltip {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--forest-deep);
  color: var(--white);
  font-size: .76rem;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.btn-whatsapp-premium:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* --- Outline / ghost premium --- */
/* --- WhatsApp inline hero button --- */
.btn-whatsapp-inline {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  border: none;
  isolation: isolate;
  background: #25D366;
  color: var(--white);
  padding: 13px 24px;
  transition: transform .28s cubic-bezier(.2, .8, .2, 1), box-shadow .3s ease, background .2s ease;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
  animation: waPulseGlow 2.6s infinite;
}

@keyframes waPulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.btn-whatsapp-inline:hover {
  background: #1FB855;
  transform: translateY(-3px) scale(1.02);
  color: var(--white);
  box-shadow: 0 14px 26px rgba(37, 211, 102, .35);
}

.btn-whatsapp-inline:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-whatsapp-inline i {
  font-size: 1.05rem;
}

.btn-outline-premium {
  border: 1.5px solid var(--forest);
  color: var(--forest-deep);
  padding: 13px 24px;
  background: transparent;
}

.btn-outline-premium:hover {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(18, 53, 36, .2);
}

@media (prefers-reduced-motion: reduce) {

  .btn-register-premium,
  .btn-phone-premium,
  .phone-icon-wrap::after,
  .btn-whatsapp-premium::after {
    animation: none;
  }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(circle at 18% 20%, #1c4a34 0%, var(--forest-deep) 55%, #061711 100%);
  overflow: hidden;
  padding: 70px 0 100px;
}

.hero-photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-photo-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(6, 23, 17, .94) 0%, rgba(11, 36, 26, .88) 42%, rgba(11, 36, 26, .55) 68%, rgba(11, 36, 26, .35) 100%);
}

.hero h1 .accent {
  color: var(--gold-light);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(rgba(247, 243, 234, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(247, 243, 234, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(200, 155, 60, .35), rgba(200, 155, 60, 0) 70%);
  pointer-events: none;
  filter: blur(1px);
  animation: floatBubble 9s ease-in-out infinite;
}

.bubble.b1 {
  width: 140px;
  height: 140px;
  top: 8%;
  right: 12%;
  animation-duration: 10s;
}

.bubble.b2 {
  width: 90px;
  height: 90px;
  top: 55%;
  right: 30%;
  animation-duration: 8s;
  animation-delay: .6s;
  background: radial-gradient(circle at 30% 30%, rgba(247, 243, 234, .18), rgba(247, 243, 234, 0) 70%);
}

.bubble.b3 {
  width: 60px;
  height: 60px;
  top: 20%;
  right: 38%;
  animation-duration: 7s;
  animation-delay: 1.4s;
}

.bubble.b4 {
  width: 200px;
  height: 200px;
  top: -60px;
  left: -80px;
  animation-duration: 12s;
  background: radial-gradient(circle at 40% 40%, rgba(200, 155, 60, .14), rgba(200, 155, 60, 0) 70%);
}

@keyframes floatBubble {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: .85;
  }

  50% {
    transform: translate(-16px, -26px) scale(1.08);
    opacity: 1;
  }
}

.hero .container-xl {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}

.hero-eyebrow {
  color: var(--brick);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .14em;
  margin-bottom: 18px;
  display: block;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 1.14;
  margin-bottom: 20px;
}

.hero-sub {
  color: rgba(247, 243, 234, .82);
  font-size: 1.08rem;
  margin-bottom: 32px;
  max-width: 50ch;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.hero-stats {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid rgba(247, 243, 234, .16);
  padding-top: 24px;
}

/* ---------- hero staggered entrance (badge → heading → desc → cta → secondary cta) ---------- */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-stagger {
  opacity: 0;
  animation: heroFadeUp .6s ease forwards;
}

.hero-eyebrow.hero-stagger {
  animation-delay: 0ms;
}

.hero h1.hero-stagger {
  animation-delay: 150ms;
}

.hero-sub.hero-stagger {
  animation-delay: 300ms;
}

.hero-cta-row .hero-stagger {
  animation-delay: 450ms;
}

.hero-cta-row .hero-stagger:nth-child(2) {
  animation-delay: 600ms;
}

.hero-stats.hero-stagger {
  animation-delay: 750ms;
}

.hero-stat {
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid rgba(247, 243, 234, .16);
}

.hero-stat:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.hero-stat .num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--white);
  font-weight: 600;
}

.hero-stat .lab {
  font-size: .78rem;
  color: rgba(247, 243, 234, .65);
  margin-top: 2px;
}

/* ---------- enquiry card ---------- */
.enquire-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .35);
  padding: 36px 34px;
  position: relative;
  z-index: 2;
}

.enquire-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.enquire-card p.lead-note {
  color: var(--ink-soft);
  font-size: .9rem;
  margin-bottom: 22px;
}

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

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--forest-deep);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: .94rem;
  color: var(--ink);
  background: var(--sand);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-dark);
  background: var(--white);
  outline: none;
  box-shadow: 0 0 0 3px rgba(200, 155, 60, .18);
}

.form-submit {
  width: 100%;
  background: var(--forest);
  color: var(--white);
  border: none;
  padding: 15px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .98rem;
  cursor: pointer;
  transition: background .2s, transform .18s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.form-submit:hover {
  background: var(--forest-light);
  transform: translateY(-2px);
}

.form-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.privacy-note {
  text-align: center;
  font-size: .8rem;
  color: var(--ink-soft);
  margin-top: 14px;
}

.form-status {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  display: none;
}

.form-status.success {
  display: block;
  background: #E4F0E6;
  color: #1E5138;
  border: 1px solid #B7D8BE;
}

.form-status.error {
  display: block;
  background: #FBE8E4;
  color: var(--brick);
  border: 1px solid #EFC1B6;
}

@media (max-width:991px) {
  .hero .container-xl {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat {
    padding-right: 20px;
    margin-right: 0;
  }

  .bubble {
    display: none;
  }
}

/* ---------- section scaffolding ---------- */
.section {
  padding: 96px 0;
}

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

.section-head {
  max-width: 640px;
  margin-bottom: 50px;
}



.section-kicker {
  color: var(--brick);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .1em;
  margin-bottom: 10px;
  display: block;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.18;
}

.section-head p {
  color: var(--ink-soft);
  margin-top: 14px;
  font-size: 1.02rem;
  max-width: 58ch;
}

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

/* ---------- project highlights strip ---------- */
.highlight-strip {
  padding: 70px 0;
  background: var(--sage);
  border-bottom: 1px solid var(--line);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 132px;
  gap: 14px;
}

.bento-tile {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.bento-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(18, 53, 36, .12);
  border-color: var(--gold);
}

.bento-tile i {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--sage);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  margin-bottom: auto;
  transition: background .25s ease, color .25s ease;
}

.bento-tile:hover i {
  background: var(--forest);
  color: var(--gold-light);
}

.bento-tile .h-num {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--forest-deep);
  font-weight: 600;
  line-height: 1.3;
  margin-top: 14px;
}

.bento-tile .h-lab {
  font-size: .78rem;
  color: var(--ink-soft);
  margin-top: 5px;
}

.bento-tile.b-lg {
  grid-column: span 2;
  grid-row: span 2;
  background-color: var(--forest);
  border-color: var(--forest);
  background-size: cover;
  background-position: center;
  padding: 0;
}



.bento-tile-overlay {
  position: relative;
  height: 100%;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(11, 36, 26, .35) 0%, rgba(11, 36, 26, .55) 45%, rgba(11, 36, 26, .92) 100%);
}

.bento-tile.b-lg i {
  background: rgba(255, 255, 255, .14);
  color: var(--gold-light);
  width: 48px;
  height: 48px;
  font-size: 1.3rem;
  border-radius: 12px;
}

.bento-tile.b-lg .h-num {
  color: var(--white);
  font-size: 1.6rem;
  margin-top: 20px;
}

.bento-tile.b-lg .h-lab {
  color: rgba(247, 243, 234, .72);
  font-size: .86rem;
  max-width: 32ch;
}

.bento-tile.b-lg:hover {
  border-color: var(--gold);
}

.bento-tile.b-lg:hover i {
  background: rgba(255, 255, 255, .22);
}

.bento-tile.b-wide {
  grid-column: span 2;
}

.bento-tile.b-wide .h-num {
  font-size: 1.15rem;
}

@media (max-width:900px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-tile.b-lg {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 180px;
  }

  .bento-tile.b-wide {
    grid-column: span 2;
  }
}

@media (max-width:560px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-tile.b-lg,
  .bento-tile.b-wide {
    grid-column: span 1;
  }
}




/* about */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: start;
}

.about-copy p {
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.about-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
}

.about-panel-photo {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 0;
  overflow: hidden;
  border: none;
}

.about-panel-overlay {
  position: relative;
  background: linear-gradient(160deg, rgba(11, 36, 26, .92) 0%, rgba(11, 36, 26, .82) 60%, rgba(11, 36, 26, .72) 100%);
  padding: 30px;
}

.about-panel-photo .about-panel-row {
  border-bottom: 1px dashed rgba(255, 255, 255, .18);
}

.about-panel-photo .about-panel-row span:first-child {
  color: rgba(247, 243, 234, .65);
}

.about-panel-photo .about-panel-row span:last-child {
  color: var(--white);
}

.about-panel-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  font-size: .92rem;
}

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

.about-panel-row span:first-child {
  color: var(--ink-soft);
}

.about-panel-row span:last-child {
  font-weight: 600;
  color: var(--forest-deep);
}

@media (max-width:900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* highlights / amenities grid (cards) */
.amenity-banner {
  position: relative;
  height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  margin-bottom: 28px;
}

.amenity-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px 28px;
  background: linear-gradient(to top, rgba(11, 36, 26, .85) 0%, rgba(11, 36, 26, .05) 65%);
}

.amenity-banner-overlay span {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

/* amenities — photo cards */
.amenity-photo-card {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 230px;
  padding: 0;
  border: none;
  overflow: hidden;
}

.amenity-photo-card:hover {
  transform: translateY(-4px);
}

.amenity-card-overlay {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: linear-gradient(180deg, rgba(11, 36, 26, .15) 0%, rgba(11, 36, 26, .35) 55%, rgba(11, 36, 26, .88) 100%);
}

.amenity-card-overlay i {
  color: var(--gold-light);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.amenity-card-overlay h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 8px;
  display: inline-block;
  position: relative;
  padding-bottom: 6px;
  font-weight: 700;
}

.amenity-card-overlay h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 36px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

.amenity-card-overlay p {
  color: rgba(255, 255, 254, 0.984);
  font-size: .85rem;
  margin: 0;
}

/* video / SCO section — 3 real Instagram Reels */
.reel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 34px;
  align-items: start;
}

.reel-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(0, 0, 0, .32);
  border: 1px solid rgba(255, 255, 255, .14);
  background: var(--white);
  display: flex;
  justify-content: center;
  min-height: 260px;
}

.reel-card .instagram-media {
  margin: 0 !important;
  width: 100% !important;
  min-width: 0 !important;
}

@media (max-width:900px) {
  .reel-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

.video-copy-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.video-copy-bottom ul {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.video-copy-bottom ul li {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: .88rem;
  color: rgba(247, 243, 234, .85);
}

.video-copy-bottom ul li i {
  color: var(--gold-light);
}



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

.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 14px 30px rgba(18, 53, 36, .1);
}

.feature-card i {
  font-size: 1.5rem;
  color: var(--gold-dark);
  margin-bottom: 12px;
  display: block;
}

.feature-card h3 {
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: .88rem;
  color: var(--white);
  margin: 0;
}

@media (max-width:900px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:560px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- premium dark section (visual break — used for Location) ---------- */
.section-dark-premium {
  background: radial-gradient(circle at 20% 15%, #1c4a34 0%, var(--forest-deep) 60%, #061711 100%);
  color: var(--sand);
  position: relative;
  overflow: hidden;
}

.section-dark-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(247, 243, 234, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(247, 243, 234, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.section-dark-premium .section-kicker {
  color: var(--gold-light);
}

.section-dark-premium .section-head h2 {
  color: var(--white);
}

.section-dark-premium .section-head p {
  color: rgba(247, 243, 234, .75);
}

.map-pin-badge {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(200, 155, 60, .14);
  border: 1px solid rgba(200, 155, 60, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.4rem;
  margin-bottom: 22px;
}

.map-pin-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(200, 155, 60, .6);
  animation: ringPulse 2.4s ease-out infinite;
}

.distance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
  z-index: 2;
}

.distance-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-md);
  padding: 26px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.distance-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  background: rgba(255, 255, 255, .09);
}

.distance-card .d-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(200, 155, 60, .16);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.distance-card .d-time {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.25;
}

.distance-card .d-label {
  font-size: .82rem;
  color: rgba(247, 243, 234, .65);
  margin-top: 6px;
}

.distance-note {
  font-size: .8rem;
  color: rgba(247, 243, 234, .55);
  margin-top: 22px;
  position: relative;
  z-index: 2;
}

@media (max-width:900px) {
  .distance-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:560px) {
  .distance-grid {
    grid-template-columns: 1fr;
  }
}

/* location */
.route-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.route-list li:last-child {
  border-bottom: none;
}

.route-name {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .96rem;
}

.route-name i {
  color: var(--forest);
  font-size: 1.1rem;
}

.route-time {
  background: var(--sage);
  color: var(--forest-deep);
  font-weight: 700;
  font-size: .78rem;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

/* plot sizes */
.plot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.plot-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease;
}

.plot-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.plot-card .size {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--forest);
  font-weight: 600;
}

.plot-card .unit {
  font-size: .85rem;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.plot-card ul {
  text-align: left;
  font-size: .88rem;
  color: var(--ink-soft);
}

.plot-card ul li {
  padding: 6px 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.plot-card ul li i {
  color: var(--forest);
  margin-top: 3px;
}

@media (max-width:900px) {
  .plot-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- slider / gallery ---------- */
.slider-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(18, 53, 36, .18);
  border: 1px solid var(--line);
}

.slide {
  position: relative;
  height: 460px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.slide::before {
  content: "";
  position: absolute;
  inset: -4%;
  background: inherit;
  z-index: 0;
  animation: kenBurns 9s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.09);
  }
}

.slide-icon {
  position: absolute;
  right: 26px;
  top: 26px;
  font-size: 3.4rem;
  color: rgba(255, 255, 255, .16);
  z-index: 1;
  pointer-events: none;
}

.slide .slide-inner {
  padding: 38px;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.slide .slide-inner .tag {
  font-size: .76rem;
  letter-spacing: .14em;
  color: var(--gold-light);
  font-weight: 700;
}

.slide .slide-inner h3 {
  color: var(--white);
  font-size: 1.55rem;
  margin-top: 8px;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 36, 26, .88) 0%, rgba(11, 36, 26, .1) 62%, rgba(11, 36, 26, .3) 100%);
  z-index: 1;
}

.slide-1 {
  background: linear-gradient(135deg, #123524, #1E5138 60%, #0B241A);
}

.slide-2 {
  background: linear-gradient(135deg, #8B5A22, #C89B3C 55%, #6f4a1d);
}

.slide-3 {
  background: linear-gradient(135deg, #0B241A, #1c4a34 55%, #123524);
}

.slide-4 {
  background: linear-gradient(135deg, #6f4a1d, #C89B3C 55%, #8B5A22);
}

.slide-photo {
  background-size: cover;
  background-position: center;
}

.slide-photo::before {
  animation: kenBurns 11s ease-in-out infinite alternate;
}

.carousel-fade .carousel-item {
  transition: opacity .8s ease;
}

.carousel-control-prev,
.carousel-control-next {
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(11, 36, 26, .45);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  opacity: 1;
  transition: background .2s ease, opacity .25s ease, border-color .2s ease;
  z-index: 5;
}

.carousel-control-prev {
  left: 18px;
}

.carousel-control-next {
  right: 18px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(255, 255, 255, .32);
  opacity: 1 !important;
}

.slider-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 24px;
  background: linear-gradient(to top, rgba(11, 36, 26, .65), transparent);
}

.slider-bars {
  display: flex;
  gap: 8px;
  flex: 1;
  max-width: 360px;
}

.slider-bar {
  flex: 1;
  height: 14px;
  background: none;
  border: none;
  padding: 5px 0;
  cursor: pointer;
  position: relative;
}

.slider-bar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 3px;
  background: rgba(255, 255, 255, .28);
  border-radius: 3px;
}

.slider-bar .bar-fill {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 3px;
  width: 0;
  background: var(--gold);
  border-radius: 3px;
}

.slider-bar.active .bar-fill {
  animation: barFill 4.2s linear forwards;
}

@keyframes barFill {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.slider-count {
  color: rgba(247, 243, 234, .75);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  flex: 0 0 auto;
}

.slider-note {
  text-align: center;
  font-size: .82rem;
  color: var(--ink-soft);
  margin-top: 16px;
}

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

  .slider-bar .bar-fill {
    animation: none;
    width: 0 !important;
  }
}


/* faq — two-column layout: heading/CTA on the left, accordion on the right */
.faq-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.faq-side {
  position: sticky;
  top: 100px;
}

.faq-side .section-head {
  margin-bottom: 26px;
  max-width: none;
}

.faq-side-note {
  color: var(--ink-soft);
  font-size: .92rem;
  margin-bottom: 24px;
}

.faq-side .cta-premium {
  width: fit-content;
}

@media (max-width:900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq-side {
    position: static;
  }
}

.faq-list {
  max-width: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.faq-item.open {
  border-color: var(--gold);
  box-shadow: 0 10px 26px rgba(18, 53, 36, .08);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--forest-deep);
}

.faq-num {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--forest-deep);
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, color .25s ease;
}

.faq-item.open .faq-num {
  background: var(--forest);
  color: var(--gold-light);
}

.faq-q .faq-q-text {
  flex: 1;
}

.faq-chevron {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  transition: transform .3s ease, background .25s ease, border-color .25s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--sage);
  border-color: var(--gold);
}

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

.faq-a-inner {
  padding: 0 22px 22px 68px;
}

.faq-a p {
  color: var(--ink-soft);
  font-size: .95rem;
  max-width: 65ch;
  margin: 0;
}

/* ---------- dedicated register section (2nd form location) ---------- */
.register-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(18, 53, 36, .16);
}

.register-info {
  background: var(--forest);
  color: var(--sand);
  padding: 48px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.register-info .section-kicker {
  color: var(--gold-light);
}

.register-info h2 {
  color: var(--white);
  font-size: 1.9rem;
  margin-bottom: 14px;
}

.register-info p {
  color: rgba(247, 243, 234, .8);
  font-size: .95rem;
  margin-bottom: 22px;
}

.register-info ul li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: .88rem;
  padding: 8px 0;
  color: rgba(247, 243, 234, .88);
}

.register-info ul li i {
  color: var(--gold-light);
}

.register-info .register-contact {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.register-form-wrap {
  background: var(--white);
  padding: 44px 40px;
}

.register-form-wrap h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.register-form-wrap p.lead-note {
  color: var(--ink-soft);
  font-size: .9rem;
  margin-bottom: 22px;
}

@media (max-width:900px) {
  .register-panel {
    grid-template-columns: 1fr;
  }
}

/* bottom cta */
.cta-banner {
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 56px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 1.7rem;
}

.cta-banner p {
  color: rgba(247, 243, 234, .78);
  margin-top: 8px;
  max-width: 44ch;
}

/* footer */
.site-footer {
  background: var(--forest-deep);
  color: rgba(247, 243, 234, .85);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-grid h5 {
  color: var(--white);
  font-size: .85rem;
  letter-spacing: .03em;
  margin-bottom: 18px;
  font-weight: 700;
}

.footer-grid p,
.footer-grid a {
  font-size: .86rem;
  color: rgba(247, 243, 234, .68);
}

.footer-grid a {
  display: block;
  padding: 5px 0;
  transition: color .2s;
}

.footer-grid a:hover {
  color: var(--gold-light);
}

.footer-brand p {
  margin-top: 14px;
  max-width: 34ch;
}

.footer-bottom {
  padding: 22px 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .78rem;
  color: rgba(247, 243, 234, .55);
}

.disclaimer {
  font-size: .76rem;
  color: rgba(247, 243, 234, .45);
  max-width: 900px;
  margin: 0 auto 20px;
  text-align: center;
  padding-top: 20px;
}

@media (max-width:900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* floating actions */
.float-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.fab {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .25);
  border: none;
  cursor: pointer;
  transition: transform .2s ease;
}

.fab:hover {
  transform: translateY(-3px) scale(1.05);
}

.fab-whatsapp {
  background: #25D366;
  animation: pulseGlow 2.6s infinite;
}

.fab-top {
  background: var(--forest);
  font-size: 1.2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.fab-top.show {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width:768px) {
  .section {
    padding: 64px 0;
  }

  .cta-banner {
    padding: 40px 26px;
    text-align: center;
    justify-content: center;
  }

  .slide {
    height: 320px;
  }
}

/* ---------- count-up stat numbers ---------- */
.count-up {
  font-variant-numeric: tabular-nums;
}

/* ---------- mobile fixed bottom CTA bar ---------- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 950;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(18, 53, 36, .12);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 10px;
}

.mobile-cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 700;
}

.mobile-cta-bar .mcta-call {
  background: var(--sage);
  color: var(--forest-deep);
}

.mobile-cta-bar .mcta-whatsapp {
  background: #E7F8EC;
  color: #1E5138;
}

.mobile-cta-bar .mcta-register {
  background: var(--gold);
  color: var(--forest-deep);
}

@media (max-width:767px) {
  .mobile-cta-bar {
    display: grid;
  }

  body {
    padding-bottom: 74px;
  }

  .float-actions {
    display: none;
  }
}

/* ---------- GSAP button helpers ---------- */
.gsap-btn {
  will-change: transform;
}

.gsap-pulse {
  animation: pulseGlow 2.2s infinite;
}

.gsap-pulse:hover {
  animation: none;
}

.btn-register-premium.gsap-pulse {
  animation: rotateRegisterBorder 3s linear infinite, pulseGlow 2.4s infinite;
}

.btn-register-premium.gsap-pulse:hover {
  animation-play-state: paused;
}

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