/* =============================================================
   Mills Beauty Lashes — styles.css
   Archetype: Dark Feminine Glassmorphism
   v=20260626
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  /* Colors */
  --bg:        #150d18;
  --bg-2:      #1e1222;
  --bg-card:   #231529;
  --glass:     rgba(255, 255, 255, 0.055);
  --glass-2:   rgba(255, 255, 255, 0.09);
  --ink:       #faf2f7;
  --ink-soft:  rgba(250, 242, 247, 0.78);
  --ink-mute:  rgba(250, 242, 247, 0.45);
  --accent:    #e898b2;
  --accent-2:  #c4617e;
  --gold:      #d4a87a;
  --gold-2:    #b8895e;
  --line:      rgba(250, 242, 247, 0.10);
  --line-2:    rgba(250, 242, 247, 0.06);

  /* Gradients */
  --grad-hero: radial-gradient(ellipse at 30% 50%, rgba(196,97,126,0.45) 0%, transparent 55%),
               radial-gradient(ellipse at 75% 20%, rgba(212,168,122,0.3) 0%, transparent 50%),
               radial-gradient(ellipse at 60% 80%, rgba(140,60,140,0.35) 0%, transparent 50%);

  /* Typography */
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* Spacing */
  --container: clamp(1.25rem, 5vw, 6rem);
  --gutter: clamp(1rem, 3vw, 2rem);
  --section-pad: clamp(3rem, 5vw, 5rem);

  /* Easings */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Nav */
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; font-family: var(--serif); line-height: 1.1; letter-spacing: -0.01em; }
::selection { background: var(--accent); color: var(--bg); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem; padding: .6rem 1rem;
  background: var(--accent); color: var(--bg); z-index: 9999;
  border-radius: 8px; font-weight: 600; font-size: .875rem;
  transition: top .2s; z-index: 10000;
}
.skip-link:focus { top: 1rem; }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--container);
}

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

.tag {
  display: inline-block;
  font-size: .75rem;
  font-family: var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* =============================================================
   4. Typography
   ============================================================= */
.display-xl {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.display-lg {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.display-md {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.15;
}

.body-lg { font-size: clamp(1rem, 1.6vw, 1.2rem); line-height: 1.7; color: var(--ink-soft); }
.body-md { font-size: 1rem; line-height: 1.65; color: var(--ink-soft); }

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

/* =============================================================
   5. Components
   ============================================================= */

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: 100px;
  font-size: .9rem; font-weight: 500; letter-spacing: .03em;
  transition: transform .4s var(--ease-soft), box-shadow .4s var(--ease-soft), background .3s;
  cursor: pointer; white-space: nowrap; position: relative; overflow: hidden; isolation: isolate;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  box-shadow: 0 4px 22px rgba(232, 152, 178, 0.3), 0 1px 4px rgba(0,0,0,0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(232, 152, 178, 0.4), 0 6px 20px rgba(0,0,0,0.3);
}
.btn-primary:active { transform: translateY(-1px); transition-duration: .1s; }

.btn-ghost {
  border: 1px solid var(--line-2);
  color: var(--ink);
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  background: rgba(232, 152, 178, 0.08);
  box-shadow: 0 8px 24px rgba(232, 152, 178, 0.15);
}

.btn-wa {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.3);
}
.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

.btn-icon { width: 20px; height: 20px; flex-shrink: 0; }

/* --- Glass Card --- */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 20px;
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform .5s var(--ease-soft), border-color .4s, box-shadow .4s;
}

@supports not (backdrop-filter: blur(16px)) {
  .glass-card { background: rgba(30, 18, 34, 0.9); }
}

.glass-card:hover {
  border-color: rgba(232, 152, 178, 0.25);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(232, 152, 178, 0.15);
}

/* --- Service Card --- */
.service-card {
  --rx: 0deg; --ry: 0deg;
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .55s var(--ease-soft), border-color .4s, box-shadow .4s;
}
.service-card:hover { transition-duration: .2s; }

.service-card .card-img {
  width: 100%; aspect-ratio: 16 / 9; border-radius: 12px;
  margin-bottom: 1.5rem; position: relative; overflow: hidden;
}

.service-card .card-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
}

