/* KL Wellness Spa Sun City — Static site styles */
:root {
  --bg: #faf6ee;
  --fg: #1c2b26;
  --muted: #6a7570;
  --primary: #1f3a34;
  --primary-fg: #faf6ee;
  --gold: #c69a4a;
  --gold-soft: #e6c98a;
  --card: #ffffff;
  --border: #e6ded0;
  --radius: 16px;
  --shadow-luxe: 0 30px 80px -30px rgba(31, 58, 52, .35);
  --shadow-gold: 0 20px 60px -20px rgba(198, 154, 74, .5);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Manrope", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1
}

.gold {
  color: var(--gold)
}

.italic {
  font-style: italic
}

.gold-grad {
  background: linear-gradient(120deg, #a6802f, #e6c98a, #a6802f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px
}

.divider-gold {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase
}

.divider-gold::before,
.divider-gold::after {
  content: "";
  height: 1px;
  width: 40px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent)
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  transition: all .3s;
  cursor: pointer;
  border: none;
  font-family: inherit
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-fg)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-luxe)
}

.btn-gold {
  background: rgba(198, 154, 74, .15);
  color: var(--fg);
  border: 1px solid rgba(198, 154, 74, .6)
}

.btn-gold:hover {
  background: var(--gold);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold)
}

.btn-outline {
  border: 1px solid rgba(198, 154, 74, .6);
  color: var(--gold);
  background: transparent
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--primary)
}

/* Top strip */
.topstrip {
  background: var(--primary);
  color: var(--primary-fg);
  font-size: 12px
}

.topstrip .container {
  display: flex;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 12px;
  flex-wrap: wrap
}

.topstrip a {
  opacity: .9
}

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

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 238, .85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border)
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(198, 154, 74, .6);
  background: var(--primary);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px
}

.logo-txt {
  line-height: 1.1
}

.logo-txt strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px
}

.logo-txt small {
  display: block;
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none
}

.nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: color .3s
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold)
}

.dropdown {
  position: relative
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  width: 560px;
  box-shadow: var(--shadow-luxe);
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
  margin-top: 12px
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  margin-top: 6px
}

.dropdown-menu .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px
}

.dropdown-item {
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: 12px;
  transition: background .2s
}

.dropdown-item:hover {
  background: rgba(198, 154, 74, .1)
}

.dropdown-item img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0
}

.dropdown-item .name {
  font-size: 14px;
  font-weight: 500
}

.dropdown-item .dur {
  font-size: 12px;
  color: var(--muted)
}

.mob-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: transparent;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer
}

.mob-menu {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  background: rgba(250, 246, 238, .98);
  backdrop-filter: blur(20px);
  z-index: 40;
  overflow-y: auto;
  padding: 24px;
  transition: opacity .3s, transform .3s;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none
}

.mob-menu.open {
  display: block;
  opacity: 1;
  height: 70%;
  transform: none;
  pointer-events: auto
}

.mob-menu a {
  display: block;
  padding: 14px 12px;
  border-bottom: 1px solid var(--border);
  font-weight: 500
}

.mob-menu .sub {
  padding-left: 24px;
  border-left: 2px solid rgba(198, 154, 74, .4);
  margin: 0 12px
}

.mob-menu .sub a {
  font-size: 14px;
  padding: 10px 8px;
  border: none;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px
}

.mob-menu .sub img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover
}

.mob-menu-actions {
  padding-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: var(--primary-fg);
  display: flex;
  align-items: center
}

.hero-slides {
  position: absolute;
  inset: 0
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease
}

.hero-slide.active {
  opacity: 1
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 58, 52, .9), rgba(31, 58, 52, .6), rgba(31, 58, 52, .95))
}

.hero-inner {
  position: relative;
  padding: 30px 0 30px;
  width: 100%
}

.hero h1 {
  font-size: clamp(40px, 7vw, 88px);
  max-width: 900px;
  margin-top: 24px;
  line-height: .98
}

.hero p {
  max-width: 600px;
  margin-top: 24px;
  font-size: 18px;
  color: rgba(250, 246, 238, .85);
  line-height: 1.6
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
  align-items: center
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  max-width: 800px;
  margin-top: 60px
}

.fact {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid rgba(198, 154, 74, .3);
  background: rgba(250, 246, 238, .08);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  font-size: 14px
}

