/* ═══════════════════════════════════════════
   Euphoria Hair & Beauty — Mobile-First CSS
   ═══════════════════════════════════════════ */

:root {
  --purple: #600070;
  --gold: #d4af37;
  --gold-gradient: linear-gradient(135deg, #f4e087, #d4af37, #b8860b, #d4af37, #f4e087);
  --muted: #666;
  --radius: 12px;
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

*, *::before, *::after { box-sizing: border-box }
html, body { height: 100% }
html { scroll-behavior: smooth }

body {
  margin: 0;
  color: #0b0b0b;
  background: linear-gradient(180deg, #fff, #fdfafc);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  font-size: 16px;
  /* clip (not hidden) so position:sticky on header keeps working */
  overflow-x: clip;
}

/* Fade in only on desktop — on mobile, compositing 24 fixed layers on every
   opacity frame causes a GPU stall that flashes the whole page on load. */
@media (min-width: 900px) {
  body { animation: fadeIn 0.8s ease-out }
  @keyframes fadeIn {
    /* No transform — iOS Safari treats transformed elements as containing blocks
       for position:fixed children, breaking the rainbow and sticky header. */
    from { opacity: 0 }
    to   { opacity: 1 }
  }
}

/* ─────────────────────────────────────────────
   Background animation layer
   One fixed wrapper owns z-index: -1. Children
   are position:absolute so they never create
   independent stacking contexts that can bleed
   over page content on mobile browsers.
───────────────────────────────────────────── */

.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.rainbow {
  height: 100%;
  min-height: 100vh;
  width: 0;
  top: 0;
  right: -25vw; /* keep off-screen during animation-delay so no position jump on load */
  position: absolute;
  transform: rotate(10deg);
  transform-origin: top right;
}

.rainbow:nth-child(1) {
  box-shadow: -120px 0 80px 30px rgba(255,255,255,0.3), -40px 0 50px 20px rgba(255,20,147,0.4), 0 0 50px 20px rgba(221,160,221,0.4), 40px 0 50px 20px rgba(232,121,249,0.4), 120px 0 80px 30px rgba(255,255,255,0.3);
  animation: 35s linear infinite slide;
  animation-delay: -45s;
}
.rainbow:nth-child(2) {
  box-shadow: -120px 0 80px 30px rgba(255,255,255,0.3), -40px 0 50px 20px rgba(221,160,221,0.4), 0 0 50px 20px rgba(232,121,249,0.4), 40px 0 50px 20px rgba(255,20,147,0.4), 120px 0 80px 30px rgba(255,255,255,0.3);
  animation: 32s linear infinite slide;
  animation-delay: -40s;
}
.rainbow:nth-child(3) {
  box-shadow: -120px 0 80px 30px rgba(255,255,255,0.3), -40px 0 50px 20px rgba(232,121,249,0.4), 0 0 50px 20px rgba(255,20,147,0.4), 40px 0 50px 20px rgba(221,160,221,0.4), 120px 0 80px 30px rgba(255,255,255,0.3);
  animation: 29s linear infinite slide;
  animation-delay: -35s;
}
.rainbow:nth-child(4) {
  box-shadow: -120px 0 80px 30px rgba(255,255,255,0.3), -40px 0 50px 20px rgba(232,121,249,0.4), 0 0 50px 20px rgba(221,160,221,0.4), 40px 0 50px 20px rgba(255,20,147,0.4), 120px 0 80px 30px rgba(255,255,255,0.3);
  animation: 26s linear infinite slide;
  animation-delay: -30s;
}
.rainbow:nth-child(5) {
  box-shadow: -120px 0 80px 30px rgba(255,255,255,0.3), -40px 0 50px 20px rgba(255,20,147,0.4), 0 0 50px 20px rgba(221,160,221,0.4), 40px 0 50px 20px rgba(232,121,249,0.4), 120px 0 80px 30px rgba(255,255,255,0.3);
  animation: 23s linear infinite slide;
  animation-delay: -25s;
}
.rainbow:nth-child(6) {
  box-shadow: -120px 0 80px 30px rgba(255,255,255,0.3), -40px 0 50px 20px rgba(221,160,221,0.4), 0 0 50px 20px rgba(232,121,249,0.4), 40px 0 50px 20px rgba(255,20,147,0.4), 120px 0 80px 30px rgba(255,255,255,0.3);
  animation: 20s linear infinite slide;
  animation-delay: -20s;
}
.rainbow:nth-child(7) {
  box-shadow: -120px 0 80px 30px rgba(255,255,255,0.3), -40px 0 50px 20px rgba(232,121,249,0.4), 0 0 50px 20px rgba(255,20,147,0.4), 40px 0 50px 20px rgba(221,160,221,0.4), 120px 0 80px 30px rgba(255,255,255,0.3);
  animation: 17s linear infinite slide;
  animation-delay: -15s;
}
.rainbow:nth-child(8) {
  box-shadow: -120px 0 80px 30px rgba(255,255,255,0.3), -40px 0 50px 20px rgba(232,121,249,0.4), 0 0 50px 20px rgba(221,160,221,0.4), 40px 0 50px 20px rgba(255,20,147,0.4), 120px 0 80px 30px rgba(255,255,255,0.3);
  animation: 14s linear infinite slide;
  animation-delay: -10s;
}
.rainbow:nth-child(9) {
  box-shadow: -120px 0 80px 30px rgba(255,255,255,0.3), -40px 0 50px 20px rgba(255,20,147,0.4), 0 0 50px 20px rgba(221,160,221,0.4), 40px 0 50px 20px rgba(232,121,249,0.4), 120px 0 80px 30px rgba(255,255,255,0.3);
  animation: 11s linear infinite slide;
  animation-delay: -5s;
}
.rainbow:nth-child(10) {
  box-shadow: -120px 0 80px 30px rgba(255,255,255,0.3), -40px 0 50px 20px rgba(221,160,221,0.4), 0 0 50px 20px rgba(232,121,249,0.4), 40px 0 50px 20px rgba(255,20,147,0.4), 120px 0 80px 30px rgba(255,255,255,0.3);
  animation: 35s linear infinite slide;
  animation-delay: 0s;
}
.rainbow:nth-child(11) {
  box-shadow: -120px 0 80px 30px rgba(255,255,255,0.3), -40px 0 50px 20px rgba(232,121,249,0.4), 0 0 50px 20px rgba(255,20,147,0.4), 40px 0 50px 20px rgba(221,160,221,0.4), 120px 0 80px 30px rgba(255,255,255,0.3);
  animation: 32s linear infinite slide;
  animation-delay: 5s;
}
.rainbow:nth-child(12) {
  box-shadow: -120px 0 80px 30px rgba(255,255,255,0.3), -40px 0 50px 20px rgba(232,121,249,0.4), 0 0 50px 20px rgba(221,160,221,0.4), 40px 0 50px 20px rgba(255,20,147,0.4), 120px 0 80px 30px rgba(255,255,255,0.3);
  animation: 29s linear infinite slide;
  animation-delay: 10s;
}
.rainbow:nth-child(13) {
  box-shadow: -120px 0 80px 30px rgba(255,255,255,0.3), -40px 0 50px 20px rgba(255,20,147,0.4), 0 0 50px 20px rgba(221,160,221,0.4), 40px 0 50px 20px rgba(232,121,249,0.4), 120px 0 80px 30px rgba(255,255,255,0.3);
  animation: 26s linear infinite slide;
  animation-delay: 15s;
}
.rainbow:nth-child(14) {
  box-shadow: -120px 0 80px 30px rgba(255,255,255,0.3), -40px 0 50px 20px rgba(221,160,221,0.4), 0 0 50px 20px rgba(232,121,249,0.4), 40px 0 50px 20px rgba(255,20,147,0.4), 120px 0 80px 30px rgba(255,255,255,0.3);
  animation: 23s linear infinite slide;
  animation-delay: 20s;
}
.rainbow:nth-child(15) {
  box-shadow: -120px 0 80px 30px rgba(255,255,255,0.3), -40px 0 50px 20px rgba(232,121,249,0.4), 0 0 50px 20px rgba(255,20,147,0.4), 40px 0 50px 20px rgba(221,160,221,0.4), 120px 0 80px 30px rgba(255,255,255,0.3);
  animation: 20s linear infinite slide;
  animation-delay: 25s;
}
.rainbow:nth-child(16) {
  box-shadow: -120px 0 80px 30px rgba(255,255,255,0.3), -40px 0 50px 20px rgba(255,20,147,0.4), 0 0 50px 20px rgba(221,160,221,0.4), 40px 0 50px 20px rgba(232,121,249,0.4), 120px 0 80px 30px rgba(255,255,255,0.3);
  animation: 17s linear infinite slide;
  animation-delay: 30s;
}
.rainbow:nth-child(17) {
  box-shadow: -120px 0 80px 30px rgba(255,255,255,0.3), -40px 0 50px 20px rgba(221,160,221,0.4), 0 0 50px 20px rgba(232,121,249,0.4), 40px 0 50px 20px rgba(255,20,147,0.4), 120px 0 80px 30px rgba(255,255,255,0.3);
  animation: 14s linear infinite slide;
  animation-delay: 35s;
}
.rainbow:nth-child(18) {
  box-shadow: -120px 0 80px 30px rgba(255,255,255,0.3), -40px 0 50px 20px rgba(232,121,249,0.4), 0 0 50px 20px rgba(255,20,147,0.4), 40px 0 50px 20px rgba(221,160,221,0.4), 120px 0 80px 30px rgba(255,255,255,0.3);
  animation: 11s linear infinite slide;
  animation-delay: 40s;
}
.rainbow:nth-child(19) {
  box-shadow: -120px 0 80px 30px rgba(255,255,255,0.3), -40px 0 50px 20px rgba(232,121,249,0.4), 0 0 50px 20px rgba(221,160,221,0.4), 40px 0 50px 20px rgba(255,20,147,0.4), 120px 0 80px 30px rgba(255,255,255,0.3);
  animation: 35s linear infinite slide;
  animation-delay: -35s;
}
.rainbow:nth-child(20) {
  box-shadow: -120px 0 80px 30px rgba(255,255,255,0.3), -40px 0 50px 20px rgba(255,20,147,0.4), 0 0 50px 20px rgba(221,160,221,0.4), 40px 0 50px 20px rgba(232,121,249,0.4), 120px 0 80px 30px rgba(255,255,255,0.3);
  animation: 32s linear infinite slide;
  animation-delay: -30s;
}
.rainbow:nth-child(21) {
  box-shadow: -120px 0 80px 30px rgba(255,255,255,0.3), -40px 0 50px 20px rgba(221,160,221,0.4), 0 0 50px 20px rgba(232,121,249,0.4), 40px 0 50px 20px rgba(255,20,147,0.4), 120px 0 80px 30px rgba(255,255,255,0.3);
  animation: 29s linear infinite slide;
  animation-delay: -25s;
}
.rainbow:nth-child(22) {
  box-shadow: -120px 0 80px 30px rgba(255,255,255,0.3), -40px 0 50px 20px rgba(232,121,249,0.4), 0 0 50px 20px rgba(255,20,147,0.4), 40px 0 50px 20px rgba(221,160,221,0.4), 120px 0 80px 30px rgba(255,255,255,0.3);
  animation: 26s linear infinite slide;
  animation-delay: -20s;
}
.rainbow:nth-child(23) {
  box-shadow: -120px 0 80px 30px rgba(255,255,255,0.3), -40px 0 50px 20px rgba(232,121,249,0.4), 0 0 50px 20px rgba(221,160,221,0.4), 40px 0 50px 20px rgba(255,20,147,0.4), 120px 0 80px 30px rgba(255,255,255,0.3);
  animation: 23s linear infinite slide;
  animation-delay: -15s;
}
.rainbow:nth-child(24) {
  box-shadow: -120px 0 80px 30px rgba(255,255,255,0.3), -40px 0 50px 20px rgba(255,20,147,0.4), 0 0 50px 20px rgba(221,160,221,0.4), 40px 0 50px 20px rgba(232,121,249,0.4), 120px 0 80px 30px rgba(255,255,255,0.3);
  animation: 20s linear infinite slide;
  animation-delay: -10s;
}

@keyframes slide {
  from { right: -25vw }
  to   { right: 125vw }
}

.footer-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0) 70%,
    rgba(255,255,255,0.1) 85%,
    rgba(255,255,255,0.3) 95%,
    rgba(255,255,255,0.6) 100%);
}
.h {
  box-shadow: 0 0 70vh 50vh rgba(255,20,147,0.05);
  width: 100%; height: 0;
  bottom: 0; left: 0;
  position: absolute;
}
.v {
  box-shadow: 0 0 50vw 35vw rgba(232,121,249,0.05);
  width: 0; height: 100%;
  bottom: 0; left: 0;
  position: absolute;
}

