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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #fff7fa;
  color: #111;
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* Header */

.site-header {
  background: rgba(255, 247, 250, 0.96);
  border-bottom: 1px solid #f5cbd6;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}

.header-content {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  width: 190px;
  height: auto;
  display: block;
}

/* Navigation */

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

.nav a {
  font-size: 0.95rem;
  font-weight: 700;
  color: #171717;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #e68fa5;
}

.header-btn {
  background: #111;
  color: #fff;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 4px 4px 0 #f4b6c4;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.header-btn:hover {
  background: #e68fa5;
  color: #111;
  transform: translateY(-2px);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.primary-btn {
  background: #111;
  color: #fff;
  box-shadow: 5px 5px 0 #f4b6c4;
}

.primary-btn:hover {
  background: #e68fa5;
  color: #111;
  transform: translateY(-2px);
}

.secondary-btn {
  background: #fff;
  color: #111;
  border: 2px solid #111;
  box-shadow: 5px 5px 0 #f4b6c4;
}

.secondary-btn:hover {
  background: #ffe4ec;
  transform: translateY(-2px);
}

/* Hero */

.hero {
  padding: 90px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(244, 182, 196, 0.55), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.95), transparent 24%),
    radial-gradient(circle at 80% 82%, rgba(244, 182, 196, 0.45), transparent 30%),
    linear-gradient(135deg, #fff7fa 0%, #ffe6ee 55%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 8px, transparent 9px),
    radial-gradient(circle, rgba(255, 255, 255, 0.65) 0 5px, transparent 6px);
  background-size: 150px 150px, 95px 95px;
  background-position: 20px 30px, 70px 90px;
  opacity: 0.45;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 54px;
}

.eyebrow {
  color: #e68fa5;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.02;
  color: #050505;
  letter-spacing: -1.8px;
  margin-bottom: 22px;
  text-shadow: 3px 3px 0 #f4b6c4;
}

.hero-description {
  max-width: 610px;
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 30px;
  border: 8px solid #fff;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.16);
}

.hero-image::before {
  content: "";
  position: absolute;
  width: 76%;
  height: 76%;
  right: -16px;
  bottom: -16px;
  background: #f4b6c4;
  border-radius: 30px;
  z-index: -1;
}

/* Section Heading */

.section-heading {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 46px;
}

.section-heading h2,
.about-text h2,
.contact-info h2 {
  color: #050505;
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.section-heading p {
  color: #333;
}

/* Services */

.services {
  padding: 95px 0;
  background: #fff;
}

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

.service-card {
  background: #fff7fa;
  border: 1px solid #f5cbd6;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 35px rgba(230, 143, 165, 0.15);
  transition: all 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(230, 143, 165, 0.25);
}

.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.service-card-content {
  padding: 24px;
}

.service-card h3 {
  font-size: 1.25rem;
  color: #050505;
  margin-bottom: 8px;
  font-weight: 900;
}

.service-card p {
  color: #333;
  font-size: 0.96rem;
}

/* About */

.about {
  padding: 95px 0;
  background:
    radial-gradient(circle at 10% 15%, rgba(244, 182, 196, 0.35), transparent 25%),
    radial-gradient(circle at 90% 85%, rgba(244, 182, 196, 0.35), transparent 25%),
    #fff7fa;
}

.about-content {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 58px;
}

.about-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 30px;
  border: 8px solid #fff;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.13);
}

.about-text p {
  color: #222;
  margin-bottom: 20px;
}

.about-list {
  list-style: none;
  margin: 22px 0 30px;
}

.about-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #111;
  font-weight: 600;
}

.about-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #e68fa5;
  font-weight: 900;
}

/* Why Choose Us */

.why-us {
  padding: 90px 0;
  background: #111;
  color: #fff;
}

.why-us .section-heading {
  max-width: 850px;
  margin-bottom: 48px;
}

.why-us .eyebrow {
  color: #f4b6c4;
}

.why-us .section-heading h2 {
  color: #fff;
  text-shadow: none;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.why-us .section-heading p {
  color: #ffe1e9;
}

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

.why-card {
  background: #222;
  border: 1px solid rgba(244, 182, 196, 0.35);
  padding: 30px;
  border-radius: 28px;
  box-shadow: 8px 8px 0 rgba(244, 182, 196, 0.18);
}

.why-card h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 900;
}

