/* ══════════════════════════════════════════
   TOKENS — WARM LUXURY PALETTE
══════════════════════════════════════════ */
:root {
  --cream: #F4F7F4;
  --cream2: #E8F0E8;
  --cream3: #DCE8DC;
  --dark: #162518;
  --mid: #3D6B4F;
  --muted: #6B9478;
  --gold: #C09020;
  --gold2: #D4A83A;
  --gold-g: rgba(192, 144, 32, .18);
  --gold-s: rgba(192, 144, 32, .09);
  --green: #1E5C38;
  --green2: #2D7A50;
  --green-s: rgba(30, 92, 56, .08);
  --white: #FFFFFF;
  --br: rgba(22, 37, 24, .09);
  --brm: rgba(22, 37, 24, .16);

  --s1: 0 2px 12px rgba(22, 37, 24, .06);
  --s2: 0 8px 40px rgba(22, 37, 24, .10);
  --s3: 0 20px 80px rgba(22, 37, 24, .13);
  --sg: 0 8px 40px rgba(192, 144, 32, .30);

  --r1: 4px;
  --r2: 12px;
  --r3: 20px;
  --r4: 36px;
  --nh: 64px;

  --E: cubic-bezier(.16, 1, .3, 1);
  --F: .18s cubic-bezier(.4, 0, .2, 1);
  --M: .38s cubic-bezier(.4, 0, .2, 1);
  --S: .72s cubic-bezier(.16, 1, .3, 1);
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  cursor: none;
  overflow-x: hidden;
  max-width: 100vw
}

body {
  background: var(--cream);
  color: var(--dark);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
  position: relative
}

@media(hover:none) {
  html {
    cursor: auto
  }
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover
}

a {
  text-decoration: none;
  color: inherit
}

ul {
  list-style: none
}

button {
  border: none;
  background: none;
  cursor: none;
  font-family: inherit
}

@media(hover:none) {

  button,
  a {
    cursor: pointer
  }

  .pm-arr,
  .pm-cl,
  .pm-d,
  .pm-enq-btn {
    cursor: pointer
  }
}

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9997;
  opacity: .55;
  mix-blend-mode: multiply;
}

/* ── PROGRESS BAR ── */
#pb {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  z-index: 9999;
  background: linear-gradient(90deg, var(--green), var(--gold2));
  box-shadow: 0 0 12px rgba(30, 92, 56, .25)
}

/* ── CURSOR ── */
#cd,
#cr {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  border-radius: 50%;
  transform: translate(-50%, -50%)
}

#cd {
  width: 6px;
  height: 6px;
  background: var(--green)
}

#cr {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(30, 92, 56, .4);
  transition: width var(--M), height var(--M), background var(--M)
}

body.ch #cr {
  width: 52px;
  height: 52px;
  background: var(--green-s);
  border-color: var(--green)
}

@media(hover:none) {

  #cd,
  #cr {
    display: none
  }
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nh);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  transition: background var(--M), backdrop-filter var(--M), box-shadow var(--M);
}

#nav.sc {
  background: rgba(244, 247, 244, .94);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  box-shadow: 0 1px 0 rgba(30, 92, 56, .1), var(--s1)
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .08em;
  flex-shrink: 0;
}

.nl {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.25rem)
}

.nl a {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--mid);
  position: relative;
  transition: color var(--F)
}

.nl a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green2);
  transition: width var(--M)
}

.nl a:hover {
  color: var(--dark)
}

.nl a:hover::after {
  width: 100%
}

.nc {
  display: flex;
  align-items: center;
  gap: .875rem
}

.btn-g {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  padding: .6rem 1.4rem;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background var(--F), transform var(--F), box-shadow var(--F);
}

.btn-g:hover {
  background: var(--green2);
  box-shadow: 0 8px 24px rgba(30, 92, 56, .3);
  transform: translateY(-2px)
}

#hm {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: none
}

.hl {
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--M), opacity var(--M);
  transform-origin: center
}

#hm.op .hl:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg)
}

#hm.op .hl:nth-child(2) {
  opacity: 0;
  transform: scaleX(0)
}

#hm.op .hl:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg)
}

@media(max-width:860px) {
  .nl {
    display: none
  }

  #hm {
    display: flex
  }

  .nc .btn-g {
    display: none
  }
}

/* MOBILE MENU */
#mob {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: rgba(244, 247, 244, .98);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--M);
}

#mob.op {
  opacity: 1;
  pointer-events: all
}

.ml {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 8vw, 4rem);
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--dark);
  line-height: 1.2;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--S), transform var(--S), color var(--F);
}

.ml:hover {
  color: var(--green)
}

#mob.op .ml {
  opacity: 1;
  transform: translateY(0)
}

#mob.op .ml:nth-child(1) {
  transition-delay: .04s
}

#mob.op .ml:nth-child(2) {
  transition-delay: .09s
}

#mob.op .ml:nth-child(3) {
  transition-delay: .14s
}

#mob.op .ml:nth-child(4) {
  transition-delay: .19s
}

#mob.op .ml:nth-child(5) {
  transition-delay: .24s
}

#mob.op .ml:nth-child(6) {
  transition-delay: .29s
}

.mob-ft {
  position: absolute;
  bottom: 2.5rem;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted)
}

.mob-ph {
  position: absolute;
  bottom: 5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--gold);
  font-style: italic
}

