:root {
  --purple-950: #0a1628;
  --purple-900: #0f2442;
  --purple-800: #1a3a5c;
  --purple-700: #1e4d7b;
  --purple-600: #2563eb;
  --purple-500: #3b82f6;
  --purple-400: #60a5fa;
  --purple-300: #93c5fd;
  --purple-200: #bfdbfe;
  --purple-100: #dbeafe;
  --purple-50: #eff6ff;
  --accent-cyan: #22d3ee;
  --accent-pink: #a5b4fc;
  --cream: #f0f7ff;
  --text-dark: #0a1628;
  --text-muted: #3d5a80;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 10px 40px -10px rgba(0,0,0,0.2);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--purple-50);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container { width: min(1120px, 92%); margin-inline: auto; }
.site-shell { overflow-x: hidden; background: linear-gradient(180deg, var(--purple-50) 0%, #fff 40%, var(--purple-50) 100%); }

/* Topline */
.topline {
  background: linear-gradient(90deg, var(--purple-800), var(--purple-600));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.55rem 0;
}
.topline__inner { display: flex; align-items: center; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.topline__pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-cyan); box-shadow: 0 0 0 0 rgba(125,211,252,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(125,211,252,0.5); }
  70% { box-shadow: 0 0 0 10px rgba(125,211,252,0); }
  100% { box-shadow: 0 0 0 0 rgba(125,211,252,0); }
}
.topline__divider { width: 1px; height: 14px; background: rgba(255,255,255,0.3); }
.topline a { display: inline-flex; align-items: center; gap: 0.3rem; opacity: 0.95; }
.topline a:hover { opacity: 1; text-decoration: underline; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107,45,139,0.08);
  box-shadow: 0 1px 0 rgba(107,45,139,0.04);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 1rem;
}
.brand-link { display: flex; align-items: center; flex-shrink: 0; }
.brand-lockup { display: flex; align-items: center; gap: 0.75rem; }
.brand-lockup--compact { gap: 0.5rem; }
.brand-lockup img, .brand-mark-img {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover; box-shadow: 0 2px 8px rgba(107,45,139,0.3);
}
.brand-lockup--compact .brand-mark-img { width: 40px; height: 40px; }
.brand-name { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name strong {
  font-size: 1.05rem; font-weight: 800; letter-spacing: 0.04em;
  color: var(--purple-700);
}
.brand-name span {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em;
  color: var(--purple-500); text-transform: uppercase;
}

.main-nav {
  display: flex; align-items: center; gap: 1.5rem;
}
.main-nav a {
  font-size: 0.92rem; font-weight: 500; color: var(--text-muted);
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--purple-600); }
.nav-whatsapp {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-700));
  color: #fff !important; padding: 0.55rem 1rem; border-radius: 999px;
  font-weight: 600 !important; font-size: 0.85rem !important;
  box-shadow: 0 4px 14px rgba(107,45,139,0.3);
}
.nav-whatsapp:hover { filter: brightness(1.08); }
.menu-toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  align-items: center; justify-content: center; color: var(--purple-700);
  background: var(--purple-50);
}

/* Hero */
.hero {
  position: relative; padding: 4rem 0 3rem;
  background: linear-gradient(165deg, var(--purple-900) 0%, var(--purple-700) 45%, var(--purple-600) 100%);
  color: #fff; overflow: hidden;
}
.hero__glow {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; pointer-events: none;
}
.hero__glow--one { width: 400px; height: 400px; background: var(--purple-400); top: -100px; right: -50px; }
.hero__glow--two { width: 300px; height: 300px; background: var(--accent-cyan); bottom: -80px; left: 10%; opacity: 0.25; }
.hero__inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center;
  position: relative; z-index: 1;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--purple-500); margin-bottom: 0.75rem;
}
.eyebrow span {
  background: var(--purple-100); color: var(--purple-700);
  padding: 0.25rem 0.6rem; border-radius: 999px; font-size: 0.72rem;
}
.eyebrow--light { color: rgba(255,255,255,0.75); }
.eyebrow--light span {
  background: rgba(255,255,255,0.15); color: #fff;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem); font-weight: 800; line-height: 1.15;
  letter-spacing: -0.02em; margin-bottom: 1rem;
}
.hero h1 em { font-style: normal; color: var(--accent-cyan); }
.hero__lede {
  font-size: 1.1rem; opacity: 0.9; max-width: 36ch; margin-bottom: 1.75rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2rem; }
