/* =============================================
   Nosheen Beauty Complex — Styles
   ============================================= */

/* --- Variables & Reset --- */
:root {
  --bg: #0b0a08;
  --bg-alt: #141210;
  --bg-card: #17140f;
  --line: #2a2520;
  --gold: #c9a24b;
  --gold-light: #e8cf8a;
  --gold-deep: #8a6a24;
  --ivory: #f3ede0;
  --muted: #948c7c;
  --muted-2: #5f594c;
  --shadow: 0 20px 60px rgba(0, 0, 0, .5);
  --radius: 14px;
  --maxw: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ivory);
  font-family: 'Manrope', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: #0b0a08; }

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

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  margin: 0;
  letter-spacing: .2px;
  overflow-wrap: break-word;
}

p { margin: 0; color: var(--muted); line-height: 1.7; overflow-wrap: break-word; }

/* --- Vignette overlay --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(201, 162, 75, .07), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(201, 162, 75, .05), transparent 60%);
}

/* --- Layout --- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; width: 100%; }

section { position: relative; padding: 120px 0; }
section.alt { background: var(--bg-alt); }
section.flush { padding-top: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--gold-deep); }
.eyebrow.center { justify-content: center; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 2px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .35s ease;
  white-space: nowrap;
}
.btn-gold { background: linear-gradient(180deg, var(--gold-light), var(--gold)); color: #161208; }
.btn-gold:hover { box-shadow: 0 8px 30px rgba(201, 162, 75, .35); transform: translateY(-2px); }
.btn-outline { border-color: var(--gold-deep); color: var(--gold-light); background: transparent; }
.btn-outline:hover { border-color: var(--gold); background: rgba(201, 162, 75, .08); }

/* --- Header --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 26px 0;
  transition: all .4s ease;
  width: 100%;
  background: rgba(11, 10, 8, .75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
header.scrolled {
  padding: 14px 0;
  background: rgba(11, 10, 8, .92);
  border-bottom: 1px solid var(--line);
}
header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img {
  height: 50px;
  max-height: 50px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-left: 10px;
}
.logo-name {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1.1;
}
.logo-sub {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 600;
}

nav.main-nav { display: flex; gap: 38px; flex-shrink: 0; }
nav.main-nav a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  transition: color .25s;
  position: relative;
  white-space: nowrap;
}
nav.main-nav a:hover { color: var(--gold-light); }

.nav-cta { display: flex; align-items: center; gap: 26px; flex-shrink: 0; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 200;
  position: relative;
  width: 24px;
  height: 16px;
}
.burger span {
  width: 24px;
  height: 1px;
  background: var(--gold-light);
  transform-origin: center;
  transition: transform .35s cubic-bezier(.6, 0, .3, 1), opacity .2s ease .1s;
}
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); transition-delay: .05s; }
.burger.open span:nth-child(2) { opacity: 0; transition: opacity .15s ease; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); transition-delay: .05s; }

/* --- Hero --- */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11, 10, 8, .4), var(--bg) 92%),
    url('https://images.unsplash.com/photo-1560066984-138dadb4c035?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
}
.hero-content { max-width: 720px; }
.hero h1 { font-size: clamp(32px, 7vw, 76px); line-height: 1.04; color: var(--ivory); }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p.lead { font-size: clamp(15px, 2.5vw, 18px); max-width: 480px; margin: 26px 0 40px; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

/* --- Thread divider --- */
.thread { width: 100%; height: 34px; margin: 8px 0; overflow: hidden; }
.thread svg { width: 100%; height: 100%; display: block; }
.thread path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.3;
  stroke-dasharray: 6 7;
  stroke-linecap: round;
  opacity: .55;
}

/* --- Marquee --- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}
.marquee-track { display: inline-flex; gap: 48px; animation: marquee-scroll 32s linear infinite; }
.marquee-track span { font-family: 'Fraunces', serif; font-style: italic; font-size: 18px; color: var(--muted-2); }
.marquee-track span.dot { color: var(--gold); font-style: normal; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- Reveal --- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* --- About --- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }
.frame { position: relative; overflow: hidden; border-radius: var(--radius); }
.frame::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid var(--gold-deep);
  border-radius: var(--radius);
  z-index: 1;
  pointer-events: none;
}
.about-heading { font-size: 38px; color: var(--ivory); margin-bottom: 22px; }
.stat-row { display: flex; gap: 44px; margin-top: 36px; flex-wrap: wrap; }
.stat b { display: block; font-family: 'Fraunces', serif; font-size: 34px; color: var(--gold-light); }
.stat span { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted-2); }

/* --- Why choose --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.why-card { background: var(--bg-card); padding: 40px 30px; transition: background .3s; }
.why-card:hover { background: #1b170f; }
.why-mono {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.why-card h4 { color: var(--ivory); font-size: 19px; margin-bottom: 10px; }
.why-card p { font-size: 14.5px; }

/* --- Section head --- */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(26px, 4vw, 46px); color: var(--ivory); max-width: 560px; }
.section-head p { max-width: 380px; font-size: 15px; }