/* ─────────────────────────────────────────────
   Layout
───────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ─────────────────────────────────────────────
   Banner
───────────────────────────────────────────── */

.banner {
  background: linear-gradient(90deg, var(--purple), #4a0050);
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: opacity 0.4s ease, max-height 0.4s ease, padding 0.4s ease;
}
.banner.closing {
  opacity: 0;
  max-height: 0;
  padding: 0;
}
.banner::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(244,224,135,0.1), transparent);
  animation: shimmer 3s infinite;
}
@keyframes shimmer { 0% { left: -100% } 50% { left: 100% } 100% { left: 100% } }

.banner-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
}
.banner-text {
  flex: 1;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.5;
}
.banner-text strong { font-weight: 700 }
.banner-close {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0 0.2rem;
  line-height: 1;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   Header — solid on mobile (iOS Safari bug:
   sticky + backdrop-filter = invisible text)
───────────────────────────────────────────── */

.header {
  position: sticky;
  top: 0;
  background: #fff;
  box-shadow: 0 1px 12px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
  gap: 0.5rem;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #0b0b0b;
  flex-shrink: 0;
  min-width: 0;
}
.brand-logo { border-radius: 8px; object-fit: contain; flex-shrink: 0 }
.brand-text {
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ─────────────────────────────────────────────
   Nav — hidden by default (mobile)
   Shown by toggling the .open class via JS
───────────────────────────────────────────── */

.nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  padding: 0.5rem;
  flex-direction: column;
  gap: 0.2rem;
  z-index: 99;
}
.nav.open { display: flex }
.nav a {
  display: block;
  padding: 0.7rem 0.9rem;
  color: #0b0b0b;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.nav a:hover { background: rgba(96,0,112,0.07) }

/* ─────────────────────────────────────────────
   Header controls
───────────────────────────────────────────── */

.header-ctas {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}
.language-selector {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.12);
}
.lang-btn {
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(0,0,0,0.1);
  color: #0b0b0b;
  padding: 0.3rem 0.5rem;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  transition: background 0.2s;
}
.lang-btn:last-child { border-right: 0 }
.lang-btn:hover { background: rgba(0,0,0,0.05) }
.lang-btn.active { background: var(--purple); border-color: var(--purple) }

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  padding: 0.3rem 0.55rem;
  font-size: 1.15rem;
  cursor: pointer;
  color: #0b0b0b;
  transition: background 0.2s;
  line-height: 1;
}
.nav-toggle:hover { background: rgba(0,0,0,0.05) }

