:root {
  --bg: #fbeef0;
  --bg-2: #fff6f4;
  --ink: #2b2026;
  --muted: #6f5c63;
  --pink: #e84a8a;
  --pink-deep: #c92f70;
  --teal: #36b3a8;
  --gold: #e0a93b;
  --line: rgba(120, 70, 90, 0.12);
  --glass: rgba(255, 255, 255, 0.55);
  --glass-strong: rgba(255, 255, 255, 0.78);
  --radius: 22px;
  /* layered, soft 3D shadow */
  --shadow:
    0 2px 6px rgba(120, 50, 80, 0.06),
    0 12px 24px -10px rgba(120, 50, 80, 0.18),
    0 30px 60px -25px rgba(120, 50, 80, 0.32);
  --shadow-lg:
    0 4px 10px rgba(120, 50, 80, 0.08),
    0 24px 50px -18px rgba(120, 50, 80, 0.30),
    0 50px 90px -35px rgba(120, 50, 80, 0.40);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 5rem; }

body {
  font-family: "Jost", system-ui, sans-serif;
  color: var(--muted);
  background: radial-gradient(1200px 700px at 80% -5%, #ffe7ef 0%, transparent 55%),
              radial-gradient(900px 600px at -10% 20%, #eafbf7 0%, transparent 50%),
              var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.05;
  text-wrap: balance;
}
a { color: inherit; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 1.5rem;
  z-index: 100;
  background: var(--pink);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
}
em { font-style: italic; color: var(--pink-deep); }

/* ---------- Floating background depth ---------- */
.bg-orbs { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: float 14s ease-in-out infinite;
}
.orb--1 { width: 380px; height: 380px; top: 8%; right: -60px;
  background: radial-gradient(circle at 30% 30%, #ff9ec4, #f86aa3); }
.orb--2 { width: 300px; height: 300px; top: 48%; left: -80px;
  background: radial-gradient(circle at 30% 30%, #8fe6dd, #36b3a8); animation-delay: -5s; }
.orb--3 { width: 260px; height: 260px; bottom: 6%; right: 12%;
  background: radial-gradient(circle at 30% 30%, #ffd6a5, #ff9ec4); animation-delay: -9s; }
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0) scale(1); }
  50% { transform: translateY(-30px) translateX(15px) scale(1.06); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.95rem 1.9rem;
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  color: #fff;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
  touch-action: manipulation;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s ease, filter 0.22s ease;
  box-shadow: 0 10px 22px -8px rgba(201, 47, 112, 0.6), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn:hover { transform: translateY(-3px); filter: brightness(1.05);
  box-shadow: 0 18px 32px -10px rgba(201, 47, 112, 0.7), inset 0 1px 0 rgba(255,255,255,0.4); }
.btn:active { transform: translateY(-1px) scale(0.97); filter: brightness(0.98);
  box-shadow: 0 6px 14px -6px rgba(201, 47, 112, 0.5), inset 0 1px 0 rgba(255,255,255,0.2); }

.btn--ghost {
  background: var(--glass-strong);
  color: var(--pink-deep);
  border: 1.5px solid rgba(232, 74, 138, 0.35);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--pink); }
.btn--ghost:active { transform: translateY(-1px) scale(0.97); }
.btn--small { padding: 0.62rem 1.35rem; font-size: 0.9rem; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 246, 244, 0.7);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: 1180px; margin: 0 auto; padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo { font-family: "Fraunces", serif; font-size: 1.65rem; font-weight: 700;
  text-decoration: none; color: var(--ink); }
.nav__logo span { color: var(--pink); font-style: italic; margin-left: 0.25rem; }

.nav__links { display: flex; align-items: center; gap: 1.8rem; }
.nav__links a { text-decoration: none; color: var(--ink); transition: color 0.2s ease; }
.nav__links a:hover { color: var(--pink); }
.nav__links .btn--small { color: #fff; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero { padding: clamp(3rem, 8vw, 6rem) 1.5rem clamp(4rem, 9vw, 7rem); }
.hero__grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center;
}
.hero__eyebrow {
  text-transform: uppercase; letter-spacing: 0.25em; font-size: 0.78rem;
  color: var(--pink-deep); margin-bottom: 1.2rem; font-weight: 500;
}
.hero__title { font-size: clamp(2.8rem, 6.5vw, 5rem); margin-bottom: 1.3rem; letter-spacing: -0.01em; }
.hero__sub { font-size: clamp(1rem, 1.6vw, 1.18rem); max-width: 480px; margin-bottom: 2.2rem; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero 3D visual */
.hero__visual { position: relative; perspective: 1000px; transform-style: preserve-3d; }
.hero__card {
  position: relative; aspect-ratio: 4 / 5; border-radius: 28px; overflow: hidden;
  background: linear-gradient(150deg, #ffd9e6, #cfeee9 60%, #ffe3c2);
  box-shadow: var(--shadow-lg); transform-style: preserve-3d;
  border: 1px solid rgba(255, 255, 255, 0.55);
}
/* Glass sheen sweep for a 3D, glossy finish */
.hero__card::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(125deg,
    rgba(255,255,255,0) 38%, rgba(255,255,255,0.38) 50%, rgba(255,255,255,0) 62%);
  background-size: 250% 250%; background-position: 120% 0;
  mix-blend-mode: screen; transform: translateZ(30px);
  animation: sheen 6s ease-in-out infinite;
}
/* Inner depth: soft vignette + top highlight */
.hero__card::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  box-shadow: inset 0 2px 14px rgba(255,255,255,0.45),
              inset 0 -60px 80px -40px rgba(80, 30, 50, 0.45);
  transform: translateZ(20px);
}
@keyframes sheen {
  0%, 70% { background-position: 120% 0; }
  100% { background-position: -40% 0; }
}
.hero__photo {
  width: 100%; height: 100%; object-fit: cover; object-position: center 42%;
  display: block; transform: scale(1.02);
  /* perceived "max resolution": crisp, punchy rendering */
  filter: saturate(1.1) contrast(1.06) brightness(1.02);
}
.hero__placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.5rem; text-align: center;
}
.hero__mono { font-family: "Fraunces", serif; font-style: italic; font-size: 1.6rem; color: var(--pink-deep); }
.hero__ph-label { font-size: 0.8rem; color: var(--muted); opacity: 0.7; }

.hero__chip {
  position: absolute; background: var(--glass-strong);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  padding: 0.6rem 1rem; border-radius: 100px; font-size: 0.85rem; font-weight: 500;
  color: var(--ink); box-shadow: var(--shadow); transform: translateZ(60px);
}
.hero__chip--a { top: 8%; left: -16px; color: var(--pink-deep); }
.hero__chip--b { bottom: 10%; right: -16px; color: var(--gold); }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6rem) 1.5rem; position: relative; }
.section--alt { background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(255,255,255,0.2)); }
.section__head { max-width: 640px; margin: 0 auto 3rem; text-align: center; }
.section__eyebrow {
  text-transform: uppercase; letter-spacing: 0.25em; font-size: 0.75rem;
  color: var(--pink-deep); margin-bottom: 0.8rem; font-weight: 500;
}
.section__title { font-size: clamp(2.1rem, 5vw, 3.2rem); margin-bottom: 0.8rem; }
.section__lead { color: var(--muted); }

/* ---------- Specialties ---------- */
.specialties {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem;
  perspective: 1200px;
}
.spec {
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius); padding: 2.2rem; text-align: center;
  box-shadow: var(--shadow); transform-style: preserve-3d;
}
.spec__icon {
  width: 64px; height: 64px; margin: 0 auto 1.2rem; border-radius: 18px;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--teal));
  box-shadow: 0 12px 22px -8px rgba(201,47,112,0.5); transform: translateZ(40px);
}
.spec__icon svg { width: 30px; height: 30px; }
.spec h3 { font-size: 1.4rem; margin-bottom: 0.6rem; transform: translateZ(25px); }
.spec p { font-size: 0.95rem; transform: translateZ(15px); }