.service-card .service-thumb {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease-soft);
}
.service-card:hover .service-thumb { transform: scale(1.06); }

.service-card .card-body { padding: 0; }
.service-card .card-name {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 500;
  margin-bottom: .75rem;
}
.service-card .card-desc {
  color: var(--ink-soft);
  font-size: .95rem;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}
.service-card .card-benefits {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex; flex-direction: column; gap: .45rem;
}
.service-card .card-benefits li {
  font-size: .875rem;
  color: var(--ink-soft);
  display: flex; align-items: center; gap: .5rem;
}
.service-card .card-benefits li::before {
  content: "✦";
  color: var(--accent);
  font-size: .65rem;
  flex-shrink: 0;
}
.service-card .card-duration {
  display: flex; align-items: center; gap: .4rem;
  font-size: .8rem; color: var(--ink-mute);
  margin-bottom: 1.5rem;
  letter-spacing: .04em;
}
.service-card .card-footer { display: flex; gap: 1rem; flex-wrap: wrap; }

/* --- Process Step --- */
.process-step {
  display: flex; flex-direction: column; align-items: flex-start; gap: .75rem;
}
.process-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(232, 152, 178, 0.4);
  flex-shrink: 0;
  min-width: 3rem;
  transition: color .3s, -webkit-text-stroke .3s;
}
.process-step:hover .process-num {
  color: var(--accent);
  -webkit-text-stroke: 1px var(--accent);
}
.process-content {}
.process-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: .4rem;
}
.process-desc {
  font-size: .9rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* --- Review Card --- */
.review-card {
  padding: 1.75rem;
  border-radius: 16px;
  background: var(--glass);
  border: 1px solid var(--line);
  transition: transform .4s var(--ease-soft), border-color .3s;
  display: flex; flex-direction: column; gap: 1rem;
}
.review-card:hover { transform: translateY(-4px); border-color: rgba(232,152,178,0.2); }

.review-header { display: flex; align-items: center; gap: .75rem; }
.review-g-icon { margin-left: auto; flex-shrink: 0; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 1rem; color: #fff; flex-shrink: 0;
}
.review-meta { display: flex; flex-direction: column; gap: .1rem; }
.review-name { font-weight: 500; font-size: .9rem; }
.review-date { font-size: .78rem; color: var(--ink-mute); }
.review-stars { display: flex; gap: .15rem; color: #fbbf24; font-size: .9rem; }
.review-google { margin-left: auto; display: flex; align-items: center; gap: .3rem; }
.review-google-badge {
  font-size: .7rem; color: var(--ink-mute); letter-spacing: .06em; text-transform: uppercase;
}
.review-text { font-size: .9rem; color: var(--ink-soft); line-height: 1.65; font-style: italic; }
.review-text::before { content: "\201C"; color: var(--accent); font-size: 1.4rem; line-height: 0; vertical-align: -0.4rem; margin-right: .15rem; }
.review-text::after  { content: "\201D"; color: var(--accent); font-size: 1.4rem; line-height: 0; vertical-align: -0.4rem; margin-left: .15rem; }

/* --- FAQ Accordion --- */
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }

.faq-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.4rem 0; text-align: left; cursor: pointer;
  background: none; border: none; color: var(--ink);
  font-family: var(--serif); font-size: clamp(1rem, 1.8vw, 1.2rem); font-weight: 500;
  transition: color .3s;
}
.faq-trigger:hover { color: var(--accent); }

.faq-icon {
  flex-shrink: 0; width: 22px; height: 22px;
  border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .4s var(--ease-soft), border-color .3s, background .3s;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--ink);
  transition: transform .4s var(--ease-soft), opacity .4s;
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 10px; }

