/* ════════════════════════════════════════════════════
   7 STAR MOSES CATERERS
   Logo colors: Purple #3a1759 · Gold #d4af37 · White #fff
   Alternating: White section → Purple section
════════════════════════════════════════════════════ */
:root {
  --purple: #3a1759;
  --purple-deep: #2c1045;
  --purple-dark: #1e0a30;
  --purple-mid: #4e2275;
  --purple-lite: #6b3a9c;
  --purple-bg: rgba(58, 23, 89, .07);
  --gold: #b8982a;
  --gold-bright: #d4af37;
  --gold-pale: #e8cc6a;
  --gold-dark: #7a6318;
  --white: #ffffff;
  --off-white: #faf8ff;
  --light-bg: #f5f2fb;
  --border-lt: rgba(58, 23, 89, .14);
  --border-gold: rgba(212, 175, 55, .40);
  --text-dark: #1e0a30;
  --text-mid: #4a3060;
  --text-muted: #7a6a8a;
  --green: #25d366;
  --green-dark: #1aa84e;
  --red: #e05454;
  --r: 8px;
  --r-lg: 16px;
  --hdr: 88px;
}

/* ── Reset ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--hdr)
}

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: #fff;
  color: var(--text-dark);
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 5px
}

::-webkit-scrollbar-track {
  background: #f5f2fb
}

::-webkit-scrollbar-thumb {
  background: var(--purple-mid);
  border-radius: 3px
}

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

/* ════════════════════════════════════════════════════
   TYPOGRAPHY — Large, clear, well-spaced
════════════════════════════════════════════════════ */
h2.st {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
}

h2.st em {
  font-style: italic;
  font-weight: 400
}

h3 {
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  font-weight: 700;
  line-height: 1.25
}

/* White section text */
.sec-w h2.st {
  color: var(--purple)
}

.sec-w h2.st em {
  color: var(--gold)
}

.sec-w h3 {
  color: var(--purple-mid)
}

.sec-w p {
  color: #000;
}

.sec-w .eyebrow {
  color: #000
}

.sec-w .eyebrow::before,
.sec-w .eyebrow::after {
  background: var(--gold)
}

.sec-w .rule {
  background: linear-gradient(90deg, var(--gold), transparent)
}

.sec-w .center-rule {
  background: linear-gradient(90deg, transparent, var(--purple), transparent)
}

/* Purple section text */
.sec-p h2.st {
  color: #fff
}

.sec-p h2.st em {
  color: var(--gold-pale)
}

.sec-p h3 {
  color: var(--gold-pale)
}

.sec-p p {
  color: rgba(255, 255, 255, .88)
}

.sec-p .eyebrow {
  color: var(--gold-pale)
}

.sec-p .eyebrow::before,
.sec-p .eyebrow::after {
  background: var(--gold-bright)
}

.sec-p .rule {
  background: linear-gradient(90deg, var(--gold-bright), transparent)
}

.sec-p .center-rule {
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent)
}

/* ════════════════════════════════════════════════════
   UTILITIES
════════════════════════════════════════════════════ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: 15px;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 700;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  border-radius: 1px;
}

.rule {
  width: 52px;
  height: 3px;
  margin: 1.4rem 0 2rem;
  border-radius: 2px
}

.center-rule {
  margin-left: auto;
  margin-right: auto;
  width: 90px
}

.section-head {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 4rem
}

.section-head p {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  line-height: 1.85;
  margin-top: 1rem
}

/* ════════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: 16px 34px;
  border-radius: 60px;
  font-size: 15px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  transition: transform .22s, box-shadow .22s, background .22s;
  white-space: normal;
  border: none;
  cursor: pointer;
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.3;
  word-break: break-word;
}

.btn:hover {
  transform: translateY(-3px)
}

.btn i {
  font-size: 1.1em
}

.btn-primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 4px 18px rgba(58, 23, 89, .3);
}

.btn-primary:hover {
  background: var(--purple-mid);
  box-shadow: 0 8px 32px rgba(58, 23, 89, .45);
}

.btn-gold {
  background: var(--gold-bright);
  color: var(--purple-dark);
  box-shadow: 0 4px 18px rgba(212, 175, 55, .35);
}

.btn-gold:hover {
  background: var(--gold-pale);
  box-shadow: 0 8px 32px rgba(212, 175, 55, .5);
}

.btn-outline {
  border: 2.5px solid var(--purple);
  color: var(--purple);
  background: transparent;
}

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

.btn-ghost {
  border: 2.5px solid rgba(255, 255, 255, .6);
  color: #fff;
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .15);
  border-color: #fff
}

.btn-wa {
  background: var(--green);
  color: #fff
}

.btn-wa:hover {
  background: var(--green-dark);
  box-shadow: 0 8px 28px rgba(37, 211, 102, .35)
}

/* ════════════════════════════════════════════════════
   HEADER  ← KEY FIX: always white, never changes
════════════════════════════════════════════════════ */
#hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--hdr);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  background: #ffffff !important;
  /* always white — no dark-on-scroll */
  border-bottom: 3px solid var(--purple);
  box-shadow: 0 2px 24px rgba(58, 23, 89, .14);
  transition: box-shadow .3s, height .3s;
}

#hdr.sc {
  height: 72px;
  /* box-shadow: 0 4px 32px rgba(58, 23, 89, .22); */
  /* NO background change — stays white forever */
}

/* ── Logo container — white pill so JPEG always looks crisp ── */
.logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  /* background: #fff;
  border: 2px solid var(--border-lt);
  border-radius: 10px; */
  padding: 4px 10px;
  transition: border-color .25s, box-shadow .25s, padding .3s;
  /* box-shadow: 0 2px 10px rgba(58, 23, 89, .08); */
}