/* --- Services --- */
.tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}
.tab-btn {
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: transparent;
  color: var(--muted);
  font-size: 12.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.tab-btn:hover { border-color: var(--gold-deep); color: var(--gold-light); }
.tab-btn.active { background: var(--gold); color: #161208; border-color: var(--gold); }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cat-block { display: none; }
.cat-block.active { display: block; }
.cat-heading { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.cat-mono {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--gold-light);
  flex-shrink: 0;
}
.cat-heading h3 { font-size: 24px; color: var(--ivory); }
.cat-heading span { display: block; font-size: 12.5px; color: var(--muted-2); margin-top: 3px; }

.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.svc-card:hover { border-color: var(--gold-deep); transform: translateY(-4px); box-shadow: var(--shadow); }
.svc-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.svc-top h4 { font-size: 18px; color: var(--ivory); min-width: 0; word-break: break-word; }
.svc-price { font-family: 'Fraunces', serif; color: var(--gold-light); font-size: 19px; white-space: nowrap; flex-shrink: 0; }
.svc-card p { font-size: 13.5px; }
.svc-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.svc-duration { font-size: 12px; color: var(--muted-2); letter-spacing: .5px; }
.svc-book {
  font-size: 11.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.svc-book:hover { color: var(--gold-light); }

/* --- Gallery --- */
.gallery-grid { columns: 4 260px; column-gap: 16px; }
.gallery-grid figure {
  margin: 0 0 16px;
  break-inside: avoid;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-grid img {
  width: 100%;
  transition: transform .5s ease, filter .5s ease;
  filter: grayscale(.15) brightness(.92);
}
.gallery-grid figure:hover img { transform: scale(1.05); filter: grayscale(0) brightness(1); }
.gallery-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(0, 0, 0, .75), transparent);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  transition: opacity .3s;
}
.gallery-grid figure:hover figcaption { opacity: 1; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 5, 4, .94);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img { max-height: 80vh; max-width: 95vw; border-radius: 8px; box-shadow: 0 30px 80px rgba(0, 0, 0, .6); }
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  color: var(--gold-light);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 1000;
  padding: 8px;
}

/* --- Testimonials --- */

/* --- Booking --- */
.booking-panel {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px;
  max-width: 640px;
  margin: 0 auto;
  overflow: hidden;
}

/* Quick-book strip */
.quick-book {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.quick-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: transparent;
  color: var(--muted);
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
  white-space: nowrap;
}
.quick-book-btn:hover,
.quick-book-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #161208;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted-2); font-weight: 700; }
input, select {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--ivory);
  font-family: 'Manrope', sans-serif;
  font-size: 13.5px;
  outline: none;
  transition: border-color .25s;
  width: 100%;
  max-width: 100%;
}
input:focus, select:focus { border-color: var(--gold); }
select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b3914c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
select option, select optgroup { background: var(--bg-card); color: var(--ivory); }
select optgroup { font-weight: 700; font-size: 12px; color: var(--gold-light); font-style: normal; }
.form-note { font-size: 12px; color: var(--muted-2); margin-top: 4px; }
.form-actions { margin-top: 22px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* --- Deals --- */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.deal-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .3s;
}
.deal-card:hover { border-color: var(--gold-deep); }
.deal-card.deal-highlight {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(179,145,76,.08), rgba(179,145,76,.02));
}
.deal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.deal-title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--ivory);
}
.deal-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: .5px;
}
.deal-note {
  font-size: 12px;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: .5px;
}
.deal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.deal-list li {
  font-size: 13.5px;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
}
.deal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-deep);
}
.deal-btn {
  margin-top: 8px;
  text-align: center;
  justify-content: center;
}

