/* ═══════════════════════════════════════════════
   SWEET SUMMER SPA — Main Stylesheet
   Version: 3.0 | sweetsummerspa.ae
═══════════════════════════════════════════════ */

/* ── RESET & BASE ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  background: #0A0416;
  color: #EAE0F5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── DESIGN TOKENS ────────────────────────── */
:root {
  --pu:    #520D85;
  --pu2:   #7020B0;
  --pu3:   #8F35CC;
  --go:    #C49A35;
  --go2:   #DDB84E;
  --go3:   #F0D88A;
  --cr:    #FAF5EC;
  --cr2:   #F0E8D5;
  --dk:    #0A0416;
  --dk2:   #110620;
  --dk3:   #1A0B2E;
  --tx:    #18082A;
  --tx2:   #4A3060;
  --wh:    #FFFFFF;
  --r:     3px;
  --sh:    0 20px 60px rgba(0,0,0,.45);
  --sh-go: 0 12px 40px rgba(196,154,53,.32);
  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans:  'Jost', sans-serif;
}

/* ── PRELOADER ────────────────────────────── */
#pl {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dk);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 22px;
  transition: opacity .8s ease, visibility .8s ease;
}
#pl.gone { opacity: 0; visibility: hidden; pointer-events: none; }
.pl-logo { width: 110px; opacity: 0; animation: fadeIn .8s ease .2s forwards; }
.pl-bar {
  width: 130px; height: 1px;
  background: rgba(196,154,53,.2); position: relative; overflow: hidden; border-radius: 2px;
}
.pl-bar::after {
  content: ''; position: absolute; left: -40%; top: 0; width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--go2), transparent);
  animation: sweep 1.2s ease infinite;
}

/* ═══════════════════════════════════════════
   NAVIGATION — responsive, no overlap at any size
═══════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 72px; padding: 0 4%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  transition: height .35s, background .35s, box-shadow .35s;
}
#nav.sc {
  height: 58px;
  background: rgba(10,4,22,.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(196,154,53,.14), 0 8px 28px rgba(0,0,0,.35);
}

/* Logo — never overflows */
.nav-logo {
  flex-shrink: 0;
  display: flex; align-items: center;
  min-width: 0;
}
.nav-logo a { display: flex; align-items: center; }
.nav-logo img {
  height: 40px; width: auto;
  max-width: min(160px, 35vw);  /* hard cap relative to viewport */
  object-fit: contain;
  transition: height .35s;
  display: block;
}
#nav.sc .nav-logo img { height: 32px; }

/* Desktop menu — shrinks gracefully */
.nav-menu {
  display: flex; align-items: center;
  gap: clamp(10px, 1.8vw, 28px);
  list-style: none;
  flex-wrap: nowrap;
  min-width: 0;
}
.nav-menu a {
  font-size: clamp(.6rem, .7vw, .72rem);
  letter-spacing: .16em; text-transform: uppercase;
  font-weight: 500; color: rgba(255,255,255,.78);
  transition: color .25s; position: relative; padding-bottom: 3px;
  white-space: nowrap;
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--go2); transition: width .3s;
}
.nav-menu a:hover { color: var(--go2); }
.nav-menu a:hover::after { width: 100%; }