.logo-wrap:hover {
  border-color: var(--purple);
  /* box-shadow: 0 4px 18px rgba(58, 23, 89, .18); */
}

#hdr.sc .logo-wrap {
  padding: 2px 8px
}

.logo-img {
  height: 86px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  transition: height .3s;
}

/* #hdr.sc .logo-img {
  height: 54px
} */

/* ── Desktop nav ── */
nav.dn {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin: 0;
}

nav.dn a {
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--purple);
  text-decoration: none;
  transition: color .22s;
  white-space: nowrap;
  position: relative;
  padding-bottom: 4px;
  font-weight: 700;
}

nav.dn a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--gold-bright);
  transition: width .28s;
  border-radius: 2px;
}

nav.dn a:hover {
  color: #000
}

nav.dn a:hover::after {
  width: 100%
}

.nav-enq {
  background: var(--purple) !important;
  color: #fff !important;
  padding: 11px 22px !important;
  border-radius: var(--r);
  font-weight: 700 !important;
  font-size: 14px !important;
  transition: background .22s, transform .2s !important;
  box-shadow: 0 3px 12px rgba(58, 23, 89, .3);
}

.nav-enq::after {
  display: none !important
}

.nav-enq:hover {
  background: var(--purple-mid) !important;
  transform: translateY(-2px) !important
}

/* ── Hamburger ── */
.ham {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

.ham span {
  width: 28px;
  height: 2.5px;
  background: var(--purple);
  border-radius: 2px;
  transition: .3s;
  display: block;
}

.ham.open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg)
}

.ham.open span:nth-child(2) {
  opacity: 0
}

.ham.open span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg)
}

/* ── Mobile nav drawer ── */
.mob-nav {
  display: none;
  position: fixed;
  top: var(--hdr);
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--purple-dark);
  padding: 1.4rem 6vw 2rem;
  flex-direction: column;
  gap: 0;
  border-bottom: 4px solid var(--gold-bright);
  max-height: calc(100vh - var(--hdr));
  overflow-y: auto;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .45);
}

.mob-nav.open {
  display: flex
}

.mob-nav a {
  font-size: 16px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  gap: .9rem;
  transition: color .22s, padding-left .22s;
  font-weight: 600;
}

.mob-nav a:last-child {
  border-bottom: none
}

.mob-nav a:hover {
  color: var(--gold-pale);
  padding-left: .5rem
}

.mob-nav a i {
  color: var(--gold-bright);
  width: 18px;
  text-align: center
}

.mob-nav .mob-enq {
  margin-top: 1.4rem;
  background: var(--gold-bright);
  color: var(--purple-dark) !important;
  padding: 16px 20px !important;
  border-radius: var(--r);
  text-align: center;
  font-weight: 700;
  justify-content: center;
  border: none;
  font-size: 16px !important;
}

.mob-nav .mob-enq:hover {
  background: var(--gold-pale)
}

/* ════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════ */
#home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--hdr) + 80px) 6vw 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1555244162-803834f70033?w=1920&q=85');
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: hzoom 18s ease forwards;
}

@keyframes hzoom {
  to {
    transform: scale(1)
  }
}

.hero-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(30, 10, 48, .93) 0%, rgba(58, 23, 89, .72) 50%, rgba(20, 6, 35, .95) 100%);
}

.hframe,
.hframe-b {
  position: absolute;
  inset: 44px;
  pointer-events: none
}

.hframe::before,
.hframe::after,
.hframe-b::before,
.hframe-b::after {
  content: '';
  position: absolute;
  width: 34px;
  height: 34px;
  border-color: rgba(212, 175, 55, .55);
  border-style: solid;
}

.hframe::before {
  top: 0;
  left: 0;
  border-width: 3px 0 0 3px
}

.hframe::after {
  bottom: 0;
  right: 0;
  border-width: 0 3px 3px 0
}

.hframe-b::before {
  top: 0;
  right: 0;
  border-width: 3px 3px 0 0
}

.hframe-b::after {
  bottom: 0;
  left: 0;
  border-width: 0 0 3px 3px
}

.hero-in {
  position: relative;
  max-width: 960px;
  margin: 0 auto
}

.h-badge {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: rgba(212, 175, 55, .18);
  border: 1.5px solid rgba(212, 175, 55, .5);
  color: var(--gold-pale);
  padding: 9px 24px;
  border-radius: 50px;
  font-size: 14px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 2rem;
  animation: fu .8s .05s both;
}

.h-h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 7.5vw, 5.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.06;
  margin-bottom: 1.6rem;
  animation: fu .9s .18s both;
  text-shadow: 0 3px 40px rgba(0, 0, 0, .55);
}

.h-h1 em {
  display: block;
  font-style: italic;
  color: var(--gold-pale);
  font-weight: 400
}

.h-sub {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: rgba(255, 255, 255, .9);
  line-height: 1.9;
  /* max-width: 660px; */
  margin: 0 auto 2.8rem;
  animation: fu .9s .3s both;
}

.h-ctas {
  display: flex;
  gap: 1.1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fu .9s .45s both;
}

/* ════════════════════════════════════════════════════
   STATS RIBBON
════════════════════════════════════════════════════ */
.stats {
  background: var(--purple);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 4px solid var(--gold-bright);
  border-bottom: 2px solid rgba(255, 255, 255, .1);
}

.sti {
  padding: 34px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .12);
  transition: background .25s;
}

.sti:last-child {
  border-right: none
}

.sti:hover {
  background: var(--purple-mid)
}

.sti-n {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--gold-pale);
  display: block;
  line-height: 1;
}

.sti-l {
  font-size: 14px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .88);
  margin-top: .5rem;
  display: block;
  font-weight: 700;
}

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

