/* ========================================
   Cavalèr Clinic — Premium Stylesheet
   ======================================== */

:root {
  /* Colors — warm taupe palette inspired by Eunoia Clinic */
  --color-bg: #f5f0ea;
  --color-bg-soft: #ede8e1;
  --color-bg-dark: #2c2825;
  --color-bg-dark-soft: #383330;
  --color-surface: #ffffff;
  --color-surface-glass: rgba(255, 255, 255, 0.72);
  --color-text: #2c2825;
  --color-text-soft: #6b635b;
  --color-text-muted: #9e958c;
  --color-text-light: #f5f0ea;
  --color-text-light-soft: rgba(245, 240, 234, 0.7);
  --color-accent: #a18b72;
  --color-accent-dark: #8a7560;
  --color-accent-light: #c4ad94;
  --color-accent-bg: rgba(161, 139, 114, 0.1);
  --color-border: rgba(44, 40, 37, 0.08);
  --color-border-light: rgba(255, 255, 255, 0.12);
  --color-green: #25d366;

  /* Typography */
  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing */
  --container: 1200px;
  --section-pad: clamp(4rem, 8vw, 7rem);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
  --shadow-xl: 0 32px 80px rgba(0,0,0,0.14);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* ========================================
   Reset & Base
   ======================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

img, iframe { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 500; }

.container {
  width: min(calc(100% - 2.5rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: var(--section-pad) 0;
}

.section-light {
  background: var(--color-bg-soft);
}

.section-dark {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}

/* ========================================
   Reveal Animations
   ======================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.15s; }
.reveal:nth-child(6) { transition-delay: 0.25s; }

/* ========================================
   Top Bar
   ======================================== */

.top-bar {
  background: var(--color-bg-dark);
  color: var(--color-text-light-soft);
  font-size: 0.8rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--color-border-light);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-left a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s var(--ease);
}

.top-bar-left a:hover {
  color: var(--color-accent-light);
}

.top-bar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.75rem;
  background: rgba(161, 139, 114, 0.15);
  color: var(--color-accent-light);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

/* ========================================
   Header
   ======================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 234, 0.88);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.3s var(--ease);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-bg-dark);
  color: var(--color-accent-light);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a:not(.nav-cta) {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-soft);
  position: relative;
  transition: color 0.2s var(--ease);
}

.site-nav a:not(.nav-cta):hover {
  color: var(--color-text);
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-accent);
  transition: width 0.3s var(--ease);
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta).is-active::after {
  width: 100%;
}

.site-nav a:not(.nav-cta).is-active {
  color: var(--color-text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.25rem;
  background: var(--color-bg-dark);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(44, 40, 37, 0.25);
}

/* Hamburger */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s var(--ease);
}

.hamburger { top: 50%; margin-top: -1px; }
.hamburger::before { content: ""; top: -6px; left: 0; }
.hamburger::after { content: ""; top: 6px; left: 0; }

.menu-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.menu-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ========================================
   Buttons
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border: none;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(161, 139, 114, 0.3);
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(161, 139, 114, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}

.btn-ghost:hover {
  border-color: var(--color-text);
  background: rgba(44, 40, 37, 0.03);
}

.btn-white {
  background: #fff;
  color: var(--color-bg-dark);
  box-shadow: var(--shadow-md);
}

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

/* ========================================
   Hero
   ======================================== */

.hero {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0 0;
  overflow: hidden;
}

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

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(161, 139, 114, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(161, 139, 114, 0.04) 0%, transparent 40%),
    linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-soft) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 70vh;
}

.hero-eyebrow {
  margin: 0 0 1.25rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.hero h1 em {
  font-style: italic;
  color: var(--color-accent);
}

.hero-sub {
  margin: 1.5rem 0 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-soft);
  max-width: 500px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--color-bg-soft) 0%, var(--color-bg) 100%);
  box-shadow: var(--shadow-xl);
}

.hero-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.25rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.float-card-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.float-card-stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  margin-bottom: 2px;
}

.float-card-label {
  font-size: 0.75rem;
  color: var(--color-text-soft);
  font-weight: 500;
}

/* ========================================
   Scrolling Marquee
   ======================================== */

.marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.25rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  will-change: transform;
}

.marquee-item {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 0 1.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-soft);
}

.marquee-sep {
  flex-shrink: 0;
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.45;
}

/* ========================================
   Section Headers
   ======================================== */

.section-header {
  max-width: 640px;
  margin-bottom: 3.5rem;
}

.section-header-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-accent);
}