.button {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.35rem; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.button:hover { transform: translateY(-2px); }
.button--coral, .button--purple {
  background: linear-gradient(135deg, #c026d3, var(--purple-600));
  color: #fff; box-shadow: 0 8px 24px rgba(192,38,211,0.35);
}
.button--coral:hover, .button--purple:hover { filter: brightness(1.08); }
.button--ghost {
  background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.button--ghost:hover { background: rgba(255,255,255,0.2); }
.button--navy {
  background: var(--purple-800); color: #fff; box-shadow: 0 6px 20px rgba(61,26,92,0.3);
}
.hero__trust {
  display: flex; align-items: center; gap: 0.85rem; font-size: 0.88rem; opacity: 0.95;
}
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 32px; height: 32px; border-radius: 50%; background: var(--purple-400);
  border: 2px solid var(--purple-800); display: grid; place-items: center;
  font-size: 0.65rem; font-weight: 700; margin-left: -8px;
}
.avatar-stack span:first-child { margin-left: 0; }
.stars { color: #fbbf24; display: flex; gap: 2px; margin-bottom: 0.15rem; }
.hero__visual { position: relative; min-height: 340px; }
.hero__image {
  position: absolute; inset: 0; border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)),
              url('/photos/instagram-skincare.jpg') center/cover;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.4);
}
.hero__image-shade {
  position: absolute; inset: 0; border-radius: 24px;
  background: linear-gradient(to top, rgba(30,10,46,0.5), transparent 50%);
}
.hero__floating-card {
  position: absolute; bottom: 24px; left: 16px; right: 16px;
  background: rgba(255,255,255,0.95); color: var(--text-dark);
  border-radius: 16px; padding: 0.9rem 1.1rem;
  display: flex; align-items: center; gap: 0.75rem;
  box-shadow: var(--shadow); backdrop-filter: blur(8px);
}
.floating-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--purple-100); color: var(--purple-600);
  display: grid; place-items: center; flex-shrink: 0;
}
.hero__floating-card strong { display: block; font-size: 0.9rem; }
.hero__floating-card span { font-size: 0.78rem; color: var(--text-muted); }
.hero__seal {
  position: absolute; top: 16px; right: 16px;
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800; text-align: center; line-height: 1.15;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25); border: 3px solid rgba(255,255,255,0.3);
}
.hero__seal span { font-size: 1rem; letter-spacing: 0.05em; }
.hero__rail {
  display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2.5rem;
  padding: 1.25rem 1.5rem; border-radius: 16px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  position: relative; z-index: 1;
}
.hero__rail > div { display: flex; align-items: center; gap: 0.7rem; flex: 1; min-width: 160px; }
.rail-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.12); display: grid; place-items: center;
}
.hero__rail small { display: block; font-size: 0.72rem; opacity: 0.7; }
.hero__rail strong { font-size: 0.92rem; }