/* ════════════════════════════════════════════════════
   ABOUT — WHITE
════════════════════════════════════════════════════ */
#about {
  background: #fff;
  padding: 120px 6vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: center;
}

@media(max-width:900px) {
  #about {
    grid-template-columns: 1fr;
    padding: 80px 6vw
  }
}

.av {
  position: relative;
  min-height: 520px
}

@media(max-width:900px) {
  .av {
    display: none
  }
}

.av-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  padding-bottom: 90%;
  background-image: url('../img/aa.png');
  background-size: cover;
  background-position: center;
  border-radius: var(--r-lg);
  border: 3px solid var(--border-gold);
  box-shadow: 0 16px 48px rgba(58, 23, 89, .15);
}

.av-acc {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  padding-bottom: 54%;
  background-image: url('../img/cc.png');
  /* Masala Dosa */
  background-size: cover;
  background-position: center;
  border-radius: var(--r-lg);
  border: 3px solid var(--border-gold);
  box-shadow: -14px -14px 0 #fff, 0 12px 36px rgba(58, 23, 89, .2);
}

.av-badge {
  position: absolute;
  top: 46%;
  left: 52%;
  transform: translate(-50%, -50%);
  background: var(--purple);
  color: #fff;
  padding: 20px 24px;
  border-radius: var(--r);
  text-align: center;
  box-shadow: 0 10px 36px rgba(58, 23, 89, .45);
  z-index: 5;
  min-width: 116px;
  border: 3px solid var(--gold-bright);
}

.av-badge strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.6rem;
  display: block;
  line-height: 1;
  color: var(--gold-pale);
}

.av-badge span {
  /* font-size: 13px; */
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  /* opacity: .85 */
}

.at>p {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  line-height: 1.92;
  color: #000;
  margin-bottom: 1.2rem;
}

.at-checks {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin: 1.8rem 0 2.2rem
}

.at-check {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-mid);
  font-weight: 600;
}

.at-check i {
  color: var(--purple);
  font-size: 1rem;
  flex-shrink: 0
}

/* ════════════════════════════════════════════════════
   SERVICES — PURPLE
════════════════════════════════════════════════════ */
#services {
  background: var(--purple);
  padding: 120px 6vw
}

.svc-intro {
  max-width: 580px;
  margin: 0 auto 4.5rem;
  text-align: center;
}

.svc-intro p {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, .82);
  margin-top: 1.2rem
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #fff;
}

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

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

.svc-card {
  background: var(--purple-deep);
  padding: 2.8rem 2.2rem;
  transition: background .3s;
  position: relative;
  overflow: hidden;
}

.svc-card:hover {
  background: var(--purple-mid)
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-bright), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: .4s;
}

.svc-card:hover::before {
  transform: scaleX(1)
}

.svc-n {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .06);
  position: absolute;
  top: .4rem;
  right: 1.1rem;
  line-height: 1;
  pointer-events: none;
}

.svc-ico {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 2px solid var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-pale);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  transition: background .3s;
}

.svc-card:hover .svc-ico {
  background: rgba(212, 175, 55, .2)
}

.svc-ttl {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: .9rem;
}

.svc-desc {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, .8)
}

/* ════════════════════════════════════════════════════
   GALLERY — WHITE
════════════════════════════════════════════════════ */
#gallery {
  background: var(--off-white);
  padding: 120px 6vw
}

.gallery-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  margin-top: 1rem;
}

.gitem {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--light-bg);
  cursor: pointer;
  transition: transform .32s, box-shadow .32s;
}

.gitem:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 42px rgba(58, 23, 89, .22)
}

.gitem::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(58, 23, 89, .84));
  opacity: 0;
  transition: .35s;
}

.gitem:hover::after {
  opacity: 1
}

.gitem-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}

.gitem:hover .gitem-img {
  transform: scale(1.08)
}

.gitem-lbl {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  font-size: 19px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-pale);
  font-weight: 700;
  opacity: 0;
  transition: .35s;
  transform: translateY(8px);
}

.gitem:hover .gitem-lbl {
  opacity: 1;
  transform: none
}

/* Feature item — spans 2 cols & 2 rows */
.gitem.feat {
  grid-column: span 2;
  grid-row: span 2
}

@media(max-width:768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gitem.feat {
    grid-column: span 2;
    grid-row: span 1
  }

  .gitem {
    height: 200px
  }

  .gitem.feat {
    height: 200px
  }
}

@media(max-width:480px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr
  }

  .gitem {
    height: 160px
  }

  .gitem.feat {
    height: 160px;
    grid-column: span 1
  }
}

/* ════════════════════════════════════════════════════
   TICKER
════════════════════════════════════════════════════ */
.ticker-wrap {
  overflow: hidden;
  background: var(--purple-deep);
  border-top: 2px solid var(--gold-bright);
  border-bottom: 2px solid var(--gold-bright);
}

.ticker-track {
  display: flex;
  gap: 3px;
  animation: tick 32s linear infinite;
  width: max-content;
}

.ticker-track:hover {
  animation-play-state: paused
}

.ttile {
  width: 210px;
  height: 125px;
  background: var(--purple);
  border-right: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex-shrink: 0;
  font-size: 30px;
  color: #fff;
  transition: background .25s;
}

.ttile:hover {
  background: var(--purple-mid)
}

.ttile .tl {
  font-size: 17px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
}

@keyframes tick {
  0% {
    transform: translateX(0)
  }

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

/* ════════════════════════════════════════════════════
   FAQ — PURPLE
════════════════════════════════════════════════════ */
#faq {
  background: var(--purple);
  padding: 120px 6vw
}

.faq-intro {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 4rem
}