.faq-item.is-open .faq-trigger { color: var(--accent); }
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--accent);
  background: rgba(232, 152, 178, 0.12);
}
.faq-item.is-open .faq-icon::before,
.faq-item.is-open .faq-icon::after { background: var(--accent); }

.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height .5s var(--ease-soft), padding .4s var(--ease-soft);
  padding-bottom: 0;
}
.faq-item.is-open .faq-body { max-height: 400px; padding-bottom: 1.5rem; }
.faq-body p { font-size: .95rem; color: var(--ink-soft); line-height: 1.7; }

/* =============================================================
   6. Navigation
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  height: var(--nav-h); display: flex; align-items: center;
  transition: background .5s var(--ease-soft), backdrop-filter .5s, box-shadow .4s;
}

.nav.is-scrolled {
  background: rgba(21, 13, 24, 0.88);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 1px 0 var(--line);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  width: 100%;
}

.nav-logo {
  display: flex; align-items: center;
  white-space: nowrap;
}
.nav-logo span { color: var(--accent); }
.nav-logo-img {
  height: 54px; width: auto;
  display: block;
}

.nav-links {
  display: none; align-items: center; gap: 2rem; list-style: none;
}
@media (min-width: 960px) { .nav-links { display: flex; } }

/* Nav item with dropdown */
.nav-item { position: relative; list-style: none; }
.nav-item > .nav-link { display: flex; align-items: center; gap: .3rem; }

.nav-dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-6px);
  padding-top: 14px; /* invisible bridge — keeps hover alive across the gap */
  min-width: 230px;
  opacity: 0; pointer-events: none;
  transition: opacity .22s var(--ease-soft), transform .22s var(--ease-soft);
  z-index: 200;
}
.nav-dropdown-inner {
  position: relative;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: 14px; padding: .5rem;
  box-shadow: 0 20px 48px rgba(0,0,0,0.5);
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* small arrow caret — sits at top of .nav-dropdown-inner */
.nav-dropdown-inner::before {
  content: "";
  position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  width: 12px; height: 6px;
  background: var(--bg-card);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border-left: 1px solid var(--line); border-right: 1px solid var(--line);
}
.nav-dropdown-link {
  display: flex; align-items: center; gap: .6rem;
  padding: .65rem 1rem; border-radius: 10px;
  font-size: .85rem; color: var(--ink-soft);
  transition: background .2s, color .2s;
}
.nav-dropdown-link:hover { background: var(--glass-2); color: var(--ink); }
.nav-dropdown-link-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; opacity: .7;
}
/* chevron icon inside nav-link for dropdown trigger */
.nav-chevron {
  display: inline-block; width: 10px; height: 10px;
  transition: transform .25s var(--ease-soft);
  flex-shrink: 0;
}
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

.nav-link {
  font-size: .875rem; font-weight: 400; color: var(--ink-soft);
  position: relative; padding: .25rem 0;
  transition: color .3s;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-soft);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); transform-origin: left; }
.nav-link.active { color: var(--ink); }

.nav-cta { display: flex; align-items: center; gap: .75rem; }

.btn-nav {
  display: none; padding: .55rem 1.25rem; font-size: .825rem;
}
@media (min-width: 720px) { .btn-nav { display: inline-flex; } }

/* Hamburger */
.nav-burger {
  width: 36px; height: 36px; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 5px; cursor: pointer;
}
@media (min-width: 960px) { .nav-burger { display: none; } }

.nav-burger span {
  display: block; width: 22px; height: 1.5px; background: var(--ink);
  border-radius: 2px; transition: transform .4s var(--ease-soft), opacity .3s;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  position: fixed; inset: 0; z-index: 90; background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
  clip-path: inset(0 0 100% 0); transition: clip-path .6s var(--ease-soft);
  pointer-events: none;
}
.nav-mobile[aria-hidden="false"] { clip-path: inset(0); pointer-events: auto; }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; align-items: center; gap: 1.75rem; }
.nav-mobile a { font-family: var(--serif); font-size: 2rem; font-weight: 500; }

