/* ============================================================
   MASSAGE FAÑABE — Premium Redesign
   Direction: Soft Luxury Wellness · Boutique Spa · Tenerife
   ============================================================ */

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

/* ---- Design Tokens ---- */
:root {
  /* Brand */
  --teal-deep:    #0C3D3D;
  --teal:         #156060;
  --teal-mid:     #1C7272;
  --teal-light:   #EAF3F3;
  --orange:       #D4693A;
  --orange-deep:  #B0521E;
  --gold:         #C09038;
  --gold-deep:    #9A7220;
  --gold-soft:    #E8D090;
  --gold-pale:    #F5EACF;

  /* Premium Neutrals */
  --ivory:        #FBF8F3;
  --ivory-warm:   #F5EEE1;
  --sand:         #E8DECE;
  --sand-mid:     #D8CCBA;
  --charcoal:     #1A1918;
  --charcoal-mid: #4C4946;
  --charcoal-soft:#7C7874;
  --white:        #FFFFFF;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --container:      1240px;
  --content-narrow: 680px;
  --content-reading:58ch;
  --gutter:         36px;

  /* Spacing */
  --space-1:  8px;
  --space-2:  16px;
  --space-3:  24px;
  --space-4:  32px;
  --space-5:  48px;
  --space-6:  64px;
  --space-7:  96px;

  /* Shape */
  --radius:       18px;
  --radius-sm:    12px;
  --radius-pill:  999px;

  /* Borders */
  --border-soft:  1px solid rgba(55,45,35,0.1);
  --border-sand:  1px solid var(--sand);

  /* Shadows */
  --shadow-xs:    0 2px 8px rgba(26,25,24,0.05);
  --shadow-sm:    0 4px 18px rgba(26,25,24,0.07);
  --shadow:       0 8px 32px rgba(26,25,24,0.09);
  --shadow-hover: 0 20px 52px rgba(26,25,24,0.13);
  --shadow-md:    0 14px 42px rgba(26,25,24,0.11);
  --shadow-soft:  0 8px 28px rgba(12,61,61,0.09);

  --transition: all 0.28s ease;
  --section-py: var(--space-7);
  --btn-height: 54px;
}

/* ============================================================
   BASE
   ============================================================ */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.72;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
p  { max-width: var(--content-reading); }

/* ---- Layout ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

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

/* ---- Section header ---- */
.section-header {
  text-align: center;
  margin-bottom: var(--space-6);
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  font-weight: 400;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: var(--space-2);
  line-height: 1.12;
}
.section-sub {
  font-size: 1.04rem;
  color: var(--charcoal-soft);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.82;
  font-weight: 300;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary,
.btn-outline,
.btn-service,
.btn-wa,
.btn-wa-location,
.btn-directions,
.mobile-sticky-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: var(--btn-height);
  padding: 0 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.24s ease, background-color 0.24s ease,
              border-color 0.24s ease, box-shadow 0.24s ease, color 0.24s ease;
  cursor: pointer;
  white-space: nowrap;
}

/* Primary — solid teal */
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border: 2px solid var(--teal);
  box-shadow: 0 10px 28px rgba(21,96,96,0.22);
}
.btn-primary:hover {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(21,96,96,0.28);
}

/* Outline — on dark backgrounds */
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}

/* Large modifier */
.btn-lg {
  min-height: 58px;
  padding: 0 36px;
  font-size: 0.95rem;
}

/* Nav Book button */
.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--white);
  min-height: 44px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(180,82,30,0.2);
}
.btn-nav:hover {
  background: var(--orange-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(180,82,30,0.28);
}

/* Service book button */
.btn-service {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  padding: 0 24px;
  min-height: 46px;
  box-shadow: none;
}
.btn-service:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(21,96,96,0.2);
}