.fact .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(31, 58, 52, .4);
  border: 1px solid rgba(198, 154, 74, .4);
  color: var(--gold);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  z-index: 10;
  font-size: 20px
}

@media(min-width:768px) {
  .hero-arrow {
    display: flex
  }
}

.hero-arrow:hover {
  background: var(--gold);
  color: var(--primary)
}

.hero-arrow.prev {
  left: 24px
}

.hero-arrow.next {
  right: 24px
}

.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10
}

.hero-dots button {
  border: none;
  background: rgba(250, 246, 238, .4);
  height: 6px;
  width: 16px;
  border-radius: 99px;
  cursor: pointer;
  transition: all .3s
}

.hero-dots button.active {
  width: 40px;
  background: var(--gold)
}

/* Marquee */
.marquee {
  overflow: hidden;
  background: var(--primary);
  color: var(--primary-fg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 40s linear infinite;
  white-space: nowrap
}

.marquee-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px
}

.marquee-track em {
  color: var(--gold);
  font-style: normal;
  font-size: 12px;
  margin-left: 24px
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

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

/* Sections */
section {
  padding: 96px 0
}

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

.section-head h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  margin-top: 16px;
  color: var(--primary);
  line-height: 1.05
}

.section-head p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px
}

.text-left {
  text-align: left;
  margin: 0
}

/* Intro */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center
}

@media(min-width:960px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr
  }
}

.intro-img {
  position: relative
}

.intro-img img {
  border-radius: 24px;
  box-shadow: var(--shadow-luxe);
  height: 520px;
  object-fit: cover;
  width: 100%
}

.badge-circle {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-gold);
  animation: float 7s ease-in-out infinite
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-14px)
  }
}

.badge-circle strong {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1
}

.badge-circle small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .2em;
  margin-top: 6px
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px
}

.feature {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 20px;
  border-radius: 16px;
  transition: all .3s
}

.feature:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-luxe)
}

.feature .ico {
  color: var(--gold);
  font-size: 20px
}

.feature strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--primary);
  margin: 8px 0 4px
}

.feature p {
  font-size: 14px;
  color: var(--muted)
}

/* Signature services */
.dark-section {
  background: var(--primary);
  color: var(--primary-fg)
}

.dark-section .section-head h2 {
  color: var(--primary-fg)
}

.dark-section .section-head p {
  color: rgba(250, 246, 238, .75)
}

.services-slider {
  position: relative;
  margin-top: 64px
}

.services-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 20px;
  -ms-overflow-style: none;
  scrollbar-width: none
}

.services-track::-webkit-scrollbar {
  display: none
}

.service-card {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 82%;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  transition: all .5s;
  color: inherit;
  display: block
}

@media(min-width:640px) {
  .service-card {
    width: 46%
  }
}

@media(min-width:960px) {
  .service-card {
    width: 31%
  }
}

.service-card:hover {
  border-color: rgba(198, 154, 74, .5)
}

.service-card .img-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s
}

.service-card:hover img {
  transform: scale(1.1)
}

.service-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--primary) 0%, rgba(31, 58, 52, .4) 40%, transparent 100%)
}

.service-card .content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px
}

.service-card h3 {
  font-size: 24px
}

.service-card .tagline {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(250, 246, 238, .75)
}

.service-card .badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  border-radius: 99px;
  background: rgba(31, 58, 52, .7);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--primary);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  font-size: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: transform .2s;
  z-index: 5
}

@media(min-width:768px) {
  .slider-btn {
    display: flex
  }
}

.slider-btn:hover {
  transform: translateY(-50%) scale(1.1)
}

.slider-btn.prev {
  left: -20px
}

.slider-btn.next {
  right: -20px
}

/* Testimonial slider */
.testimonials {
  background: #f0e9db;
  padding: 96px 0
}

.t-slider {
  position: relative;
  max-width: 820px;
  margin: 64px auto 0
}

.t-card {
  background: var(--card);
  border: 1px solid rgba(198, 154, 74, .3);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-luxe);
  position: relative;
  overflow: hidden;
  min-height: 340px
}

.t-card .stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px
}

.t-card blockquote {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.35;
  color: var(--primary);
  margin-top: 20px
}

.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px
}

.t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(198, 154, 74, .2);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px
}

.t-author strong {
  font-size: 16px
}

.t-author span {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .2em;
  text-transform: uppercase;
  display: block;
  margin-top: 2px
}

.t-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px
}

