/* ============================================
   GLOW STUDIO — Mobile-First Beauty Salon
   ============================================ */

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

:root {
  /* Palette */
  --color-cream:     #FFF8F0;
  --color-blush:     #F2E0D4;
  --color-rose:      #D4A088;
  --color-rose-dark: #B8806A;
  --color-gold:      #C9A96E;
  --color-gold-light:#E8D5AA;
  --color-charcoal:  #2C2C2C;
  --color-text:      #3A3A3A;
  --color-text-light:#6B6B6B;
  --color-white:     #FFFFFF;
  --color-bg:        #FFFBF7;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
  --shadow-glow: 0 0 30px rgba(212,160,136,0.2);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 50%;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s var(--ease);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-charcoal);
}

em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: var(--color-rose-dark);
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-rose);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  margin-bottom: 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
  line-height: 1;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-rose-dark) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(212,160,136,0.4);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212,160,136,0.5);
}
.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background: var(--color-cream);
  color: var(--color-rose-dark);
  border: 1.5px solid var(--color-blush);
}
.btn--secondary:hover {
  background: var(--color-blush);
}

.btn--ghost {
  background: rgba(255,255,255,0.15);
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.25);
}

.btn--full { width: 100%; }
.btn--lg { padding: 18px 36px; font-size: 1rem; }


/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}

.nav--scrolled {
  background: rgba(255,251,247,0.92);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-charcoal);
}
.nav__logo span {
  color: var(--color-rose);
}

/* Hamburger */
.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-charcoal);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}
.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100dvh;
  background: var(--color-bg);
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: right 0.4s var(--ease);
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}
.nav__menu.open { right: 0; }

.nav__menu li a {
  display: block;
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-charcoal);
  border-bottom: 1px solid var(--color-blush);
  transition: color var(--transition);
}
.nav__menu li a:hover { color: var(--color-rose); }

.nav__menu .nav__cta {
  margin-top: 16px;
  background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-rose-dark) 100%);
  color: var(--color-white) !important;
  border-radius: var(--radius-md);
  text-align: center;
  padding: 14px;
  border: none !important;
}


/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-blush) 0%, var(--color-rose) 50%, var(--color-rose-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__placeholder svg {
  width: 64px;
  height: 64px;
  color: rgba(255,255,255,0.3);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(44,44,44,0.3) 0%,
    rgba(44,44,44,0.5) 50%,
    rgba(44,44,44,0.7) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 600px;
}

.hero__label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 16px;
  font-weight: 500;
}

.hero__title {
  font-size: clamp(2.2rem, 8vw, 4.2rem);
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.1;
}
.hero__title em {
  color: var(--color-gold-light);
  font-style: italic;
}

.hero__subtitle {
  color: rgba(255,255,255,0.85);
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: float 2s ease-in-out infinite;
}
.hero__scroll svg {
  width: 28px;
  height: 28px;
  color: rgba(255,255,255,0.5);
}

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


/* ============================================
   TRUST BAR
   ============================================ */
.trust {
  padding: 32px 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-blush);
}

.trust__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust__item svg {
  width: 22px;
  height: 22px;
  color: var(--color-gold);
  flex-shrink: 0;
}
.trust__item strong {
  display: block;
  font-size: 1rem;
  color: var(--color-charcoal);
}
.trust__item span {
  font-size: 0.8rem;
  color: var(--color-text-light);
}


/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 72px 0;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid rgba(242,224,212,0.6);
  transition: all var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
  border-color: var(--color-rose);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-blush) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-rose-dark);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-card__price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-rose-dark);
  margin-bottom: 12px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-rose-dark);
  transition: gap var(--transition);
}
.service-card__link:hover { gap: 10px; }
.service-card__link svg {
  width: 16px;
  height: 16px;
}


/* ============================================
   RESULTS GALLERY
   ============================================ */
.results {
  padding: 72px 0;
  background: var(--color-white);
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.results__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: transform var(--transition);
}
.results__item:hover { transform: scale(1.02); }

/* make first item span 2 cols on mobile for visual interest */
.results__item:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.results__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-blush) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-rose);
}
.results__placeholder svg {
  width: 32px;
  height: 32px;
  opacity: 0.5;
}
.results__placeholder span {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.6;
}

/* When images are added, style them: */
.results__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 24px 0;
}

.cta-banner__inner {
  background: linear-gradient(135deg, var(--color-charcoal) 0%, #1a1a2e 100%);
  border-radius: var(--radius-lg);
  padding: 48px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner__inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--color-white);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  font-size: 0.95rem;
}


/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 72px 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.about__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 420px;
}

.about__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-blush) 0%, var(--color-rose) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.6);
}
.about__placeholder svg {
  width: 48px;
  height: 48px;
}
.about__placeholder span {
  font-size: 0.85rem;
  font-weight: 500;
}

/* When image added: */
.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__text {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.75;
}

.about__credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.about__credential {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-charcoal);
}
.about__credential svg {
  width: 18px;
  height: 18px;
  color: var(--color-gold);
  flex-shrink: 0;
}


/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  padding: 72px 0;
  background: var(--color-white);
  overflow: hidden;
}

