html {
  scroll-behavior: smooth;
}

:root {
  --bg: #ffe5ff;
  --bg2: #fbe1f1;

  --surface: rgba(255, 255, 255, 0.66);
  --surface2: rgba(255, 255, 255, 0.82);

  --text: #160915;
  --muted: rgba(22, 9, 21, 0.68);
  --muted2: rgba(22, 9, 21, 0.52);

  --line: rgba(22, 9, 21, 0.14);

  --gold: #bd8a38;
  --gold2: #ca9b57;

  --shadow: 0 18px 60px rgba(22, 9, 21, 0.18);
  --radius: 18px;
  --container: 1100px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 520px at 15% 10%, rgba(189, 138, 56, 0.14), transparent 60%),
    radial-gradient(900px 520px at 85% 15%, rgba(202, 155, 87, 0.12), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

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

.container {
  width: min(92vw, var(--container));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(22, 9, 21, 0.12);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 22px rgba(22, 9, 21, 0.12);
  display: grid;
  place-items: center;
}

.logo-mark {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand__name {
  font-family: Cinzel, serif;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.brand__tag {
  font-size: 12px;
  color: var(--muted2);
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 14px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.hero {
  padding: 44px 0 18px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
}

.logo-hero {
  width: min(360px, 85%);
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(22, 9, 21, 0.1);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.35);
  display: block;
  margin-bottom: 16px;
}

h1 {
  margin: 0 0 10px;
  font-family: Cinzel, serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0.4px;
}

.lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 62ch;
}

.cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.06s ease, background 0.2s ease, border 0.2s ease;
}

.btn:active { transform: scale(0.99); }

.btn--primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #160915;
  box-shadow: 0 14px 34px rgba(189, 138, 56, 0.18);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.62);
  color: var(--text);
}

.btn:hover { text-decoration: none; }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.82); }

.micro {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.pill {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(22, 9, 21, 0.14);
  color: var(--muted);
  font-size: 12px;
  background: rgba(255, 255, 255, 0.62);
}

.hero__card {
  border: 1px solid rgba(22, 9, 21, 0.14);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
}

.card__title {
  font-family: Cinzel, serif;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 12px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ph {
  border-radius: 14px;
  border: 1px solid rgba(189, 138, 56, 0.25);
  background: rgba(255, 255, 255, 0.72);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: grid;
  place-items: center;
  font-size: 12px;
  color: var(--muted);
}

.ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card__note {
  margin-top: 12px;
  color: var(--muted2);
  font-size: 12px;
  line-height: 1.55;
}

.section {
  padding: 44px 0;
}

.section--alt {
  background: rgba(255, 255, 255, 0.38);
  border-top: 1px solid rgba(22, 9, 21, 0.12);
  border-bottom: 1px solid rgba(22, 9, 21, 0.12);
}

h2 {
  margin: 0 0 8px;
  font-family: Cinzel, serif;
  font-size: 26px;
  letter-spacing: 0.3px;
}

.sub {
  margin: 0 0 18px;
  color: var(--muted2);
  line-height: 1.7;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  border: 1px solid rgba(22, 9, 21, 0.14);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 14px 40px rgba(22, 9, 21, 0.08);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.card__price {
  display: inline-block;
  margin-top: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(189, 138, 56, 0.12), rgba(202, 155, 87, 0.06));
  border: 1px solid rgba(189, 138, 56, 0.3);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* ── Testimonials ── */
.testimonial {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial__quote {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  position: relative;
  padding-top: 28px;
}

.testimonial__quote::before {
  content: '\201C';
  position: absolute;
  top: -6px;
  left: -2px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 52px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.6;
}

.testimonial__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(22, 9, 21, 0.08);
}

.testimonial__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.testimonial__service {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(189, 138, 56, 0.10), rgba(202, 155, 87, 0.06));
  border: 1px solid rgba(189, 138, 56, 0.25);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.2px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.info {
  border: 1px solid rgba(22, 9, 21, 0.14);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 14px 40px rgba(22, 9, 21, 0.08);
}

.info__row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(22, 9, 21, 0.08);
}


.info__row--link {
  display: flex;
  border-radius: 10px;
  margin: 0 -10px;
  padding: 10px 10px;
  border-bottom: none;
  transition: background 0.15s ease;
}

.info__row--link:hover {
  background: rgba(189, 138, 56, 0.08);
  text-decoration: none;
}

.external-arrow {
  display: inline-block;
  margin-left: 4px;
  font-size: 13px;
  color: var(--gold);
  transition: transform 0.15s ease;
}

.info__row--link:hover .external-arrow {
  transform: translate(1px, -1px);
}

.info__label {
  color: var(--muted2);
  font-size: 13px;
  min-width: 120px;
}

.info__value {
  color: var(--text);
  font-size: 13px;
  text-align: right;
  line-height: 1.6;
}

.quick-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(22, 9, 21, 0.08);
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(189, 138, 56, 0.2);
  background: linear-gradient(135deg, rgba(189, 138, 56, 0.06), rgba(202, 155, 87, 0.04));
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.06s ease;
}

.quick-link:hover {
  background: linear-gradient(135deg, rgba(189, 138, 56, 0.12), rgba(202, 155, 87, 0.08));
  border-color: rgba(189, 138, 56, 0.35);
  text-decoration: none;
}

.quick-link:active { transform: scale(0.98); }

.quick-link__icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

.quick-link__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.quick-link__text strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.quick-link__text small {
  font-size: 11px;
  color: var(--muted2);
}

.footer {
  border-top: 1px solid rgba(22, 9, 21, 0.12);
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.45);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted2);
  font-size: 13px;
}