.t-controls button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  cursor: pointer;
  font-size: 18px;
  color: var(--primary);
  transition: all .2s
}

.t-controls button:hover {
  background: var(--primary);
  color: var(--gold)
}

.t-controls .dots {
  display: flex;
  gap: 6px
}

.t-controls .dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  background: var(--border);
  border-radius: 99px;
  transition: all .3s
}

.t-controls .dots button.active {
  width: 32px;
  background: var(--gold)
}

/* Inside spa slider */
.gallery-hero {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-luxe);
  aspect-ratio: 16/9;
  background: var(--primary);
  margin-top: 56px
}

.gallery-hero .g-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s
}

.gallery-hero .g-slide.active {
  opacity: 1
}

.gallery-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.gallery-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31, 58, 52, .8), transparent 60%);
  pointer-events: none;
  z-index: 1
}

.gallery-hero .caption {
  position: absolute;
  bottom: 32px;
  left: 32px;
  color: var(--primary-fg);
  z-index: 2
}

.gallery-hero .caption small {
  color: var(--gold);
  letter-spacing: .3em;
  font-size: 10px;
  text-transform: uppercase
}

.gallery-hero .caption h3 {
  font-size: 32px;
  margin-top: 8px
}

.gallery-hero .controls {
  position: absolute;
  bottom: 32px;
  right: 32px;
  display: flex;
  gap: 8px;
  z-index: 2
}

.gallery-hero .controls button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(250, 246, 238, .1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(198, 154, 74, .4);
  color: var(--gold);
  cursor: pointer;
  font-size: 18px
}

.gallery-hero .controls button:hover {
  background: var(--gold);
  color: var(--primary)
}

.gallery-hero .prog {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 6px;
  z-index: 2
}

.gallery-hero .prog span {
  height: 4px;
  width: 12px;
  background: rgba(250, 246, 238, .4);
  border-radius: 99px;
  transition: all .3s
}

.gallery-hero .prog span.active {
  width: 32px;
  background: var(--gold)
}

/* Numbered cards */
.num-grid {
  display: grid;
  gap: 24px;
  margin-top: 64px;
  grid-template-columns: 1fr
}

@media(min-width:640px) {
  .num-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(min-width:960px) {
  .num-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

.num-card {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 32px;
  border-radius: 24px;
  transition: all .3s
}

.num-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-luxe)
}

.num-card .num {
  font-family: var(--font-display);
  font-size: 48px;
  background: linear-gradient(120deg, #a6802f, #e6c98a, #a6802f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.num-card h3 {
  font-size: 22px;
  color: var(--primary);
  margin-top: 12px
}

.num-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px
}

/* Ritual steps */
.ritual-grid {
  display: grid;
  gap: 32px;
  margin-top: 64px;
  grid-template-columns: 1fr;
  position: relative
}

@media(min-width:640px) {
  .ritual-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(min-width:960px) {
  .ritual-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

.step {
  text-align: center
}

.step .circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  background: var(--bg)
}

.step h3 {
  margin-top: 24px;
  font-size: 20px;
  color: var(--primary)
}

.step p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted)
}

/* CTA */
.cta {
  background: var(--primary);
  color: var(--primary-fg);
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta h2 {
  font-size: clamp(32px, 5vw, 64px);
  margin-top: 24px
}

.cta p {
  margin: 24px auto 0;
  max-width: 600px;
  color: rgba(250, 246, 238, .8)
}

.cta .actions {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap
}

/* Footer */
.footer {
  background: var(--primary);
  color: var(--primary-fg);
  position: relative;
  overflow: hidden
}

.footer .fgrid {
  display: grid;
  gap: 48px;
  padding: 64px 0;
  grid-template-columns: 1fr
}

@media(min-width:640px) {
  .footer .fgrid {
    grid-template-columns: 1fr 1fr
  }
}

@media(min-width:960px) {
  .footer .fgrid {
    grid-template-columns: repeat(4, 1fr)
  }
}

.footer h4 {
  color: var(--gold);
  letter-spacing: .3em;
  font-size: 12px;
  text-transform: uppercase;
  font-family: var(--font-sans);
  margin-bottom: 16px
}

.footer ul {
  list-style: none;
  font-size: 14px;
  color: rgba(250, 246, 238, .8)
}

.footer ul li {
  padding: 4px 0
}

.footer ul a:hover {
  color: var(--gold)
}

.footer .row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(250, 246, 238, .8)
}