.faq-wrap {
  max-width: 860px;
  margin: 0 auto
}

.faq-item {
  border: 2px solid rgba(255, 255, 255, .14);
  border-radius: var(--r);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color .3s;
}

.faq-item.open {
  border-color: var(--gold-bright)
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  cursor: pointer;
  background: var(--purple-deep);
  gap: 1rem;
  transition: background .25s;
}

.faq-item.open .faq-q {
  background: var(--purple-mid)
}

.faq-q-text {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.4
}

.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 2px solid rgba(255, 255, 255, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .8rem;
  flex-shrink: 0;
  transition: transform .3s, background .25s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold-bright);
  color: var(--purple-dark);
  border-color: var(--gold-bright)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .42s ease;
  background: var(--purple-deep)
}

.faq-item.open .faq-a {
  max-height: 440px
}

.faq-a-inner {
  padding: 1.3rem 2rem 1.8rem;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.9;
  color: rgba(255, 255, 255, .88);
  border-top: 1px solid rgba(255, 255, 255, .1);
}

/* ════════════════════════════════════════════════════
   TESTIMONIALS — WHITE
════════════════════════════════════════════════════ */
#testimonials {
  background: #fff;
  padding: 120px 6vw
}

.test-intro {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 4.5rem
}

.tgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.2rem;
}

.tcard {
  background: var(--off-white);
  border: 2px solid var(--border-lt);
  border-radius: var(--r-lg);
  padding: 2.6rem;
  position: relative;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  overflow: hidden;
}

.tcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--gold-bright));
}

.tcard:hover {
  border-color: var(--purple);
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(58, 23, 89, .14)
}

.tqm {
  position: absolute;
  top: 1.2rem;
  right: 1.6rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 6.5rem;
  color: rgba(58, 23, 89, .07);
  line-height: 1;
}

.tstars {
  color: var(--gold-bright);
  font-size: 1.1rem;
  margin-bottom: 1.1rem;
  letter-spacing: 3px
}

.ttext {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.85;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 1.4rem;
}

.tav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple-bg);
  border: 2px solid var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.tauthor {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 800;
  color: var(--purple)
}

.tevent {
  font-size: clamp(.95rem, 1.4vw, 1.05rem);
  color: #000;
  margin-top: 3px
}

/* ════════════════════════════════════════════════════
   MENU — PURPLE DEEP
════════════════════════════════════════════════════ */
#menus {
  background: var(--purple-deep);
  padding: 120px 6vw
}

.menus-intro {
  max-width: 560px
}

.mtabs {
  display: flex;
  background: rgb(0 0 0);
  border: 2px solid rgb(255 255 255);
  border-radius: var(--r);
  overflow: hidden;
  flex-wrap: wrap;
  margin: 3rem 0 2.2rem;
}

.mtab {
  flex: 1;
  min-width: 100px;
  padding: 16px 14px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(13px, 1.6vw, 17px);
  /* letter-spacing: .14em; */
  text-transform: uppercase;
  color: #fff;
  transition: .25s;
  font-weight: 700;
}

.mtab.active {
  background: var(--gold-bright);
  color: var(--purple-dark);
  font-weight: 800
}

.mtab:hover:not(.active) {
  background: rgba(255, 255, 255, .1);
  color: #fff
}

.mpanel {
  display: none
}

.mpanel.active {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.1rem;
  animation: fu .4s both;
}

.mi {
  background: var(--purple);
  border: 2px solid rgb(255 255 255);
  border-radius: var(--r);
  padding: 1.4rem 1.3rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: .25s;
}

.mi:hover {
  border-color: var(--gold-bright);
  background: var(--purple-mid)
}

.midot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-bright);
  flex-shrink: 0;
  margin-top: 22px;
}

.miname {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px
}

.midesc {
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  color: rgba(255, 255, 255, .74);
  line-height: 1.55
}

/* ════════════════════════════════════════════════════
   CTA BAND
════════════════════════════════════════════════════ */
.cta-band {
  position: relative;
  overflow: hidden;
  background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=80');
  background-size: cover;
  background-position: center;
  padding: 130px 6vw;
  text-align: center;
}

.cta-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(20, 6, 35, .93), rgba(58, 23, 89, .82));
}

.cta-in {
  position: relative;
  max-width: 700px;
  margin: 0 auto
}

.cta-in h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  margin: 1.2rem 0 1.2rem;
}

.cta-in h2 em {
  font-style: italic;
  color: var(--gold-pale)
}

.cta-in p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, .84);
  margin-bottom: 2.8rem;
  line-height: 1.9;
}

.cta-btns {
  display: flex;
  gap: 1.1rem;
  justify-content: center;
  flex-wrap: wrap
}

/* ════════════════════════════════════════════════════
   ENQUIRY — WHITE
════════════════════════════════════════════════════ */
#enquiry {
  background: var(--off-white);
  padding: 120px 6vw;
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 7vw;
  align-items: start;
}

@media(max-width:960px) {
  #enquiry {
    grid-template-columns: 1fr
  }
}

.eqi>p {
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.92;
  color: var(--text-mid);
  margin-bottom: .5rem
}

.eq-clist {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin: 2.2rem 0
}

.eci {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: #fff;
  border: 2px solid var(--border-lt);
  border-radius: var(--r);
  padding: 1.1rem 1.4rem;
  text-decoration: none;
  transition: .25s;
  box-shadow: 0 2px 12px rgba(58, 23, 89, .07);
}

.eci:hover {
  border-color: var(--purple);
  background: var(--light-bg);
  box-shadow: 0 6px 28px rgba(58, 23, 89, .16)
}

.eci-ico {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--purple-bg);
  border: 2px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: 1.05rem;
  flex-shrink: 0;
}