/* =============================================================
   7. Hero Section
   ============================================================= */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-mesh {
  position: absolute; inset: 0; z-index: 0;
  background: var(--bg);
}

/* Hero photo background */
.hero-mesh img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: right 20%;
  opacity: 0.82;
}

.hero-mesh::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(21,13,24,0.90) 0%, rgba(21,13,24,0.65) 42%, rgba(21,13,24,0.18) 100%),
    radial-gradient(ellipse 60% 70% at 20% 60%, rgba(196,97,126,0.25) 0%, transparent 65%);
}

/* meshDrift removed — hero now uses real photo background */

.hero-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
}

.hero-content {
  position: relative; z-index: 2;
  padding-block: clamp(4rem, 10vw, 8rem);
}

.hero-eyebrow {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1.25rem;
}
.hero-eyebrow span {
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); font-weight: 500;
}
.hero-eyebrow-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); animation: dotPulse 2.5s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(0.6); }
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 500; line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 16ch;
}

.hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  max-width: 52ch;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}

.hero-badges {
  display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2.5rem;
}
.hero-badge {
  display: flex; align-items: center; gap: .5rem;
  background: var(--glass); border: 1px solid var(--line);
  padding: .45rem .9rem; border-radius: 100px;
  font-size: .78rem; color: var(--ink-mute); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-badge svg { width: 14px; height: 14px; color: var(--accent); }

/* =============================================================
   8. Trust Bar (Marquee)
   ============================================================= */
.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 1rem;
  overflow: hidden; position: relative;
  background: rgba(255,255,255,0.02);
}

.trust-bar::before, .trust-bar::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.trust-bar::before { left: 0;  background: linear-gradient(90deg, var(--bg), transparent); }
.trust-bar::after  { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }

.trust-track {
  display: inline-flex; gap: 3.5rem; white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trust-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .82rem; color: var(--ink-mute); font-weight: 400; letter-spacing: .02em;
}
.trust-item-icon { font-size: 1rem; }

/* =============================================================
   9. Services Section
   ============================================================= */
.services { padding-block: var(--section-pad); }

.section-header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-header-center { text-align: center; }

.services-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Gradient placeholders for service images */
.service-thumb-gradient {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}