.footer__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Before / after comparison slider ── */
.ph.compare {
  grid-column: span 2;
  position: relative;
  cursor: ew-resize;
  user-select: none;
}

.compare__img {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.compare__img--before {
  z-index: 1;
  clip-path: inset(0 50% 0 0);
}

.compare__handle {
  position: absolute;
  inset: 0 auto 0 50%;
  width: 44px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  touch-action: none;
}

.compare__line {
  position: absolute;
  inset: 0 auto 0 50%;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.compare__knob {
  position: relative;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
  color: var(--text);
  flex-shrink: 0;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.compare:active .compare__knob,
.compare__handle:hover .compare__knob {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.38);
  transform: scale(1.08);
}

.compare__label {
  position: absolute;
  top: 10px;
  z-index: 4;
  background: rgba(0, 0, 0, 0.48);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  pointer-events: none;
}

.compare__label--l { left: 10px; }
.compare__label--r { right: 10px; }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .info__value { text-align: left; }
  .logo-hero { width: min(320px, 92%); }

  .header__inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 0;
    gap: 8px;
  }

  .brand {
    min-width: 0;
    justify-content: center;
    width: 100%;
  }

  .brand__mark {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .brand__name { font-size: 15px; }
  .brand__tag { font-size: 11px; }

  .nav {
    width: 100%;
    justify-content: center;
    gap: 4px;
  }

  .nav a {
    font-size: 13px;
    padding: 6px 10px;
  }

  .hero { padding: 28px 0 14px; }

  .grid { gap: 8px; }

  .ph { border-radius: 10px; }

  .cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .footer__links {
    justify-content: center;
  }

  .info__label {
    min-width: 75px;
  }
}

/* ── Instagram / back-to-top dual FAB ── */
.insta-fab {
  position: fixed;
  bottom: 86px;
  right: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 110%, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(188, 24, 136, 0.4);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.35s ease;
  overflow: hidden;
}

.insta-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(188, 24, 136, 0.55);
}

.insta-fab.is-scrolled {
  background: #1a1a2e;
  box-shadow: 0 4px 16px rgba(22, 9, 21, 0.3);
}

.insta-fab.is-scrolled:hover {
  box-shadow: 0 6px 24px rgba(22, 9, 21, 0.45);
}

.insta-fab__icon {
  position: absolute;
}

/* Default state: Instagram visible, up-arrow hidden */
.insta-fab__icon--insta {
  opacity: 1;
  transform: scale(1);
  /* incoming (up→insta): wait for up-arrow to leave first */
  transition: opacity 0.3s cubic-bezier(0, 0, 0.2, 1) 0.15s,
              transform 0.3s cubic-bezier(0, 0, 0.2, 1) 0.15s;
}

.insta-fab__icon--up {
  opacity: 0;
  transform: scale(0.6);
  /* outgoing (is-scrolled→default): leave immediately */
  transition: opacity 0.25s cubic-bezier(0.4, 0, 1, 1),
              transform 0.25s cubic-bezier(0.4, 0, 1, 1);
}

/* Scrolled state: up-arrow visible, Instagram hidden */
.insta-fab.is-scrolled .insta-fab__icon--insta {
  opacity: 0;
  transform: scale(0.6);
  /* outgoing (default→is-scrolled): leave immediately */
  transition: opacity 0.25s cubic-bezier(0.4, 0, 1, 1),
              transform 0.25s cubic-bezier(0.4, 0, 1, 1);
}

.insta-fab.is-scrolled .insta-fab__icon--up {
  opacity: 1;
  transform: scale(1);
  /* incoming (default→is-scrolled): wait for Instagram to leave first */
  transition: opacity 0.3s cubic-bezier(0, 0, 0.2, 1) 0.15s,
              transform 0.3s cubic-bezier(0, 0, 0.2, 1) 0.15s;
}

@media (max-width: 600px) {
  .insta-fab {
    width: 48px;
    height: 48px;
    bottom: 74px;
    right: 16px;
  }
}

/* ── WhatsApp floating action button ── */
.whatsapp-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

@media (max-width: 600px) {
  .whatsapp-fab {
    width: 48px;
    height: 48px;
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-fab svg {
    width: 24px;
    height: 24px;
  }
}