/* ══════════════════════════════════════════
   HERO — FULL CINEMATIC
══════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  ;
  max-width: 100%;
  contain: paint
}

.hero-img {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?w=1600&q=85') center/cover no-repeat;
}

.hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 28, 18, .92) 0%, rgba(16, 36, 22, .58) 45%, rgba(20, 40, 26, .18) 100%);
}

/* Subtle grain on hero */
.hero-img::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: .5;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: calc(var(--nh) + clamp(2.5rem, 6vw, 5rem)) clamp(1.25rem, 5vw, 5rem) clamp(2.5rem, 5vw, 5rem);
  max-width: 1500px;
  width: 100%;
}

.h-ey {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  opacity: 0;
  transform: translateY(14px);
  animation: fu .7s .3s var(--E) forwards;
}

.h-ey::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold)
}

.h-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 9.5rem);
  line-height: .95;
  letter-spacing: -.01em;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 2.25rem;
  opacity: 0;
  transform: translateY(28px);
  animation: fu .9s .45s var(--E) forwards;
}

.h-h1 em {
  font-style: italic;
  color: #F0C030;
  font-weight: 600;
  text-shadow: 0 0 40px rgba(240, 192, 48, .35)
}

.h-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(18px);
  animation: fu .7s .7s var(--E) forwards;
}

.h-desc {
  font-size: clamp(.92rem, 1.3vw, 1.05rem);
  color: rgba(255, 255, 255, .62);
  max-width: 440px;
  line-height: 1.78
}

.h-acts {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
  flex-wrap: wrap
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  padding: .85rem 2rem;
  border-radius: 100px;
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background var(--F), transform var(--F), box-shadow var(--F);
}

.btn-gold:hover {
  background: var(--green2);
  box-shadow: 0 8px 32px rgba(30, 92, 56, .35);
  transform: translateY(-2px)
}

.btn-ol {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  padding-bottom: 1px;
  transition: color var(--F), border-color var(--F);
}

.btn-ol:hover {
  color: var(--white);
  border-color: var(--white)
}

/* Hero bottom strip */
.h-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .12);
  opacity: 0;
  animation: fu .6s 1s var(--E) forwards;
}

.h-st {
  padding: clamp(1.25rem, 2.5vw, 2rem) clamp(1.5rem, 4vw, 3rem);
  border-right: 1px solid rgba(255, 255, 255, .1);
  position: relative;
}

.h-st:last-child {
  border-right: none
}

.h-sn {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1
}

.h-sn span {
  color: #E8B830;
  font-style: italic
}

.h-sl {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .38);
  margin-top: .3rem
}

@keyframes fu {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@media(max-width:768px) {
  .h-row {
    flex-direction: column;
    align-items: flex-start
  }

  .h-h1 {
    font-size: clamp(2.8rem, 12vw, 5rem)
  }

  .h-strip {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto
  }

  .h-st:nth-child(2) {
    border-right: none
  }

  .h-st:nth-child(3) {
    grid-column: 1/3;
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, .1)
  }

  .h-inner {
    padding-top: calc(var(--nh) + 2rem)
  }
}

/* ══════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════ */
.mqw {
  background: #0F2218;
  overflow: hidden;
  padding: clamp(.9rem, 1.5vw, 1.25rem) 0;
  width: 100%;
  max-width: 100vw
}

.mqt {
  display: flex;
  width: max-content;
  animation: mq 32s linear infinite
}

.mqt:hover {
  animation-play-state: paused
}

.mqi {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  white-space: nowrap;
  font-family: 'Playfair Display', serif;
  font-size: clamp(.9rem, 1.5vw, 1.15rem);
  font-style: italic;
  color: rgba(255, 255, 255, .38);
  letter-spacing: .05em
}

.mqd {
  width: 4px;
  height: 4px;
  background: #E8B830;
  border-radius: 50%;
  flex-shrink: 0
}

@keyframes mq {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ══════════════════════════════════════════
   SHARED
══════════════════════════════════════════ */
.sp {
  padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 5vw, 4rem)
}

@media(max-width:480px) {
  .sp {
    padding: 2.5rem 1rem
  }
}

.mw {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%
}

.ey {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem
}

.ey::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--green)
}

.sh2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.01em;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 1.25rem
}

.sh2 em {
  font-style: italic;
  color: #C09020;
  font-weight: 600
}

/* Reveals */
.rv,
.rl,
.rr {
  opacity: 0;
  transition: opacity .7s var(--E), transform .7s var(--E)
}

.rv {
  transform: translateY(28px)
}

.rl {
  transform: translateX(-28px)
}

.rr {
  transform: translateX(28px)
}

.rv.vs,
.rl.vs,
.rr.vs {
  opacity: 1;
  transform: none
}

/* ══════════════════════════════════════════
   ABOUT / FOUNDER
══════════════════════════════════════════ */
#about {
  background: var(--cream);
  overflow: hidden
}

.ag {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center
}

.aq {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.45;
  color: var(--dark);
  border-left: 3px solid var(--green2);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.abp {
  font-size: clamp(.9rem, 1.3vw, 1rem);
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 1.25rem
}

/* Founder card */
.fc {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--green);
  border-radius: var(--r2);
  padding: 1.1rem 1.4rem;
  margin-top: 2.25rem;
  cursor: none;
  transition: box-shadow var(--M), transform var(--M);
}

.fc:hover {
  box-shadow: 0 8px 32px rgba(30, 92, 56, .3);
  transform: translateY(-3px)
}