.reviews__google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-cream);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-top: 8px;
}

.reviews__carousel {
  overflow: hidden;
  margin: 0 -20px;
  padding: 0 20px;
}

.reviews__track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s var(--ease);
}

.review-card {
  flex: 0 0 calc(100% - 16px);
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--color-blush);
}

.review-card__stars {
  color: var(--color-gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-card__text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 20px;
  font-style: italic;
}

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

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-rose-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.9rem;
}

.review-card__author strong {
  display: block;
  font-size: 0.85rem;
  color: var(--color-charcoal);
}
.review-card__author span {
  font-size: 0.75rem;
  color: var(--color-text-light);
}

.reviews__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.reviews__arrow {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-blush);
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.reviews__arrow:hover {
  border-color: var(--color-rose);
  color: var(--color-rose);
}
.reviews__arrow svg {
  width: 18px;
  height: 18px;
}

.reviews__dots {
  display: flex;
  gap: 8px;
}
.reviews__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-blush);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.reviews__dot.active {
  background: var(--color-rose);
  width: 24px;
  border-radius: 4px;
}


/* ============================================
   BOOKING
   ============================================ */
.booking {
  padding: 72px 0;
}

.booking__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.booking__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.booking__detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.booking__detail svg {
  width: 20px;
  height: 20px;
  color: var(--color-rose);
  flex-shrink: 0;
  margin-top: 2px;
}
.booking__detail strong {
  display: block;
  font-size: 0.85rem;
  color: var(--color-charcoal);
}
.booking__detail span {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.booking__form-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--color-blush);
  box-shadow: var(--shadow-md);
}

.booking__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-charcoal);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--color-blush);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--color-charcoal);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-rose);
  box-shadow: 0 0 0 3px rgba(212,160,136,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-light);
  opacity: 0.6;
}

.form-group select {
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.booking__note {
  font-size: 0.78rem;
  color: var(--color-text-light);
  text-align: center;
  margin-top: -4px;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-charcoal);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 40px;
}

.footer__brand .nav__logo {
  color: var(--color-white);
  margin-bottom: 12px;
  display: inline-block;
}

.footer__brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 12px;
}

.footer__social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.footer__social a:hover {
  border-color: var(--color-rose);
  background: rgba(212,160,136,0.15);
  color: var(--color-rose);
}
.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__links h4 {
  color: var(--color-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__links ul li {
  margin-bottom: 8px;
}
.footer__links ul li a {
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer__links ul li a:hover { color: var(--color-rose); }

.footer__hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 0.78rem;
}


/* ============================================
   WHATSAPP FAB
   ============================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  opacity: 0;
  transform: scale(0.8) translateY(20px);
}
.whatsapp-fab.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

.whatsapp-fab__pulse {
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  border: 2px solid #25D366;
  animation: waPulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}


/* ============================================
   MODAL
   ============================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
}
.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}

.modal__content {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  max-width: 400px;
  width: 100%;
  transform: translateY(20px);
  transition: transform 0.3s var(--ease);
}
.modal.open .modal__content { transform: translateY(0); }

.modal__icon {
  margin-bottom: 16px;
}
.modal__icon svg {
  width: 48px;
  height: 48px;
  color: #25D366;
}

.modal__content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.modal__content p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 24px;
}


/* ============================================
   DESKTOP BREAKPOINTS
   ============================================ */

/* Tablet */
@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
  }

  .trust__items {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }

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

  .results__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .results__item:first-child {
    grid-column: span 1;
    aspect-ratio: 1;
  }

  .review-card {
    flex: 0 0 calc(50% - 8px);
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .container { padding: 0 40px; }

  /* Nav desktop */
  .nav__toggle { display: none; }

  .nav__menu {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    background: none;
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 0;
    box-shadow: none;
  }

  .nav__menu li a {
    padding: 8px 18px;
    font-size: 0.88rem;
    border-bottom: none;
    border-radius: var(--radius-sm);
  }
  .nav__menu li a:hover {
    background: rgba(212,160,136,0.08);
  }

  .nav__menu .nav__cta {
    margin-top: 0;
    margin-left: 8px;
    padding: 10px 22px;
  }

  /* Sections padding */
  .services,
  .results,
  .about,
  .reviews,
  .booking {
    padding: 100px 0;
  }

  .section-header { margin-bottom: 64px; }

  .services__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .results__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .results__item:first-child {
    grid-column: span 2;
    aspect-ratio: 2/1;
  }

  .about__grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
  }
  .about__image {
    max-height: 520px;
  }

  .review-card {
    flex: 0 0 calc(33.333% - 11px);
  }

  .booking__grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: start;
  }
  .booking__form-wrapper {
    padding: 36px 32px;
  }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 64px;
  }

  .whatsapp-fab {
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
  }
}

/* Large Desktop */
@media (min-width: 1280px) {
  .services__grid { gap: 28px; }
  .service-card { padding: 32px 28px; }
}


/* ============================================
   SMOOTH SCROLL FIX FOR SAFARI
   ============================================ */
@supports not (scroll-behavior: smooth) {
  html { scroll-behavior: auto; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