/* Book Now button */
.nav-book {
  background: linear-gradient(135deg, var(--go), var(--go2)) !important;
  color: var(--dk) !important;
  padding: 8px 16px !important;
  border-radius: var(--r);
  font-weight: 700 !important;
  letter-spacing: .12em !important;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-book::after { display: none !important; }
.nav-book:hover { opacity: .9; transform: translateY(-1px); }

/* Hamburger — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: space-between;
  width: 24px; height: 16px;
  cursor: pointer; background: none; border: none; padding: 0;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block; height: 1.5px;
  background: rgba(255,255,255,.9); border-radius: 2px; transition: all .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO ─────────────────────────────────── */
#hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.6s cubic-bezier(.4,0,.2,1);
}
.hero-slide.on { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(165deg, rgba(10,4,22,.82) 0%, rgba(82,13,133,.26) 50%, rgba(10,4,22,.88) 100%);
}
.hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(82,13,133,.14) 0%, transparent 70%);
}
.hero-inner {
  position: relative; z-index: 2;
  text-align: center; padding: 0 20px; max-width: 920px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: .63rem; letter-spacing: .48em; color: var(--go2);
  text-transform: uppercase; font-weight: 500; margin-bottom: 26px;
  opacity: 0; animation: fadeUp 1s ease .4s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 30px; height: 1px; background: var(--go); opacity: .65;
}
.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 9vw, 6.8rem);
  color: var(--wh); line-height: .95; font-weight: 400; margin-bottom: 4px;
  opacity: 0; animation: fadeUp 1s ease .55s forwards;
}
.hero-title em {
  display: block; color: var(--go2); font-style: italic;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
}
.hero-divider {
  width: 60px; height: 1px; margin: 22px auto;
  background: linear-gradient(90deg, transparent, var(--go2), transparent);
  opacity: 0; animation: fadeUp .8s ease .7s forwards;
}
.hero-sub {
  font-family: var(--ff-serif);
  font-size: clamp(1rem, 2vw, 1.28rem);
  color: rgba(255,255,255,.72); letter-spacing: .07em;
  margin-bottom: 48px; font-weight: 300;
  opacity: 0; animation: fadeUp 1s ease .8s forwards;
}
.hero-btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s ease .95s forwards;
}
.hero-dots {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; gap: 8px;
}
.dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,.3); cursor: pointer;
  border: none; transition: all .35s; padding: 0;
}
.dot.on { width: 26px; border-radius: 3px; background: var(--go); }
.hero-loc {
  position: absolute; bottom: 32px; right: 4%; z-index: 2;
  font-size: .65rem; letter-spacing: .28em;
  color: rgba(255,255,255,.5); /* clearly visible */
  opacity: 0; animation: fadeIn 1s ease 1.2s forwards;
}

/* ── BUTTONS ──────────────────────────────── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, var(--go), var(--go2));
  color: var(--dk); padding: 15px 38px; border-radius: var(--r);
  font-size: .74rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 700; box-shadow: var(--sh-go); transition: transform .3s, box-shadow .3s;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 22px 55px rgba(196,154,53,.45); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid rgba(255,255,255,.38); color: rgba(255,255,255,.88);
  padding: 14px 36px; border-radius: var(--r);
  font-size: .74rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 500; transition: all .3s;
}
.btn-outline:hover { border-color: var(--go2); color: var(--go2); }
.btn-dark {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--dk2); color: var(--wh);
  padding: 14px 32px; border-radius: var(--r);
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 600; box-shadow: 0 8px 28px rgba(0,0,0,.25); transition: all .3s;
}
.btn-dark:hover { background: var(--pu); transform: translateY(-2px); box-shadow: 0 14px 38px rgba(82,13,133,.35); }

/* ── NUMBERS STRIP ────────────────────────── */
#strip {
  background: linear-gradient(90deg, #300050 0%, var(--pu2) 50%, #300050 100%);
  padding: 44px 5%;
}
.strip-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-around; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.strip-item { text-align: center; padding: 0 10px; }
.strip-num {
  font-family: var(--ff-serif); font-size: 2.5rem;
  color: var(--go2); line-height: 1; font-weight: 700;
}
.strip-label {
  font-size: .63rem; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(255,255,255,.75); /* FIXED — properly visible */
  margin-top: 7px;
}
.strip-divider { width: 1px; height: 44px; background: rgba(255,255,255,.15); flex-shrink: 0; }

