:root {
  --primary: #b84c87;
  --primary-dark: #7d2f5d;
  --cream: #fff9f5;
  --blush: #f7d9e8;
  --sage: #a8b8a8;
  --ink: #33272b;
  --muted: #725f66;
  --line: #eadfe3;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(112, 63, 82, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Lato", Arial, sans-serif;
  line-height: 1.6;
}

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

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

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

p {
  margin: 0;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 800;
  font-size: 1.25rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
}

.nav-links {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-weight: 700;
}

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

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  border: 2px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 14px 30px rgba(184, 76, 135, 0.24);
}

.btn-secondary {
  color: var(--primary);
  border-color: var(--primary);
  background: transparent;
}

.btn-secondary:hover {
  color: var(--white);
  background: var(--primary);
}

.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fff9f5 0%, #fff 48%, #f6eeea 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 56px;
  align-items: center;
  padding: 58px 0;
}

.hero-copy {
  display: grid;
  gap: 28px;
}

.eyebrow {
  color: var(--primary);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow.light {
  color: #ffdcec;
}

h1 {
  max-width: 760px;
  color: var(--primary);
  font-size: clamp(3.3rem, 7vw, 6.8rem);
}

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

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

.trust-row,
.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  color: var(--muted);
}

.trust-row strong,
.stats strong {
  display: block;
  color: var(--primary);
  font-weight: 900;
}

.trust-row span,
.stats span {
  display: block;
  font-size: 0.92rem;
}

.hero-media img,
.feature-image img {
  width: 100%;
  height: min(640px, 72vh);
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.section {
  padding: 104px 0;
}

.section-white {
  background: var(--white);
  border-top: 1px solid var(--line);
}

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

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

h2 {
  color: var(--primary);
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  margin: 8px 0 18px;
}

.section-heading p,
.split-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.card {
  min-height: 255px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(112, 63, 82, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 76, 135, 0.35);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #f9e5ef;
  color: var(--primary);
  font-weight: 900;
}

.card h3 {
  color: var(--primary);
  font-size: 1.7rem;
  margin-bottom: 12px;
}

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

.split {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 56px;
  align-items: center;
}

.split-copy {
  display: grid;
  gap: 20px;
}

.stats {
  margin-top: 18px;
  text-align: center;
}

.gallery,
.photo-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.gallery-featured {
  margin-bottom: 34px;
}

.gallery figure,
.photo-wall figure {
  position: relative;
  min-height: 290px;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(112, 63, 82, 0.13);
  background: var(--primary);
}

.gallery img,
.photo-wall img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
  transition: transform 260ms ease;
}

.photo-wall {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.photo-wall figure {
  min-height: 245px;
}

.photo-wall img {
  min-height: 245px;
}

.gallery figure:hover img,
.photo-wall figure:hover img {
  transform: scale(1.06);
}

.gallery figcaption,
.photo-wall figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 56px 20px 20px;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(0deg, rgba(88, 25, 56, 0.82), rgba(88, 25, 56, 0));
}

.contact {
  padding: 104px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.contact-inner {
  max-width: 820px;
  text-align: center;
}

.contact h2 {
  color: var(--white);
}

.contact-card {
  margin-top: 40px;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.contact-card h3 {
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.contact-card p + p {
  margin-top: 12px;
}

.contact-card a {
  font-weight: 900;
}

.centered {
  justify-content: center;
  margin-top: 28px;
}

.btn-light {
  color: var(--primary);
  background: var(--white);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
}

footer {
  padding: 34px 16px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  background: #2d2025;
}

footer p + p,
footer small {
  display: block;
  margin-top: 6px;
}

@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

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

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

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

@media (max-width: 620px) {
  .brand {
    font-size: 1.05rem;
  }

  .hero-grid {
    padding: 42px 0;
  }

  .section,
  .contact {
    padding: 72px 0;
  }

  .service-grid,
  .gallery,
  .photo-wall,
  .trust-row,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero-media img,
  .feature-image img,
  .gallery img,
  .photo-wall img {
    height: 330px;
    min-height: 330px;
  }

  .contact-card {
    padding: 26px 18px;
  }
}
