*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent:    #fd5e9d;
  --accent-d:  #e4488a;
  --title:     #FCAD66;
  --pink-pale: #fca8cb;
  --dark:      #2a1320;
  --cream:     #fff8fb;
  --peach:     rgba(252,168,203,.18);
  --text:      #3a1828;
  --muted:     #9b6d82;
  --border:    #f2d5e4;
  --white:     #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Helvetica Neue', HelveticaNeue, 'Helvetica Neue Light', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
}

h1, h2, h3, h4 {
  font-family: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  line-height: 1.2;
  color: var(--title);
}

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

/* ── Header ─────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
}

.header-logo img {
  height: 36px;
  width: auto;
}

.header-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.75);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(42,19,32,.88) 0%,
    rgba(42,19,32,.65) 55%,
    rgba(42,19,32,.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 640px;
  padding: 48px 28px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(253,94,157,.15);
  border: 1px solid rgba(253,94,157,.35);
  color: #ffb8d8;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(32px, 6vw, 54px);
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--pink-pale);
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.78);
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 480px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .1s;
  text-decoration: none;
}
.btn-primary:hover  { background: var(--accent-d); }
.btn-primary:active { transform: scale(.98); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  padding: 14px 24px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.35);
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
}
.btn-secondary:hover { background: rgba(255,255,255,.08); }

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.4);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; }
  50%       { opacity: .85; }
}

/* ── Trust bar ───────────────────────────────────────── */
.trust-bar {
  background: var(--dark);
  padding: 24px;
}
.trust-bar-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.6);
  font-size: 14px;
}
.trust-item strong {
  font-family: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  color: var(--pink-pale);
  font-size: 20px;
}
.trust-sep {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,.1);
}
@media (max-width: 600px) { .trust-sep { display: none; } }

/* ── Sections ────────────────────────────────────────── */
.section { padding: 72px 24px; }
.section-inner { max-width: 900px; margin: 0 auto; }

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 48px;
}