/* ── SHARED SECTION STYLES ────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .62rem; letter-spacing: .42em; color: var(--go);
  text-transform: uppercase; font-weight: 600; margin-bottom: 16px;
}
.section-label::before { content: ''; width: 22px; height: 1px; background: var(--go); }
h2.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.95rem, 4.2vw, 3.1rem);
  line-height: 1.12; font-weight: 400; margin-bottom: 20px;
}
h2.section-title em { font-style: italic; color: var(--go2); }
.gold-bar { width: 46px; height: 2px; background: linear-gradient(90deg, var(--go), var(--go2)); margin: 22px 0; border-radius: 2px; }
.gold-bar.center { margin: 22px auto; }
.section-lead {
  font-family: var(--ff-serif); font-size: 1.08rem;
  line-height: 1.85; font-weight: 300;
}
.section-lead.on-dark { color: rgba(255,255,255,.7); }
.section-lead.on-light { color: var(--tx2); }

/* ── ABOUT ────────────────────────────────── */
#about { background: var(--cr); padding: 110px 5%; }
.about-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-main { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--r); box-shadow: var(--sh); }
.about-float {
  position: absolute; width: 44%; aspect-ratio: 1; object-fit: cover;
  border-radius: var(--r); border: 6px solid var(--cr);
  box-shadow: var(--sh); bottom: -28px; right: -26px;
}
.about-badge {
  position: absolute; top: 32px; left: -22px;
  background: var(--dk2); padding: 20px 22px;
  border-radius: var(--r); box-shadow: 0 14px 44px rgba(0,0,0,.4);
}
.about-badge-num { font-family: var(--ff-serif); font-size: 2rem; color: var(--go2); font-weight: 700; line-height: 1; display: block; }
.about-badge-lbl { font-size: .52rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.6); display: block; margin-top: 4px; }
.about-copy .section-label, .about-copy h2 { color: var(--tx); }
.about-copy p { font-family: var(--ff-serif); font-size: 1.05rem; color: var(--tx2); line-height: 1.9; margin-bottom: 18px; }
.feat-list { list-style: none; margin: 26px 0; display: flex; flex-direction: column; gap: 11px; }
.feat-list li { display: flex; align-items: center; gap: 11px; font-size: .84rem; letter-spacing: .03em; color: var(--tx2); }
.feat-list li::before { content: '◆'; color: var(--go); font-size: .55rem; flex-shrink: 0; }

/* ── SERVICES ─────────────────────────────── */
#services {
  padding: 100px 5%;
  background: var(--dk2);
}
.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

/* Grid — 3 equal columns on desktop */
.services-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Every card is identical — no featured, no exceptions */
.svc-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--r);
  background: #000;
  /* Fixed height so all cards are the same across the row */
  height: 420px;
}
.svc-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  filter: brightness(.85);
  transition: transform .7s cubic-bezier(.4,0,.2,1), filter .5s;
}
.svc-card:hover img {
  transform: scale(1.0);
  filter: brightness(.65);
}

/* Gradient overlay — always present, deepens on hover */
.svc-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,4,22,.96) 0%,
    rgba(10,4,22,.55) 40%,
    rgba(10,4,22,.1)  70%,
    transparent       100%
  );
  transition: background .4s;
  z-index: 1;
}
.svc-card:hover .svc-gradient {
  background: linear-gradient(
    to top,
    rgba(82,13,133,.97) 0%,
    rgba(82,13,133,.55) 45%,
    rgba(82,13,133,.1)  70%,
    transparent         100%
  );
}

/* Text body — sits above gradient */
.svc-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px 20px 20px;
  z-index: 2;
}
.svc-tag {
  font-size: .55rem;
  letter-spacing: .3em;
  color: var(--go);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
}
.svc-name {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  color: var(--wh);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0;
}

/* Description — hidden until hover */
.svc-desc {
  font-family: var(--ff-serif);
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .4s ease, opacity .35s ease, margin .35s ease;
  margin-top: 0;
}
.svc-card:hover .svc-desc {
  max-height: 90px;
  opacity: 1;
  margin-top: 8px;
}

/* WhatsApp button — always visible at bottom */
.svc-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  padding: 9px 16px;
  background: #22C55E;
  color: #fff;
  border-radius: var(--r);
  font-family: var(--ff-sans);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  box-shadow: 0 4px 16px rgba(34,197,94,.3);
  transition: background .25s, transform .25s, box-shadow .25s;
  text-decoration: none;
}
.svc-wa-btn:hover {
  background: #16A34A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34,197,94,.45);
}
.svc-wa-btn svg {
  flex-shrink: 0;
  fill: currentColor;
}