/* Sections */
.section { padding: 4.5rem 0; }
.section--cream { background: linear-gradient(180deg, var(--purple-50), #fff); }
.section--white { background: #fff; }
.section-heading { margin-bottom: 2.5rem; }
.section-heading--split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: end;
}
.section-heading--center { text-align: center; max-width: 560px; margin-inline: auto  ; margin-bottom: 2.5rem; }
.section-heading h2, .gallery-heading h2, .services-intro h2, .story__copy h2, .faq-layout h2, .contact-card__copy h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 800; line-height: 1.2;
  letter-spacing: -0.02em; color: var(--purple-900);
}
.section-heading h2 em, .gallery-heading h2 em, .services-intro h2 em, .story__copy h2 em,
.faq-layout h2 em, .contact-card__copy h2 em {
  font-style: normal; color: var(--purple-500);
}
.section-heading p, .gallery-heading p, .services-intro p { color: var(--text-muted); font-size: 1.05rem; }

/* Categories */
.category-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.category-card {
  background: #fff; border-radius: 20px; padding: 1.5rem;
  border: 1px solid rgba(107,45,139,0.08);
  box-shadow: 0 4px 20px -6px rgba(107,45,139,0.12);
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform 0.25s, box-shadow 0.25s;
  animation: fadeUp 0.5s ease both; animation-delay: var(--delay, 0ms);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.category-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px -12px rgba(107,45,139,0.2); }
.category-card__top { display: flex; justify-content: space-between; align-items: flex-start; }
.category-card__icon {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
}
.category-card--aqua .category-card__icon { background: #e0f2fe; color: #0284c7; }
.category-card--coral .category-card__icon { background: #fce7f3; color: #db2777; }
.category-card--lilac .category-card__icon { background: var(--purple-100); color: var(--purple-600); }
.category-card--purple .category-card__icon { background: var(--purple-100); color: var(--purple-600); }
.category-card__arrow { color: var(--purple-300); }
.card-eyebrow { font-size: 0.75rem; font-weight: 600; color: var(--purple-500); text-transform: uppercase; letter-spacing: 0.04em; }
.category-card h3 { font-size: 1.2rem; font-weight: 700; margin: 0.25rem 0 0.4rem; color: var(--purple-900); }
.category-card p { font-size: 0.92rem; color: var(--text-muted); flex: 1; }
.category-card__line { height: 3px; border-radius: 2px; background: linear-gradient(90deg, var(--purple-400), transparent); width: 40%; }
.category-card__link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.85rem; font-weight: 600; color: var(--purple-600);
}
.category-note {
  margin-top: 1.75rem; display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;
  font-size: 0.92rem; color: var(--text-muted);
  padding: 1rem 1.25rem; background: var(--purple-50); border-radius: 12px;
}
.category-note__mark {
  width: 24px; height: 24px; border-radius: 50%; background: var(--purple-600); color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
}
.category-note a { display: inline-flex; align-items: center; gap: 0.25rem; font-weight: 600; color: var(--purple-600); }

/* Gallery */
.gallery-section { padding: 4.5rem 0; background: var(--purple-900); color: #fff; }
.gallery-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.gallery-heading .eyebrow { color: rgba(255,255,255,0.7); }
.gallery-heading .eyebrow span { background: rgba(255,255,255,0.12); color: #fff; }
.gallery-heading h2 { color: #fff; }
.gallery-heading h2 em { color: var(--accent-cyan); }
.gallery-heading p { color: rgba(255,255,255,0.75); }
.gallery-shell {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem; align-items: stretch;
}
.gallery-main-image {
  position: relative; border-radius: 20px; overflow: hidden; min-height: 380px;
  background: var(--purple-800);
}
.gallery-main-image img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.gallery-image-badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,0.95); color: var(--purple-800);
  padding: 0.4rem 0.85rem; border-radius: 999px; font-size: 0.78rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.4rem;
}
.gallery-image-badge span {
  width: 8px; height: 8px; border-radius: 50%; background: var(--purple-500);
}
.gallery-arrows {
  position: absolute; bottom: 16px; right: 16px; display: flex; gap: 0.5rem;
}
.gallery-arrows button {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,0.9); color: var(--purple-800);
  display: grid; place-items: center; transition: background 0.2s;
}
.gallery-arrows button:hover { background: #fff; }
.gallery-copy { display: flex; flex-direction: column; justify-content: center; gap: 0.75rem; }
.gallery-counter {
  display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; font-weight: 600;
  color: rgba(255,255,255,0.6); letter-spacing: 0.05em;
}
.gallery-counter i { width: 24px; height: 1px; background: rgba(255,255,255,0.3); }
.gallery-label {
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--accent-cyan);
}
.gallery-copy h3 { font-size: 1.5rem; font-weight: 700; }
.gallery-copy p { color: rgba(255,255,255,0.75); }
.text-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-weight: 600; color: var(--accent-cyan); font-size: 0.95rem;
}
.text-link:hover { text-decoration: underline; }
.gallery-thumbs { display: flex; gap: 0.6rem; margin-top: 1rem; flex-wrap: wrap; }
.gallery-thumb {
  width: 56px; height: 56px; border-radius: 12px; overflow: hidden;
  border: 2px solid transparent; opacity: 0.6; transition: all 0.2s;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb--active, .gallery-thumb:hover {
  opacity: 1; border-color: var(--accent-cyan);
}

/* Services */
.services-layout {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3rem; align-items: start;
}
.services-list { display: flex; flex-direction: column; gap: 1rem; }
.service-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 1.35rem; background: var(--purple-50); border-radius: 16px;
  border: 1px solid rgba(107,45,139,0.06); transition: background 0.2s, transform 0.2s;
}
.service-item:hover { background: var(--purple-100); transform: translateX(4px); }
.service-number {
  font-size: 0.85rem; font-weight: 800; color: var(--purple-400); letter-spacing: 0.05em;
}
.service-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: #fff; color: var(--purple-600);
  display: grid; place-items: center; box-shadow: 0 2px 8px rgba(107,45,139,0.1);
}
.service-item h3 { font-size: 1.05rem; font-weight: 700; color: var(--purple-900); }
.service-item p { font-size: 0.9rem; color: var(--text-muted); }
.service-arrow { margin-left: auto; color: var(--purple-300); flex-shrink: 0; }