.footer .row .ic {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px
}

.footer p.desc {
  font-size: 14px;
  color: rgba(250, 246, 238, .7);
  margin: 14px 0;
  line-height: 1.6
}

.footer-bot {
  border-top: 1px solid rgba(250, 246, 238, .1);
  padding: 20px 0;
  font-size: 12px;
  color: rgba(250, 246, 238, .6);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px
}

/* Floating buttons */
.floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.floating a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-luxe);
  transition: transform .2s;
  color: #fff;
  font-size: 22px
}

.floating a:hover {
  transform: scale(1.1)
}

.floating .wa {
  background: #25d366;
  position: relative
}

.floating .wa::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: ping 2s infinite;
  opacity: .4
}

.floating .call {
  background: var(--gold);
  color: var(--primary)
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: .4
  }

  75%,
  100% {
    transform: scale(1.6);
    opacity: 0
  }
}

/* Page hero */
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--primary-fg);
  padding: 120px 0 100px
}

.page-hero .bg {
  position: absolute;
  inset: 0
}

.page-hero .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.page-hero .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 58, 52, .85), rgba(31, 58, 52, .95))
}

.page-hero .inner {
  position: relative
}

.page-hero h1 {
  font-size: clamp(40px, 6vw, 80px);
  margin-top: 20px;
  max-width: 900px;
  line-height: 1.05
}

.page-hero p {
  margin-top: 24px;
  max-width: 640px;
  font-size: 17px;
  color: rgba(250, 246, 238, .85)
}

.crumbs {
  margin-top: 32px;
  display: flex;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, .6);
  flex-wrap: wrap
}

.crumbs .cur {
  color: var(--gold)
}

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

/* Services grid page */
.services-grid {
  display: grid;
  gap: 32px;
  margin-top: 64px;
  grid-template-columns: 1fr
}

@media(min-width:640px) {
  .services-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(min-width:960px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.s-card {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 24px;
  overflow: hidden;
  transition: all .5s;
  display: block
}

.s-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-luxe)
}

.s-card .img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative
}

.s-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s
}

.s-card:hover img {
  transform: scale(1.1)
}

.s-card .badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  border-radius: 99px;
  background: rgba(250, 246, 238, .9);
  backdrop-filter: blur(8px);
  color: var(--primary);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase
}

.s-card .body {
  padding: 24px
}

.s-card h3 {
  font-size: 22px;
  color: var(--primary);
  transition: color .3s
}

.s-card:hover h3 {
  color: var(--gold)
}

.s-card .tagline {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted)
}

.s-card .more {
  margin-top: 18px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase
}

/* Service detail */
.service-body {
  display: grid;
  gap: 64px;
  grid-template-columns: 1fr;
  align-items: start
}

@media(min-width:960px) {
  .service-body {
    grid-template-columns: 1.2fr 1fr
  }
}

.service-body h2 {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--primary);
  margin-top: 16px;
  line-height: 1.1
}

.service-body p {
  margin-top: 20px;
  color: var(--muted);
  line-height: 1.75
}

.sticky-card {
  border: 1px solid rgba(198, 154, 74, .4);
  background: var(--card);
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow-luxe);
  position: sticky;
  top: 100px
}

.sticky-card h3 {
  font-size: 26px;
  color: var(--primary);
  margin-top: 12px
}

.sticky-card .fact-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px
}

.sticky-card .fact-row:last-of-type {
  border-bottom: none
}

.sticky-card .fact-row span:first-child {
  color: var(--muted)
}

.sticky-card .actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.two-panels {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  background: #f0e9db;
  padding: 80px 0
}

@media(min-width:768px) {
  .two-panels {
    grid-template-columns: 1fr 1fr
  }
}

.panel {
  border-radius: 24px;
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--border)
}

.panel.dark {
  background: var(--primary);
  color: var(--primary-fg);
  border: none
}

.panel h3 {
  margin-top: 12px;
  font-size: 26px
}

.panel ul {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 12px
}

.panel li {
  display: flex;
  gap: 12px;
  align-items: start;
  font-size: 15px
}

.panel li .check {
  width: 20px;
  height: 20px;
  background: var(--gold);
  color: var(--primary);
  border-radius: 50%;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px
}

.aftercare-list {
  display: grid;
  gap: 16px;
  margin-top: 0
}

.aftercare-list li {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: 16px;
  display: flex;
  gap: 14px;
  transition: all .3s
}