/* ── OFFERS ───────────────────────────────── */
#offers { padding: 110px 5%; background: var(--dk3); position: relative; overflow: hidden; }
#offers::before {
  content: ''; position: absolute; top: -300px; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 1000px; border-radius: 50%;
  background: radial-gradient(circle, rgba(82,13,133,.2) 0%, transparent 65%); pointer-events: none;
}
.offers-header { text-align: center; margin-bottom: 64px; }
.offers-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.offer-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(196,154,53,.15);
  border-radius: var(--r); overflow: hidden;
  transition: transform .38s, border-color .38s, box-shadow .38s;
}
.offer-card:hover { transform: translateY(-9px); border-color: rgba(196,154,53,.5); box-shadow: 0 30px 80px rgba(0,0,0,.45); }
.offer-img-wrap { overflow: hidden; height: 235px; }
.offer-img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s; }
.offer-card:hover .offer-img { transform: scale(1.07); }
.offer-body { padding: 28px 26px; }
.offer-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 14px; background: rgba(196,154,53,.1);
  border: 1px solid rgba(196,154,53,.3); border-radius: 50px;
  font-size: .58rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--go2); font-weight: 700; margin-bottom: 16px;
}
.offer-chip::before { content: '✦'; font-size: .5rem; }
.offer-title { font-family: var(--ff-serif); font-size: 1.32rem; color: var(--wh); margin-bottom: 12px; line-height: 1.2; }
.offer-desc { font-family: var(--ff-serif); font-size: .97rem; color: rgba(255,255,255,.7); line-height: 1.78; margin-bottom: 24px; }
.offer-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 12px 16px; background: transparent;
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--r);
  color: rgba(255,255,255,.8); font-size: .66rem; letter-spacing: .18em;
  text-transform: uppercase; font-weight: 600; cursor: pointer;
  transition: all .3s; font-family: var(--ff-sans);
}
.offer-btn:hover, .offer-card:hover .offer-btn { border-color: var(--go); color: var(--go2); background: rgba(196,154,53,.07); }

/* ── GALLERY ──────────────────────────────── */
#gallery { padding: 110px 5%; background: var(--cr2); }
.gallery-header { text-align: center; margin-bottom: 52px; }
.gallery-header .section-label, .gallery-header h2 { color: var(--tx); }
.gallery-header h2 em { color: var(--go); }
.mosaic { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(12,1fr); grid-auto-rows: 108px; gap: 8px; }
.m1 { grid-column: span 5; grid-row: span 3; }
.m2 { grid-column: span 4; grid-row: span 2; }
.m3 { grid-column: span 3; grid-row: span 2; }
.m4 { grid-column: span 4; grid-row: span 2; }
.m5 { grid-column: span 3; grid-row: span 2; }
.m6 { grid-column: span 5; grid-row: span 2; }
.m7 { grid-column: span 7; grid-row: span 2; }
.mosaic-item { overflow: hidden; border-radius: var(--r); cursor: pointer; position: relative; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.4,0,.2,1); }
.mosaic-item:hover img { transform: scale(1.08); }
.mosaic-item::after { content: ''; position: absolute; inset: 0; background: rgba(82,13,133,0); transition: background .35s; }
.mosaic-item:hover::after { background: rgba(82,13,133,.18); }

