* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #fff7fb;
  --bg-soft: #ffeaf4;
  --bg-strong: #ffd7ea;
  --card: rgba(255, 255, 255, 0.78);
  --text: #5a3750;
  --text-soft: #7d5b72;
  --pink: #ff6faf;
  --pink-dark: #e84f97;
  --border: rgba(255, 111, 175, 0.18);
  --shadow: 0 12px 35px rgba(255, 134, 180, 0.18);
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, #fff0f7 0%, transparent 28%),
    radial-gradient(circle at top right, #ffe3f0 0%, transparent 24%),
    linear-gradient(180deg, #fff9fc 0%, #fff1f7 100%);
}

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

a {
  color: inherit;
}

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

.narrow {
  width: min(760px, 100%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(255, 247, 251, 0.8);
  border-bottom: 1px solid var(--border);
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}

.brand {
  text-decoration: none;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--pink-dark);
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  font-weight: 700;
  color: var(--text);
}

.nav a:hover {
  color: var(--pink-dark);
}

.hero {
  padding: 72px 0 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #ffe0ef;
  color: var(--pink-dark);
  font-weight: 700;
  font-size: 0.92rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.05;
  margin: 0 0 14px;
  color: #d94c93;
}

.hero-copy {
  font-size: 1.08rem;
  color: var(--text-soft);
  max-width: 560px;
}

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

.button {
  display: inline-block;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

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

.button.primary {
  background: linear-gradient(135deg, #ff88bf, #ff5ca7);
  color: white;
  box-shadow: 0 10px 24px rgba(255, 92, 167, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--pink-dark);
  border: 1px solid var(--border);
}

.hero-image-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 170, 208, 0.5);
  border-radius: 28px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.hero-image-card img {
  border-radius: 20px;
  width: 100%;
  height: auto;
}

.section {
  padding: 72px 0;
}

.section-pink {
  background: linear-gradient(180deg, rgba(255, 219, 235, 0.45), rgba(255, 240, 246, 0.75));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-tag {
  display: inline-block;
  margin: 0 0 12px;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pink-dark);
}

.section h2 {
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
  color: #cb4288;
}

.section p {
  color: var(--text-soft);
  font-size: 1.03rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.gallery-card {
  background: var(--card);
  border: 1px solid rgba(255, 162, 205, 0.45);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-card.large {
  grid-row: span 2;
}

.gallery-card.large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-card-content {
  padding: 26px 22px;
}

.emoji {
  display: inline-block;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.mini-card-content h3 {
  margin: 0 0 8px;
  color: #cb4288;
}

.mini-card-content p {
  margin: 0;
}

.contact-box {
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 170, 208, 0.45);
  border-radius: 28px;
  padding: 36px 24px;
  box-shadow: var(--shadow);
}

.contact-email {
  margin-top: 18px;
  font-weight: 800;
  color: var(--pink-dark);
}

.site-footer {
  padding: 26px 0 34px;
  color: var(--text-soft);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 22px;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-card.large {
    grid-row: auto;
  }
}

@media (max-width: 700px) {
  .header-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    gap: 14px;
  }

  .hero {
    padding-top: 44px;
  }

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