:root {
  --bg: #fff7fb;
  --bg-soft: #ffe4f1;
  --rose: #f48fb1;
  --rose-deep: #da5f92;
  --cream: #fffaf6;
  --ink: #5e3b4a;
  --ink-soft: #8a6473;
  --line: rgba(218, 95, 146, 0.16);
  --shadow: 0 24px 60px rgba(214, 113, 155, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "STSong", "Songti SC", "Noto Serif CJK SC", "Source Han Serif SC", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 190, 218, 0.85), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(255, 219, 234, 0.9), transparent 24%),
    linear-gradient(180deg, #fff8fc 0%, #ffeef6 48%, #fff7fb 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  filter: blur(12px);
  pointer-events: none;
}

body::before {
  top: 120px;
  right: -80px;
}

body::after {
  bottom: 100px;
  left: -90px;
}

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

.hero {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: end;
  min-height: 62vh;
  padding: 36px;
}

.hero-copy,
.hero-card,
.photo-card,
.section-heading {
  border: 1px solid var(--line);
  background: rgba(255, 250, 252, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-copy {
  border-radius: 40px;
  padding: 44px;
}

.eyebrow,
.section-kicker,
.card-label {
  margin: 0 0 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-size: 0.82rem;
}

h1,
h2 {
  margin: 0;
  font-family: "Baskerville", "Times New Roman", "Songti SC", serif;
  line-height: 0.95;
  font-weight: 700;
}

h1 {
  font-size: clamp(4rem, 10vw, 7rem);
}

h2 {
  font-size: clamp(2.8rem, 6vw, 4rem);
}

.intro,
.section-heading p,
.card-text {
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--ink-soft);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-tags span {
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(244, 143, 177, 0.18), rgba(255, 255, 255, 0.88));
  border: 1px solid rgba(218, 95, 146, 0.22);
  color: var(--rose-deep);
}

.hero-card {
  border-radius: 32px;
  min-height: 320px;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 26px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.76), rgba(255, 228, 241, 0.88)),
    url("./photos/9bbe7e79785871f9b786c672961e6cd9.jpg") center / cover;
  background-blend-mode: screen;
}

.hero-card-inner {
  position: relative;
  z-index: 1;
  width: min(280px, calc(100% - 48px));
  padding: 28px;
  border-radius: 26px;
  background: rgba(255, 247, 251, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.section-heading {
  margin: 18px 0 24px;
  padding: 30px 34px;
  border-radius: 30px;
}

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

.photo-card {
  grid-column: span 4;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  min-height: 320px;
  transform: translateY(24px);
  opacity: 0;
  animation: rise 0.9s ease forwards;
}

.photo-card:nth-child(2) { animation-delay: 0.08s; }
.photo-card:nth-child(3) { animation-delay: 0.16s; }
.photo-card:nth-child(4) { animation-delay: 0.24s; }
.photo-card:nth-child(5) { animation-delay: 0.32s; }
.photo-card:nth-child(6) { animation-delay: 0.4s; }
.photo-card:nth-child(7) { animation-delay: 0.48s; }
.photo-card:nth-child(8) { animation-delay: 0.56s; }

.photo-wide {
  grid-column: span 8;
}

.photo-tall {
  grid-row: span 2;
  min-height: 100%;
}

.photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.photo-card::after {
  content: "Click to view";
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 247, 251, 0.82);
  color: var(--rose-deep);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.photo-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.lightbox {
  width: min(92vw, 980px);
  border: none;
  border-radius: 28px;
  padding: 20px;
  background: rgba(255, 248, 252, 0.95);
  box-shadow: 0 20px 80px rgba(88, 28, 52, 0.35);
}

.lightbox::backdrop {
  background: rgba(88, 28, 52, 0.52);
  backdrop-filter: blur(4px);
}

.lightbox img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 20px;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 18px;
  border: none;
  background: transparent;
  font-size: 2rem;
  color: var(--rose-deep);
  cursor: pointer;
}

@keyframes rise {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 12px 0 20px;
  }

  .hero-copy,
  .hero-card {
    padding: 28px;
  }

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

  .photo-card,
  .photo-wide,
  .photo-tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 100%);
    padding-top: 16px;
  }

  .hero-copy,
  .hero-card,
  .section-heading {
    border-radius: 24px;
  }

  .hero-copy {
    padding: 24px;
  }

  .section-heading {
    padding: 24px;
  }

  .photo-card {
    min-height: 260px;
    border-radius: 22px;
  }
}
