:root {
  --bg: #fff8f0;
  --bg-2: #fff1ec;
  --ink: #221720;
  --muted: #6f5b65;
  --line: rgba(75, 35, 54, 0.14);
  --coral: #ff7468;
  --pink: #f8bfd0;
  --rose: #f46993;
  --lavender: #cbbcff;
  --mint: #b7eadc;
  --butter: #ffe5a4;
  --white: #ffffff;
  --shadow: 0 30px 90px rgba(90, 49, 66, 0.16);
  --radius: 28px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 10%, rgba(248, 191, 208, 0.45), transparent 25%),
    radial-gradient(circle at 88% 12%, rgba(203, 188, 255, 0.28), transparent 22%),
    linear-gradient(180deg, var(--bg) 0%, #fff 48%, #fff8f1 100%);
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

a { color: inherit; }
img { max-width: 100%; display: block; }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--coral), var(--rose), var(--lavender));
}

.ambient-confetti {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.confetti-dot {
  position: absolute;
  width: var(--size, 6px);
  height: var(--size, 6px);
  border-radius: 999px;
  background: var(--color, var(--pink));
  opacity: 0.34;
  transform: translate3d(0, 0, 0);
  animation: confettiFloat var(--duration, 12s) ease-in-out infinite alternate;
}

@keyframes confettiFloat {
  from { transform: translate3d(0, 0, 0) rotate(0deg); }
  to { transform: translate3d(var(--x, 18px), var(--y, -28px), 0) rotate(18deg); }
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(1180px, calc(100% - 32px));
  min-height: 66px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 50px rgba(66, 33, 48, 0.09);
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(120, 60, 82, 0.13);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(67, 36, 48, 0.08);
  overflow: hidden;
  box-shadow: inset 0 -8px 20px rgba(248, 191, 208, 0.22);
}

.brand-mark span {
  position: absolute;
  bottom: 9px;
  width: 23px;
  height: 23px;
  border: 4px solid transparent;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  border-bottom: 0;
}
.brand-mark span:nth-child(1) { left: 6px; border-color: #ff7b73; border-bottom: 0; }
.brand-mark span:nth-child(2) { left: 11px; width: 20px; height: 20px; border-color: #ffe083; border-bottom: 0; }
.brand-mark span:nth-child(3) { left: 16px; width: 17px; height: 17px; border-color: #8de7ce; border-bottom: 0; }
.brand-mark span:nth-child(4) { left: 21px; width: 14px; height: 14px; border-color: #ad9cff; border-bottom: 0; }

.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-size: 0.88rem; letter-spacing: -0.02em; }
.brand-copy small { margin-top: 3px; color: var(--coral); font-weight: 700; letter-spacing: 0.03em; }

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.86rem;
  color: rgba(34, 23, 32, 0.7);
}

.desktop-nav a {
  text-decoration: none;
  transition: color 0.25s ease;
}
.desktop-nav a:hover { color: var(--ink); }

.header-cta,
.button-primary,
.button-ghost,
.service-row a,
.mobile-menu-cta {
  text-decoration: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(34, 23, 32, 0.18);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(34, 23, 32, 0.08);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 0.25s ease;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 20px;
  padding: 88px 28px 32px;
  background: rgba(255, 248, 240, 0.96);
  transform: translateY(-100%);
  transition: transform 0.42s cubic-bezier(.16,1,.3,1);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a {
  font-size: clamp(2rem, 8vw, 4rem);
  font-family: var(--serif);
  text-decoration: none;
  letter-spacing: -0.05em;
}
.mobile-menu .mobile-menu-cta {
  margin-top: 18px;
  font-family: var(--sans);
  font-size: 0.95rem;
  letter-spacing: 0;
  padding: 16px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(34px, 7vw, 86px);
  padding-top: 118px;
  padding-bottom: 68px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #936079;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.94;
}
h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.8rem, 8.5vw, 7.5rem);
}
h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 5.5vw, 5.5rem);
}
h3 {
  margin-bottom: 10px;
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  letter-spacing: -0.035em;
}
p {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.7;
}
.hero-copy p {
  max-width: 620px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 26px;
}

.button-primary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 18px;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}
.button-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 18px 36px rgba(255, 116, 104, 0.28);
}
.button-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 44px rgba(255, 116, 104, 0.34); }
.button-primary.small { min-height: 46px; padding: 0 18px; border-radius: 14px; font-size: 0.84rem; }
.button-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.54);
  color: var(--ink);
}
.button-ghost:hover { transform: translateY(-2px); background: #fff; }

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-line span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.48);
  color: rgba(34, 23, 32, 0.72);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
}
.hero-card {
  position: relative;
  width: min(420px, 88vw);
  border: 10px solid #fff;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  isolation: isolate;
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(34, 23, 32, 0.58));
  z-index: 1;
}
.hero-card img { width: 100%; height: 560px; object-fit: cover; }
.hero-card-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 22px;
  background: rgba(255,255,255,0.17);
  backdrop-filter: blur(12px);
  color: #fff;
}
.hero-card-note strong { font-size: 1rem; }
.hero-card-note span { color: rgba(255,255,255,0.78); font-size: 0.82rem; line-height: 1.45; }

