:root {
  --ink: #21191b;
  --text: #463b3e;
  --muted: #8b7d82;
  --pink: #d96f8a;
  --pink-dark: #b84e67;
  --pink-soft: #fdebf1;
  --cream: #fff8f6;
  --surface: #ffffff;
  --line: rgba(185, 99, 123, 0.18);
  --shadow: 0 18px 48px rgba(97, 46, 59, 0.13);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(247, 190, 204, 0.28), transparent 28%),
    linear-gradient(180deg, #fffafb 0%, #fff6f7 58%, #fff 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 22px;
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 66px;
  padding: 10px 12px 10px 4px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 36px rgba(115, 71, 82, 0.1);
  backdrop-filter: blur(18px);
  animation: headerIn 700ms var(--ease) both;
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.brand {
  display: grid;
  justify-items: center;
  gap: 1px;
  color: var(--pink-dark);
}

.brand strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  line-height: 0.9;
  letter-spacing: 0.04em;
}

.brand span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.6vw, 34px);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

nav a {
  position: relative;
  padding: 8px 0;
}

nav a::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--pink);
  border-radius: 999px;
  transition: width 240ms var(--ease), left 240ms var(--ease);
}

nav a:hover::after,
nav a.active::after {
  left: 0;
  width: 100%;
}

.header-action,
.button,
.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 900;
  transition: transform 220ms var(--ease), box-shadow 220ms ease, background 220ms ease, color 220ms ease;
}

.header-action {
  min-height: 42px;
  padding: 0 18px;
  color: #fff;
  background: var(--pink);
  font-size: 13px;
  box-shadow: 0 14px 28px rgba(217, 111, 138, 0.22);
}

.header-action:hover,
.button:hover,
.mini-button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 72px);
  min-height: 620px;
  padding: 122px clamp(24px, 6vw, 86px) 26px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: rgba(217, 111, 138, 0.16);
  filter: blur(2px);
  animation: drift 9s ease-in-out infinite;
}

.hero::before {
  width: 210px;
  height: 210px;
  left: -68px;
  top: 210px;
}

.hero::after {
  width: 160px;
  height: 160px;
  right: 6%;
  bottom: 80px;
  animation-delay: -3s;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.script-title {
  margin: 0 0 12px;
  color: var(--pink-dark);
  font-family: "Great Vibes", cursive;
  font-size: 28px;
  line-height: 1;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.02;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.08;
}

.hero-copy p:not(.script-title),
.about-text p,
.contact p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 14px;
}

.button.primary {
  color: #fff;
  background: var(--pink);
  box-shadow: 0 18px 34px rgba(217, 111, 138, 0.22);
}

.button.primary:hover {
  background: var(--pink-dark);
}

.button.secondary {
  color: var(--pink-dark);
  background: #fff;
  border-color: var(--line);
}

.hero-showcase {
  position: relative;
  z-index: 2;
  min-height: 440px;
  border-radius: 28px 8px 28px 8px;
}

.hero-showcase img {
  height: min(50vw, 500px);
  min-height: 410px;
  object-fit: cover;
  object-position: center;
  border-radius: 36px 8px 36px 8px;
  box-shadow: 0 30px 80px rgba(116, 58, 71, 0.18);
  animation: imageFloat 5s ease-in-out infinite;
  transition: opacity 420ms ease, filter 420ms ease;
}

.hero-showcase.is-changing img {
  opacity: 0.58;
  filter: blur(2px);
}

.float-card {
  position: absolute;
  z-index: 3;
  min-width: 118px;
  padding: 12px 14px;
  color: var(--pink-dark);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 900;
  animation: cardFloat 4.8s ease-in-out infinite;
}

.card-one {
  top: 16%;
  left: -22px;
}

.card-two {
  right: -14px;
  bottom: 18%;
  animation-delay: -2s;
}

.hero-dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 18px;
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  transform: translateX(-50%);
  backdrop-filter: blur(12px);
}

.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(184, 78, 103, 0.26);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: width 220ms var(--ease), background 220ms ease;
}

.hero-dots button.is-active {
  width: 26px;
  background: var(--pink);
  border-radius: 999px;
}

.services,
.popular,
.about,
.contact {
  padding: clamp(44px, 6vw, 82px) clamp(24px, 6vw, 86px);
}

.services {
  padding-top: 14px;
  padding-bottom: 34px;
}

.popular {
  padding-top: 20px;
}

.section-kicker {
  margin-bottom: 16px;
  color: var(--pink-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-row {
  display: grid;
  grid-template-columns: repeat(8, minmax(94px, 1fr));
  gap: 12px;
}

.service-card {
  display: grid;
  place-items: center;
  min-height: 104px;
  padding: 16px 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(115, 71, 82, 0.08);
  cursor: pointer;
  transition: transform 260ms var(--ease), box-shadow 260ms ease, border-color 260ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 111, 138, 0.42);
  box-shadow: var(--shadow);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
  color: var(--pink);
  background: var(--pink-soft);
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
}

.service-card strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.28;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
}