/* ---------- Gallery ---------- */
.gallery {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem;
  perspective: 1400px;
}
.gallery__item {
  position: relative; aspect-ratio: 1 / 1; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(145deg, #ffd9e6, #cfeee9);
  box-shadow: var(--shadow); cursor: pointer; transform-style: preserve-3d;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.4rem; color: var(--pink-deep);
  text-align: center; padding: 1rem;
}
.gallery__placeholder svg { width: 36px; height: 36px; opacity: 0.7; }
.gallery__placeholder span { font-size: 0.8rem; opacity: 0.8; }
.gallery__cta { text-align: center; margin-top: 2.8rem; }
.gallery__fallback { text-align: center; max-width: 560px; margin: 1.5rem auto 0; }
.gallery__fallback a { color: var(--pink-deep); font-weight: 500; text-decoration: underline; }

/* ---------- Reviews ---------- */
.reviews {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; perspective: 1200px;
}
.review {
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius); padding: 2.1rem; box-shadow: var(--shadow);
  transform-style: preserve-3d;
}
.review__stars { color: var(--gold); letter-spacing: 0.15em; margin-bottom: 1rem; transform: translateZ(20px); }
.review blockquote {
  font-family: "Fraunces", serif; font-size: 1.22rem; color: var(--ink);
  font-style: italic; margin-bottom: 1rem; line-height: 1.42; transform: translateZ(15px);
  text-wrap: balance;
}
.review figcaption { font-weight: 500; color: var(--pink-deep); }
.review__photos { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.review__photo { width: 72px; height: 72px; object-fit: cover; border-radius: 6px; }
.reviews__empty { text-align: center; color: var(--muted, #999); grid-column: 1 / -1; padding: 2rem 0; }

/* ---------- About + Contact ---------- */
.about {
  max-width: 1040px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: start;
  perspective: 1200px;
}
.about__text p { margin-bottom: 1.1rem; }
.about__text .section__title, .about__text .section__eyebrow { text-align: left; }
.about__text .section__title { margin-bottom: 1.2rem; }
.about__cta { margin-top: 1.6rem; }
.about__geo-summary {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.contact {
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius); padding: 2.2rem; box-shadow: var(--shadow-lg);
  transform-style: preserve-3d;
}
.contact h3 { font-size: 1.6rem; margin-bottom: 1.2rem; }
.contact__list { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }
.contact__list li { display: flex; flex-direction: column; gap: 0.2rem; }
.contact__label { text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.7rem; color: var(--pink-deep); }
.contact__list a { color: var(--pink-deep); font-weight: 500; }

/* ---------- Footer ---------- */
.footer { text-align: center; padding: 3.5rem 1.5rem; background: var(--ink); color: #f0dfe5; position: relative; }
.footer__logo { font-family: "Fraunces", serif; font-size: 1.6rem; color: #fff; font-weight: 700; }
.footer__logo span { color: var(--pink); font-style: italic; margin-left: 0.25rem; }
.footer p { margin-bottom: 0.4rem; }
.footer__small { font-size: 0.8rem; opacity: 0.55; margin-top: 0.8rem; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; background: rgba(35, 20, 28, 0.92);
  display: none; align-items: center; justify-content: center; z-index: 100; padding: 1.5rem; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 14px; box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 1.2rem; right: 1.6rem; background: none; border: 0;
  color: #fff; font-size: 2.4rem; cursor: pointer; line-height: 1; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--stagger, 0) * 70ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__visual { max-width: 420px; margin: 0 auto; width: 100%; }
  .specialties { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 820px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255, 246, 244, 0.97);
    -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    flex-direction: column; gap: 0; padding: 0.5rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav__links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 0.8rem 0; width: 100%; }
  .nav__links .btn--small { text-align: center; margin-top: 0.5rem; }
}
@media (max-width: 520px) {
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .hero__chip { font-size: 0.75rem; }
  .hero__chip--a { left: 6px; }
  .hero__chip--b { right: 6px; }
}

/* Tilt: transition lives in CSS so JS mousemove only sets transform values.
   Before is-visible: the longer reveal transition handles the entrance.
   After is-visible: override to the snappy tilt speed. */
[data-tilt] { will-change: transform; }
[data-tilt].is-visible {
  transition-property: transform;
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0ms;
}

@media (prefers-reduced-motion: reduce) {
  .orb { animation: none; }
  .hero__card::after { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
  * { scroll-behavior: auto; }
}

/* ============================================================
   GEO additions: at-a-glance, services, why, FAQ
   ============================================================ */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section--compact { padding: clamp(2rem, 5vw, 3rem) 1.5rem; }

/* At a glance */
.glance {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.glance__item {
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  padding: 1.4rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.glance__item dt {
  font-family: "Jost", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--pink-deep);
  margin-bottom: 0.45rem;
}
.glance__item dd {
  font-weight: 500;
  color: var(--ink);
  font-size: 0.98rem;
}
.glance__item a { color: var(--pink-deep); text-decoration: underline; }

/* Services */
.services {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  perspective: 1200px;
}
.service {
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}
.service__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
  flex-wrap: wrap;
}
.service h3 {
  font-size: 1.25rem;
  transform: translateZ(20px);
}
.service__price {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  color: var(--pink-deep);
  font-size: 1.05rem;
  transform: translateZ(15px);
}
.service p {
  font-size: 0.95rem;
  color: var(--muted);
  transform: translateZ(10px);
}

/* Section CTA row */
.section__cta { text-align: center; margin-top: 2.4rem; }

/* Service teasers (landing page) */
.svc-teasers {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  perspective: 1200px;
}
.svc-teaser {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem 1.5rem;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.22s ease, transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.svc-teaser:hover { box-shadow: var(--shadow-lg); }
.svc-teaser__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  box-shadow: 0 8px 18px -6px rgba(201, 47, 112, 0.45);
  margin-bottom: 1.1rem;
  transform: translateZ(30px);
}
.svc-teaser--teal .svc-teaser__icon {
  background: linear-gradient(135deg, var(--teal), #2a9990);
  box-shadow: 0 8px 18px -6px rgba(54, 179, 168, 0.45);
}
.svc-teaser--gold .svc-teaser__icon {
  background: linear-gradient(135deg, var(--gold), #c98f1a);
  box-shadow: 0 8px 18px -6px rgba(224, 169, 59, 0.45);
}
.svc-teaser__icon svg { width: 22px; height: 22px; }
.svc-teaser h3 {
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
  transform: translateZ(20px);
}
.svc-teaser > p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.1rem;
  flex: 1;
  transform: translateZ(10px);
}
.svc-teaser__prices {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
  margin-bottom: 1.1rem;
}
.svc-teaser__prices li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.42rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.84rem;
  color: var(--ink);
}
.svc-teaser__prices li span:last-child {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  color: var(--pink-deep);
  white-space: nowrap;
  font-size: 0.84rem;
}
.svc-teaser--teal .svc-teaser__prices li span:last-child { color: var(--teal); }
.svc-teaser--gold .svc-teaser__prices li span:last-child { color: #a06b0e; }
.svc-teaser__link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--pink-deep);
  margin-top: auto;
  display: block;
}
.svc-teaser--teal .svc-teaser__link { color: var(--teal); }
.svc-teaser--gold .svc-teaser__link { color: #a06b0e; }

@media (max-width: 1000px) {
  .svc-teasers { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .svc-teasers { grid-template-columns: 1fr; }
}

/* ============================================================
   Review submission form
   ============================================================ */
.review-form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.review-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.review-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.review-form__field label,
.review-form__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.review-form__field label span[aria-hidden],
.review-form__label span[aria-hidden] {
  color: var(--pink-deep);
  margin-left: 0.1em;
}
.review-form__optional {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.8rem;
  margin-left: 0.25rem;
}
.review-form__field input[type="text"],
.review-form__field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: "Jost", system-ui, sans-serif;
  font-size: 0.97rem;
  color: var(--ink);
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
  min-height: 44px;
}
.review-form__field input[type="text"]:focus,
.review-form__field textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(232, 74, 138, 0.15);
}
.review-form__field input.is-invalid,
.review-form__field textarea.is-invalid {
  border-color: #d63047;
  box-shadow: 0 0 0 3px rgba(214, 48, 71, 0.12);
}
.review-form__error {
  font-size: 0.78rem;
  color: #d63047;
  min-height: 1em;
}

/* Star rating */
.star-rating {
  display: flex;
  flex-direction: row-reverse;
  gap: 0.2rem;
  width: fit-content;
}
.star-rating input { display: none; }
.star-rating label {
  font-size: 2rem;
  color: rgba(120, 70, 90, 0.2);
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
  line-height: 1;
  padding: 0.1rem;
  letter-spacing: 0;
  font-weight: 400;
}
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: var(--gold);
}
.star-rating label:hover { transform: scale(1.15); }

/* Upload zone */
.upload-zone {
  display: block;
  cursor: pointer;
  border: 2px dashed rgba(232, 74, 138, 0.3);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: border-color 0.2s ease, background 0.2s ease;
  overflow: hidden;
}
.upload-zone:hover,
.upload-zone.is-over {
  border-color: var(--pink);
  background: rgba(232, 74, 138, 0.05);
}
.upload-zone__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1.6rem 1.5rem;
  text-align: center;
  pointer-events: none;
}
.upload-zone__inner svg {
  width: 32px; height: 32px;
  color: var(--pink-deep);
  opacity: 0.7;
}
.upload-zone__text {
  font-weight: 600;
  color: var(--pink-deep);
  font-size: 0.92rem;
}
.upload-zone__sub {
  font-size: 0.78rem;
  color: var(--muted);
}
.upload-zone input[type="file"] {
  position: absolute;
  width: 1px; height: 1px;
  opacity: 0; pointer-events: none;
}

/* Image preview strip */
.upload-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.2rem;
}
.upload-previews__thumb {
  position: relative;
  width: 72px; height: 72px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}
.upload-previews__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.upload-previews__remove {
  position: absolute;
  top: 3px; right: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(35, 20, 28, 0.75);
  border: none;
  cursor: pointer;
  display: grid; place-items: center;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1;
  padding: 0;
}

/* Submit button state */
.review-form__submit {
  align-self: flex-start;
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.review-form__btn-spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.review-form__submit.is-loading .review-form__btn-text { opacity: 0.6; }
.review-form__submit.is-loading .review-form__btn-spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 600px) {
  .review-form__row { grid-template-columns: 1fr; }
  .review-form__submit { align-self: stretch; }
}

/* ============================================================
   Thank-you modal
   ============================================================ */
.thankyou-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.thankyou-modal[hidden] { display: none; }
.thankyou-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(35, 20, 28, 0.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.thankyou-modal__card {
  position: relative;
  z-index: 1;
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  padding: 2.8rem 2.4rem 2.4rem;
  max-width: 440px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: modalIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.thankyou-modal__close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(120, 70, 90, 0.1);
  border: none;
  cursor: pointer;
  display: grid; place-items: center;
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease;
}
.thankyou-modal__close:hover { background: rgba(232, 74, 138, 0.12); color: var(--pink-deep); }
.thankyou-modal__close svg { width: 16px; height: 16px; }

.thankyou-modal__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd6e6, #ffb3cc);
  display: grid; place-items: center;
  margin: 0 auto 1.3rem;
  box-shadow: 0 8px 24px -8px rgba(232, 74, 138, 0.5);
}
.thankyou-modal__icon svg {
  width: 32px; height: 32px;
  color: var(--pink-deep);
  fill: rgba(232, 74, 138, 0.18);
  stroke: var(--pink-deep);
}
.thankyou-modal__title {
  font-size: clamp(1.5rem, 5vw, 1.9rem);
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.thankyou-modal__title span { color: var(--pink-deep); font-style: italic; }
.thankyou-modal__body {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.4rem;
}
.thankyou-modal__divider {
  height: 1px;
  background: var(--line);
  margin: 0 0 1.4rem;
}
.thankyou-modal__follow-label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 0.9rem;
}
.thankyou-modal__instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border-radius: 100px;
  background: linear-gradient(135deg, #f77737, #e1306c, #833ab4);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px -8px rgba(225, 48, 108, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  margin-bottom: 1rem;
}
.thankyou-modal__instagram:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 16px 30px -10px rgba(225, 48, 108, 0.65);
}
.thankyou-modal__instagram svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
}
.thankyou-modal__done {
  display: block;
  width: 100%;
  text-align: center;
}