.service-thumb-gradient-1 {
  background: linear-gradient(135deg, #2d0e2a 0%, #6b2052 40%, #c96094 70%, #e898b2 100%);
}
.service-thumb-gradient-2 {
  background: linear-gradient(135deg, #0e1f30 0%, #1e4060 40%, #2d7a9a 70%, #5ba8c0 100%);
}

.service-img-label {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: rgba(255,255,255,0.2);
  letter-spacing: -.02em;
  text-align: center;
  padding: 1rem;
  line-height: 1.1;
}

/* =============================================================
   10. About Section
   ============================================================= */
.about { padding-block: var(--section-pad); }

.about-grid {
  display: grid; gap: 3rem; align-items: center;
}
@media (min-width: 960px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.about-photo {
  aspect-ratio: 4 / 5; border-radius: 20px; position: relative; overflow: hidden;
  background: linear-gradient(155deg, #2d0e2a 0%, #8b3569 40%, #e898b2 100%);
  display: flex; align-items: flex-end; padding: 2rem;
}

.about-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(21,13,24,0.7) 0%, transparent 60%);
}

.about-photo-badge {
  position: relative; z-index: 1;
  background: var(--glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  padding: 1rem 1.25rem; border-radius: 14px;
  display: flex; align-items: center; gap: .75rem;
}
.about-photo-badge-num {
  font-family: var(--serif); font-size: 2rem; font-weight: 500;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.about-photo-badge-label { font-size: .82rem; color: var(--ink-soft); line-height: 1.35; }

.about-certifications {
  display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem;
}
.cert-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--glass); border: 1px solid var(--line);
  padding: .4rem .85rem; border-radius: 100px;
  font-size: .78rem; color: var(--ink-soft);
}
.cert-badge::before { content: "✓"; color: var(--accent); font-weight: 600; }

.about-signature {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-style: italic;
  color: var(--accent);
  margin-top: 2rem;
  opacity: 0.8;
}

/* =============================================================
   11. Process Section
   ============================================================= */
.process { padding-block: var(--section-pad); }

.process-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 540px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (min-width: 960px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}

.process-card { padding: 1.25rem; }

.process-card {
  background: var(--glass); border: 1px solid var(--line);
  border-radius: 16px; padding: 1.75rem;
  transition: transform .4s var(--ease-soft), border-color .3s;
}
.process-card:hover { transform: translateY(-4px); border-color: rgba(232,152,178,0.2); }

/* =============================================================
   12. CTA Sections
   ============================================================= */
.cta-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1a0f1e 0%, #2a1535 50%, #1a0f1e 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-section::before {
  content: "";
  position: absolute; inset: -30%;
  background:
    radial-gradient(ellipse 60% 60% at 30% 50%, rgba(196,97,126,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 70% 50%, rgba(212,168,122,0.15) 0%, transparent 60%);
  filter: blur(80px);
  animation: meshDrift 18s ease-in-out infinite reverse;
}

.cta-inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 640px; margin-inline: auto;
}

.cta-inner h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.cta-inner p {
  color: var(--ink-soft);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
}

/* =============================================================
   13. Reviews Section
   ============================================================= */
.reviews { padding-block: var(--section-pad); }

/* Layout: left panel + right carousel */
.reviews-layout {
  display: flex;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 759px) {
  .reviews-layout {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
  /* Panel horizontal compacto en móvil */
  .reviews-panel {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: .25rem 1.25rem;
  }
  .reviews-excellent { width: 100%; }
  .reviews-panel-count { width: 100%; }
  .reviews-panel-google { margin-top: 0; }
  .btn-google-cta { margin-top: .25rem; }

  /* Carrusel ocupa todo el ancho */
  .reviews-carousel-wrap {
    width: 100%;
  }
  /* Ocultar flechas en móvil, el swipe es suficiente */
  .reviews-arrow { display: none; }
}

/* Left rating panel */
.reviews-panel {
  flex-shrink: 0;
  width: 170px;
  display: flex; flex-direction: column; align-items: flex-start; gap: .35rem;
}
.reviews-excellent {
  font-family: var(--sans); font-size: 1rem; font-weight: 700;
  color: var(--ink); letter-spacing: .01em;
}
.reviews-panel-stars {
  color: #fbbf24; font-size: 1.5rem; line-height: 1; letter-spacing: 2px;
}
.reviews-panel-count {
  font-size: .78rem; color: var(--ink-soft); line-height: 1.4;
}
.reviews-panel-google {
  display: flex; align-items: center; gap: .35rem; margin-top: .25rem;
}
.reviews-panel-google-wordmark {
  font-size: 1.1rem; font-weight: 700; letter-spacing: -.5px; line-height: 1;
}
.btn-google-cta {
  display: inline-flex; align-items: center; gap: .4rem;
  background: #4285F4; color: #fff;
  padding: .5rem 1rem; border-radius: 6px;
  font-size: .78rem; font-weight: 500; margin-top: .5rem;
  transition: background .2s, transform .2s;
  text-decoration: none; white-space: nowrap;
}
.btn-google-cta:hover { background: #3367d6; transform: translateY(-1px); }

/* Right carousel */
.reviews-carousel-wrap {
  flex: 1; min-width: 0;
  display: flex; align-items: center; gap: .75rem;
}
.reviews-overflow {
  flex: 1; min-width: 0;
  overflow: hidden;
}
.reviews-track {
  display: flex; gap: 1rem;
  transition: transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* 3 cards visible on desktop */
.reviews-overflow .review-card {
  width: calc((100% - 2rem) / 3);
  min-width: 0;
  flex-shrink: 0;
  flex-grow: 0;
}
@media (max-width: 759px) {
  .reviews-overflow .review-card {
    width: 82%;
  }
}

/* Arrow buttons */
.reviews-arrow {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--glass); border: 1px solid var(--line);
  color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .3s, border-color .3s, color .3s, transform .3s var(--ease-soft);
}
.reviews-arrow:hover {
  background: rgba(232,152,178,.12); border-color: var(--accent);
  color: var(--accent); transform: scale(1.08);
}
.reviews-arrow:disabled { opacity: .3; cursor: default; pointer-events: none; }

/* =============================================================
   14. FAQ Section
   ============================================================= */
.faq-section { padding-block: var(--section-pad); }

.faq-grid {
  display: grid; gap: 4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) {
  .faq-grid { grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start; }
}

.faq-sidebar {}
.faq-sidebar h2 {
  font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500; margin-bottom: 1rem;
}
.faq-sidebar p { color: var(--ink-soft); font-size: .95rem; line-height: 1.7; }

/* =============================================================
   15. Footer
   ============================================================= */
.footer {
  border-top: 1px solid var(--line);
  padding-block: 3rem 2rem;
  background: rgba(255,255,255,0.01);
}

.footer-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; }
}

.footer-brand {}
.footer-logo-img {
  height: 70px; width: auto;
  display: block; margin-bottom: .75rem;
}
.footer-brand-name {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 500; margin-bottom: .6rem;
}
.footer-brand-name span { color: var(--accent); }
.footer-tagline { font-size: .875rem; color: var(--ink-mute); margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .75rem; }
.social-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--glass); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: transform .3s var(--ease-soft), border-color .3s, background .3s;
}
.social-icon:hover { transform: translateY(-3px); border-color: var(--accent); background: rgba(232,152,178,0.1); }