.fc-av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
}

.fc-n {
  font-size: .9rem;
  font-weight: 600;
  color: var(--cream)
}

.fc-r {
  font-size: .72rem;
  color: rgba(255, 255, 255, .4);
  margin-top: 2px
}

.fc-p {
  margin-left: auto;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 5px
}

/* About image */
.ai {
  border-radius: var(--r3);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  box-shadow: var(--s3)
}

.ai img {
  transition: transform .9s var(--E)
}

.ai:hover img {
  transform: scale(1.04)
}

/* Floating badge */
.af {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--cream);
  border: 1px solid var(--br);
  border-radius: var(--r2);
  padding: .875rem 1.1rem;
  box-shadow: var(--s3);
  z-index: 3;
  transition: transform var(--M), box-shadow var(--M);
  max-width: calc(100% - 2rem);
}

.af:hover {
  transform: translateY(-5px);
  box-shadow: var(--sg)
}

.af-ic {
  width: 28px;
  height: 28px;
  background: var(--green-s);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .5rem
}

.af-t {
  font-weight: 600;
  font-size: .82rem;
  color: var(--dark)
}

.af-s {
  font-size: .7rem;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.5;
  max-width: 160px
}

@media(max-width:860px) {
  .ag {
    grid-template-columns: 1fr
  }

  .ai {
    aspect-ratio: 4/3
  }

  .af {
    right: .875rem;
    bottom: .875rem;
    padding: .75rem 1rem
  }

  .af-t {
    font-size: .78rem
  }

  .af-s {
    font-size: .67rem;
    max-width: 140px
  }

  .fc-p {
    display: none
  }
}

/* ══════════════════════════════════════════
   STATS BAND
══════════════════════════════════════════ */
#stats {
  background: #0F2218;
  position: relative;
  overflow: hidden
}

#stats::before {
  content: '';
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 92, 56, .18) 0%, transparent 70%);
  pointer-events: none;
}

.sg2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0
}

.sb {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid rgba(255, 255, 255, .06);
  transition: background var(--M);
}

.sb:last-child {
  border-right: none
}

.sb:hover {
  background: rgba(255, 255, 255, .02)
}

.sn {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: .5rem
}

.sn .g {
  color: #E8B830;
  font-style: italic
}

.sl {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  line-height: 1.6
}

@media(max-width:768px) {
  .sg2 {
    grid-template-columns: 1fr 1fr
  }

  .sb:nth-child(2) {
    border-right: none
  }

  .sb:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, .06)
  }
}

@media(max-width:440px) {
  .sg2 {
    grid-template-columns: 1fr
  }

  .sb {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
  }
}

/* ══════════════════════════════════════════
   PACKAGES
══════════════════════════════════════════ */
#packages {
  background: var(--cream2);
  position: relative;
  overflow: hidden
}

/* Big watermark */
#packages::before {
  content: 'PACKAGES';
  position: absolute;
  right: -.02em;
  bottom: -.1em;
  font-family: 'Playfair Display', serif;
  font-size: clamp(12rem, 20vw, 22rem);
  font-weight: 700;
  color: rgba(22, 37, 24, .04);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -.03em
}

.ph {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 2rem;
  margin-bottom: 3.5rem
}

.ph-note {
  font-size: .94rem;
  color: var(--mid);
  line-height: 1.8;
  max-width: 400px;
  margin-left: auto
}

.ph-note strong {
  color: var(--dark)
}

/* Package grid — 14 cards */
.pgr {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(.75rem, 1.5vw, 1.125rem);
  align-items: start;
}