@media (max-width: 640px) {
  .thankyou-modal__card {
    padding: 2.2rem 1.4rem 1.8rem;
    border-radius: 20px;
  }
  .thankyou-modal__icon { width: 58px; height: 58px; }
  .thankyou-modal__icon svg { width: 26px; height: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .thankyou-modal__card { animation: none; }
  .review-form__btn-spinner { animation: none; }
}

/* Menu category cards */
.menu-cats {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  perspective: 1200px;
}
.menu-cat {
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}
.menu-cat__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}
.menu-cat__icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  box-shadow: 0 8px 18px -6px rgba(201, 47, 112, 0.45);
  transform: translateZ(30px);
}
.menu-cat__icon--teal {
  background: linear-gradient(135deg, var(--teal), #2a9990);
  box-shadow: 0 8px 18px -6px rgba(54, 179, 168, 0.45);
}
.menu-cat__icon--gold {
  background: linear-gradient(135deg, var(--gold), #c98f1a);
  box-shadow: 0 8px 18px -6px rgba(224, 169, 59, 0.45);
}
.menu-cat__icon svg { width: 24px; height: 24px; }
.menu-cat h3 {
  font-size: 1.35rem;
  margin-bottom: 0.2rem;
  transform: translateZ(20px);
}
.menu-cat__sub {
  font-size: 0.85rem;
  color: var(--muted);
  transform: translateZ(10px);
}
.menu-cat__list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.menu-cat__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink);
}
.menu-cat__item:last-child { border-bottom: none; padding-bottom: 0; }
.menu-cat__item--minor {
  color: var(--muted);
  font-size: 0.875rem;
}
.menu-cat__item span:last-child {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  color: var(--pink-deep);
  white-space: nowrap;
  font-size: 0.93rem;
  flex-shrink: 0;
}
.menu-cat__item--minor span:last-child {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 500;
}