/* ─────────────────────────────────────────────
   Buttons
───────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--purple);
  color: #fff;
  border: 2px solid var(--purple);
  box-shadow: 0 4px 14px rgba(96,0,112,0.22);
}
.btn-primary:hover {
  background: #4a0050;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(96,0,112,0.28);
}
.btn-ghost {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.65);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,0.25) }
.btn-light {
  background: #fff;
  color: var(--purple);
  border: 2px solid #fff;
}
.btn-light:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255,255,255,0.2);
}

/* ─────────────────────────────────────────────
   Hero
───────────────────────────────────────────── */

.hero {
  position: relative;
  padding: 3rem 0 2.5rem;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.42), rgba(0,0,0,0.15)),
    url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?q=80&w=1400&auto=format&fit=crop') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.28), rgba(0,0,0,0.04));
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 1.9rem;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}
.lead {
  font-size: 0.975rem;
  line-height: 1.65;
  margin: 0 0 1.25rem;
  color: rgba(255,255,255,0.92);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}
.hero-actions .btn { flex: 1 1 140px }
.location {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.1);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ─────────────────────────────────────────────
   Sections
───────────────────────────────────────────── */

.section { padding: 2.5rem 0 }
.section-alt { background: linear-gradient(180deg, #fff, #faf8f9) }

h2 {
  margin: 0 0 0.6rem;
  font-size: 1.4rem;
  position: relative;
  padding-bottom: 0.5rem;
}
h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 50px; height: 2px;
  background: var(--gold-gradient);
  border-radius: 1px;
}
.muted {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 1.25rem;
}

/* ─────────────────────────────────────────────
   Services — 1 col mobile
───────────────────────────────────────────── */

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  margin-top: 1.25rem;
}
.card {
  background: #fff;
  padding: 1.1rem;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07), 0 1px 5px rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.05);
}
.card-icon { font-size: 1.5rem; margin-bottom: 0.45rem }
.card h3 { margin: 0 0 0.35rem; font-size: 0.95rem }
.card p { margin: 0; font-size: 0.85rem; color: var(--muted); line-height: 1.5 }