.balloon {
  position: absolute;
  width: 118px;
  aspect-ratio: 0.82 / 1;
  border-radius: 54% 54% 50% 50%;
  filter: drop-shadow(0 22px 35px rgba(107, 56, 83, 0.16));
  animation: balloonFloat 5.4s ease-in-out infinite alternate;
}
.balloon::after {
  content: "";
  position: absolute;
  bottom: -36px;
  left: 50%;
  width: 1px;
  height: 45px;
  background: rgba(107, 56, 83, 0.24);
}
.balloon-one { left: 0; top: 88px; background: linear-gradient(145deg, #fff, var(--pink)); animation-delay: 0.2s; }
.balloon-two { right: 18px; top: 60px; width: 94px; background: linear-gradient(145deg, #fff, var(--butter)); animation-delay: 1.1s; }
.balloon-three { right: 2px; bottom: 130px; width: 82px; background: linear-gradient(145deg, #fff, var(--mint)); animation-delay: 0.7s; }

@keyframes balloonFloat {
  from { transform: translateY(0) rotate(-4deg); }
  to { transform: translateY(-26px) rotate(5deg); }
}

.mini-ticket {
  position: absolute;
  left: 22px;
  bottom: 90px;
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(84, 42, 62, 0.14);
  transform: rotate(-5deg);
}
.mini-ticket span { color: var(--muted); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; }
.mini-ticket strong { font-size: 1.35rem; letter-spacing: -0.05em; }

.proof-strip {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 40px));
  margin: -34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.2fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--line);
  box-shadow: 0 22px 70px rgba(79, 43, 61, 0.1);
}
.proof-item, .proof-strip p {
  margin: 0;
  background: rgba(255,255,255,0.82);
  padding: 24px;
}
.proof-item strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
}
.proof-item span, .proof-strip p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  padding: 128px 0 86px;
}
.section-heading h2 { max-width: 800px; }
.section-heading.narrow h2 { max-width: 720px; }
.intro-copy {
  padding: 32px 0 10px;
  border-top: 1px solid var(--line);
}
.intro-copy p { margin: 0; }

.solutions { padding: 72px 0 118px; }
.service-list {
  margin-top: 48px;
  border-top: 1px solid rgba(34, 23, 32, 0.14);
}
.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid rgba(34, 23, 32, 0.14);
  transition: padding 0.24s ease, background 0.24s ease;
}
.service-row:hover {
  padding-left: 18px;
  padding-right: 18px;
  background: rgba(255,255,255,0.48);
}
.service-number {
  color: #b48a9d;
  font-family: var(--serif);
  font-size: 2.1rem;
  letter-spacing: -0.05em;
}
.service-row p { max-width: 720px; margin-bottom: 0; }
.service-row a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
  transition: background 0.24s ease, color 0.24s ease, transform 0.24s ease;
}
.service-row a:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }

.experience-panel {
  padding: 112px 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 116, 104, 0.18), transparent 28%),
    linear-gradient(135deg, #2a1823 0%, #1c141c 100%);
  color: #fff;
}
.experience-panel .eyebrow { color: rgba(255, 229, 164, 0.78); }
.experience-panel p { color: rgba(255, 255, 255, 0.68); }
.pin-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}
.pin-card {
  position: sticky;
  top: 132px;
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 32px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
}
.pin-card h2 { font-size: clamp(2.5rem, 5vw, 4.8rem); margin-bottom: 22px; }
.steps {
  display: grid;
  gap: 18px;
}
.step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  background: rgba(255,255,255,0.08);
}
.step span {
  font-family: var(--serif);
  color: var(--butter);
  font-size: 2rem;
  line-height: 1;
}
.step h3 { color: #fff; }
.step p { grid-column: 2; margin: -8px 0 0; }

.gallery-section { padding: 126px 0 110px; }
.gallery-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #eee;
  box-shadow: 0 18px 40px rgba(84, 42, 62, 0.10);
}
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(.16,1,.3,1), filter 0.9s ease;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(34, 23, 32, 0.54));
}
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1.06); }
.gallery-item figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  color: #fff;
  font-weight: 800;
  font-size: 0.92rem;
}
.gallery-note {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: 0.92rem;
}