.eyebrow-light {
  color: var(--color-accent-light);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-header h2 em {
  font-style: italic;
}

.section-desc {
  margin: 1rem 0 0;
  color: var(--color-text-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

.section-dark .section-desc {
  color: var(--color-text-light-soft);
}

/* ========================================
   Services Grid
   ======================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  transition: all 0.35s var(--ease);
  overflow: hidden;
  text-decoration: none;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(161, 139, 114, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(161, 139, 114, 0.2);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--color-accent-bg);
  color: var(--color-accent);
  margin-bottom: 1.25rem;
  transition: all 0.35s var(--ease);
}

.service-card:hover .service-icon {
  background: var(--color-accent);
  color: #fff;
}

.service-number {
  position: relative;
  z-index: 1;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.service-card p {
  position: relative;
  z-index: 1;
  color: var(--color-text-soft);
  line-height: 1.65;
  margin: 0 0 0.9rem;
}

.service-points {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  color: var(--color-text-soft);
}

.service-points li {
  position: relative;
  padding-left: 1rem;
  line-height: 1.5;
}

.service-points li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
}

.service-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-accent);
  transition: gap 0.2s var(--ease);
}

.service-card:hover .service-link {
  gap: 0.6rem;
}

/* ========================================
   About Section
   ======================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.about-content h2 em {
  font-style: italic;
  color: var(--color-accent-light);
}

.about-content > p {
  color: var(--color-text-light-soft);
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 0 0 2rem;
}

.usp-list {
  display: grid;
  gap: 1.25rem;
}

.usp-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.usp-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(161, 139, 114, 0.15);
  color: var(--color-accent-light);
}

.usp-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 0.15rem;
}

.usp-item span {
  font-size: 0.88rem;
  color: var(--color-text-light-soft);
}

/* About Image */
.about-visual {
  position: relative;
}

.about-image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--color-bg-dark-soft) 0%, var(--color-bg-dark) 100%);
}

.about-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   Steps
   ======================================== */

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step-card {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 2rem 1.5rem;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.step-card p {
  color: var(--color-text-soft);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

.step-divider {
  display: flex;
  align-items: center;
  padding-top: 3.5rem;
  color: var(--color-text-muted);
}

/* ========================================
   Reviews
   ======================================== */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review-card {
  padding: 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0 0 1.5rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent-bg);
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.9rem;
}

.review-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
}

.review-author span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ========================================
   CTA Banner
   ======================================== */

.cta-banner {
  background: var(--color-bg-dark);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--color-text-light);
  line-height: 1.2;
}

.cta-inner p {
  color: var(--color-text-light-soft);
  margin: 0.5rem 0 0;
  font-size: 1rem;
}

/* ========================================
   Contact
   ======================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-accent-bg);
  color: var(--color-accent);
}

.contact-item strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
}

.contact-item p {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

.contact-item a {
  color: var(--color-text-soft);
  transition: color 0.2s var(--ease);
}

.contact-item a:hover {
  color: var(--color-accent);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--color-accent) !important;
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: 0.35rem;
}

.contact-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-link {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  color: var(--color-text-soft);
  transition: all 0.25s var(--ease);
}

.social-link:hover {
  background: var(--color-bg-dark);
  border-color: var(--color-bg-dark);
  color: #fff;
}

.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 400px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.contact-map iframe {
  display: block;
  width: 100%;
  min-height: 400px;
}

/* ========================================
   Footer
   ======================================== */

.site-footer {
  background: var(--color-bg-dark);
  color: var(--color-text-light-soft);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-border-light);
}

.footer-brand {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.footer-brand .brand-mark {
  width: 36px;
  height: 36px;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.footer-brand strong {
  display: block;
  color: var(--color-text-light);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.footer-brand p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links strong {
  color: var(--color-text-light);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--color-text-light-soft);
  transition: color 0.2s var(--ease);
}

.footer-links a:hover {
  color: var(--color-accent-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border-light);
  color: var(--color-text-light-soft);
  transition: all 0.2s var(--ease);
}

.footer-socials a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

/* ========================================
   Floating Action Buttons
   ======================================== */

.booking-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  background: var(--color-bg-dark);
  color: #fff;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  transition: all 0.25s var(--ease);
}

.booking-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  background: var(--color-bg-dark);
}

.whatsapp-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 4.75rem;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: var(--color-green);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.25s var(--ease);
}

.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}

/* ========================================
   Booking Modal
   ======================================== */

.booking-modal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  z-index: 120;
}

.booking-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 14, 12, 0.55);
  backdrop-filter: blur(4px);
}

.booking-modal__panel {
  position: relative;
  width: min(100%, 560px);
  height: 100%;
  margin-left: auto;
  padding: 1.5rem;
  background: rgba(245, 240, 234, 0.96);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  border-left: 1px solid var(--color-border);
  box-shadow: var(--shadow-xl);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}

.booking-modal.is-open .booking-modal__panel {
  transform: translateX(0);
}

.booking-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  min-height: 42px;
  padding: 0.65rem 0.95rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.84);
  color: var(--color-text);
  transition: all 0.2s var(--ease);
}