/* ─────────────────────────────────────────────
   Transformations
───────────────────────────────────────────── */

.transformations-section {
  background: linear-gradient(135deg, #600070 0%, #800080 100%);
  color: #fff;
  padding: 2.5rem 0;
}
.transformations-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.transformations-text h2 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.transformations-text h2::after { background: rgba(255,255,255,0.45) }
.transformations-text .lead {
  color: rgba(255,255,255,0.92);
  margin-bottom: 1.25rem;
}
.transformations-links { display: flex; flex-wrap: wrap; gap: 0.75rem }
.social-icon { font-size: 1.1rem }

.transformation-icons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}
.big-icon { font-size: 2.4rem; display: block }
.icon-item span:not(.big-icon) {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

/* ─────────────────────────────────────────────
   Prices — 1 col mobile
───────────────────────────────────────────── */

.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  margin-top: 1.25rem;
}
.price-card {
  background: #fff;
  padding: 1.1rem 1.25rem;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.price-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0,0,0,0.08);
}
.price-card h3 {
  font-size: 0.975rem;
  margin: 0 0 0.5rem;
  color: var(--purple);
}
.price-card h4 {
  font-size: 0.82rem;
  margin: 1rem 0 0.4rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.855rem;
  gap: 0.75rem;
  line-height: 1.4;
}
.price-list li:last-child { border-bottom: 0 }
.price-list li > span:first-child { flex: 1 }
.price {
  color: var(--purple);
  font-weight: 700;
  white-space: nowrap;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.empty-card { display: none }
.price-note {
  margin-top: 1.5rem;
  padding: 0.875rem 1rem;
  background: rgba(96,0,112,0.05);
  border-radius: 10px;
  border-left: 4px solid var(--purple);
}
.price-note p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
  font-style: italic;
}