/* ── Services ────────────────────────────────────────── */
.services-bg { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.service-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 24px;
  transition: box-shadow .2s;
}
.service-card:hover {
  box-shadow: 0 4px 20px rgba(253,94,157,.1);
}
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--peach);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Gallery ─────────────────────────────────────────── */
.gallery-bg { background: var(--cream); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  background: var(--peach);
}
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Benefits ────────────────────────────────────────── */
.benefits-bg { background: var(--dark); }
.benefits-bg .section-label { color: var(--pink-pale); }
.benefits-bg .section-title { color: var(--white); }
.benefits-bg .section-sub   { color: rgba(255,255,255,.45); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.benefit-item { text-align: center; padding: 8px; }
.benefit-icon {
  width: 52px;
  height: 52px;
  background: rgba(253,94,157,.12);
  border: 1px solid rgba(253,94,157,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;
}
.benefit-item h3 { font-size: 16px; color: var(--white); margin-bottom: 8px; }
.benefit-item p  { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.65; }

/* ── Process ─────────────────────────────────────────── */
.process-bg { background: var(--white); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}
.process-step { padding: 24px 20px; text-align: center; position: relative; }
.process-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -8px; top: 36px;
  font-size: 20px;
  color: var(--border);
}
@media (max-width: 680px) {
  .process-step:not(:last-child)::after { display: none; }
}
.step-num {
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--white);
  font-family: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.process-step h3 { font-size: 16px; margin-bottom: 8px; }
.process-step p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── Testimonials ────────────────────────────────────── */
.testimonials-bg { background: rgba(252,168,203,.12); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 24px;
}
.stars {
  color: var(--accent);
  font-size: 15px;
  margin-bottom: 14px;
  letter-spacing: 3px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-text::before { content: '\201C'; }
.testimonial-text::after  { content: '\201D'; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--peach);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.author-name  { font-size: 14px; font-weight: 500; color: var(--dark); }
.author-event { font-size: 12px; color: var(--muted); }

/* ── About ───────────────────────────────────────────── */
.about-bg { background: var(--white); }

.about-inner {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}
.about-photo {
  width: 200px;
  height: 260px;
  border-radius: 6px;
  flex-shrink: 0;
  object-fit: cover;
}
@media (max-width: 600px) {
  .about-photo { width: 100%; height: 280px; }
}
.about-text { flex: 1; min-width: 260px; }
.about-text blockquote {
  font-family: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  font-size: 20px;
  color: var(--title);
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.about-text p { font-size: 15px; color: var(--muted); margin-bottom: 12px; line-height: 1.7; }
.about-stats { display: flex; gap: 28px; margin-top: 24px; flex-wrap: wrap; }
.about-stat strong {
  display: block;
  font-family: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  font-size: 28px;
  color: var(--accent);
}
.about-stat span { font-size: 13px; color: var(--muted); }

/* ── Form ────────────────────────────────────────────── */
.form-bg { background: var(--dark); padding: 80px 24px; }
.form-inner { max-width: 640px; margin: 0 auto; }

.form-header { text-align: center; margin-bottom: 40px; }
.form-header .section-label { color: var(--pink-pale); }
.form-header .section-title { color: var(--white); font-size: clamp(26px, 4vw, 38px); margin-bottom: 12px; }
.form-header p { font-size: 16px; color: rgba(255,255,255,.5); }

.form-card {
  background: var(--cream);
  border-radius: 8px;
  padding: 40px 36px;
}
@media (max-width: 600px) { .form-card { padding: 28px 20px; } }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group label .req { color: var(--accent); margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  padding: 12px 14px;
  font-family: inherit;
  font-weight: 300;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color .15s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #c8aaba; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239b6d82' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group textarea { min-height: 100px; resize: vertical; }

.form-submit {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 16px 24px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s, transform .1s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}
.form-submit:hover  { background: var(--accent-d); }
.form-submit:active { transform: scale(.98); }
.form-submit .spinner {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
.form-submit.loading .spinner  { display: block; }
.form-submit.loading .btn-text { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-reassure {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  color: var(--muted);
  font-size: 13px;
}
.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.form-tel-alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  background: var(--white);
  color: var(--accent);
  border: 1.5px solid var(--accent);
  transition: opacity .15s;
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  background: #25d366;
  color: #fff;
  border: none;
  transition: opacity .15s;
}
.btn-tel:hover, .btn-wa:hover { opacity: .85; }

.form-success { display: none; text-align: center; padding: 40px 20px; }
.success-icon {
  width: 64px; height: 64px;
  background: rgba(253,94,157,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}
.form-success h3 { font-size: 22px; color: var(--dark); margin-bottom: 10px; }
.form-success p  { font-size: 15px; color: var(--muted); }

.form-error-msg {
  display: none;
  background: #fff0f6;
  border: 1px solid #ffd0e6;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 13px;
  color: #c44;
  margin-top: 12px;
  text-align: center;
}

/* ── Footer ──────────────────────────────────────────── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 32px 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.35);
}
.footer-brand {
  font-family: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  font-size: 16px;
  color: rgba(255,255,255,.7);
  margin-bottom: 8px;
}
.footer-links { margin-top: 12px; }
.footer-links a {
  color: rgba(255,255,255,.3);
  margin: 0 8px;
  font-size: 12px;
  transition: color .15s;
}
.footer-links a:hover { color: var(--pink-pale); }

/* ── Mobile sticky CTA ───────────────────────────────── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  gap: 10px;
}
@media (max-width: 680px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 72px; }
}
.mobile-cta .btn-primary {
  flex: 1;
  justify-content: center;
  padding: 13px 16px;
  font-size: 14px;
}
.mobile-cta .btn-wa-sm {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: #25d366;
  border-radius: 4px;
  flex-shrink: 0;
}