.conversion-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 112px;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.84), rgba(255, 241, 236, 0.92)),
    radial-gradient(circle at 0% 0%, rgba(248, 191, 208, 0.42), transparent 35%);
  box-shadow: var(--shadow);
}
.conversion-copy h2 { font-size: clamp(2.3rem, 4.6vw, 4.9rem); margin-bottom: 18px; }
.conversion-copy p { max-width: 650px; margin-bottom: 0; }

.faq-section { padding-bottom: 118px; }
.faq-list {
  margin-top: 46px;
  display: grid;
  gap: 12px;
}
details {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,0.72);
  overflow: hidden;
}
summary {
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  float: right;
  color: var(--coral);
}
details[open] summary::after { content: "−"; }
details p {
  margin: 0;
  padding: 0 24px 24px;
  max-width: 900px;
}

.site-footer {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.site-footer strong { display: block; color: var(--ink); margin-bottom: 4px; }
.site-footer p { margin: 0; font-size: 0.82rem; }

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  gap: 3px;
  padding: 15px 18px;
  border-radius: 20px;
  background: #25D366;
  color: #062b15;
  text-decoration: none;
  box-shadow: 0 20px 46px rgba(37, 211, 102, 0.28);
  transition: transform 0.24s ease;
}
.floating-whatsapp:hover { transform: translateY(-3px); }
.floating-whatsapp span { font-size: 0.72rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.76; }
.floating-whatsapp strong { font-size: 0.95rem; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.72s ease, transform 0.72s cubic-bezier(.16,1,.3,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.service-row.reveal:nth-child(2), .gallery-item.reveal:nth-child(2), .step.reveal:nth-child(2) { transition-delay: 0.06s; }
.service-row.reveal:nth-child(3), .gallery-item.reveal:nth-child(3), .step.reveal:nth-child(3) { transition-delay: 0.12s; }
.service-row.reveal:nth-child(4), .gallery-item.reveal:nth-child(4), .step.reveal:nth-child(4) { transition-delay: 0.18s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: inline-block; justify-self: end; }
  .hero, .intro-grid, .pin-layout, .conversion-band {
    grid-template-columns: 1fr;
  }
  .hero {
    gap: 10px;
    padding-top: 122px;
  }
  .hero-visual { min-height: 540px; }
  .proof-strip { grid-template-columns: repeat(3, 1fr); }
  .proof-strip p { grid-column: 1 / -1; }
  .pin-card { position: relative; top: auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .conversion-band { padding: 34px; }
}

@media (max-width: 640px) {
  .section-shell { width: min(100% - 28px, 1180px); }
  .site-header { top: 10px; width: calc(100% - 20px); min-height: 60px; }
  .brand-copy strong { font-size: 0.82rem; }
  .brand-copy small { font-size: 0.76rem; }
  h1 { font-size: clamp(3.15rem, 15vw, 4.9rem); }
  h2 { font-size: clamp(2.35rem, 11vw, 3.8rem); }
  .hero { min-height: auto; padding-bottom: 38px; }
  .hero-copy p { margin-bottom: 24px; }
  .hero-actions { align-items: stretch; }
  .button-primary, .button-ghost { width: 100%; }
  .trust-line span { width: 100%; justify-content: center; }
  .hero-visual { min-height: 460px; }
  .hero-card { width: min(330px, 82vw); border-width: 8px; border-radius: 30px; }
  .hero-card img { height: 430px; }
  .balloon { width: 76px; }
  .balloon-two { width: 66px; right: 6px; }
  .balloon-three { display: none; }
  .mini-ticket { left: 0; bottom: 48px; padding: 14px 16px; }
  .proof-strip { width: calc(100% - 28px); margin-top: 10px; grid-template-columns: 1fr; border-radius: 24px; }
  .proof-item, .proof-strip p { padding: 20px; }
  .intro-grid { padding: 78px 0 56px; }
  .solutions { padding: 56px 0 78px; }
  .service-row { grid-template-columns: 1fr; gap: 12px; padding: 24px 0; }
  .service-row:hover { padding-left: 0; padding-right: 0; background: transparent; }
  .service-row a { width: 100%; }
  .experience-panel { padding: 74px 0; }
  .pin-card, .step { padding: 24px; border-radius: 24px; }
  .step { grid-template-columns: 1fr; gap: 12px; }
  .step p { grid-column: auto; margin: 0; }
  .gallery-section { padding: 78px 0 76px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; gap: 12px; }
  .gallery-item.large, .gallery-item.tall { grid-column: auto; grid-row: auto; }
  .conversion-band { margin-bottom: 76px; padding: 26px; border-radius: 26px; }
  .faq-section { padding-bottom: 82px; }
  .site-footer { grid-template-columns: 1fr; margin-bottom: 90px; }
  .floating-whatsapp {
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 18px;
  }
}