@media(max-width:1280px) {
  .pgr {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:900px) {
  .pgr {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:480px) {
  .pgr {
    grid-template-columns: 1fr
  }
}

@media(max-width:900px) {
  .pk {
    padding: 1.125rem
  }

  .pk-price {
    font-size: 1.9rem
  }

  .pk.ft {
    padding: 1.125rem
  }

  .pk.ft .pk-price {
    font-size: 1.9rem
  }

  .pk.ft .pk-badge {
    margin-bottom: .4rem;
    font-size: .56rem;
    padding: 3px 9px
  }

  .pk.ft .pk-tier {
    margin-bottom: .15rem
  }

  .pk.ft .pk-type {
    margin-bottom: .45rem
  }

  .pk.ft .pk-tag {
    margin-bottom: .45rem
  }

  .pk.ft .pk-div {
    margin-bottom: .45rem
  }

  .pk.ft .pk-feats {
    gap: .3rem;
    margin-bottom: .7rem
  }

  .pk-feats {
    gap: .3rem;
    margin-bottom: .7rem
  }

  .pk-fi {
    font-size: .76rem
  }

  .pk-btns {
    gap: .375rem
  }

  .pk-rm,
  .pk-enq {
    font-size: .64rem;
    padding: .48rem .4rem
  }
}

/* ── PACKAGE BUTTONS ── */
.pk-btns {
  display: flex;
  gap: .5rem;
  margin-top: auto;
  padding-top: .625rem
}

@media(max-width:380px) {
  .pk-btns {
    flex-direction: column
  }

  .pk-rm,
  .pk-enq {
    font-size: .62rem;
    padding: .44rem
  }
}

.pk-rm {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .55rem .5rem;
  border-radius: 100px;
  cursor: none;
  border: 1.5px solid var(--green);
  color: var(--green);
  background: transparent;
  transition: background var(--F), color var(--F);
  font-family: 'Jost', sans-serif;
}

.pk-rm:hover {
  background: var(--green-s)
}

.pk-enq {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .55rem .5rem;
  border-radius: 100px;
  cursor: none;
  background: var(--green);
  color: #fff;
  border: 1.5px solid var(--green);
  transition: background var(--F), border-color var(--F), transform var(--F);
  font-family: 'Jost', sans-serif;
}

.pk-enq:hover {
  background: var(--green2);
  border-color: var(--green2);
  transform: translateY(-2px)
}

.pk.ft .pk-rm {
  border-color: rgba(232, 184, 48, .4);
  color: #E8B830
}

.pk.ft .pk-rm:hover {
  background: rgba(232, 184, 48, .12)
}

.pk.ft .pk-enq {
  background: #C09020;
  color: #0F2218;
  border-color: #C09020
}

.pk.ft .pk-enq:hover {
  background: #E8B830;
  border-color: #E8B830
}

/* ── MODAL OVERLAY ── */
.pm-ov {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: rgba(12, 28, 18, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  padding: clamp(.5rem, 3vw, 1.25rem);
}

.pm-ov.op {
  opacity: 1;
  pointer-events: all
}

.pm-box {
  background: var(--cream);
  border-radius: var(--r3);
  width: 100%;
  max-width: 760px;
  height: auto;
  max-height: min(75svh, 75vh);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(24px) scale(.98);
  transition: transform .3s cubic-bezier(.34, 1.2, .64, 1);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .55);
}

.pm-ov.op .pm-box {
  transform: none
}

/* Modal header */
.pm-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(.75rem, 2vw, 1rem) clamp(.875rem, 3vw, 1.5rem);
  border-bottom: 1px solid var(--br);
  flex-shrink: 0;
  gap: .75rem;
}

.pm-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0
}

.pm-nm {
  font-family: 'Playfair Display', serif;
  font-size: clamp(.95rem, 2.5vw, 1.1rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.pm-pr {
  font-size: .78rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .04em
}

.pm-cl {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid var(--br);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--mid);
  cursor: pointer;
  transition: background var(--F), color var(--F);
}

.pm-cl:hover {
  background: var(--dark);
  color: var(--white)
}

/* Carousel */
.pm-car {
  position: relative;
  overflow: hidden;
  height: clamp(260px, 38vw, 400px);
  flex-shrink: 0;
  background: var(--cream2);
}

@media (max-width: 768px) {
  .pm-car {
    height: clamp(350px, 85vw, 500px);
  }
}

.pm-track {
  display: flex;
  height: 100%;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

.pm-sl {
  min-width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0
}

/* Skeleton shimmer */
.pm-sk {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--cream2) 25%, #cddacd 50%, var(--cream2) 75%);
  background-size: 200% 100%;
  animation: sk 1.3s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes sk {
  0% {
    background-position: 200% 0
  }

  100% {
    background-position: -200% 0
  }
}

.pm-sk-ic {
  font-size: 1.75rem;
  opacity: .15;
  user-select: none;
  pointer-events: none
}

.pm-sl img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .3s ease;
}

.pm-sl img.ld {
  opacity: 1
}

/* Arrows */
.pm-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(34px, 5vw, 42px);
  height: clamp(34px, 5vw, 42px);
  border-radius: 50%;
  background: rgba(244, 247, 244, .96);
  border: 1px solid rgba(22, 37, 24, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: var(--dark);
  cursor: pointer;
  z-index: 5;
  transition: background var(--F), box-shadow var(--F);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .15);
}

.pm-arr:hover {
  background: var(--dark);
  color: var(--white)
}

.pm-pv {
  left: .625rem
}

.pm-nx {
  right: .625rem
}

/* Footer */
.pm-ft {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: clamp(.5rem, 1.5vw, .875rem) clamp(.875rem, 3vw, 1.5rem);
  border-top: 1px solid var(--br);
  flex-shrink: 0;
  flex-wrap: wrap;
}

.pm-ds {
  display: flex;
  gap: .375rem;
  align-items: center
}

.pm-d {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--br);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background .2s, width .2s, border-radius .2s;
}

.pm-d.ac {
  background: var(--green);
  width: 16px;
  border-radius: 3px
}

.pm-co {
  font-size: .66rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .1em
}

.pm-enq-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--green);
  color: var(--cream);
  padding: .45rem 1rem;
  border-radius: 100px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background var(--F);
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  border: none;
}

.pm-enq-btn:hover {
  background: var(--green)
}

/* ── ENQUIRY BANNER in Contact ── */
#enq-bar {
  display: none;
  align-items: center;
  gap: .75rem;
  background: rgba(45, 122, 80, .15);
  border: 1px solid rgba(45, 122, 80, .35);
  border-radius: var(--r2);
  padding: .75rem 1.25rem;
  margin-bottom: 1.25rem;
}

#enq-bar.show {
  display: flex
}

#enq-bar p {
  font-size: .84rem;
  color: var(--white);
  font-weight: 500;
  flex: 1
}

#enq-bar p span {
  color: #E8B830;
  font-weight: 700
}

#enq-bar button {
  background: none;
  border: none;
  font-size: 1rem;
  color: rgba(255, 255, 255, .4);
  cursor: none;
  padding: 0;
  line-height: 1
}

