:root {
  --cream: #fff7f3;
  --cream-2: #fff1e9;
  --ink: #2d2c31;
  --muted: #6f6970;
  --rose: #b76671;
  --rose-2: #f5b2b7;
  --coral: #f17c7f;
  --mint: #a9d8cc;
  --yellow: #f7c15a;
  --lavender: #e6d8ea;
  --card: rgba(255, 255, 255, 0.82);
  --border: rgba(183, 102, 113, 0.18);
  --shadow: 0 22px 60px rgba(105, 54, 62, 0.14);
  --radius: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(245, 178, 183, 0.36), transparent 28%),
    radial-gradient(circle at 85% 6%, rgba(169, 216, 204, 0.36), transparent 24%),
    radial-gradient(circle at 70% 88%, rgba(247, 193, 90, 0.25), transparent 28%),
    var(--cream);
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 18px 24px;
  background: rgba(255, 247, 243, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-2), var(--rose));
  color: white;
  box-shadow: 0 12px 25px rgba(183, 102, 113, 0.25);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  color: var(--muted);
  transition: 0.2s ease;
}

.nav a:hover,
.nav a.active {
  background: white;
  color: var(--rose);
  box-shadow: 0 10px 22px rgba(105, 54, 62, 0.08);
}

.menu-button {
  display: none;
  border: 0;
  border-radius: 14px;
  background: white;
  color: var(--rose);
  font-size: 1.4rem;
  padding: 8px 13px;
  box-shadow: 0 10px 22px rgba(105, 54, 62, 0.08);
}

.section {
  max-width: 1220px;
  margin: 0 auto;
  padding: 88px 24px;
}

.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 46px;
  align-items: center;
}

.kicker {
  margin: 0 0 12px;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.78rem;
  font-weight: 900;
}

h1,
h2,
h3 {
  line-height: 1.1;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  letter-spacing: -0.06em;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.045em;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.lead {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.15rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--rose), var(--coral));
  box-shadow: 0 16px 30px rgba(183, 102, 113, 0.28);
}

.button.secondary {
  background: white;
  color: var(--rose);
  border: 1px solid var(--border);
  box-shadow: 0 14px 28px rgba(105, 54, 62, 0.08);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  padding: 9px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-weight: 750;
}

.hero-card {
  padding: 12px;
  background: white;
  border-radius: 38px;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.hero-card img {
  border-radius: 28px;
}

.section-title {
  max-width: 780px;
  margin-bottom: 40px;
}

.section-title.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-title p:not(.kicker) {
  color: var(--muted);
  font-size: 1.08rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.profile-card,
.about-text,
.feature,
.package,
.package-note,
.contact-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.profile-card {
  padding: 28px;
}

.profile-card img {
  width: 210px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 22px;
  background: var(--rose);
  box-shadow: 0 15px 35px rgba(105, 54, 62, 0.16);
}

.profile-card p,
.about-text p,
.feature p,
.package-note p {
  color: var(--muted);
}

.about-text {
  padding: 34px;
  font-size: 1.08rem;
}

.about-text p:first-child {
  margin-top: 0;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.offer {
  max-width: none;
  background:
    radial-gradient(circle at 18% 35%, rgba(169, 216, 204, 0.34), transparent 23%),
    radial-gradient(circle at 84% 58%, rgba(245, 178, 183, 0.32), transparent 26%),
    rgba(255, 241, 233, 0.78);
}

.offer>* {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature {
  padding: 26px;
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(245, 178, 183, 0.55), rgba(247, 193, 90, 0.45));
  color: var(--rose);
  font-weight: 900;
  font-size: 1.3rem;
}

.packages {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  margin-top: 24px;
}

.package,
.package-note {
  padding: 32px;
}

.label {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(169, 216, 204, 0.35);
  color: #4c8f80;
  font-weight: 900;
  font-size: 0.82rem;
  margin-bottom: 16px;
}

.package ul {
  padding-left: 20px;
  color: var(--muted);
}

.package .button {
  margin-top: 10px;
}

.package-note {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(230, 216, 234, 0.58));
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
  text-decoration: none;
}

.gallery-item.large {
  grid-row: span 2;
  min-height: 520px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--rose);
  font-weight: 900;
  text-align: center;
  backdrop-filter: blur(10px);
}

.testimonials {
  max-width: none;
  background:
    radial-gradient(circle at 12% 20%, rgba(247, 193, 90, 0.22), transparent 26%),
    radial-gradient(circle at 90% 80%, rgba(169, 216, 204, 0.28), transparent 26%),
    rgba(255, 241, 233, 0.55);
}

.testimonials>* {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.testimonial .stars {
  color: var(--yellow);
  letter-spacing: 3px;
  font-size: 1.1rem;
}

.testimonial p {
  margin: 0;
  flex: 1;
  color: var(--ink);
}

.testimonial-author {
  color: var(--rose);
  font-weight: 850;
  font-size: 0.9rem;
}

.contact {
  max-width: none;
  background:
    linear-gradient(180deg, rgba(255, 247, 243, 0.2), rgba(255, 241, 233, 0.92));
}

.contact-panel {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 34px;
  padding: 36px;
}

.contact-panel p {
  color: var(--muted);
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-card {
  display: grid;
  gap: 2px;
  padding: 18px;
  border-radius: 20px;
  background: white;
  border: 1px solid var(--border);
  text-decoration: none;
}

.contact-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-card strong {
  color: var(--rose);
  font-size: 1.1rem;
}

.form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 26px;
  background: white;
  border: 1px solid var(--border);
}

label {
  display: grid;
  gap: 8px;
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 17px;
  padding: 14px 15px;
  background: #fffdfb;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 0.86rem;
}

.footer {
  padding: 30px 24px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

@media (max-width: 1000px) {

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

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

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

  .hero-card {
    max-width: 620px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .topbar {
    padding: 14px 18px;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 13px 14px;
  }

  .brand small {
    display: none;
  }

  .section {
    padding: 64px 18px;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(2.2rem, 13vw, 3.7rem);
  }

  .hero-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .feature-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item.large {
    min-height: 520px;
  }

  .contact-panel {
    padding: 22px;
  }
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}