.footer-col h4 {
  font-family: var(--sans); font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { font-size: .875rem; color: var(--ink-soft); transition: color .3s; }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; justify-content: space-between;
  padding-top: 2rem; border-top: 1px solid var(--line);
  font-size: .78rem; color: var(--ink-mute);
}
.footer-credits a { color: var(--ink-mute); text-decoration: underline; text-underline-offset: 3px; }
.footer-credits a:hover { color: var(--accent); }

/* =============================================================
   16. Page hero (subpages)
   ============================================================= */
.page-hero {
  padding-top: calc(var(--nav-h) + clamp(3rem, 8vw, 6rem));
  padding-bottom: clamp(3rem, 8vw, 6rem);
  position: relative; overflow: hidden;
  background: var(--bg);
}

/* Page hero background image */
.page-hero-img {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0.28;
}

.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom, rgba(21,13,24,0.55) 0%, rgba(21,13,24,0.3) 50%, rgba(21,13,24,0.7) 100%),
    radial-gradient(ellipse 60% 70% at 20% 50%, rgba(196,97,126,0.25) 0%, transparent 60%);
}

.page-hero-inner { position: relative; z-index: 2; }
.page-hero .tag { display: block; margin-bottom: .75rem; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
  max-width: 18ch;
}
.page-hero p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 52ch;
  margin-bottom: 2rem;
}

/* =============================================================
   17. Effects & Animations
   ============================================================= */

/* Reveal on scroll */
[data-reveal] {
  opacity: 0; transform: translateY(32px);
  transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal][data-split] { opacity: 1; transform: none; } /* Defensive */

[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }
[data-reveal-delay="5"] { transition-delay: .5s; }