.pk {
  background: #FAFCFA;
  border: 1px solid rgba(22, 37, 24, .08);
  border-radius: var(--r3);
  min-height: 340px;
  padding: clamp(1.5rem, 2vw, 2rem);
  position: relative;
  overflow: hidden;
  transition: transform var(--M), box-shadow var(--M), border-color var(--M), opacity var(--E);
  cursor: none;
  display: flex;
  flex-direction: column;
}

.pk::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--M)
}

.pk:hover {
  transform: translateY(-8px);
  box-shadow: var(--s3);
  border-color: rgba(30, 92, 56, .22)
}

.pk:hover::after {
  transform: scaleX(1)
}

/* ── FEATURED PACKAGES — clean premium dark ── */
.pk.ft {
  background: linear-gradient(180deg, #1A3828 0%, #122A1E 100%);
  border: 1.5px solid rgba(45, 122, 80, .45);
  box-shadow: 0 10px 30px rgba(12, 28, 18, .25), var(--s1);
}

.pk.ft:hover {
  border-color: rgba(45, 122, 80, .65);
  box-shadow: 0 20px 48px rgba(12, 28, 18, .35);
}

/* Only a top gold line — no overlapping pseudo elements */
.pk.ft::after {
  background: linear-gradient(90deg, rgba(45, 122, 80, .3), rgba(232, 184, 48, .6), rgba(45, 122, 80, .3));
  top: 0;
  bottom: auto;
  transform: scaleX(1);
  opacity: .6;
  z-index: 0;
}

.pk.ft::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 92% 10%, rgba(45, 122, 80, .25), transparent 34%);
  pointer-events: none;
  z-index: 0;
}

.pk.ft>* {
  position: relative;
  z-index: 1
}

.pk.ft .pk-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(232, 184, 48, .18), rgba(232, 184, 48, .1));
  border: 1px solid rgba(232, 184, 48, .35);
  color: #E8B830;
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: .875rem;
}

.pk.ft .pk-tier {
  color: #E8B830;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}

.pk.ft .pk-price {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 3.8vw, 3.4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: .25rem;
  letter-spacing: -.02em;
}

.pk.ft .pk-price .u {
  color: rgba(255, 255, 255, .45);
  font-size: .82rem;
  font-weight: 600
}

.pk.ft .pk-type {
  color: rgba(255, 255, 255, .7);
  opacity: 1;
  font-size: .73rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pk.ft .pk-tag {
  display: inline-block;
  color: #E8B830;
  font-weight: 800;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.pk.ft .pk-div {
  width: 100%;
  height: 1px;
  background: rgba(45, 122, 80, .4);
  margin-bottom: 1rem;
}

.pk.ft .pk-feats {
  gap: .55rem
}

.pk.ft .pk-fi {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .82);
  font-size: .82rem;
  font-weight: 500;
}

.pk.ft .pk-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #E8B830;
  flex-shrink: 0;
}

.pk.ft .pk-dot::after {
  display: none
}

.pk.ft .pk-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(232, 184, 48, .85);
  font-weight: 800;
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 1.5px solid rgba(232, 184, 48, .35);
  padding-bottom: 2px;
  margin-top: auto;
  transition: gap var(--F), border-color var(--F), color var(--F);
}

.pk.ft .pk-cta:hover {
  gap: 10px;
  border-color: var(--gold);
  color: var(--gold);
}

/* generic badge — base style only for non-featured */
.pk:not(.ft) .pk-badge {
  display: inline-block;
  background: var(--green-s);
  color: var(--green);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 1rem;
  border: 1px solid rgba(30, 92, 56, .2)
}

.pk:not(.ft) .pk-tier {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .5rem
}

.pk:not(.ft) .pk-price {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 3.8vw, 3.4rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: .25rem;
  letter-spacing: -.02em
}

.pk:not(.ft) .pk-price .u {
  font-family: 'Jost', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: var(--mid)
}

.pk:not(.ft) .pk-type {
  font-size: .76rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.25rem;
  line-height: 1.5;
  opacity: .7
}

.pk:not(.ft) .pk-tag {
  display: inline-block;
  background: rgba(30, 92, 56, .07);
  border: 1.5px solid rgba(30, 92, 56, .18);
  border-radius: 100px;
  padding: .28rem .9rem;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.25rem
}

.pk-feats {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-bottom: 1.5rem;
  flex: 1
}

.pk-fi {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .82rem;
  font-weight: 500
}

.pk:not(.ft) .pk-fi {
  color: var(--dark)
}

.pk:not(.ft) .pk-dot {
  width: 5px;
  height: 5px;
  background: var(--green2);
  border-radius: 50%;
  flex-shrink: 0
}

.pk:not(.ft) .pk-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  border-bottom: 1.5px solid rgba(30, 92, 56, .3);
  padding-bottom: 2px;
  transition: gap var(--F), border-color var(--F);
  margin-top: auto
}

.pk:not(.ft) .pk-cta:hover {
  gap: 10px;
  border-color: var(--gold)
}