.eci.wa .eci-ico {
  background: rgba(37, 211, 102, .08);
  border-color: rgba(37, 211, 102, .3);
  color: var(--green)
}

.eci-lbl {
  font-size: 20px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #000;
  display: block;
  font-weight: 700
}

.eci-val {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--purple);
  font-weight: 800
}

.soc-label {
  /* font-size: 13px; */
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #000;
  font-weight: 700;
  margin-bottom: .8rem;
  display: block
}

.soc-row {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap
}

/* .sc {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--border-lt);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: 1.05rem;
  text-decoration: none;
  transition: .22s;
} */

.sc:hover {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
  transform: translateY(-3px)
}

.sc.wa {
  border-color: rgba(37, 211, 102, .4);
  color: var(--green);
  background: rgba(37, 211, 102, .06)
}

.sc.wa:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green)
}

/* Form card */
.fcard {
  background: #fff;
  border: 2px solid var(--border-lt);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 18px 64px rgba(58, 23, 89, .13);
}

.fc-hdr {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  padding: 1.8rem 2.2rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  border-bottom: 3px solid var(--gold-bright);
}

.fc-hdr-ico {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.fc-hdr h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 700;
  color: #fff
}

.fc-hdr p {
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  color: #fff;
  margin-top: 3px
}

.fc-body {
  padding: 2rem 2.2rem
}

/* Form fields */
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin-bottom: 1.1rem
}

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

.fg {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.1rem
}

.fg label {
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--purple);
  font-weight: 700
}

.fg label .req {
  color: var(--red)
}

.fg input,
.fg select,
.fg textarea {
  background: var(--off-white);
  border: 2px solid var(--border-lt);
  border-radius: var(--r);
  padding: 13px 16px;
  color: var(--text-dark);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  outline: none;
  transition: .25s;
  width: 100%;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(58, 23, 89, .1);
  background: #fff;
}

.fg input::placeholder,
.fg textarea::placeholder {
  color: var(--text-muted)
}

.fg select option {
  background: #fff;
  color: var(--text-dark)
}

.fg textarea {
  height: 100px;
  resize: vertical
}

.fg select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233a1759' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 42px;
}

.fdiv {
  height: 2px;
  background: var(--border-lt);
  margin: 1.5rem 0;
  border-radius: 2px
}

.fnote {
  font-size: 23px;
  color: #000;
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  margin-bottom: 1.4rem;
  line-height: 1.6
}

.fnote i {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0
}

.fbtns {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap
}

.fbtns .btn {
  flex: 1;
  justify-content: center;
  min-width: 0
}

.ferr {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(224, 84, 84, .1) !important
}

.fsuccess {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
  padding: 3.4rem 2rem;
  text-align: center;
}

.fsuccess .sico {
  font-size: 3.4rem;
  color: var(--green);
  animation: popIn .5s both
}

@keyframes popIn {
  from {
    transform: scale(0)
  }

  to {
    transform: scale(1)
  }
}

.fsuccess h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  color: var(--purple)
}

.fsuccess p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-mid);
  max-width: 300px;
  line-height: 1.8
}

/* ════════════════════════════════════════════════════
   CONTACT — PURPLE
════════════════════════════════════════════════════ */
#contact {
  background: var(--purple);
  padding: 120px 6vw
}

.contact-intro {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 4rem
}

.cgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, .12);
  border: 2px solid rgba(255, 255, 255, .14);
  border-radius: var(--r);
  overflow: hidden;
}

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

@media(max-width:480px) {
  .cgrid {
    grid-template-columns: 1fr
  }
}

.cb {
  background: var(--purple-deep);
  padding: 2.4rem 1.8rem;
  text-align: center;
  transition: .25s
}

.cb:hover {
  background: var(--purple-mid)
}

.cb-ico {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  margin: 0 auto 1.3rem;
  border: 2px solid var(--gold-bright);
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-pale);
  font-size: 1.25rem;
  transition: background .3s;
}

.cb:hover .cb-ico {
  background: rgba(212, 175, 55, .2)
}

.cb h4 {
  font-size: 20px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: .8rem;
  font-weight: 700
}

.cb p,
.cb a {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, .9);
  line-height: 1.75;
  text-decoration: none;
  display: block;
}

.cb a:hover {
  color: var(--gold-pale)
}

.contact-social {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3.5rem
}

.contact-social .sc {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .88)
}

.contact-social .sc:hover {
  background: var(--gold-bright);
  color: var(--purple-dark);
  border-color: var(--gold-bright)
}

.contact-social .sc.wa {
  border-color: rgba(37, 211, 102, .4);
  color: var(--green);
  background: rgba(37, 211, 102, .08)
}

.contact-social .sc.wa:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green)
}

/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
footer {
  background: var(--purple-dark);
  border-top: 4px solid var(--gold-bright);
  padding: 80px 6vw 35px
}

.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

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

@media(max-width:480px) {
  .ft-grid {
    grid-template-columns: 1fr
  }
}

.ft-b>p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, .72);
  line-height: 1.9;
  margin: .9rem 0 1.5rem;
  max-width: 290px;
}

.ft-b .soc-row .sc {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .8)
}

.ft-b .soc-row .sc:hover {
  background: var(--gold-bright);
  color: var(--purple-dark);
  border-color: var(--gold-bright)
}

.ft-b .soc-row .sc.wa {
  border-color: rgba(37, 211, 102, .35);
  color: var(--green);
  background: rgba(37, 211, 102, .07)
}

.ft-b .soc-row .sc.wa:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green)
}

.ft-col h5 {
  font-size: 13px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.4rem;
  font-weight: 800
}

.ft-col a {
  display: block;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  margin-bottom: .6rem;
  transition: color .22s
}