/* Custom cursor */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  opacity: 0; transition: opacity .3s;
  display: none; mix-blend-mode: difference;
}
.cursor.is-ready { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }

.cursor-dot {
  position: fixed; top: 0; left: 0; pointer-events: none; will-change: transform;
  width: 5px; height: 5px; margin: -2.5px;
  background: var(--ink); border-radius: 50%;
}
.cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; will-change: transform;
  width: 30px; height: 30px; margin: -15px;
  border: 1px solid rgba(250,242,247,0.5); border-radius: 50%;
  transition: width .35s var(--ease-out), height .35s, margin .35s var(--ease-out);
}
.cursor.is-hover .cursor-ring { width: 46px; height: 46px; margin: -23px; }
.has-cursor, .has-cursor a, .has-cursor button, .has-cursor [data-cursor] { cursor: none; }

/* Page transition */
@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) {
  animation-duration: .5s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
::view-transition-old(root) { animation-name: vtFadeOut; }
::view-transition-new(root) { animation-name: vtFadeIn; }
@keyframes vtFadeOut { to { opacity: 0; transform: translateY(-8px); } }
@keyframes vtFadeIn  { from { opacity: 0; transform: translateY(8px); } }

/* Spin (used in form) */
@keyframes spin { to { transform: rotate(360deg); } }

/* =============================================================
   18. Scroll progress bar
   ============================================================= */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 200;
  background: rgba(232,152,178,0.1); pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform-origin: 0 0; transform: scaleX(0); transition: transform .06s linear;
}

/* =============================================================
   18b. Before / After Section
   ============================================================= */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 600px) {
  .ba-grid { grid-template-columns: 1fr; }
}

.ba-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--glass);
  border: 1px solid var(--line);
  transition: transform .4s var(--ease-soft), border-color .3s;
}
.ba-card:hover { transform: translateY(-4px); border-color: rgba(232,152,178,.25); }

.ba-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.ba-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  transition: transform .6s var(--ease-soft);
}
.ba-card:hover .ba-img-wrap img { transform: scale(1.04); }

.ba-label {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: .35rem .85rem;
  border-radius: 50px;
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.ba-label--before {
  background: rgba(30,10,30,.65);
  color: var(--ink-soft);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.ba-label--after {
  background: var(--accent);
  color: #fff;
}

.ba-caption {
  padding: 1.25rem 1.5rem 1.5rem;
}
.ba-caption-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: .4rem;
}
.ba-caption-desc {
  font-size: .85rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.ba-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem 2rem;
  margin-top: 2.5rem;
  max-width: 780px;
  margin-inline: auto;
}
@media (max-width: 600px) {
  .ba-proof { grid-template-columns: 1fr; }
}
.ba-proof-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.ba-proof-item svg { flex-shrink: 0; margin-top: .1rem; }

/* =============================================================
   19. Responsive
   ============================================================= */
@media (max-width: 539px) {
  :root { --container: 1.25rem; }
  .hero h1 { font-size: 2.2rem; }
}

@media (min-width: 720px) {
  .about-photo { max-height: 520px; }
}

@media (min-width: 1280px) {
  :root { --container: 5rem; }
}

/* =============================================================
   20. Reduced motion (only for intrusive effects)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  @keyframes meshDrift { 0%, 100% { transform: none; } }
  @keyframes marqueeScroll { 0%, 100% { transform: translateX(0); } }

  @keyframes dotPulse { 0%, 100% { opacity: 1; transform: scale(1); } }
}

/* =============================================================
   21. Floating WhatsApp button
   ============================================================= */
.wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.3);
  transition: transform .35s var(--ease-bounce), box-shadow .3s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(37,211,102,0.6), 0 4px 12px rgba(0,0,0,0.3);
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; flex-shrink: 0; }
@media (min-width: 960px) {
  .wa-float { bottom: 2.25rem; right: 2.25rem; }
}