/* WhatsApp green */
.btn-wa {
  background: #25D366;
  color: var(--white);
  border: 2px solid #25D366;
  box-shadow: 0 12px 28px rgba(37,211,102,0.22);
}
.btn-wa:hover {
  background: #1DBE59;
  border-color: #1DBE59;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(37,211,102,0.3);
}

/* Location-specific WA button */
.btn-wa-location {
  background: #25D366;
  color: var(--white);
  border: 2px solid #25D366;
  width: 100%;
  box-shadow: 0 10px 24px rgba(37,211,102,0.18);
}
.btn-wa-location:hover {
  background: #1DBE59;
  border-color: #1DBE59;
  transform: translateY(-2px);
}

/* Directions button */
.btn-directions {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--sand-mid);
  width: 100%;
  text-align: center;
}
.btn-directions:hover {
  border-color: var(--teal);
  background: var(--teal-light);
  transform: translateY(-2px);
}

/* Active states */
.btn-primary:active,
.btn-outline:active,
.btn-service:active,
.btn-wa:active,
.btn-nav:active,
.btn-directions:active,
.btn-wa-location:active,
.mobile-sticky-btn:active { transform: translateY(0); }

/* Focus visible */
.btn-primary:focus-visible,
.btn-outline:focus-visible,
.btn-service:focus-visible,
.btn-wa:focus-visible,
.btn-nav:focus-visible,
.btn-directions:focus-visible,
.btn-wa-location:focus-visible,
.mobile-sticky-btn:focus-visible,
.lang-flag-btn:focus-visible,
.carousel-btn:focus-visible,
.dot:focus-visible {
  outline: 3px solid rgba(192,144,56,0.5);
  outline-offset: 3px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  background: transparent;
  transition: background 0.38s ease, box-shadow 0.38s ease, padding 0.38s ease;
}
.navbar.scrolled {
  background: rgba(251,248,243,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--sand), 0 8px 28px rgba(26,25,24,0.06);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.38s ease, border-color 0.38s ease;
}
.navbar.scrolled .nav-inner {
  background: transparent;
  border-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.logo-link { flex-shrink: 0; }
.logo-img {
  height: 58px;
  width: 58px;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25));
  transition: filter 0.38s ease;
}
.navbar.scrolled .logo-img {
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  color: rgba(255,255,255,0.88);
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.22s ease, background 0.22s ease;
}
.nav-link:hover {
  color: var(--gold-soft);
  background: rgba(255,255,255,0.08);
}
.navbar.scrolled .nav-link {
  color: var(--charcoal-mid);
}
.navbar.scrolled .nav-link:hover {
  color: var(--teal);
  background: var(--teal-light);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 100;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--charcoal); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Language picker */
.lang-flags {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}
.lang-flag-btn {
  background: none;
  border: 2px solid transparent;
  border-radius: 5px;
  width: 34px;
  height: 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s, border-color 0.2s;
  overflow: hidden;
}
.lang-flag-btn .fi {
  width: 28px;
  height: 20px;
  border-radius: 2px;
  display: block;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.lang-flag-btn:hover { opacity: 1; transform: scale(1.1); }
.lang-flag-btn.active {
  opacity: 1;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(192,144,56,0.35);
  transform: scale(1.08);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("msf 5.webp");
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(8,18,18,0.80) 0%,
    rgba(14,30,28,0.62) 38%,
    rgba(20,22,16,0.60) 62%,
    rgba(16,10,6,0.88) 100%
  );
}

/* Warm bottom edge glow */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(192,144,56,0.08) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 172px 48px 132px;
  /* No glass box — open and atmospheric */
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--gold-soft);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
  font-weight: 400;
}
.hero-badge::before,
.hero-badge::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold-soft);
  opacity: 0.5;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6.5vw, 5.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  max-width: 13ch;
  margin: 0 auto var(--space-4);
  text-shadow: 0 6px 32px rgba(0,0,0,0.3);
  letter-spacing: -0.01em;
}