.ft-col a:hover {
  color: var(--gold-pale)
}

.ft-bot {
  border-top: 1px solid #fff;
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.ft-bot p {
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  color: rgba(255, 255, 255, .6)
}

.ft-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap
}

.ft-links a {
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  border-bottom: 1px dashed #fff;
  transition: color .22s
}

.ft-links a:hover {
  color: var(--gold-pale)
}

/* Footer logo */
.ft-logo {
  height: 90px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
  object-fit: contain;
  border-radius: 8px
}

/* ════════════════════════════════════════════════════
   FLOATING BUTTONS
════════════════════════════════════════════════════ */
.float-left {
  position: fixed;
  bottom: 90px;
  left: 22px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .7rem
}

.float-right {
  position: fixed;
  bottom: 90px;
  right: 22px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .7rem
}

.fab-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .4);
  transition: transform .22s, box-shadow .22s;
  position: relative;
  cursor: pointer;
  border: none;
}

.fab-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .5)
}

.fab-call {
  background: linear-gradient(135deg, var(--purple-lite), var(--purple))
}

.fab-wa {
  background: linear-gradient(135deg, #25d366, #128c3e)
}

.fab-msg {
  background: linear-gradient(135deg, var(--gold-bright), #000)
}

.fab-wa::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  /* border: 2px solid rgba(37, 211, 102, .45); */
  /* animation: ring 2.2s infinite */
}

@keyframes ring {
  0% {
    transform: scale(1);
    opacity: .9
  }

  100% {
    transform: scale(1.55);
    opacity: 0
  }
}

.fab-tip {
  position: absolute;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--purple-dark);
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff;
  padding: 7px 14px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity .22s;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.float-left .fab-tip {
  left: calc(100% + 13px)
}

.float-right .fab-tip {
  right: calc(100% + 13px)
}

.fab-btn:hover .fab-tip {
  opacity: 1
}

/* ════════════════════════════════════════════════════
   POPUP
════════════════════════════════════════════════════ */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  backdrop-filter: blur(0px);
  transition: background .35s, backdrop-filter .35s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.popup-overlay.active {
  background: rgba(20, 6, 35, .84);
  backdrop-filter: blur(8px);
  pointer-events: all
}

.popup-box {
  background: #fff;
  border: 2px solid var(--border-gold);
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 600px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 30px 100px rgba(0, 0, 0, .55);
  transform: translateY(32px) scale(.96);
  opacity: 0;
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), opacity .3s;
}

.popup-overlay.active .popup-box {
  transform: none;
  opacity: 1
}

.popup-hdr {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  padding: 1.8rem 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 3px solid var(--gold-bright);
}

.popup-hdr-l {
  display: flex;
  align-items: center;
  gap: 1rem
}

.popup-hdr-ico {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.popup-hdr h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff
}

.popup-hdr p {
  font-size: 22px;
  color: #fff;
  margin-top: 2px
}

.popup-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .22s;
  flex-shrink: 0;
}

.popup-close:hover {
  background: rgba(255, 255, 255, .3);
  transform: scale(1.1)
}

.popup-body {
  padding: 1.8rem 2.2rem
}

/* ════════════════════════════════════════════════════
   MODALS
════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  backdrop-filter: blur(0px);
  transition: .35s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.active {
  background: rgba(20, 6, 35, .87);
  backdrop-filter: blur(8px);
  pointer-events: all
}

.modal-box {
  background: #fff;
  border: 2px solid var(--border-gold);
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 720px;
  max-height: 88vh;
  overflow-y: auto;
  transform: translateY(26px) scale(.97);
  opacity: 0;
  transition: .38s cubic-bezier(.34, 1.56, .64, 1);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .55);
}

.modal-overlay.active .modal-box {
  transform: none;
  opacity: 1
}

.modal-hdr {
  padding: 1.8rem 2.2rem;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 3px solid var(--gold-bright);
}

.modal-hdr h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .22s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, .3)
}

.modal-body {
  padding: 2.2rem
}

.modal-body h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 25px;
  font-weight: 700;
  color: #000;
  margin: 1.8rem 0 .7rem
}

.modal-body h4:first-child {
  margin-top: 0
}

.modal-body p {
  font-size: 22px;
  line-height: 1.88;
  color: #000;
  margin-bottom: .6rem
}

.modal-body ul {
  padding-left: 1.6rem;
  margin-bottom: .6rem
}

.modal-body li {
  font-size: 22px;
  line-height: 1.88;
  color: #000;
  margin-bottom: .3rem
}

.modal-body strong {
  color: var(--purple)
}

.eff-date {
  display: inline-block;
  /* font-size: 13px; */
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #000;
  background: var(--light-bg);
  padding: 6px 15px;
  border-radius: 4px;
  border-left: 3px solid var(--purple);
  margin-bottom: 1.4rem;
}

/* ════════════════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .68s ease, transform .68s ease
}

.reveal.left {
  transform: translateX(-32px)
}

.reveal.right {
  transform: translateX(32px)
}

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

/* ════════════════════════════════════════════════════
   KEYFRAMES
════════════════════════════════════════════════════ */
@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes fi {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

/* ════════════════════════════════════════════════════
   MAP placeholder
════════════════════════════════════════════════════ */
.map-row {
  margin-top: 2.2rem;
  border-radius: var(--r);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .14);
  height: 290px;
  background: var(--purple-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .65);
  font-size: 1.1rem;
  gap: .7rem;
}

/* ════════════════════════════════════════════════════
   RESPONSIVE — 1100px
════════════════════════════════════════════════════ */
@media(max-width:1100px) {
  nav.dn {
    gap: 1.2rem
  }

  nav.dn a {
    font-size: 16px
  }

  .logo-img {
    height: 64px
  }
}