/* --- Promo Banner --- */
.promo-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(179,145,76,.12), rgba(179,145,76,.06));
  border: 1px solid rgba(179,145,76,.25);
  border-radius: 12px;
  padding: 16px 24px;
  margin-bottom: 32px;
  font-size: 15px;
  color: var(--ivory);
  text-align: center;
}
.promo-badge {
  display: inline-block;
  background: var(--gold);
  color: #161208;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 6px;
  flex-shrink: 0;
}

/* --- Voucher Overlay --- */
.voucher-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 500;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px;
}
.voucher-overlay.open { display: flex; }
.voucher-card {
  width: 100%;
  max-width: 380px;
  background: #1a1714;
  border: 2px solid var(--gold);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.voucher-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 28px 20px;
}
.voucher-brand { display: flex; flex-direction: column; }
.voucher-logo { font-family: 'Fraunces', serif; font-size: 26px; color: var(--gold); font-weight: 600; }
.voucher-sub { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted-2); margin-top: 2px; }
.voucher-discount {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  text-align: center;
}
.voucher-discount small { font-size: 14px; letter-spacing: 2px; text-transform: uppercase; }
.voucher-divider {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 12px;
}
.voucher-divider span:first-child,
.voucher-divider span:last-child {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg);
  flex-shrink: 0;
}
.voucher-dash {
  flex: 1;
  border-top: 2px dashed var(--gold-deep);
  margin: 0 -4px;
}
.voucher-body {
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.voucher-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  color: var(--ivory);
}
.voucher-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 700;
}
.voucher-code {
  font-family: 'Manrope', monospace;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 15px;
}
.voucher-footer {
  padding: 16px 28px 24px;
  font-size: 11px;
  color: var(--muted-2);
  line-height: 1.6;
  border-top: 1px solid rgba(179,145,76,.15);
}
.voucher-close {
  background: transparent;
  border: 1px solid var(--gold-deep);
  color: var(--gold-light);
  padding: 12px 32px;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
}
.voucher-close:hover { background: var(--gold); color: #161208; }
.voucher-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.voucher-wa {
  font-size: 14px;
  padding: 14px 28px;
}

/* --- FAQ --- */
.faq-item { border-bottom: 1px solid var(--line); padding: 26px 0; }
.faq-q { display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 20px; }
.faq-q h4 { font-size: 17px; color: var(--ivory); font-weight: 500; font-family: 'Manrope', sans-serif; }
.faq-icon { width: 22px; height: 22px; position: relative; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 14px; height: 1px; }
.faq-icon::after { width: 1px; height: 14px; transition: transform .3s; }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { padding-top: 14px; font-size: 14.5px; max-width: 640px; }

/* --- Contact --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-heading { font-size: 32px; color: var(--ivory); margin-bottom: 26px; }
.contact-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; overflow: hidden; }
.contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 22px; }
.contact-list li { display: flex; gap: 16px; }
.contact-list b { display: block; color: var(--ivory); font-size: 14.5px; margin-bottom: 4px; }
.contact-list span { font-size: 13.5px; color: var(--muted); word-break: break-word; }
.map-box { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); filter: grayscale(1) invert(.92) contrast(.9); min-height: 320px; }
.map-box iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* --- Footer --- */
footer { border-top: 1px solid var(--line); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 50px; margin-bottom: 60px; }
.footer-grid h5 { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; font-weight: 700; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-grid a { font-size: 14px; color: var(--muted); transition: color .25s; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-desc { max-width: 260px; font-size: 13.5px; }
.newsletter { display: flex; margin-top: 8px; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.newsletter input { flex: 1; border: none; background: transparent; padding: 12px 14px; font-size: 13px; min-width: 0; }
.newsletter button {
  background: var(--gold);
  color: #161208;
  border: none;
  padding: 0 18px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  flex-shrink: 0;
}
.newsletter-desc { font-size: 13.5px; margin-bottom: 6px; }
.socials { display: flex; gap: 14px; margin-top: 20px; }
.socials a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--gold-light);
  transition: .3s;
}
.socials a:hover { border-color: var(--gold); background: rgba(201, 162, 75, .08); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--muted-2);
  flex-wrap: wrap;
  gap: 10px;
}

/* --- WhatsApp float --- */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
  cursor: pointer;
  transition: transform .3s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 26px; height: 26px; }

.toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 200;
  background: var(--gold);
  color: #161208;
  padding: 14px 26px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  transition: transform .4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
  max-width: 90vw;
  text-align: center;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* =============================================
   Responsive
   ============================================= */