/* Elegant divider under hero title */
.hero-title + .hero-sub::before {
  content: '';
  display: block;
  width: 56px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  margin: 0 auto var(--space-4);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  color: rgba(255,255,255,0.80);
  max-width: 560px;
  margin: 0 auto var(--space-5);
  line-height: 1.88;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: var(--space-4);
}
.hero-btns > a { min-width: 200px; }

/* Override primary button for hero — warm gold */
.hero-btns .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 12px 32px rgba(192,144,56,0.32);
}
.hero-btns .btn-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(192,144,56,0.4);
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.56);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  flex-wrap: wrap;
}
.hero-trust::before,
.hero-trust::after { display: none; }

/* Scroll indicator */
.scroll-down {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bounce 2.2s ease-in-out infinite;
}
.scroll-down svg { width: 26px; height: 26px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* Hero stagger */
.hero-content .reveal                  { transition-delay: 0.08s; }
.hero-content .reveal:nth-child(2)     { transition-delay: 0.22s; }
.hero-content .reveal:nth-child(3)     { transition-delay: 0.38s; }
.hero-content .reveal:nth-child(4)     { transition-delay: 0.52s; }
.hero-content .reveal:nth-child(5)     { transition-delay: 0.65s; }

/* ============================================================
   TAGLINE STRIP
   ============================================================ */
.tagline-strip {
  background: var(--charcoal);
  padding: 52px 0;
  text-align: center;
  position: relative;
}

/* Subtle warm top edge */
.tagline-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192,144,56,0.4), transparent);
}

.tagline-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.18rem, 2.5vw, 1.52rem);
  color: var(--gold-soft);
  margin: 0 auto var(--space-4);
  max-width: 28ch;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
}
.badge {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.badge-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--ivory);
  padding: var(--section-py) 0;
}
.services .section-header h2 { color: var(--charcoal); }

.services-category { margin-bottom: 3.5rem; }
.services-cat-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: 1.8rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
  letter-spacing: 0.01em;
}

.services-grid,
.services-grid-legacy {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: var(--border-sand);
  box-shadow: var(--shadow-xs);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--sand-mid);
}

/* Gold top accent on hover */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-soft) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover::before { opacity: 1; }

/* Icon area — uniform warm gold tint */
.service-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: var(--space-3) var(--space-4) 0;
  background: none !important; /* Override inline styles */
}

.service-icon {
  width: 32px;
  height: 32px;
  color: var(--teal-mid);
  display: block;
  padding: 14px;
  background: var(--gold-pale);
  border-radius: 50%;
  box-sizing: content-box;
}

.icon-svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-body {
  padding: var(--space-3) var(--space-4) var(--space-4);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--space-2);
}
.service-body h3 {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.25;
  margin: 0;
}
.service-body p {
  color: var(--charcoal-soft);
  font-size: 0.91rem;
  line-height: 1.78;
  flex: 1;
  margin: 0;
  font-weight: 300;
}

.service-footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-2);
  margin-top: auto;
  padding-top: var(--space-2);
  border-top: 1px solid var(--sand);
}

.duration-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--charcoal-soft);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  white-space: nowrap;
}
.duration-badge svg {
  width: 13px;
  height: 13px;
  stroke: var(--gold);
  flex-shrink: 0;
}

.service-footer .btn-service { width: 100%; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--ivory-warm);
  padding: var(--section-py) 0;
}
.about .section-header h2 { color: var(--charcoal); }

.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-7);
  align-items: center;
  margin-bottom: var(--space-6);
}

.about-image {
  position: relative;
}

.about-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  display: block;
}

/* Gold frame accent */
.about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 58%;
  height: 58%;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.5;
}

.about-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
}

.about-text .section-label {
  margin-bottom: 0;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.18;
  margin: 0;
}

.about-subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  margin: 0;
  font-weight: 400;
}

