
:root {
  --bg: #fff7fb;
  --bg-alt: #fdeef5;
  --text: #3c2430;
  --muted: #6f4d5d;
  --accent: #de7fa7;
  --accent-dark: #bf5d88;
  --card: #ffffff;
  --border: #f1d6e2;
  --shadow: 0 18px 40px rgba(137, 72, 98, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  background: linear-gradient(180deg, #fff6fb 0%, #fdebf3 100%);
  padding-bottom: 4rem;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  gap: 1rem;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.logo {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding-top: 3rem;
}

.hero-image-card,
.info-box,
.gallery-card,
.contact-card,
.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-image-card {
  overflow: hidden;
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 0.5rem;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
  margin-top: 0;
}

h1 { font-size: clamp(2.3rem, 5vw, 4.3rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: 1.35rem; }

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
}

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

.btn-primary:hover {
  background: var(--accent-dark);
  text-decoration: none;
}

.btn-secondary {
  background: white;
  border-color: var(--border);
  color: var(--text);
}

.btn-secondary:hover { text-decoration: none; }

.section {
  padding: 5rem 0;
}

.alt {
  background: var(--bg-alt);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
}

.info-box,
.contact-card {
  padding: 1.7rem;
}

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

.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.gallery-copy {
  padding: 1.25rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.step {
  padding: 1.5rem;
}

.step span {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  background: #fff0f6;
  color: var(--accent-dark);
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-section {
  background: linear-gradient(180deg, #fdeef5 0%, #fff7fb 100%);
}

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

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  color: var(--muted);
  flex-wrap: wrap;
}

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

@media (max-width: 900px) {
  .hero-content,
  .about-grid,
  .contact-grid,
  .steps,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .brand-wrap {
    align-items: center;
  }
}