@media (max-width: 900px) {
  html.nav-lock, html.nav-lock body { overflow: hidden; overscroll-behavior: none; touch-action: none; }
  body.nav-lock { position: fixed; left: 0; right: 0; width: 100%; }

  nav.main-nav {
    position: fixed;
    inset: 0;
    z-index: 150;
    height: 100dvh;
    background: rgba(11, 10, 8, .98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: calc(env(safe-area-inset-top) + 90px) 24px calc(env(safe-area-inset-bottom) + 40px);
    opacity: 0;
    visibility: hidden;
    transform: scale(.96);
    transition: opacity .35s ease, transform .35s cubic-bezier(.3, 0, .2, 1), visibility 0s linear .35s;
    will-change: opacity, transform;
    pointer-events: none;
  }
  nav.main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: auto;
    transition: opacity .35s ease, transform .35s cubic-bezier(.3, 0, .2, 1), visibility 0s linear 0s;
  }
  nav.main-nav a {
    font-size: 17px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .35s ease, transform .35s ease;
  }
  nav.main-nav.open a { opacity: 1; transform: translateY(0); }
  nav.main-nav.open a:nth-child(2) { transition-delay: .08s; }
  nav.main-nav.open a:nth-child(3) { transition-delay: .13s; }
  nav.main-nav.open a:nth-child(4) { transition-delay: .18s; }
  nav.main-nav.open a:nth-child(5) { transition-delay: .23s; }
  nav.main-nav.open a:nth-child(6) { transition-delay: .28s; }
  nav.main-nav.open a:nth-child(7) { transition-delay: .33s; }

  .burger { display: flex; }
  .nav-cta .btn { display: none; }


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

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

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

@media (max-width: 700px) {
  .gallery-grid { columns: 2 150px; column-gap: 10px; }
}

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

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

@media (max-width: 480px) {
  section { padding: 48px 0; }
  .wrap { padding: 0 14px; }
  .btn { padding: 14px 24px; font-size: 11px; letter-spacing: 1.5px; }
  header .wrap { gap: 8px; }
  .logo img { height: 72px; }
  .logo-text { margin-left: 8px; }
  .logo-name { font-size: 17px; }
  .logo-sub { font-size: 9px; }
  .hero { padding-top: 100px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stat-row { gap: 28px; }
  .stat b { font-size: 28px; }
  .about-heading { font-size: 28px; }
  .why-card { padding: 28px 20px; }
  .why-card h4 { font-size: 16px; }
  .why-card p { font-size: 13px; }
  .section-head { margin-bottom: 36px; }
  .section-head p { font-size: 14px; }
  .cat-mono { width: 42px; height: 42px; font-size: 14px; }
  .cat-heading h3 { font-size: 20px; }
  .cat-heading span { font-size: 11px; }
  .cat-heading { gap: 12px; margin-bottom: 20px; }
  .gallery-grid figcaption { padding: 8px 10px; font-size: 10px; }
  .booking-panel { padding: 22px; border-radius: 14px; }
  .promo-banner { padding: 12px 16px; font-size: 13px; gap: 10px; margin-bottom: 24px; }
  .promo-badge { font-size: 11px; padding: 5px 10px; }
  .voucher-card { max-width: 340px; }
  .voucher-top { padding: 22px 22px 16px; }
  .voucher-logo { font-size: 22px; }
  .voucher-discount { font-size: 32px; }
  .voucher-body { padding: 16px 22px; }
  .voucher-footer { padding: 14px 22px 20px; }
  .quick-book { gap: 8px; margin-bottom: 20px; padding-bottom: 18px; }
  .quick-book-btn { padding: 8px 14px; font-size: 12px; }
  .faq-q h4 { font-size: 15px; }
  .faq-a p { font-size: 13px; }
  .contact-card { padding: 22px; }
  .contact-list li { gap: 12px; }
  .contact-list b { font-size: 13px; }
  .contact-list span { font-size: 12px; }
  .map-box { min-height: 240px; }
  .map-box iframe { min-height: 240px; }
  footer { padding: 48px 0 24px; }
  .footer-grid { margin-bottom: 36px; }
  .footer-bottom { font-size: 11px; text-align: center; justify-content: center; }
  .wa-float { bottom: 16px; right: 16px; width: 50px; height: 50px; }
  .wa-float svg { width: 22px; height: 22px; }
}

@media (max-width: 400px) {
  .gallery-grid { columns: 2 130px; column-gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  nav.main-nav, nav.main-nav a, .burger span, .reveal { transition: none !important; }
}