.aftercare-list li:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-luxe)
}

.areas {
  text-align: center;
  background: #f0e9db;
  padding: 64px 0
}

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px
}

.area-pill {
  padding: 10px 18px;
  border: 1px solid rgba(198, 154, 74, .4);
  background: var(--card);
  border-radius: 99px;
  color: var(--primary);
  font-size: 14px;
  transition: all .3s
}

.area-pill:hover {
  background: var(--gold)
}

/* FAQ */
.faq {
  max-width: 800px;
  margin: 56px auto 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.faq-item {
  border-bottom: 1px solid var(--border)
}

.faq-item:last-child {
  border-bottom: none
}

.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--primary);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px
}

.faq-q:hover,
.faq-item.open .faq-q {
  color: var(--gold)
}

.faq-q .plus {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(198, 154, 74, .5);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s;
  font-size: 18px
}

.faq-item.open .plus {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--primary)
}

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

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

.faq-a p {
  padding: 0 40px 24px 0;
  color: var(--muted);
  line-height: 1.7
}

/* Contact grid */
.contact-cards {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin-top: 0
}

@media(min-width:768px) {
  .contact-cards {
    grid-template-columns: repeat(3, 1fr)
  }
}

.contact-card {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  transition: all .3s;
  display: block;
  color: inherit
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-luxe)
}

.contact-card .ico {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--primary);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px
}

.contact-card h3 {
  margin-top: 16px;
  font-size: 22px;
  color: var(--primary)
}

.contact-card p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px
}

.contact-card .cta {
  margin-top: 20px;
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase
}

/* Contact form */
.contact-form {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 36px;
  border-radius: 24px;
  box-shadow: var(--shadow-luxe)
}

.contact-form h3 {
  font-size: 26px;
  color: var(--primary);
  margin-top: 12px
}

.contact-form p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted)
}

.form-row {
  display: grid;
  gap: 16px;
  margin-top: 20px;
  grid-template-columns: 1fr 1fr
}

@media(max-width:600px) {
  .form-row {
    grid-template-columns: 1fr
  }
}

.form-field {
  display: block
}

.form-field label {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted)
}

.form-field input,
.form-field textarea,
.form-field select {
  margin-top: 8px;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  transition: border .2s, box-shadow .2s;
  color: inherit
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 154, 74, .2)
}

.form-field textarea {
  resize: vertical;
  min-height: 120px
}

.form-msg {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  margin-top: 16px;
  display: none
}

.form-msg.err {
  background: rgba(180, 60, 60, .1);
  color: #a03a3a;
  border: 1px solid rgba(180, 60, 60, .3);
  display: block
}

.form-msg.ok {
  background: rgba(198, 154, 74, .15);
  color: var(--primary);
  border: 1px solid rgba(198, 154, 74, .4);
  display: block
}

.form-actions {
  margin-top: 24px
}

/* Address */
.map-wrap {
  margin-top: 32px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-luxe);
  border: 1px solid var(--border);
  aspect-ratio: 4/3
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none
}

.addr-list {
  margin-top: 32px;
  display: grid;
  gap: 20px
}

.addr-row {
  display: flex;
  gap: 16px
}

.addr-row .ic {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

/* Gallery */
.gallery-grid {
  display: grid;
  gap: 16px;
  margin-top: 64px;
  grid-template-columns: repeat(2, 1fr)
}

@media(min-width:640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(min-width:960px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

.g-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 1;
  transition: transform .3s
}

.g-item.wide {
  grid-column: span 2
}

.g-item.tall {
  grid-row: span 2
}

.g-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s
}

.g-item:hover img {
  transform: scale(1.1)
}

.g-item .cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(31, 58, 52, .9), transparent);
  color: var(--primary-fg);
  font-size: 13px;
  opacity: 0;
  transition: opacity .3s
}

.g-item:hover .cap {
  opacity: 1
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease
}

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

/* Utils */
.py-lg {
  padding: 96px 0
}

.mt-16 {
  margin-top: 64px
}

.mt-8 {
  margin-top: 32px
}

.mt-4 {
  margin-top: 16px
}

/* Mobile nav toggle */
@media(max-width:960px) {

  .nav-links,
  .header .btn-primary,
  .header .btn-gold,
  .topstrip {
    display: none
  }

  .header .header-actions {
    display: none
  }

  .mob-btn {
    display: inline-flex
  }
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center
}