.why-card p {
  color: #ffe1e9;
  line-height: 1.7;
}

/* Gallery */

.gallery {
  padding: 95px 0;
  background: #fff;
}

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

.gallery-grid img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: 24px;
  border: 6px solid #fff7fa;
  box-shadow: 0 14px 34px rgba(230, 143, 165, 0.18);
}

/* Reviews */

.reviews {
  padding: 85px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(244, 182, 196, 0.3), transparent 25%),
    linear-gradient(135deg, #fff7fa 0%, #ffe6ee 100%);
}

.reviews .section-heading {
  margin-bottom: 44px;
}

.reviews .section-heading p:last-child {
  color: #333;
  font-size: 1rem;
  margin-top: 8px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.review-card {
  background: #fff;
  border: 1px solid #f5cbd6;
  border-radius: 28px;
  padding: 26px;
  box-shadow: 8px 8px 0 #f4b6c4;
  display: flex;
  flex-direction: column;
  min-height: 340px;
}

.stars {
  color: #111;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
  text-shadow: 2px 2px 0 #f4b6c4;
}

.review-card p {
  color: #222;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.review-bottom {
  margin-top: auto;
}

.review-card h4 {
  color: #111;
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 2px;
}

.review-card span {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  color: #e68fa5;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reviews-button {
  margin-top: 38px;
  text-align: center;
}

/* Contact */

.contact {
  padding: 95px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(244, 182, 196, 0.4), transparent 28%),
    radial-gradient(circle at 10% 90%, rgba(244, 182, 196, 0.35), transparent 24%),
    #fff7fa;
}

.contact-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.contact-info p {
  color: #222;
  margin-bottom: 18px;
}

.contact-details {
  margin: 24px 0;
}

.contact-details p {
  margin-bottom: 10px;
}

.contact-details a {
  color: #111;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: #f4b6c4;
  text-decoration-thickness: 4px;
}

.contact-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-map iframe {
  border-radius: 28px;
  border: 8px solid #fff;
  box-shadow: 0 20px 50px rgba(230, 143, 165, 0.22);
}

/* Footer */

.site-footer {
  background: #111;
  color: #fff;
  padding: 30px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-content p {
  color: #ffe1e9;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a {
  color: #ffe1e9;
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: #f4b6c4;
}

/* Responsive */

@media (max-width: 950px) {
  .header-content {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .logo img {
    width: 170px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
  }

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

  .hero {
    padding: 68px 0;
  }

  .hero-image img,
  .about-image img {
    height: 430px;
  }

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

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

  .review-card {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
  }

  .header-content {
    min-height: auto;
    justify-content: center;
    text-align: center;
  }

  .logo img {
    width: 150px;
  }

  .header-btn {
    display: none;
  }

  .nav {
    gap: 14px;
  }

  .nav a {
    font-size: 0.85rem;
  }

  .hero {
    padding: 52px 0;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-image img,
  .about-image img {
    height: 360px;
    border-radius: 24px;
  }

  .hero-image::before {
    display: none;
  }

  .services,
  .about,
  .why-us,
  .gallery,
  .reviews,
  .contact {
    padding: 70px 0;
  }

  .services-grid,
  .why-grid,
  .reviews-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .service-card img,
  .gallery-grid img {
    height: 250px;
  }

  .review-card {
    min-height: auto;
    padding: 24px;
  }

  .review-card p {
    font-size: 0.93rem;
    line-height: 1.6;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 24px;
}

.header-instagram {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #111;
  border-radius: 50%;
  text-decoration: none;

  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.header-instagram i {
  font-size: 2.45rem !important;
  line-height: 1;
  display: block;
}

.header-instagram:hover {
  color: #e68fa5;
  background: #ffe4ec;
  transform: translateY(-2px) scale(1.08);
}

.contact-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: #f4b6c4;
  text-decoration-thickness: 4px;
}

.contact-social i {
  font-size: 1.2rem;
  color: #e68fa5;
}

.contact-social span {
  font-weight: 900;
}