/* ════════════════════════════════════════════════════
   RESPONSIVE — 960px (hide desktop nav)
════════════════════════════════════════════════════ */
@media(max-width:960px) {
  nav.dn {
    display: none
  }

  .ham {
    display: flex
  }

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

  #about {
    grid-template-columns: 1fr
  }

  .av {
    display: none
  }

  .tgrid {
    grid-template-columns: 1fr 1fr
  }
}

/* ════════════════════════════════════════════════════
   RESPONSIVE — 768px (Mobile & Tablets)
════════════════════════════════════════════════════ */
@media(max-width:768px) {
  :root {
    --hdr: 74px
  }

  .logo-wrap {
    padding: 3px 8px
  }

  .logo-img {
    height: 60px
  }

  #hdr.sc .logo-img {
    height: 50px
  }

  .float-left {
    bottom: 72px;
    left: 14px
  }

  .float-right {
    bottom: 72px;
    right: 14px
  }

  .fab-btn {
    width: 52px;
    height: 52px;
    font-size: 1.15rem
  }

  .h-h1 {
    font-size: clamp(2rem, 9vw, 3.4rem)
  }

  .h-sub {
    font-size: clamp(1.05rem, 3.5vw, 1.3rem)
  }

  .h-ctas {
    flex-direction: column;
    align-items: center;
    gap: .9rem;
    padding: 0 10px
  }

  .h-ctas .btn {
    width: 100%;
    max-width: 360px;
    justify-content: center;
    padding: 14px 28px;
    font-size: 14px;
    word-wrap: break-word
  }

  #about,
  #services,
  #gallery,
  #faq,
  #testimonials,
  #menus,
  #enquiry,
  #contact {
    padding: 80px 5vw
  }

  .svc-grid {
    grid-template-columns: 1fr
  }

  .svc-intro {
    margin-bottom: 3rem
  }

  .tgrid {
    grid-template-columns: 1fr !important
  }

  .mpanel {
    grid-template-columns: 1fr !important
  }

  .mtabs {
    flex-wrap: wrap;
    padding: .5rem
  }

  .mtab {
    flex: 0 0 auto;
    font-size: 14px;
    padding: 11px 18px
  }

  .cta-band {
    padding: 90px 5vw
  }

  .cta-in h2 {
    font-size: clamp(1.8rem, 7vw, 3rem)
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
    gap: .9rem
  }

  .cta-btns .btn {
    width: 100%;
    max-width: 360px;
    justify-content: center
  }

  #enquiry {
    grid-template-columns: 1fr
  }

  .frow {
    grid-template-columns: 1fr
  }

  .fbtns {
    flex-direction: column
  }

  .fbtns .btn {
    flex: unset;
    width: 100%
  }

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

  .ft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem
  }

  .ft-bot {
    flex-direction: column;
    gap: 1rem;
    text-align: center
  }

  .ft-links {
    justify-content: center
  }

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

/* ════════════════════════════════════════════════════
   RESPONSIVE — Mobile Landscape (max-height:500px)
════════════════════════════════════════════════════ */
@media(max-height:500px) and (max-width:768px) {
  :root {
    --hdr: 60px
  }

  #home {
    min-height: auto;
    padding: calc(var(--hdr) + 30px) 4vw 40px
  }

  .h-h1 {
    margin-bottom: 0.8rem !important
  }

  .h-sub {
    margin-bottom: 1.2rem !important
  }

  .h-ctas {
    gap: 0.6rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center
  }

  .h-ctas .btn {
    width: auto;
    max-width: none;
    padding: 10px 20px;
    font-size: 12px;
    flex: 0 1 auto
  }
}

/* ════════════════════════════════════════════════════
   RESPONSIVE — 520px
════════════════════════════════════════════════════ */
@media(max-width:520px) {
  :root {
    --hdr: 68px
  }

  .logo-wrap {
    padding: 3px 7px
  }

  .logo-img {
    height: 54px
  }

  #hdr.sc .logo-img {
    height: 46px
  }

  .fab-btn {
    width: 48px;
    height: 48px
  }

  #home {
    padding: calc(var(--hdr) + 50px) 5vw 75px
  }

  .cgrid {
    grid-template-columns: 1fr
  }

  .ft-grid {
    grid-template-columns: 1fr
  }

  .svc-card {
    padding: 2rem 1.5rem
  }

  .tcard {
    padding: 2rem
  }

  .fc-body {
    padding: 1.4rem
  }

  .popup-body {
    padding: 1.4rem
  }

  .btn {
    padding: 14px 24px;
    font-size: 14px;
    letter-spacing: .12em;
  }

  .h-ctas .btn {
    padding: 12px 20px;
    font-size: 13px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr
  }

  .gitem.feat {
    grid-column: span 1
  }
}

/* ════════════════════════════════════════════════════
   RESPONSIVE — 360px (Ultra Small Devices)
════════════════════════════════════════════════════ */
@media(max-width:360px) {
  :root {
    --hdr: 64px
  }

  #home {
    padding: calc(var(--hdr) + 40px) 4vw 50px
  }

  .h-h1 {
    font-size: clamp(1.8rem, 7vw, 2.8rem) !important
  }

  .h-sub {
    font-size: clamp(0.95rem, 2vw, 1.15rem) !important;
    margin-bottom: 2rem
  }

  .h-ctas {
    gap: 0.7rem
  }

  .h-ctas .btn {
    width: 100%;
    padding: 11px 16px;
    font-size: 12px;
    letter-spacing: .1em;
  }

  .btn {
    padding: 12px 18px;
    font-size: 13px;
    letter-spacing: .1em
  }

  .logo-img {
    height: 48px
  }

  .ham span {
    width: 24px;
    height: 2px
  }

  .mob-nav {
    padding: 1rem 5vw 1.5rem
  }

  .mob-nav a {
    font-size: 14px;
    padding: 0.8rem 0;
    gap: .7rem
  }

  .mob-nav .mob-enq {
    padding: 12px 16px !important;
    font-size: 13px !important;
    margin-top: 1rem
  }

  nav.dn {
    display: none
  }

  .ham {
    display: flex
  }

  .hframe,
  .hframe-b {
    inset: 24px
  }

  .svc-card {
    padding: 1.8rem 1.2rem
  }

  .tcard {
    padding: 1.6rem
  }

  .fc-body {
    padding: 1.2rem
  }

  .popup-body {
    padding: 1.2rem
  }
}