.booking-modal__close:hover {
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.booking-modal__eyebrow {
  display: inline-block;
  margin-top: 2rem;
}

.booking-modal__panel h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}

.booking-modal__text {
  max-width: 38rem;
  margin: 0 0 1.25rem;
  color: var(--color-text-soft);
}

.booking-modal__frame {
  overflow: hidden;
  min-height: 420px;
  height: calc(100vh - 16rem);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.booking-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.booking-modal__fallback {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}

/* Menu overlay — hidden on desktop, shown via media query */
.menu-overlay {
  display: none;
}

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

@media (max-width: 1024px) {
  .services-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .hero-float-card {
    left: -1rem;
  }
}

@media (max-width: 820px) {
  /* Hamburger menu */
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 105;
  }

  /* Menu overlay backdrop */
  .menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(18, 14, 12, 0.34);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s var(--ease);
    z-index: 100;
  }

  .menu-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  /* Slide-in nav panel */
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(100vw, 360px);
    max-width: 100vw;
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 5rem 1.5rem 2rem;
    gap: 0;
    background: var(--color-surface);
    box-shadow: var(--shadow-xl);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 101;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a {
    padding: 1rem 0;
    font-size: 1.05rem !important;
    border-bottom: 1px solid var(--color-border);
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .site-nav .nav-cta {
    margin-top: 1.5rem;
    text-align: center;
    justify-content: center;
  }

  /* Hero layout */
  .hero-content {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-float-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: 1.5rem;
  }

  @keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-4px); }
  }

  /* Stacked grids */
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .steps-grid {
    flex-direction: column;
    align-items: center;
  }

  .step-divider {
    transform: rotate(90deg);
    padding-top: 0;
    margin: -0.5rem 0;
    height: 40px;
  }

  .step-card {
    max-width: 100%;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  /* Hide top bar on mobile */
  .top-bar {
    display: none;
  }

  .footer-socials a {
    width: 44px;
    height: 44px;
  }

  .footer-links a {
    padding: 0.35rem 0;
  }

  /* Booking modal — full width on tablet/mobile */
  .booking-modal {
    justify-content: stretch;
  }

  .booking-modal__panel {
    width: 100vw;
    max-width: 100vw;
    margin-left: 0;
    border-left: 0;
    border-radius: 0;
    padding-top: 4.5rem;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .booking-modal__close {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 121;
  }

  .booking-modal__frame {
    height: calc(100dvh - 18rem);
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 2rem), var(--container));
  }

  .services-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Hero — compact mobile typography */
  .hero-content {
    gap: 2rem;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 10vw, 2.65rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
  }

  .hero h1 br {
    display: block !important;
  }

  .hero-sub {
    max-width: 100%;
    font-size: 1rem;
  }

  .marquee-item {
    padding: 0 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.11em;
  }

  .marquee-sep {
    width: 5px;
    height: 5px;
  }

  .hero-actions {
    flex-direction: column !important;
    align-items: stretch;
    width: min(100%, 320px);
    margin-inline: auto;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-image-frame {
    aspect-ratio: 5 / 4;
  }

  .hero-visual {
    max-width: 100%;
  }

  .hero-float-card {
    width: min(calc(100% - 2rem), 280px);
    padding: 0.85rem 1rem;
  }

  .hero-float-card > div {
    min-width: 0;
  }

  .float-card-number {
    font-size: 1.8rem;
  }

  .float-card-label {
    font-size: 0.8rem;
  }

  .header-inner {
    height: 60px;
  }

  /* Full-width nav on small screens */
  .site-nav {
    width: 100vw;
    max-width: 100vw;
  }

  /* FABs with safe-area support */
  .booking-fab {
    display: flex;
    left: 1rem;
    right: 1rem;
    width: calc(100vw - 2rem);
    max-width: calc(100vw - 2rem);
    box-sizing: border-box;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    justify-content: center;
    border-radius: var(--radius-lg);
    padding-inline: 1rem;
  }

  .whatsapp-fab {
    bottom: calc(6.25rem + env(safe-area-inset-bottom, 0px));
  }

  .site-footer {
    padding-bottom: calc(9rem + env(safe-area-inset-bottom, 0px));
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .service-card {
    padding: 1.5rem;
  }

  .review-card {
    padding: 1.5rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .about-grid {
    gap: 2rem;
  }

  .contact-map {
    min-height: 300px;
  }

  .contact-map iframe {
    min-height: 300px;
  }

  /* Booking modal — tighter padding */
  .booking-modal__panel {
    padding-inline: 1rem;
  }

  .booking-modal__frame {
    height: calc(100dvh - 19rem);
    min-height: 320px;
  }
}

/* ========================================
   Reduced Motion
   ======================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }



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