/* ─────────────────────────────────────────────
   About
───────────────────────────────────────────── */

#about p { font-size: 0.95rem; color: var(--muted); line-height: 1.75 }

/* ─────────────────────────────────────────────
   Contact — stacked on mobile
───────────────────────────────────────────── */

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-card {
  background: #fff;
  padding: 1.25rem;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07), 0 1px 5px rgba(0,0,0,0.04);
}
.contact-card h3 { margin: 0 0 0.75rem; font-size: 1.05rem }
.contact-card p { margin: 0 0 0.45rem; font-size: 0.9rem }
.contact-card p:last-child { margin-bottom: 0 }
.contact-card a { color: var(--purple); text-decoration: none }
.contact-card a:hover { text-decoration: underline }
.map-card {
  background: #fff;
  padding: 1.25rem;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07), 0 1px 5px rgba(0,0,0,0.04);
}
.socials { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.25rem }
.social {
  padding: 0.5rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  color: #0b0b0b;
  border: 1px solid rgba(0,0,0,0.09);
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.2s;
}
.social:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.1) }
.social-fb {
  background: linear-gradient(90deg, var(--purple), #4a0050);
  color: #fff;
  border-color: transparent;
}
.social-inst {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  border-color: transparent;
}

/* ─────────────────────────────────────────────
   CTA strip
───────────────────────────────────────────── */

.small-cta {
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding: 1.5rem 0;
}
.small-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.small-cta h3 { margin: 0 0 0.3rem; font-size: 1.05rem }
.small-cta p { margin: 0; font-size: 0.9rem; color: var(--muted) }
.small-cta-inner > div:last-child .btn { width: 100%; text-align: center }

/* ─────────────────────────────────────────────
   Footer
───────────────────────────────────────────── */

.footer {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(0,0,0,0.05);
  font-size: 0.875rem;
  color: var(--muted);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  text-align: center;
}

/* ═══════════════════════════════════════════
   Tablet: 600px+
═══════════════════════════════════════════ */
@media (min-width: 600px) {
  .hero h1 { font-size: 2.2rem }
  .lead { font-size: 1.05rem }
  .hero-actions .btn { flex: none }

  .services-grid { grid-template-columns: 1fr 1fr }

  .price-grid { grid-template-columns: 1fr 1fr }

  .banner-text { font-size: 0.9rem }
}

/* ═══════════════════════════════════════════
   Desktop: 900px+
═══════════════════════════════════════════ */
@media (min-width: 900px) {
  /* Header — enable backdrop-filter now that iOS sticky bug doesn't apply */
  .header {
    background: rgba(255,255,255,0.95);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }

  /* Nav — always visible as horizontal row, override both states */
  .nav,
  .nav.open {
    display: flex;
    flex-direction: row;
    position: static;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    gap: 0.25rem;
  }
  .nav a { padding: 0.4rem 0.65rem; font-size: 0.9rem }
  .nav a:hover { background: rgba(0,0,0,0.04); transform: translateY(-1px) }
  .nav-toggle { display: none }

  /* Hero */
  .hero { padding: 5rem 0 4rem }
  .hero h1 { font-size: 2.8rem }

  /* Sections */
  .section { padding: 3.5rem 0 }
  h2 { font-size: 1.65rem }

  /* Services — 4 columns */
  .services-grid { grid-template-columns: repeat(4, 1fr) }
  .card-icon { font-size: 1.7rem }
  .card h3 { font-size: 1rem }
  .card p { font-size: 0.875rem }

  /* Transformations — side by side */
  .transformations-content {
    flex-direction: row;
    align-items: center;
  }
  .transformations-text { flex: 1 }
  .transformations-text h2 { font-size: 1.9rem }
  .transformation-icons { flex: 0 0 auto; gap: 2rem }
  .big-icon { font-size: 3rem }
  .icon-item span:not(.big-icon) { font-size: 0.9rem }

  /* Prices */
  .price-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) }
  .empty-card { display: block }

  /* Contact — side by side */
  .contact-grid { flex-direction: row }
  .map-card { flex: 0 0 340px }

  /* CTA */
  .small-cta-inner { flex-direction: row; align-items: center; justify-content: space-between }
  .small-cta-inner > div:last-child .btn { width: auto }

  /* Footer */
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left }

  /* Brand text — always visible on desktop */
  .brand-text { font-size: 1rem }
}
