:root {
  --bg: #fff8fb;
  --white: #ffffff;
  --text: #3f2d35;
  --muted: #705560;
  --primary: #e95391;
  --primary-dark: #cf3f7a;
  --soft: #ffe8f1;
  --stroke: #f5cfdf;
  --shadow: 0 14px 28px rgba(136, 25, 79, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

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

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

.hero {
  background:
    radial-gradient(circle at 0% 20%, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 100% 0%, rgba(243, 193, 216, 0.65) 0%, rgba(255, 255, 255, 0) 40%),
    linear-gradient(90deg, #fff8fb 0%, #fff3f8 42%, #fde9f1 100%);
  padding-bottom: 3rem;
  overflow: hidden;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.95rem 0 1.25rem;
  position: relative;
}

.brand {
  display: none;
}

.brand-logo-img {
  width: clamp(110px, 10vw, 128px);
  height: auto;
  object-fit: contain;
}

.footer-logo-img {
  width: clamp(140px, 18vw, 210px);
  height: auto;
  object-fit: contain;
  filter: brightness(1.1) saturate(1.05);
}

.brand-script {
  font-family: "Great Vibes", cursive;
  color: var(--primary-dark);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.8;
}

.brand-sub {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.65rem;
  color: var(--muted);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.2rem;
  padding: 0;
  margin: 0;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a.is-active {
  color: var(--primary);
  position: relative;
}

.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 999px;
  background: #ee72a6;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--stroke);
  background: var(--white);
  padding: 0.3rem 0.6rem;
  border-radius: 0.5rem;
  font-size: 1.2rem;
}

.btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary), #f2689e);
  color: #fff;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 18px rgba(233, 83, 145, 0.28);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(233, 83, 145, 0.35);
}

.btn-small {
  padding: 0.58rem 1.2rem;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 22px rgba(233, 83, 145, 0.32);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border: 1px solid var(--primary);
  box-shadow: none;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(470px, 1.4fr);
  gap: 1.4rem;
  align-items: center;
  min-height: 72vh;
}

.hero-copy {
  max-width: 500px;
}

.eyebrow,
.section-tag {
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  margin: 0;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.35rem);
  line-height: 1.06;
  margin: 0.65rem 0 0.7rem;
}

h1 span {
  color: var(--primary);
  font-style: italic;
}

.hero-copy p {
  color: var(--muted);
  max-width: 38ch;
  font-size: 1.04rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--primary-dark);
  opacity: 0.8;
  margin: 0 0 1rem;
}

.hero-divider::before,
.hero-divider::after {
  content: "";
  height: 1px;
  width: 68px;
  background: #dcb2c4;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-main-logo {
  width: min(100%, 785px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(143, 52, 96, 0.2));
}

.section {
  padding: 4.2rem 0;
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0.5rem 0 1rem;
}

.section-intro {
  color: var(--muted);
  max-width: 64ch;
}

.services-grid {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--stroke);
  border-radius: 1rem;
  padding: 1.1rem;
  box-shadow: 0 8px 18px rgba(161, 84, 115, 0.08);
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}

.card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 0.8rem;
}

.card strong {
  color: var(--primary-dark);
}

.section-soft {
  background: linear-gradient(180deg, #fff 0%, #fff4f9 100%);
}

.gallery {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: 0.8rem;
  overflow: hidden;
  border: 1px solid #f3d5e3;
  box-shadow: 0 8px 16px rgba(126, 62, 95, 0.12);
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: zoom-in;
}

.gallery img:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 24px rgba(126, 62, 95, 0.2);
}

.about {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 2rem;
  align-items: center;
}

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

.about-cta {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 1rem;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.about-cta h3 {
  margin-bottom: 1rem;
}

.footer {
  padding: 2.3rem 0 1rem;
  background: linear-gradient(135deg, #f56199 0%, #c3346f 100%);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 1.4rem;
}

.footer h4 {
  margin: 0 0 0.7rem;
}

.footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
  opacity: 0.95;
}

.footer-grid > div:first-child {
  display: flex;
  align-items: flex-start;
}

.social-section {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.social-section h4 {
  margin: 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  font-weight: 500;
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.copy {
  text-align: center;
  margin: 1.2rem 0 0;
  font-size: 0.85rem;
  opacity: 0.92;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(45, 24, 35, 0.84);
  backdrop-filter: blur(2px);
  z-index: 1200;
  padding: 1rem;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(92vw, 920px);
  max-height: 86vh;
  border-radius: 1rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: #fff;
  color: #4b2d39;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #4b2d39;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.lightbox-nav:hover,
.lightbox-close:hover {
  background: #fff;
}

@media (max-width: 980px) {
  .hero-content,
  .about,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    min-height: auto;
    gap: 1.6rem;
  }

  .btn-small {
    position: static;
    transform: none;
  }

  .hero-copy {
    max-width: 100%;
  }

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

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

@media (max-width: 760px) {
  .nav {
    justify-content: space-between;
  }

  .brand {
    display: inline-flex;
    align-items: center;
  }

  .brand-logo-img {
    width: 108px;
  }

  .menu-toggle {
    display: inline-block;
    order: 3;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    right: 4%;
    background: #fff;
    border: 1px solid var(--stroke);
    border-radius: 0.8rem;
    padding: 1rem;
    display: none;
    min-width: 180px;
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 0.7rem;
    z-index: 20;
  }

  .nav-links.open {
    display: flex;
  }

  .btn-small {
    display: none;
  }

  .hero-main-logo {
    width: min(100%, 520px);
  }

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

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

@media (max-width: 480px) {
  .services-grid,
  .gallery {
    grid-template-columns: 1fr;
  }
}