/* ── WHY US ───────────────────────────────── */
#why { padding: 110px 5%; background: var(--dk); }
.why-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.why-visual { position: relative; }
.why-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--r); box-shadow: var(--sh); }
.why-badge {
  position: absolute; bottom: -22px; right: -22px;
  width: 116px; height: 116px; border-radius: 50%;
  background: linear-gradient(135deg, var(--go), var(--go2));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--sh-go);
}
.why-badge-num { font-family: var(--ff-serif); font-size: 1.85rem; color: var(--dk); font-weight: 700; line-height: 1; }
.why-badge-lbl { font-size: .46rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(10,4,22,.65); text-align: center; margin-top: 3px; }
.why-list { display: flex; flex-direction: column; }
.why-item { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.why-item:last-child { border-bottom: none; }
.why-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: rgba(112,32,176,.15); border: 1px solid rgba(196,154,53,.22);
  border-radius: var(--r); display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; transition: background .3s, border-color .3s;
}
.why-item:hover .why-icon { background: rgba(112,32,176,.3); border-color: rgba(196,154,53,.5); }
.why-item h4 { font-family: var(--ff-serif); font-size: 1.03rem; color: var(--wh); margin-bottom: 5px; font-weight: 500; }
.why-item p { font-size: .86rem; color: rgba(255,255,255,.65); line-height: 1.78; }

/* ── BOOKING BAND ─────────────────────────── */
#book {
  padding: 96px 5%;
  background: linear-gradient(140deg, #3B0A6A 0%, #1C0440 40%, #3B0A6A 100%);
  text-align: center; position: relative; overflow: hidden;
}
#book::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(196,154,53,.07) 0%, transparent 70%);
}
.book-watermark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--ff-serif); font-size: clamp(4rem, 12vw, 11rem);
  color: rgba(255,255,255,.025); white-space: nowrap; pointer-events: none;
  letter-spacing: .04em; font-weight: 700;
}
.book-inner { position: relative; z-index: 1; max-width: 740px; margin: 0 auto; }
.book-inner .section-label { justify-content: center; }
.book-inner h2 {
  font-family: var(--ff-serif); font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  color: var(--wh); margin-bottom: 16px; font-weight: 400; line-height: 1.1;
}
.book-inner h2 em { color: var(--go2); font-style: italic; }
.book-inner p { font-family: var(--ff-serif); font-size: 1.15rem; color: rgba(255,255,255,.72); margin-bottom: 46px; }
.book-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-call {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--wh); color: var(--dk);
  padding: 15px 38px; border-radius: var(--r);
  font-size: .74rem; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 700; box-shadow: 0 12px 40px rgba(0,0,0,.3); transition: all .3s;
}
.btn-call:hover { transform: translateY(-3px); box-shadow: 0 20px 55px rgba(0,0,0,.4); }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background: #22C55E; color: var(--wh);
  padding: 15px 38px; border-radius: var(--r);
  font-size: .74rem; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 700; box-shadow: 0 12px 40px rgba(34,197,94,.28); transition: all .3s;
}
.btn-whatsapp:hover { transform: translateY(-3px); background: #16A34A; }
.book-note { margin-top: 24px; font-size: .72rem; letter-spacing: .18em; color: rgba(255,255,255,.6); text-transform: uppercase; }

/* ── LOCATION ─────────────────────────────── */
#location { padding: 110px 5%; background: var(--dk2); }
.location-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.location-details .section-label,
.location-details h2 { color: var(--wh); }
.map-frame { border-radius: var(--r); overflow: hidden; box-shadow: var(--sh); border: 1px solid rgba(196,154,53,.2); }
.map-frame iframe { display: block; width: 100%; height: 408px; border: 0; }
.contact-rows { display: flex; flex-direction: column; }
.contact-row { display: flex; gap: 18px; padding: 19px 0; border-bottom: 1px solid rgba(255,255,255,.08); align-items: flex-start; }
.contact-row:last-child { border-bottom: none; }
.contact-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(196,154,53,.1); border: 1px solid rgba(196,154,53,.25);
  border-radius: var(--r); display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; color: var(--go);
}
.contact-label { font-size: .58rem; letter-spacing: .25em; text-transform: uppercase; color: var(--go2); margin-bottom: 4px; }
.contact-value { font-family: var(--ff-serif); font-size: 1.02rem; color: rgba(255,255,255,.88); line-height: 1.68; }
.contact-value a { color: var(--go2); transition: color .25s; }
.contact-value a:hover { color: var(--go3); }

