:root {
  --pink-50: #fff5f8;
  --pink-100: #fde2ea;
  --pink-200: #f9c4cf;
  --pink-500: #f35b9a;
  --pink-700: #c91f69;
  --ink: #151114;
  --muted: #675b62;
  --white: #ffffff;
  --cream: #fffaf4;
  --gold: #c98f2f;
  --sage: #697b67;
  --shadow: 0 22px 60px rgba(83, 23, 48, 0.14);
  --soft-shadow: 0 14px 36px rgba(83, 23, 48, 0.1);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px clamp(18px, 4vw, 64px);
  background: rgba(255, 250, 244, 0.86);
  border-bottom: 1px solid rgba(21, 17, 20, 0.07);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 32px rgba(83, 23, 48, 0.08);
}

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

.brand img,
.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 8px 22px rgba(201, 31, 105, 0.18);
}

.brand strong,
.footer-brand strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.22rem;
  line-height: 1;
}

.brand small,
.footer-brand span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a:not(.btn) {
  position: relative;
  color: #3a3036;
}

.main-nav a:not(.btn)::after {
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--pink-500);
  transition: width 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(83, 23, 48, 0.16);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(201, 31, 105, 0.2);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  padding: 12px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 40px) 20px 76px;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 24%, rgba(255, 255, 255, 0.94) 0 12%, transparent 13%),
    linear-gradient(135deg, #fff8f9 0%, #f8cbd5 48%, #fffaf4 100%);
}

.hero::before {
  position: absolute;
  inset: 14% auto auto 50%;
  width: min(78vw, 780px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(201, 31, 105, 0.16);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: -2;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 16%;
  content: "";
  background: linear-gradient(180deg, transparent, var(--cream));
  z-index: -1;
}

.hero-mark {
  position: absolute;
  width: min(55vw, 520px);
  right: max(-80px, -4vw);
  bottom: 28px;
  border-radius: 50%;
  opacity: 0.16;
  filter: saturate(1.1);
  z-index: -1;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.42;
  z-index: -2;
}

.hero-glow-one {
  width: 220px;
  height: 220px;
  left: -70px;
  top: 22%;
  background: var(--pink-500);
}

.hero-glow-two {
  width: 150px;
  height: 150px;
  right: 11%;
  top: 18%;
  background: var(--gold);
}

.hero-content {
  width: min(960px, 100%);
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--pink-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
}

h1 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(2.7rem, 7vw, 6.4rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 650px;
  margin: 22px auto 0;
  color: #3d3238;
  font-size: clamp(1.04rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.section {
  padding: clamp(66px, 9vw, 112px) clamp(18px, 4vw, 64px);
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.why-panel p,
.cta-panel p {
  color: var(--muted);
}

.section-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.trust {
  padding-top: 30px;
}

.trust-grid {
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.mini-card,
.service-card,
.hours-card,
.why-panel,
.cta-panel,
.map-frame {
  border: 1px solid rgba(21, 17, 20, 0.07);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
}

.mini-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.mini-card h2 {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.05rem, 1.25vw, 1.22rem);
  font-weight: 900;
  line-height: 1.22;
}

.mini-card p,
.service-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.icon-badge,
.service-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--pink-700);
  background: var(--pink-100);
  font-size: 0.78rem;
  font-weight: 900;
}

.services {
  background:
    linear-gradient(180deg, var(--cream), var(--pink-50) 48%, var(--cream)),
    radial-gradient(circle at 90% 10%, rgba(105, 123, 103, 0.14), transparent 24%);
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 26px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 31, 105, 0.22);
  box-shadow: var(--shadow);
}

.service-card a {
  margin-top: auto;
  color: var(--pink-700);
  font-weight: 900;
}

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink-500), var(--ink));
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
}

.why-panel {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(253, 226, 234, 0.72)),
    radial-gradient(circle at 8% 12%, rgba(243, 91, 154, 0.18), transparent 26%);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 13px 16px 13px 44px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: #372d33;
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 16px;
  height: 16px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--white) 0 28%, var(--pink-500) 31% 100%);
  transform: translateY(-50%);
}

.hours {
  background: var(--white);
}

.hours-card {
  width: min(860px, 100%);
  margin: 0 auto;
  overflow: hidden;
}

.hour-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px clamp(18px, 4vw, 32px);
  border-bottom: 1px solid rgba(21, 17, 20, 0.07);
}

.hour-row:last-child {
  border-bottom: 0;
}

.hour-row span {
  color: var(--muted);
  font-weight: 800;
}

.hour-row strong {
  color: var(--ink);
}

.hour-row em {
  display: inline-block;
  margin-left: 8px;
  color: var(--pink-700);
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 800;
}

.closed strong {
  color: var(--sage);
}

.map-frame {
  width: min(1080px, 100%);
  margin: 0 auto;
  overflow: hidden;
  background: var(--pink-100);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: clamp(340px, 56vw, 520px);
}

.final-cta {
  padding-top: 32px;
}

.cta-panel {
  width: min(1050px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: clamp(22px, 5vw, 52px);
  align-items: center;
  padding: clamp(26px, 5vw, 56px);
  background: linear-gradient(135deg, var(--ink), #3a1627 52%, var(--pink-700));
  color: var(--white);
}

.cta-panel img {
  width: 170px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 5px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
}

.cta-panel .eyebrow,
.cta-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.cta-panel .hero-actions {
  justify-content: flex-start;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 4vw, 64px);
  color: var(--white);
  background: var(--ink);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand span {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: #20b857;
  box-shadow: 0 16px 36px rgba(32, 184, 87, 0.32);
  font-weight: 900;
}

.floating-whatsapp::before {
  width: 10px;
  height: 10px;
  margin-right: 10px;
  content: "";
  border-radius: 50%;
  background: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 14px auto;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(21, 17, 20, 0.08);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 13px 10px;
  }

  .main-nav .nav-cta {
    margin-top: 8px;
  }

  .trust-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 90svh;
    padding-inline: 16px;
    place-items: start center;
    padding-top: calc(var(--header-height) + 64px);
  }

  .hero-mark {
    width: 470px;
    right: -210px;
    bottom: 18px;
    opacity: 0.12;
  }

  .hero-actions,
  .cta-panel .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 236px;
  }

  .hour-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hour-row em {
    display: block;
    margin-left: 0;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-panel img {
    width: 136px;
    margin: 0 auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding-inline: 15px;
    font-size: 0.88rem;
  }
}