.mini-button {
  min-height: 40px;
  padding: 0 18px;
  color: var(--pink-dark);
  background: #fff;
  border: 1px solid var(--line);
  font-size: 13px;
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.popular-card {
  padding: 0;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.popular-card img {
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 14px 32px rgba(115, 71, 82, 0.12);
  transition: transform 360ms var(--ease), box-shadow 360ms ease;
}

.popular-card:hover img {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 54px rgba(115, 71, 82, 0.18);
}

.popular-card span {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-weight: 900;
}

.popular-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.about {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
}

.about-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px 34px 8px 34px;
  box-shadow: var(--shadow);
}

.about-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.about-list span {
  padding: 13px 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: clamp(28px, 6vw, 72px);
  margin: 0 clamp(24px, 6vw, 86px) clamp(30px, 5vw, 58px);
  padding: clamp(34px, 5vw, 58px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.contact-box {
  display: grid;
  gap: 12px;
}

.contact-box a:not(.button),
.contact-box span {
  display: block;
  padding: 14px 0;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  line-height: 1.5;
  font-weight: 700;
}

.lightbox {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 72px 18px 24px;
  background: rgba(33, 25, 27, 0.86);
  animation: fadeIn 220ms ease both;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1120px, 94vw);
  max-height: 84vh;
  width: auto;
  border-radius: 10px;
  box-shadow: var(--shadow);
  animation: lightboxIn 320ms var(--ease) both;
}

.lightbox-close,
.floating-whatsapp,
.service-modal-close {
  position: fixed;
  z-index: 60;
  color: #fff;
  background: var(--pink);
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.lightbox-close {
  top: 18px;
  right: 18px;
  min-height: 42px;
  padding: 0 16px;
}

.service-modal {
  position: fixed;
  z-index: 55;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(33, 25, 27, 0.68);
  backdrop-filter: blur(12px);
  animation: fadeIn 220ms ease both;
}

.service-modal[hidden] {
  display: none;
}

.service-modal-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(320px, 1fr);
  gap: clamp(22px, 4vw, 42px);
  width: min(980px, 96vw);
  max-height: 90vh;
  overflow: auto;
  padding: clamp(18px, 3vw, 30px);
  background:
    radial-gradient(circle at 12% 16%, rgba(253, 235, 241, 0.9), transparent 34%),
    #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 32px 90px rgba(33, 25, 27, 0.26);
  animation: lightboxIn 300ms var(--ease) both;
}

.service-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  min-height: 38px;
  padding: 0 14px;
  font-size: 13px;
}

.service-modal-media img {
  height: 100%;
  min-height: 420px;
  max-height: 620px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.service-modal-content {
  align-self: center;
  padding-right: 8px;
}

.service-modal-content h2 {
  margin-bottom: 14px;
}

.service-modal-desc {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.service-modal-list {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.service-modal-list li {
  position: relative;
  padding: 13px 14px 13px 42px;
  color: var(--ink);
  background: rgba(253, 235, 241, 0.56);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.service-modal-list li::before {
  position: absolute;
  left: 15px;
  top: 50%;
  content: "✓";
  color: var(--pink-dark);
  transform: translateY(-50%);
}

.service-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.service-modal-tags span {
  padding: 8px 10px;
  color: var(--pink-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.service-modal-whatsapp {
  width: fit-content;
}

.floating-whatsapp {
  right: 18px;
  bottom: 18px;
  min-height: 48px;
  padding: 14px 18px;
  box-shadow: 0 18px 42px rgba(217, 111, 138, 0.26);
  animation: floatIn 800ms var(--ease) 500ms both;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  transition-delay: var(--delay, 0ms);
}

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

@keyframes headerIn {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(16px, -18px);
  }
}

@keyframes imageFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-10px) scale(1.01);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes lightboxIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 160px 1fr auto;
  }

  .service-row {
    grid-template-columns: repeat(4, minmax(120px, 1fr));
  }

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

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-showcase {
    min-height: auto;
  }

  .hero-showcase img {
    height: auto;
    min-height: 0;
    max-height: 520px;
  }

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

  .service-modal-media img {
    min-height: 260px;
    max-height: 360px;
  }

  .popular-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    min-height: 58px;
    padding: 8px 9px 8px 12px;
  }

  .brand {
    justify-items: start;
  }

  .brand strong {
    font-size: 25px;
  }

  .brand span {
    font-size: 7px;
  }

  .header-action {
    min-height: 38px;
    padding: 0 12px;
  }

  .hero {
    gap: 28px;
    min-height: auto;
    padding: 104px 18px 32px;
  }

  h1 {
    font-size: clamp(39px, 13vw, 54px);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .float-card {
    display: none;
  }

  .hero-dots {
    bottom: 10px;
  }

  .services,
  .popular,
  .about {
    padding-inline: 18px;
  }

  .service-row,
  .popular-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .contact {
    margin-inline: 18px;
    padding: 24px;
  }

  .service-modal {
    padding: 12px;
  }

  .service-modal-panel {
    padding: 16px;
  }

  .service-modal-whatsapp {
    width: 100%;
  }
}