/* Why Miria */
.why {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
.why__item {
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
}
.why__item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.why__item p { font-size: 0.98rem; }

/* FAQ */
.faq {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.faq__item {
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow);
}
.faq__item summary {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  color: var(--ink);
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: "Jost", system-ui, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--pink-deep);
  line-height: 1;
}
.faq__item[open] summary::after { content: "−"; }
.faq__item .faq__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.faq__item[open] .faq__body { grid-template-rows: 1fr; }
.faq__item .faq__body > p {
  min-height: 0;
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.98rem;
}
/* fallback for browsers without .faq__body wrapper (static p) */
.faq__item > p {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.98rem;
}
.faq__item a { color: var(--pink-deep); text-decoration: underline; }

/* Responsive for GEO sections */
@media (max-width: 900px) {
  .glance { grid-template-columns: repeat(2, 1fr); }
  .services { grid-template-columns: repeat(2, 1fr); }
  .why { grid-template-columns: 1fr; }
  .menu-cats { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .glance { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  .service__head { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
}

/* ============================================================
   MOBILE-ONLY overrides  ≤ 640px
   ============================================================ */
@media (max-width: 640px) {

  /* 1. Hide hero image — content-first on small screens */
  .hero__visual { display: none; }

  /* 2. Hero takes full width now */
  .hero__grid { grid-template-columns: 1fr; }
  .hero { padding: 2.8rem 1.2rem 2.4rem; }
  .hero__sub { max-width: 100%; }

  /* 3. Tighter section rhythm */
  .section { padding: 2.4rem 1rem; }
  .section--compact { padding: 1.4rem 1rem; }
  .section__head { margin-bottom: 1.6rem; }

  /* 4. Shared glass card tokens for mobile */
  --mobile-radius: 14px;
  --mobile-pad: 1rem 1.1rem;
  --mobile-blur: blur(18px);
  --mobile-bg: rgba(255, 255, 255, 0.72);

  /* 5. Specialty cards */
  .spec {
    border-radius: var(--mobile-radius);
    padding: var(--mobile-pad);
    background: var(--mobile-bg);
    -webkit-backdrop-filter: var(--mobile-blur);
    backdrop-filter: var(--mobile-blur);
  }
  .spec__icon { width: 48px; height: 48px; border-radius: 12px; margin-bottom: 0.8rem; }
  .spec__icon svg { width: 22px; height: 22px; }
  .spec h3 { font-size: 1.1rem; }
  .spec p { font-size: 0.88rem; }

  /* 6. Review cards */
  .review {
    border-radius: var(--mobile-radius);
    padding: var(--mobile-pad);
    background: var(--mobile-bg);
    -webkit-backdrop-filter: var(--mobile-blur);
    backdrop-filter: var(--mobile-blur);
  }
  .review blockquote { font-size: 1rem; }

  /* 7. Why cards */
  .why__item {
    border-radius: var(--mobile-radius);
    padding: var(--mobile-pad);
    background: var(--mobile-bg);
    -webkit-backdrop-filter: var(--mobile-blur);
    backdrop-filter: var(--mobile-blur);
  }
  .why__item h3 { font-size: 1.05rem; }
  .why__item p { font-size: 0.88rem; }

  /* 8. At-a-glance tiles */
  .glance__item {
    border-radius: var(--mobile-radius);
    padding: 0.9rem 1rem;
    background: var(--mobile-bg);
    -webkit-backdrop-filter: var(--mobile-blur);
    backdrop-filter: var(--mobile-blur);
  }

  /* 9. Contact card */
  .contact {
    border-radius: var(--mobile-radius);
    padding: var(--mobile-pad);
    background: var(--mobile-bg);
    -webkit-backdrop-filter: var(--mobile-blur);
    backdrop-filter: var(--mobile-blur);
  }

  /* 10. Service teaser cards (landing) */
  .svc-teaser {
    border-radius: var(--mobile-radius);
    padding: 0.9rem 1rem 1rem;
    background: var(--mobile-bg);
    -webkit-backdrop-filter: var(--mobile-blur);
    backdrop-filter: var(--mobile-blur);
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
  }
  .svc-teaser__icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    margin-bottom: 0;
    margin-right: 0.75rem;
    align-self: flex-start;
  }
  .svc-teaser__icon svg { width: 18px; height: 18px; }
  .svc-teaser h3 {
    font-size: 1.05rem;
    align-self: center;
    margin-bottom: 0;
    flex: 1;
  }
  .svc-teaser > p {
    width: 100%;
    font-size: 0.82rem;
    margin-top: 0.55rem;
    margin-bottom: 0.7rem;
  }
  .svc-teaser__prices { width: 100%; }
  .svc-teaser__prices li { font-size: 0.8rem; padding: 0.35rem 0; }
  .svc-teaser__link { width: 100%; font-size: 0.78rem; margin-top: 0.55rem; }

  /* 11. FAQ items */
  .faq__item {
    border-radius: var(--mobile-radius);
    padding: 1rem 1.1rem;
    background: var(--mobile-bg);
    -webkit-backdrop-filter: var(--mobile-blur);
    backdrop-filter: var(--mobile-blur);
  }
  .faq__item summary { font-size: 0.98rem; }

  /* 12. Menu category cards (menu-cats on landing) */
  .menu-cat {
    border-radius: var(--mobile-radius);
    padding: var(--mobile-pad);
    background: var(--mobile-bg);
    -webkit-backdrop-filter: var(--mobile-blur);
    backdrop-filter: var(--mobile-blur);
  }
  .menu-cat h3 { font-size: 1.1rem; }
}
