:root {
  --rose-50: #fff2f7;
  --rose-100: #ffe4ef;
  --rose-300: #f58ab4;
  --rose-500: #df4f8c;
  --rose-700: #9d285c;
  --ink: #2a1520;
  --muted: #765d69;
  --cream: #fffaf5;
  --mint: #dff2e8;
  --gold: #c99b45;
  --line: rgba(157, 40, 92, 0.18);
  --shadow: 0 18px 45px rgba(125, 37, 75, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: linear-gradient(135deg, var(--cream), var(--rose-50) 54%, #fff);
  font-family: Arial, Helvetica, sans-serif;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(16px, 4vw, 44px);
  background: rgba(255, 250, 245, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--rose-700);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--rose-500);
  box-shadow: 0 8px 18px rgba(223, 79, 140, 0.28);
}

.tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tab-button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--rose-700);
  background: transparent;
  font: 700 0.95rem Arial, Helvetica, sans-serif;
  cursor: pointer;
  transition: 180ms ease;
  white-space: nowrap;
}

.tab-button:hover,
.tab-button.active {
  background: var(--rose-100);
  border-color: var(--line);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: grid;
}

.hero {
  min-height: calc(100vh - 70px);
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(20px, 4vw, 54px);
}

.hero-media {
  min-height: 500px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-content {
  max-width: 560px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--rose-700);
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 14px;
  color: var(--rose-700);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

h3 {
  margin-bottom: 8px;
  color: var(--rose-700);
  font-size: 1.2rem;
}

.hero-content p,
.section-heading,
.about-copy p,
.contact-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-action,
.secondary-action,
.contact-form button,
.whatsapp-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.primary-action,
.contact-form button {
  border: 0;
  color: #fff;
  background: var(--rose-500);
  box-shadow: 0 12px 28px rgba(223, 79, 140, 0.28);
  cursor: pointer;
}

.secondary-action {
  border: 1px solid var(--line);
  color: var(--rose-700);
  background: #fff;
}

.section {
  padding: clamp(28px, 5vw, 70px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 32px rgba(125, 37, 75, 0.08);
}

.service-card img {
  aspect-ratio: 4 / 3;
  height: auto;
}

.service-card div {
  padding: 18px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.55;
}

.service-card strong {
  display: block;
  color: var(--rose-500);
}

.whatsapp-action {
  width: 100%;
  min-height: 44px;
  margin-top: 16px;
  border: 1px solid rgba(37, 211, 102, 0.42);
  color: #1f7a43;
  background: #e9fff0;
  font-size: 0.92rem;
}

.whatsapp-action:hover {
  background: #d8ffe6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

figure {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--rose-100);
  box-shadow: 0 14px 32px rgba(125, 37, 75, 0.08);
}

figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(42, 21, 32, 0.72);
  font-weight: 800;
}

.about-layout {
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(24px, 5vw, 60px);
}

.contact-layout {
  justify-items: center;
}

.contact-card {
  max-width: 560px;
  width: 100%;
}

.about-photo {
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  padding: 14px 16px;
  border-left: 4px solid var(--rose-500);
  border-radius: 8px;
  background: var(--mint);
  color: #244333;
  font-weight: 700;
}

.contact-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.contact-card {
  padding: clamp(24px, 4vw, 44px);
  margin: 0 auto;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-list a,
.contact-list span {
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--rose-50);
  color: var(--rose-700);
  font-weight: 800;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 36px);
}


@media (max-width: 980px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .tabs {
    width: 100%;
  }

  .hero,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media,
  .about-photo {
    min-height: 360px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .topbar {
    padding: 12px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero,
  .section {
    padding: 18px;
  }

  .hero-media,
  .about-photo {
    min-height: 300px;
  }

  .service-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  figure {
    min-height: 260px;
  }

  .hero-actions {
    display: grid;
  }
}