/* Story */
.story {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--purple-900) 0%, var(--purple-700) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.story__inner {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3rem; align-items: center;
}
.story__visual {
  position: relative; aspect-ratio: 1; max-width: 300px; margin-inline: auto;
  display: grid; place-items: center;
}
.story__ring {
  position: absolute; border-radius: 50%; border: 2px solid rgba(255,255,255,0.15);
}
.story__ring--outer { inset: 0; }
.story__ring--inner { inset: 16%; border-color: rgba(255,255,255,0.22); }
.story__center {
  position: relative; z-index: 1; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  padding: 1rem;
}
.story__logo-wrap {
  width: 64px; height: 64px; border-radius: 50%;
  margin-bottom: 0.5rem;
  position: relative;
}
.story__logo {
  width: 64px; height: 64px; border-radius: 50%; object-fit: cover;
  border: 3px solid rgba(255,255,255,0.35);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.story__logo-fallback {
  display: none;
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  color: #fff; place-items: center;
  font-weight: 800; font-size: 1.4rem;
  border: 3px solid rgba(255,255,255,0.35);
  position: absolute; inset: 0;
}
.story__brand {
  font-size: 0.95rem; font-weight: 800; letter-spacing: 0.04em;
  color: #fff; max-width: 12ch; line-height: 1.2;
}
.story__city {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,0.65);
}
.story__since {
  margin-top: 0.4rem; font-size: 0.8rem; color: rgba(255,255,255,0.75);
}
.story__since strong { color: var(--accent-cyan); }
.story__copy .eyebrow { color: rgba(255,255,255,0.7); }
.story__copy h2 { color: #fff; }
.story__copy h2 em { color: var(--accent-cyan); }
.story__copy p { color: rgba(255,255,255,0.85); margin: 1rem 0 1.5rem; font-size: 1.05rem; max-width: 42ch; }
.story__signature {
  display: flex; align-items: center; gap: 1rem;
}
.signature-line {
  width: 40px; height: 2px; background: var(--accent-cyan); border-radius: 1px;
}
.story__signature strong { display: block; font-size: 0.95rem; }
.story__signature small { font-size: 0.8rem; opacity: 0.7; }

/* Reviews */
.reviews-section { background: linear-gradient(180deg, #fff, var(--purple-50)); }
.reviews-grid {
  display: grid; grid-template-columns: 1fr 1fr 0.9fr; gap: 1.25rem;
}
.review-card {
  background: #fff; border-radius: 20px; padding: 1.5rem;
  border: 1px solid rgba(107,45,139,0.08);
  box-shadow: 0 4px 20px -8px rgba(107,45,139,0.12);
}
.review-card__stars { color: #fbbf24; display: flex; gap: 2px; margin-bottom: 0.75rem; }
.review-card blockquote {
  font-size: 1.05rem; font-weight: 500; color: var(--purple-900); margin-bottom: 1.25rem;
  line-height: 1.45;
}
.review-card figcaption {
  display: flex; align-items: center; gap: 0.75rem; font-size: 0.88rem;
}
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 0.75rem;
}
.review-card figcaption strong { display: block; color: var(--purple-900); }
.review-card figcaption small { color: var(--text-muted); }
.review-card figcaption svg { margin-left: auto; color: var(--purple-500); }
.review-score {
  background: linear-gradient(145deg, var(--purple-700), var(--purple-900));
  color: #fff; border-radius: 20px; padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 0.5rem;
}
.review-score__number {
  font-size: 2.5rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1;
}
.review-score a {
  margin-top: 0.5rem; font-size: 0.85rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.3rem;
  color: var(--accent-cyan);
}

/* FAQ */
.faq-section { background: #fff; }
.faq-layout {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3rem; align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border: 1px solid rgba(107,45,139,0.1); border-radius: 14px; overflow: hidden;
  background: var(--purple-50);
}
.faq-item button {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.25rem; text-align: left; font-weight: 600; color: var(--purple-900);
  gap: 1rem;
}
.faq-item button svg { flex-shrink: 0; transition: transform 0.25s; color: var(--purple-500); }
.faq-item--open button svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s;
}
.faq-item--open .faq-answer { max-height: 200px; padding: 0 1.25rem 1.15rem; }
.faq-answer p { color: var(--text-muted); font-size: 0.95rem; }

/* Contact */
.contact-section { padding: 4rem 0 5rem; background: var(--purple-50); }
.contact-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: linear-gradient(135deg, var(--purple-800), var(--purple-900));
  border-radius: 24px; overflow: hidden; color: #fff;
  box-shadow: 0 25px 50px -15px rgba(61,26,92,0.4);
}
.contact-card__copy { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.contact-card__copy .eyebrow { color: rgba(255,255,255,0.7); }
.contact-card__copy h2 { color: #fff; margin-bottom: 0.75rem; }
.contact-card__copy h2 em { color: var(--accent-cyan); }
.contact-card__copy p { opacity: 0.85; margin-bottom: 1.5rem; line-height: 1.5; }
.contact-card__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.contact-card__map {
  position: relative; min-height: 280px;
  background: linear-gradient(145deg, #2d1145, #1e0a2e);
  overflow: hidden;
}
.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-road {
  position: absolute; background: rgba(255,255,255,0.08); border-radius: 4px;
}
.map-road--one { width: 70%; height: 12px; top: 35%; left: 10%; transform: rotate(-8deg); }
.map-road--two { width: 50%; height: 10px; top: 55%; left: 30%; transform: rotate(12deg); }
.map-road--three { width: 40%; height: 8px; top: 70%; left: 15%; transform: rotate(-4deg); }
.map-pin {
  position: absolute; top: 42%; left: 48%;
  color: var(--accent-cyan); filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
  transform: translate(-50%, -100%);
}
.map-label {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(255,255,255,0.95); color: var(--text-dark);
  padding: 0.75rem 1rem; border-radius: 12px;
  display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem;
}
.map-label__dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--purple-500);
  box-shadow: 0 0 0 3px rgba(107,45,139,0.2);
}
.map-label strong { display: block; }
.map-label small { color: var(--text-muted); }
.map-compass {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.1); display: grid; place-items: center;
  font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.7);
}

/* Footer */
.site-footer {
  background: var(--purple-950); color: rgba(255,255,255,0.8); padding: 3rem 0 1.5rem;
}
.footer-top {
  display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  margin-bottom: 2rem; padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-top .brand-name strong { color: #fff; }
.footer-top .brand-name span { color: var(--purple-300); }
.footer-top p { margin-top: 0.75rem; font-size: 0.9rem; opacity: 0.75; max-width: 28ch; }
.footer-links { display: flex; gap: 3rem; }
.footer-links > div { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links span {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--purple-300); margin-bottom: 0.25rem;
}
.footer-links a { font-size: 0.9rem; opacity: 0.85; display: inline-flex; align-items: center; gap: 0.35rem; }
.footer-links a:hover { opacity: 1; color: var(--accent-cyan); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
  font-size: 0.8rem; opacity: 0.6;
}
.footer-heart { color: var(--accent-pink); }

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed; bottom: 24px; right: 24px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.floating-whatsapp:hover { transform: scale(1.08); box-shadow: 0 12px 32px rgba(37,211,102,0.55); }

/* Responsive */
@media (max-width: 900px) {
  .hero__inner, .section-heading--split, .gallery-heading, .gallery-shell,
  .services-layout, .story__inner, .reviews-grid, .faq-layout, .contact-card {
    grid-template-columns: 1fr;
  }
  .category-grid { grid-template-columns: 1fr; }
  .hero__visual { min-height: 280px; order: -1; }
  .main-nav {
    position: fixed; inset: 72px 0 auto 0; background: #fff;
    flex-direction: column; padding: 1.5rem; gap: 1rem;
    border-bottom: 1px solid rgba(107,45,139,0.1);
    transform: translateY(-120%); opacity: 0; pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  }
  .main-nav--open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .menu-toggle { display: grid; }
  .nav-whatsapp { width: 100%; justify-content: center; }
  .story__visual { max-width: 260px; }
  .footer-links { gap: 2rem; }
}
@media (max-width: 560px) {
  .hero { padding: 2.5rem 0 2rem; }
  .hero__actions { flex-direction: column; }
  .button { width: 100%; justify-content: center; }
  .hero__rail { flex-direction: column; gap: 1rem; }
  .contact-card__copy { padding: 1.75rem; }
}

/* Extra: logo fallback */
.logo-fallback {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  color: #fff; display: none; place-items: center;
  font-weight: 800; font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(107,45,139,0.3);
  flex-shrink: 0;
}
.logo-fallback[style*="grid"], .logo-fallback[style*="flex"] {
  display: grid !important;
}
.brand-lockup--compact .logo-fallback { width: 40px; height: 40px; font-size: 0.95rem; }

/* Hero image fallback when no photo */
.hero__image {
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)),
              url('assets/instagram-skincare.jpg') center/cover;
}