/* Assurance strip */
.pas {
  margin-top: 2.5rem;
  background: var(--cream3);
  border: 1px solid var(--br);
  border-radius: var(--r3);
  padding: clamp(1.75rem, 3.5vw, 2.5rem) clamp(1.5rem, 3.5vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.pas-t {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: var(--dark);
  font-style: italic;
  margin-bottom: .3rem
}

.pas-s {
  font-size: .84rem;
  color: var(--mid);
  line-height: 1.65
}

.pas-s span {
  color: var(--green);
  font-weight: 600
}

@media(max-width:860px) {
  .ph {
    grid-template-columns: 1fr
  }

  .ph-note {
    margin-left: 0;
    max-width: 100%
  }
}

/* ══════════════════════════════════════════
   FEATURED PROJECT
══════════════════════════════════════════ */
#project {
  background: var(--cream)
}

.prw {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center
}

/* Image stack */
.pis {
  position: relative
}

.pi-main {
  border-radius: var(--r3);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--s3)
}

.pi-main img {
  transition: transform .9s var(--E)
}

.pi-main:hover img {
  transform: scale(1.04)
}

.pi-sm {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 42%;
  border-radius: var(--r2);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--s3);
  border: 4px solid var(--cream);
}

.pi-sm img {
  transition: transform .9s var(--E)
}

.pi-sm:hover img {
  transform: scale(1.08)
}

.pi-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(12, 28, 18, .8);
  backdrop-filter: blur(12px);
  color: var(--white);
  border-radius: 100px;
  padding: .42rem 1.1rem;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pi-badge span {
  color: var(--gold2)
}

/* Tags */
.tgs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem
}

.tg {
  background: var(--cream2);
  border: 1px solid var(--br);
  border-radius: 100px;
  padding: .3rem .9rem;
  font-size: .72rem;
  font-weight: 500;
  color: var(--mid)
}

.tg.g {
  background: var(--green-s);
  border-color: rgba(30, 92, 56, .2);
  color: var(--green)
}

.psp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0
}

.psi {
  padding: .875rem 1.1rem;
  background: var(--cream2);
  border-radius: var(--r2);
  border: 1px solid var(--br)
}

.psl {
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .25rem
}

.psv {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--dark)
}

@media(max-width:860px) {
  .prw {
    grid-template-columns: 1fr
  }

  .pi-sm {
    right: 1rem;
    bottom: -1.5rem
  }
}

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
#services {
  background: var(--cream2)
}

.svh {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 2rem;
  margin-bottom: 3.5rem
}

.sv-sub {
  font-size: .95rem;
  color: var(--mid);
  line-height: 1.8;
  max-width: 420px;
  margin-left: auto
}

.svg2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.875rem, 1.5vw, 1.25rem)
}

.sv {
  background: var(--cream);
  border: 1px solid var(--br);
  border-radius: var(--r3);
  padding: clamp(1.75rem, 2.5vw, 2.25rem);
  position: relative;
  overflow: hidden;
  transition: transform var(--M), box-shadow var(--M);
  cursor: none;
}

.sv::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green), var(--green2));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--M)
}

.sv:hover {
  transform: translateY(-5px);
  box-shadow: var(--s2)
}

.sv:hover::before {
  transform: scaleY(1)
}

.sv-n {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--green);
  margin-bottom: 1.5rem;
  text-transform: uppercase
}

.sv-ic {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  color: var(--dark)
}

.sv-t {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  font-weight: 500;
  margin-bottom: .6rem;
  line-height: 1.2
}

.sv-d {
  font-size: .85rem;
  color: var(--mid);
  line-height: 1.75
}

@media(max-width:860px) {
  .svh {
    grid-template-columns: 1fr
  }

  .sv-sub {
    margin-left: 0;
    max-width: 100%
  }

  .svg2 {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:480px) {
  .svg2 {
    grid-template-columns: 1fr
  }
}

/* ══════════════════════════════════════════
   WHY US
══════════════════════════════════════════ */
#why {
  background: #0F2218;
  position: relative;
  overflow: hidden
}

#why::before {
  content: 'WHY';
  position: absolute;
  left: -.02em;
  bottom: -.12em;
  font-family: 'Playfair Display', serif;
  font-size: clamp(14rem, 28vw, 28rem);
  font-weight: 700;
  color: rgba(255, 255, 255, .025);
  line-height: 1;
  pointer-events: none
}

.wyg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center
}

.wy-img {
  border-radius: var(--r3);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
  box-shadow: var(--s3)
}

.wy-img img {
  transition: transform .9s var(--E)
}

.wy-img:hover img {
  transform: scale(1.04)
}

.wps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.25rem
}

.wp {
  display: flex;
  gap: 1.1rem;
  padding: 1.25rem 1.4rem;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--r2);
  transition: background var(--M), border-color var(--M), transform var(--M);
}

.wp:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(45, 122, 80, .3);
  transform: translateX(6px)
}

.wp-n {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #E8B830;
  font-style: italic;
  flex-shrink: 0;
  padding-top: 2px
}

.wp-t {
  font-size: .9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .25rem
}

.wp-d {
  font-size: .82rem;
  color: rgba(255, 255, 255, .42);
  line-height: 1.65
}

@media(max-width:860px) {
  .wyg {
    grid-template-columns: 1fr
  }

  .wy-img {
    aspect-ratio: 16/9
  }
}

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
#testi {
  background: var(--cream)
}

.tsg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: 3.5rem
}

.tc {
  background: var(--cream2);
  border: 1px solid var(--br);
  border-radius: var(--r3);
  padding: clamp(1.75rem, 2.5vw, 2.25rem);
  transition: transform var(--M), box-shadow var(--M), border-color var(--M);
}

.tc:hover {
  transform: translateY(-5px);
  box-shadow: var(--s2);
  border-color: rgba(30, 92, 56, .2)
}