.about-body {
  color: var(--charcoal-mid);
  line-height: 1.84;
  font-size: 1.02rem;
  margin: 0;
  max-width: 48ch;
  font-weight: 300;
}

.about-text .btn-primary { margin-top: var(--space-1); }

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--teal-deep);
  border-radius: var(--radius);
  padding: 44px var(--space-5);
  gap: 0;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

/* Warm texture on stats */
.stats-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(192,144,56,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.stat-item {
  text-align: center;
  color: var(--white);
  padding: var(--space-2) var(--space-3);
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.stat-item:last-child { border-right: none; }

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  line-height: 1.5;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  background: var(--sand);
  padding: var(--section-py) 0;
}
.gallery .section-header h2 { color: var(--charcoal); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 4.8;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.38s ease, box-shadow 0.38s ease;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,61,61,0.52) 0%, rgba(12,61,61,0.06) 55%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: inherit;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  z-index: 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:first-child {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}
.gallery-wide {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why {
  background: var(--ivory);
  padding: var(--section-py) 0;
}
.why .section-header h2 { color: var(--charcoal); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 32px 40px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: var(--border-sand);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md, var(--shadow-hover));
  border-color: rgba(192,144,56,0.22);
}

/* Soft warm top corner accent */
.why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.why-card:hover::after { opacity: 1; }

.why-icon {
  margin-bottom: var(--space-4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--gold-pale), var(--sand));
  border-radius: 50%;
  color: var(--teal);
  transition: background 0.3s ease, transform 0.3s ease;
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-pale));
  transform: scale(1.05);
}
.why-icon .icon-svg { width: 28px; height: 28px; }

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.16rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: var(--space-2);
}
.why-card p {
  color: var(--charcoal-soft);
  font-size: 0.91rem;
  line-height: 1.74;
  max-width: 28ch;
  margin: 0 auto;
  font-weight: 300;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: linear-gradient(145deg, #1C1510 0%, #221C14 60%, #1A1410 100%);
  padding: var(--section-py) 0;
  position: relative;
}

/* Subtle warm top border */
.testimonials::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192,144,56,0.4), transparent);
}

.testimonials .section-header h2  { color: var(--white); }
.testimonials .section-sub        { color: rgba(255,255,255,0.55); }
.testimonials .section-label      { color: var(--gold); }
.testimonials .section-label::before,
.testimonials .section-label::after { background: var(--gold); }

.carousel-wrapper {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 72px;
}
.carousel-track-outer {
  overflow: hidden;
  border-radius: var(--radius);
}
.carousel {
  display: flex;
  transition: transform 0.52s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide {
  min-width: 100%;
  padding: 0 6px;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 52px 56px 48px;
  text-align: center;
  position: relative;
}

/* Large decorative quote mark */
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 18px;
  left: 36px;
  font-family: var(--font-heading);
  font-size: 6rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.18;
  pointer-events: none;
}

.stars {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: var(--space-3);
  opacity: 0.9;
}
.testimonial-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.85;
  margin: 0 auto var(--space-4);
  max-width: 44ch;
  font-weight: 400;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}
.testimonial-author strong {
  color: var(--gold-soft);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.testimonial-author span {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.8);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.carousel-btn:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: var(--space-4);
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, width 0.3s;
}
.dot.active {
  background: var(--gold);
  transform: scale(1.2);
  width: 24px;
  border-radius: var(--radius-pill);
}

/* ============================================================
   LOCATION
   ============================================================ */
.location {
  background: var(--ivory-warm);
  padding: var(--section-py) 0;
}
.location .section-header h2 { color: var(--charcoal); }

.location-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(0, 0.88fr);
  gap: var(--space-4);
  align-items: stretch;
}
.map-box {
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  border: 0;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  background: var(--white);
  border: var(--border-sand);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 44px 36px;
}

.info-block {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--sand);
}
.info-block:last-of-type {
  margin-bottom: var(--space-2);
  border-bottom: none;
  padding-bottom: 0;
}