/* ════════════════════════════════════════════════════

/* Bigger body text globally */
body {
  font-size: 19px;
  line-height: 1.8
}

/* Section headings */
h2.st {
  font-size: clamp(2.4rem, 5vw, 4rem) !important
}

h3 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem)
}

/* About body text */
.at>p {
  font-size: clamp(1.15rem, 1.9vw, 1.35rem)
}

.at-check {
  font-size: clamp(1.1rem, 1.7vw, 1.25rem)
}

/* Services */
.svc-ttl {
  font-size: clamp(1.45rem, 2.3vw, 2rem) !important
}

.svc-desc {
  font-size: 24px;
}

/* Stats */
.sti-n {
  font-size: clamp(2.8rem, 5vw, 4rem)
}

.sti-l {
  font-size: 18px;
  letter-spacing: .18em
}

/* Gallery */
.gallery-intro p {
  font-size: 29px;
}

/* Eyebrow */
.eyebrow {
  font-size: 16px;
  letter-spacing: .28em
}

/* Section-head paragraph */
.section-head p,
.svc-intro p,
.faq-intro p,
.test-intro p,
.contact-intro p,
.cta-in p {
  font-size: 25px;
}

/* FAQ */
.faq-q-text {
  font-size: 27px !important
}

.faq-a-inner {
  font-size: 22px;
}

/* Testimonials */
.ttext {
  font-size: 22px;
}

.tauthor {
  font-size: clamp(1.1rem, 1.7vw, 1.3rem)
}

.tevent {
  font-size: 21px;
}


/* Menu */
.miname {
  font-size: 20px !important
}

.midesc {
  font-size: 26px !important
}

.mtab {
  font-size: 17px !important
}

/* Contact */
.cb p,
.cb a {
  font-size: 26px !important
}

/* Enquiry */
.eqi>p {
  font-size: 23px;
}

.eci-val {
  font-size: 22px;
}

/* Form */
.fg input,
.fg select,
.fg textarea {
  font-size: 22px !important
}

.fg label {
  font-size: 17px !important
}

.fc-hdr h3 {
  font-size: 32px !important
}

.fc-hdr p {
  font-size: 23px !important
}

/* Hero */
.h-h1 {
  font-size: clamp(2.8rem, 8vw, 5.8rem) !important
}

.h-sub {
  font-size: clamp(1.2rem, 2.6vw, 1.6rem) !important
}

.h-badge {
  font-size: 15px
}

/* CTA band */
.cta-in h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem) !important
}

/* Footer */
.ft-col a {
  font-size: 22px;
  color: #fff;
}

.ft-col h5 {
  font-size: 21px;
  letter-spacing: .22em
}

.ft-bot p {
  font-size: 28px;
  color: #fff;
}

.ft-links a {
  font-size: 22px;
  color: #fff;
}

.ft-b>p {
  font-size: 22px;
  color: #fff;
  text-align: left;
}

/* Nav */
nav.dn a {
  font-size: 16px
}

.nav-enq {
  font-size: 16px !important
}

.mob-nav a {
  font-size: 16px
}

/* ════════════════════════════════════════════════════
   EXPLICIT SECTION TEXT COLORS (belt-and-suspenders)
════════════════════════════════════════════════════ */

/* White sections — force text dark */
#about h2.st,
#gallery h2.st,
#testimonials h2.st,
#enquiry h2.st {
  color: var(--purple)
}

#about h2.st em,
#gallery h2.st em,
#testimonials h2.st em,
#enquiry h2.st em {
  color: var(--gold)
}

#about .eyebrow,
#gallery .eyebrow,
#testimonials .eyebrow,
#enquiry .eyebrow {
  color: #000
}

#about .eyebrow::before,
#about .eyebrow::after,
#gallery .eyebrow::before,
#gallery .eyebrow::after,
#testimonials .eyebrow::before,
#testimonials .eyebrow::after,
#enquiry .eyebrow::before,
#enquiry .eyebrow::after {
  background: var(--gold)
}

#about .rule {
  background: linear-gradient(90deg, var(--gold), transparent)
}

#gallery .center-rule,
#testimonials .center-rule {
  background: linear-gradient(90deg, transparent, var(--purple), transparent)
}

/* Purple sections — force text white */
#services h2.st,
#faq h2.st,
#menus h2.st,
#contact h2.st {
  color: #fff
}

#services h2.st em,
#faq h2.st em,
#menus h2.st em,
#contact h2.st em {
  color: var(--gold-pale)
}

#services .eyebrow,
#faq .eyebrow,
#menus .eyebrow,
#contact .eyebrow {
  color: var(--gold-pale)
}

#services .eyebrow::before,
#services .eyebrow::after,
#faq .eyebrow::before,
#faq .eyebrow::after,
#menus .eyebrow::before,
#menus .eyebrow::after,
#contact .eyebrow::before,
#contact .eyebrow::after {
  background: var(--gold-bright)
}