.tc-stars {
  color: #C09020;
  font-size: .95rem;
  margin-bottom: 1.25rem;
  letter-spacing: .05em
}

.tc-q {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  color: var(--dark);
  line-height: 1.65;
  margin-bottom: 1.5rem
}

.tc-auth {
  display: flex;
  align-items: center;
  gap: .875rem
}

.tc-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .82rem;
  color: #fff;
  flex-shrink: 0
}

.tc-n {
  font-size: .88rem;
  font-weight: 600;
  color: var(--dark)
}

.tc-r {
  font-size: .73rem;
  color: var(--muted);
  margin-top: 1px
}

@media(max-width:860px) {
  .tsg {
    grid-template-columns: 1fr
  }
}

@media(min-width:541px) and (max-width:860px) {
  .tsg {
    grid-template-columns: 1fr 1fr
  }
}

/* ══════════════════════════════════════════
   CTA / CONTACT
══════════════════════════════════════════ */
#contact {
  background: #E8F0E8
}

.cti {
  background: #0F2218;
  border-radius: var(--r4);
  padding: clamp(3.5rem, 7vw, 6rem) clamp(2rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cti::before {
  content: 'ASHA';
  position: absolute;
  right: -.02em;
  bottom: -.12em;
  font-family: 'Playfair Display', serif;
  font-size: clamp(14rem, 26vw, 24rem);
  font-weight: 700;
  color: rgba(255, 255, 255, .025);
  line-height: 1;
  pointer-events: none
}

.ct-ey {
  color: rgba(232, 184, 48, .75) !important
}

.ct-ey::before {
  background: rgba(232, 184, 48, .75) !important
}

.ct-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.05;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem
}

.ct-h2 em {
  font-style: italic;
  color: #E8B830;
  font-weight: 600
}

.ct-s {
  font-size: .95rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.75;
  max-width: 380px
}

.ct-cards {
  display: flex;
  flex-direction: column;
  gap: .875rem
}

.ctc {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r2);
  padding: 1.1rem 1.35rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: background var(--M), border-color var(--M);
  cursor: none;
}

.ctc:hover {
  background: rgba(255, 255, 255, .09);
  border-color: rgba(45, 122, 80, .3)
}

.ct-ic {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(45, 122, 80, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.ct-lb {
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3)
}

.ct-vl {
  font-size: .92rem;
  font-weight: 500;
  color: var(--white);
  margin-top: 2px
}

@media(max-width:860px) {
  .cti {
    grid-template-columns: 1fr
  }
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: #0A1C12;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem) 2rem
}

.footer-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem
}

.fb-n {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .875rem
}

.fb-n span {
  color: #E8B830;
  font-style: italic
}

.fb-t {
  font-size: .88rem;
  color: rgba(255, 255, 255, .3);
  line-height: 1.7;
  max-width: 260px
}

.fc-t {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .2);
  margin-bottom: 1.25rem
}

.fc-l {
  display: flex;
  flex-direction: column;
  gap: .75rem
}

.fc-l a {
  font-size: .88rem;
  color: rgba(255, 255, 255, .42);
  transition: color var(--F)
}

.fc-l a:hover {
  color: var(--white)
}

.fb-b {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem
}

.fb-c {
  font-size: .78rem;
  color: rgba(255, 255, 255, .2)
}

.fb-s {
  display: flex;
  gap: .75rem
}

.fb-sl {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .32);
  transition: border-color var(--F), color var(--F), background var(--F)
}

.fb-sl:hover {
  border-color: var(--green2);
  color: var(--white);
  background: rgba(45, 122, 80, .2)
}

@media(max-width:860px) {
  .footer-wrap {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:420px) {
  .footer-wrap {
    grid-template-columns: 1fr
  }
}

/* ── Credit ── */
.credit {
  width: 100%;
  text-align: center;
  margin-top: .875rem;
  font-size: .65rem;
  color: rgba(255, 255, 255, .18);
  letter-spacing: .06em;
}

.credit a {
  color: rgba(255, 255, 255, .35);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  padding-bottom: 1px;
  transition: color .18s, border-color .18s;
}

.credit a:hover {
  color: #74C69D;
  border-color: rgba(116, 198, 157, .4)
}

/* ══ WHATSAPP FLOATING BUTTON ══ */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 9990;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #25D366;
  color: #fff;
  padding: .75rem 1.25rem .75rem .875rem;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .45), 0 2px 8px rgba(0, 0, 0, .15);
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  transition: transform .25s cubic-bezier(.16, 1, .3, 1), box-shadow .25s ease;
  cursor: none;
}

.wa-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 10px 32px rgba(37, 211, 102, .55), 0 4px 12px rgba(0, 0, 0, .15);
}

/* Pulse ring animation */
.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 100px;
  border: 2px solid rgba(37, 211, 102, .4);
  animation: wa-pulse 2.2s ease-out infinite;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: .7
  }

  70% {
    transform: scale(1.12);
    opacity: 0
  }

  100% {
    transform: scale(1.12);
    opacity: 0
  }
}

/* Label hides on small screens */
.wa-float-label {
  white-space: nowrap;
}

@media(max-width:480px) {
  .wa-float {
    padding: .875rem;
    border-radius: 50%;
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .wa-float-label {
    display: none
  }
}

/* ════════════════════════════════════════════
   ASHA ENQUIRY FORM
════════════════════════════════════════════ */
.asha-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r3);
  padding: clamp(1.5rem, 3vw, 2rem);
  backdrop-filter: blur(12px);
}