.info-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  background: var(--teal-light);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  margin-top: 2px;
}
.info-icon .icon-svg { width: 20px; height: 20px; }

.info-block strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 700;
}
.info-block p {
  color: var(--charcoal-mid);
  line-height: 1.72;
  font-size: 0.94rem;
  margin: 0;
  font-weight: 300;
}

/* ============================================================
   CONTACT CTA
   ============================================================ */
.contact {
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
}
.contact-bg {
  position: absolute;
  inset: 0;
  background-image: url("ms 3.webp");
  background-size: cover;
  background-position: center;
  filter: brightness(0.2) saturate(1.2);
}
/* Warm overlay on top */
.contact-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,61,61,0.4) 0%, rgba(20,14,6,0.55) 100%);
}

.contact-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 700px;
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}
.contact-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.1;
}
.contact-inner h2 em {
  font-style: italic;
  color: var(--gold-soft);
}
.contact-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 44ch;
  margin: 0;
  line-height: 1.78;
  font-weight: 300;
}
.contact .btn-wa {
  min-width: 264px;
  margin-top: var(--space-1);
}
.contact-note {
  margin-top: 0;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.48);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--teal-deep);
  color: rgba(255,255,255,0.75);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192,144,56,0.35), transparent);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: var(--space-6);
  padding: 68px var(--gutter) 52px;
  align-items: start;
}

.footer-logo {
  height: 62px;
  width: 62px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 18px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25));
}
.footer-brand p {
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  max-width: 26ch;
}

.footer-links-heading,
.footer-contact strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.62);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-soft); }

.footer-contact p {
  color: rgba(255,255,255,0.62);
  font-size: 0.88rem;
  line-height: 1.72;
  margin-bottom: 8px;
}
.footer-contact p:last-of-type { margin-bottom: 0; }

.footer-bottom {
  background: rgba(0,0,0,0.22);
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.5px;
}
.footer-bottom a {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--gold); }

.footer-wa-link {
  display: inline-block;
  margin-top: 14px;
  color: #4ADB7E;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.footer-wa-link:hover { color: #6EE89A; }

.footer-fb-link {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  color: #7EB8F7;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.footer-fb-link:hover { color: #A8D0FF; }

/* Utility: prevent max-width on certain paragraphs */
.hero-trust,
.contact-note,
.info-block p,
.footer-brand p,
.footer-contact p { max-width: none; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.48);
  z-index: 9999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  opacity: 0;
  transform: translateY(18px);
}
.whatsapp-float.visible {
  opacity: 1;
  transform: translateY(0);
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.62);
}