/* ═══════════════════════════════════════════
   FOOTER — every text element clearly visible
═══════════════════════════════════════════ */
/* ── FOOTER ── */
footer { background: #060110; border-top: 1px solid rgba(255,255,255,.07); }

.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 5%; gap: 20px; flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-left { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.footer-left img { height: 36px; width: auto; object-fit: contain; }
.footer-tagline {
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.footer-nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-nav a {
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.55); transition: color .25s;
}
.footer-nav a:hover { color: var(--go2); }

.footer-bottom {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 6px 20px;
  padding: 10px 5%;
  font-size: .66rem; color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.55); transition: color .25s; }
.footer-bottom a:hover { color: var(--go2); }

@media (max-width: 640px) {
  .footer-inner { flex-direction: column; align-items: flex-start; padding: 16px 4%; }
  .footer-bottom { justify-content: flex-start; padding: 10px 4%; gap: 6px 14px; }
}

/* ── FAB (Floating Action Buttons) ───────── */
.fab { position: fixed; bottom: 26px; right: 26px; z-index: 800; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.fab-btn {
  display: flex; align-items: center; gap: 9px;
  padding: 11px 18px; border-radius: 50px;
  font-size: .73rem; font-weight: 700; letter-spacing: .05em;
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
  transition: transform .3s, box-shadow .3s;
  font-family: var(--ff-sans);
}
.fab-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,.45); }
.fab-phone { background: var(--pu2); color: #fff; }
.fab-wa { background: #22C55E; color: #fff; }
.fab-btn svg { width: 17px; height: 17px; fill: currentColor; flex-shrink: 0; }

/* ── SCROLL REVEAL ────────────────────────── */
.rv  { opacity: 0; transform: translateY(26px);  transition: opacity .8s ease, transform .8s ease; }
.rvl { opacity: 0; transform: translateX(-26px); transition: opacity .8s ease, transform .8s ease; }
.rvr { opacity: 0; transform: translateX(26px);  transition: opacity .8s ease, transform .8s ease; }
.rv.in, .rvl.in, .rvr.in { opacity: 1; transform: translate(0); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; } .d5 { transition-delay: .5s; }

/* ── KEYFRAMES ────────────────────────────── */
@keyframes fadeIn  { to { opacity: 1; } }
@keyframes sweep   { to { left: 140%; } }
@keyframes fadeUp  { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ═══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   Order: widest → narrowest
═══════════════════════════════════════════ */

/* 1200px — compress nav */
@media (max-width: 1200px) {
  .nav-menu { gap: clamp(8px, 1.4vw, 22px); }
}

/* 1024px — 3→2 col services, gallery reflow */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .svc-card { height: 380px; }
  .mosaic { grid-template-columns: repeat(6,1fr); grid-auto-rows: 130px; }
  .m1,.m2 { grid-column: span 3; grid-row: span 2; }
  .m3,.m4 { grid-column: span 3; grid-row: span 2; }
  .m5,.m6,.m7 { grid-column: span 2; grid-row: span 2; }
}

/* 900px — hamburger nav */
@media (max-width: 900px) {
  .nav-menu {
    display: none;
    position: fixed; top: 58px; left: 0; right: 0;
    background: rgba(10,4,22,.98);
    flex-direction: column; align-items: flex-start;
    padding: 24px 5%; gap: 18px;
    border-top: 1px solid rgba(196,154,53,.14);
    box-shadow: 0 12px 40px rgba(0,0,0,.5);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { font-size: .85rem; letter-spacing: .14em; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .svc-card { height: 360px; }
}

/* 768px — tablet */
@media (max-width: 768px) {
  #nav { height: 62px; padding: 0 4%; }
  #nav.sc { height: 52px; }
  .nav-logo img { height: 34px; }
  #nav.sc .nav-logo img { height: 28px; }
  .nav-menu { top: 52px; }
  .about-grid, .why-grid, .location-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-float { display: none; }
  .about-badge { display: none; }
  .why-badge { bottom: -16px; right: -12px; width: 96px; height: 96px; }
  .offers-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .svc-card { height: 340px; }
  .mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .m1,.m2,.m3,.m4,.m5,.m6,.m7 { grid-column: span 1; grid-row: span 1; }
  .fab { bottom: 18px; right: 14px; }
  .strip-divider { display: none; }
}

/* ═══════════════════════════════════════════
   MOBILE SERVICE CARDS — switch to offer-style
   layout below 600px so cards are tall enough
   to show image + title + button properly
═══════════════════════════════════════════ */
@media (max-width: 600px) {

  /* 1 column — full width like offer cards */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Reset fixed height — let content dictate size */
  .svc-card {
    height: auto;
    min-height: unset;
  }

  /* Image sits on top, fixed height like offer-img-wrap */
  .svc-card img {
    position: relative;    /* take it out of absolute flow */
    inset: unset;
    width: 100%;
    height: 220px;         /* same as .offer-img-wrap height */
    display: block;
    transform: none;
    transition: transform .7s cubic-bezier(.4,0,.2,1), filter .5s;
  }
  .svc-card:hover img {
    transform: scale(1.04);
  }

  /* Gradient no longer covers the whole card — just the image bottom */
  .svc-gradient {
    position: absolute;
    left: 0; right: 0;
    top: 0;
    height: 220px;         /* matches image height */
    background: linear-gradient(
      to top,
      rgba(10,4,22,.5) 0%,
      transparent      60%
    );
  }

  /* Body sits below image in normal flow, not absolute */
  .svc-body {
    position: relative;
    bottom: unset; left: unset; right: unset;
    padding: 18px 18px 16px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(196,154,53,.12);
    border-top: none;
    border-radius: 0 0 var(--r) var(--r);
  }

  .svc-tag {
    font-size: .56rem;
    letter-spacing: .26em;
    margin-bottom: 6px;
  }
  .svc-name {
    font-family: var(--ff-serif);
    font-size: 1.2rem;
    color: var(--wh);
    font-weight: 500;
    margin-bottom: 8px;
  }

  /* Description always visible on mobile — no hover needed */
  .svc-desc {
    max-height: 120px;
    opacity: 1;
    margin-top: 0;
    font-size: .9rem;
    color: rgba(255,255,255,.65);
    line-height: 1.65;
  }

  /* WA button full width like offer-btn */
  .svc-wa-btn {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 14px;
    padding: 11px 16px;
    font-size: .66rem;
    letter-spacing: .16em;
  }
}

/* 480px — nav misc */
@media (max-width: 480px) {
  #nav { height: 56px; padding: 0 3.5%; }
  #nav.sc { height: 48px; }
  .nav-logo img { height: 30px; max-width: 120px; }
  #nav.sc .nav-logo img { height: 26px; }
  .nav-menu { top: 48px; }
  .hero-btns, .book-btns { flex-direction: column; align-items: center; }
  .strip-inner { gap: 14px 24px; }
}

/* ═══════════════════════════════════════════
   ADDITIONAL COMPONENTS
═══════════════════════════════════════════ */

/* ── Hero WhatsApp button ── */
.btn-whatsapp-hero {
  display: inline-flex; align-items: center; gap: 9px;
  background: #22C55E; color: #fff;
  padding: 15px 38px; border-radius: var(--r);
  font-size: .74rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 12px 40px rgba(34,197,94,.35);
  transition: transform .3s, box-shadow .3s, background .3s;
}
.btn-whatsapp-hero:hover {
  transform: translateY(-3px);
  background: #16A34A;
  box-shadow: 0 20px 55px rgba(34,197,94,.45);
}

/* ── Offer buttons — WhatsApp green tint on hover ── */
.offer-btn svg { flex-shrink: 0; vertical-align: middle; }
.offer-btn:hover, .offer-card:hover .offer-btn {
  border-color: #22C55E !important;
  color: #22C55E !important;
  background: rgba(34,197,94,.07) !important;
}