/* Package badge row */
.af-pkg-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .625rem;
  background: rgba(192, 144, 32, .12);
  border: 1px solid rgba(192, 144, 32, .3);
  border-radius: var(--r2);
  padding: .625rem 1rem;
  animation: fadeSlide .35s var(--E);
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-8px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.af-pkg-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 600;
  color: #E8B830
}

.af-pkg-clear {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .5);
  font-size: .65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: none;
  transition: background var(--F), color var(--F);
  border: none
}

.af-pkg-clear:hover {
  background: rgba(255, 255, 255, .2);
  color: #fff
}

/* Labels */
.af-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: .35rem;
  display: block
}

.af-label span {
  color: #E8B830
}

.af-opt {
  color: rgba(255, 255, 255, .25);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: .65rem
}

/* Inputs */
.af-input {
  width: 100%;
  padding: .75rem 1rem;
  background: rgba(255, 255, 255, .07);
  border: 1.5px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: .88rem;
  outline: none;
  transition: border-color var(--F), background var(--F), box-shadow var(--F);
}

.af-input::placeholder {
  color: rgba(255, 255, 255, .22)
}

.af-input:focus {
  border-color: rgba(30, 92, 56, .7);
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 0 0 3px rgba(30, 92, 56, .2)
}

.af-input-err {
  border-color: rgba(248, 113, 113, .6) !important
}

.af-textarea {
  min-height: 85px;
  resize: vertical
}

/* Error text */
.af-err {
  display: none;
  font-size: .68rem;
  color: #F87171;
  margin-top: .3rem;
  padding-left: .25rem
}

/* Submit button */
.af-btn {
  width: 100%;
  padding: .9rem 1.5rem;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: 'Jost', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  cursor: none;
  transition: background var(--F), transform var(--F), box-shadow var(--F);
  margin-top: .25rem;
}

.af-btn:hover:not(:disabled) {
  background: var(--green2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30, 92, 56, .4)
}

.af-btn:disabled {
  opacity: .65;
  cursor: not-allowed;
  transform: none
}

/* Spinner */
.af-spinner {
  display: none;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, .3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

/* Success */
.af-success {
  display: none;
  align-items: flex-start;
  gap: .875rem;
  background: rgba(30, 92, 56, .2);
  border: 1px solid rgba(30, 92, 56, .4);
  border-radius: var(--r2);
  padding: 1rem 1.125rem;
  animation: fadeSlide .4s var(--E);
}

.af-success-ic {
  font-size: 1.3rem;
  flex-shrink: 0
}

.af-success-t {
  font-size: .88rem;
  font-weight: 700;
  color: #74C69D;
  margin-bottom: .25rem
}

.af-success-s {
  font-size: .76rem;
  color: rgba(255, 255, 255, .4);
  line-height: 1.6
}

/* Error msg */
.af-error-msg {
  display: none;
  align-items: center;
  gap: .625rem;
  background: rgba(248, 113, 113, .1);
  border: 1px solid rgba(248, 113, 113, .25);
  border-radius: var(--r2);
  padding: .875rem 1rem;
  font-size: .8rem;
  color: #FCA5A5;
}

/* ════════════════════════════════════════════
   REVIEWS / TESTIMONIALS SECTION
════════════════════════════════════════════ */
.rv-section {
  background: var(--cream2)
}

.rv-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.rv-ey {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .875rem;
  display: flex;
  align-items: center;
  gap: .5rem
}

.rv-ey::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--green);
  opacity: .6
}

.rv-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--dark)
}

.rv-h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 600
}

.rv-all-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  border-bottom: 1.5px solid rgba(30, 92, 56, .25);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: gap var(--F), border-color var(--F);
}

.rv-all-btn:hover {
  gap: .75rem;
  border-color: var(--green)
}

/* Grid */
.rv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

@media(max-width:860px) {
  .rv-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:520px) {
  .rv-grid {
    grid-template-columns: 1fr
  }
}

/* Card */
.rv-card {
  background: #fff;
  border: 1px solid var(--br);
  border-radius: var(--r3);
  overflow: hidden;
  transition: transform var(--M), box-shadow var(--M);
}

.rv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--s3)
}

.rv-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden
}

.rv-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--E)
}

.rv-card:hover .rv-img-wrap img {
  transform: scale(1.06)
}

.rv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(22, 37, 24, .3) 0%, transparent 60%)
}

.rv-body {
  padding: 1.25rem
}

.rv-stars {
  color: #E8B830;
  font-size: 1rem;
  letter-spacing: .1em;
  margin-bottom: .625rem
}

.rv-quote {
  font-size: .82rem;
  color: var(--mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1rem
}

.rv-client {
  display: flex;
  align-items: center;
  gap: .625rem
}

.rv-client-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rv-client-n {
  font-size: .8rem;
  font-weight: 700;
  color: var(--dark)
}

.rv-client-l {
  font-size: .68rem;
  color: var(--muted)
}

/* Bottom CTA */
.rv-cta {
  text-align: center;
  margin-top: 2.5rem
}

.rv-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--green);
  color: #fff;
  padding: .875rem 2rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background var(--F), transform var(--F), box-shadow var(--F);
}

.rv-cta-btn:hover {
  background: var(--green2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30, 92, 56, .3)
}