.wa-pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid #25D366;
  animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);    opacity: 0.65; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--charcoal);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  padding: 10px 16px;
  background: rgba(12,31,31,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.28);
}
.mobile-sticky-btn {
  background: #25D366;
  color: var(--white);
  width: 100%;
  border: none;
}
.mobile-sticky-btn:hover { background: #1DBE59; }

/* ============================================================
   RESPONSIVE — Tablet (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-py: 72px;
    --gutter: 24px;
    --space-7: 72px;
  }

  .nav-link { display: none; }

  .services-grid,
  .services-grid-legacy {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-image { order: -1; }
  .about-img { min-height: 400px; }
  .about-text { max-width: none; }

  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-item:first-child,
  .gallery-wide { grid-column: span 2; }

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

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 32px;
  }
  .stat-item { border-right: none; padding: 16px 8px; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }

  .location-inner { grid-template-columns: 1fr; }
  .map-box,
  .map-box iframe { min-height: 440px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }

  .carousel-wrapper { padding: 0 60px; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-py: 58px;
    --gutter: 20px;
    --space-7: 60px;
  }

  /* Navbar */
  .hamburger { display: flex; }
  .nav-menu {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    background: var(--teal-deep);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 50;
    padding: 80px 24px 40px;
  }
  .nav-menu.open { display: flex; }
  .nav-link {
    display: block;
    font-size: 1.25rem;
    padding: 10px 20px;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0;
  }
  .btn-nav { font-size: 1rem; padding: 14px 36px; }
  .lang-flags { order: 10; gap: 2px; }
  .lang-flag-btn { width: 30px; height: 23px; }
  .lang-flag-btn .fi { width: 24px; height: 18px; }

  /* Hero */
  .hero { background-attachment: scroll; }
  .hero-content { padding: 140px 24px 96px; }
  .hero-title { font-size: clamp(2.4rem, 9vw, 3.6rem); max-width: 13ch; }
  .hero-sub { margin-bottom: var(--space-4); max-width: 36ch; }
  .hero-badge { font-size: 0.62rem; gap: 12px; }
  .hero-badge::before,
  .hero-badge::after { width: 24px; }
  .btn-lg { min-height: 54px; padding: 0 26px; font-size: 0.9rem; }

  /* Tagline */
  .tagline-strip { padding: 40px 0; }
  .badge-row { gap: 8px 20px; }

  /* Services */
  .section-header { margin-bottom: 40px; }
  .services-grid,
  .services-grid-legacy { grid-template-columns: 1fr; gap: 20px; }
  .service-body h3 { font-size: 1.15rem; }

  /* About */
  .about-inner { gap: 36px; }
  .about-img { min-height: 360px; aspect-ratio: auto; }
  .about .btn-primary { width: 100%; }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    padding: 36px 20px;
  }
  .stat-item { padding: 14px 8px; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery-item:first-child,
  .gallery-wide { grid-column: span 2; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 18px; }
  .why-card { padding: 34px 28px; flex-direction: row; text-align: left; gap: var(--space-3); align-items: flex-start; }
  .why-icon { flex-shrink: 0; margin-bottom: 0; margin-top: 2px; }
  .why-card p { max-width: none; }

  /* Testimonials */
  .testimonial-card { padding: 44px 28px; }
  .testimonial-card::before { font-size: 4rem; left: 20px; top: 12px; }
  .carousel-btn { width: 44px; height: 44px; }
  .carousel-wrapper { padding: 0 44px; }

  /* Location */
  .location-info { padding: 36px 28px; }

  /* Contact */
  .contact-inner { padding: 56px 32px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: span 1; }
  .footer-links { flex-direction: row; flex-wrap: wrap; gap: 8px 18px; }

  /* WA float up */
  .whatsapp-float { width: 52px; height: 52px; bottom: 86px; right: 16px; }

  /* Mobile sticky on */
  .mobile-sticky-cta { display: block; }
  .footer { padding-bottom: 74px; }
}

/* ============================================================
   RESPONSIVE — Small mobile (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .nav-inner { padding: 10px 12px; border-radius: 24px; }

  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn-lg { width: 100%; max-width: 320px; justify-content: center; }
  .hero-btns > a { min-width: 0; width: 100%; }
  .hero-trust { gap: 8px; font-size: 0.66rem; }

  .stats-row { padding: 28px 16px; }
  .stat-item { padding: 12px 4px; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  .gallery-grid { grid-template-columns: 1fr; gap: 10px; }
  .gallery-item:first-child,
  .gallery-wide { grid-column: span 1; aspect-ratio: 16 / 10; }
  .gallery-item { aspect-ratio: 4 / 3; }

  .why-card { flex-direction: column; text-align: center; align-items: center; }
  .why-card p { max-width: 36ch; }

  .contact-inner { padding: 44px 22px; }
  .contact .btn-wa,
  .btn-wa-location,
  .btn-directions { width: 100%; }

  .carousel-wrapper { padding: 0 32px; }
  .carousel-btn { width: 38px; height: 38px; }
  .testimonial-text { max-width: 36ch; }

  .footer-inner { padding: 52px var(--gutter) 36px; }
  .footer-links { flex-direction: column; }
}
