:root {
  --bg: #fffafc;
  --bg-soft: #fff2f7;
  --paper: rgba(255, 255, 255, 0.78);
  --paper-strong: rgba(255, 255, 255, 0.92);
  --stroke: rgba(204, 113, 153, 0.2);
  --text: #6a3b52;
  --text-strong: #472638;
  --muted: #a06c86;
  --pink: #f48db6;
  --pink-deep: #dd6f9c;
  --pink-pale: #ffe3ee;
  --shadow: 0 24px 70px rgba(235, 158, 191, 0.16);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --max-width: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(244, 141, 182, 0.34), transparent 30%),
    radial-gradient(circle at 85% 12%, rgba(255, 226, 238, 0.95), transparent 22%),
    linear-gradient(180deg, #fffafd 0%, #fff7fb 52%, #fffdfd 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

.ambient,
.dust,
.grid-overlay,
.stars-overlay {
  position: fixed;
  pointer-events: none;
  z-index: 0;
}

.ambient {
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(85px);
  opacity: 0.8;
}

.ambient-left {
  top: -9rem;
  left: -8rem;
  background: rgba(244, 141, 182, 0.34);
}

.ambient-right {
  right: -10rem;
  top: 28rem;
  background: rgba(255, 235, 242, 0.95);
}

.grid-overlay {
  inset: 0;
  background-image:
    linear-gradient(rgba(221, 111, 156, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(221, 111, 156, 0.12) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.95;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.42));
}

.stars-overlay {
  inset: 0;
  background-image:
    radial-gradient(circle at 8% 18%, rgba(255, 255, 255, 1) 0 2px, transparent 3.2px),
    radial-gradient(circle at 18% 62%, rgba(244, 141, 182, 0.58) 0 2px, transparent 3.2px),
    radial-gradient(circle at 31% 25%, rgba(255, 255, 255, 0.96) 0 1.7px, transparent 2.8px),
    radial-gradient(circle at 44% 78%, rgba(244, 141, 182, 0.48) 0 2px, transparent 3.2px),
    radial-gradient(circle at 58% 16%, rgba(255, 255, 255, 1) 0 2px, transparent 3.2px),
    radial-gradient(circle at 68% 58%, rgba(255, 255, 255, 0.96) 0 1.7px, transparent 2.8px),
    radial-gradient(circle at 77% 28%, rgba(244, 141, 182, 0.52) 0 2px, transparent 3.2px),
    radial-gradient(circle at 86% 72%, rgba(255, 255, 255, 1) 0 2px, transparent 3.2px),
    radial-gradient(circle at 92% 12%, rgba(255, 255, 255, 0.96) 0 1.7px, transparent 2.8px),
    radial-gradient(circle at 12% 88%, rgba(244, 141, 182, 0.46) 0 2px, transparent 3.2px),
    radial-gradient(circle at 24% 40%, rgba(255, 255, 255, 0.98) 0 2px, transparent 3.2px),
    radial-gradient(circle at 52% 42%, rgba(244, 141, 182, 0.54) 0 2px, transparent 3.2px),
    radial-gradient(circle at 72% 86%, rgba(255, 255, 255, 0.98) 0 2px, transparent 3.2px);
  opacity: 1;
}

.dust {
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.75) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 22%, rgba(244, 141, 182, 0.18) 0 2px, transparent 3px),
    radial-gradient(circle at 56% 76%, rgba(255, 255, 255, 0.85) 0 2px, transparent 3px);
  background-size: 220px 220px;
  inset: 0;
}

.site-header,
.section,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 24px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff, #ffe7f1);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 4px;
}

.brand-symbol img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong,
h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
}

.brand-copy strong {
  color: var(--text-strong);
  font-size: 1.02rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 12px 18px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(16px);
}

.site-nav a {
  transition: color 0.25s ease;
}

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

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: var(--text-strong);
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 42px 24px;
}

.hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 30px;
  align-items: end;
  min-height: calc(100vh - 92px);
}

.hero-panel {
  padding: 38px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 244, 249, 0.92));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.section-label {
  margin: 0 0 16px;
  color: var(--pink-deep);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--text-strong);
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.95;
}

h2 {
  margin-bottom: 16px;
  color: var(--text-strong);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  color: var(--text-strong);
  font-size: 1.5rem;
}

.hero-text,
.story-copy p,
.mood-card p,
.contact-copy p,
.intro-strip p,
.soft-list li,
.story-points p {
  font-size: 1.03rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  box-shadow: 0 18px 36px rgba(221, 111, 156, 0.28);
}

.button-secondary {
  color: var(--text-strong);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--stroke);
}

.hero-collage {
  position: relative;
  min-height: 720px;
}

.frame {
  overflow: hidden;
  border-radius: 34px;
  background: var(--paper-strong);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.frame img {
  height: 100%;
  object-fit: cover;
}

.frame-main {
  width: min(620px, 100%);
  height: 720px;
  margin-left: auto;
  padding: 14px;
  transform: rotate(-3deg);
}

.frame-cat {
  position: absolute;
  left: 2%;
  bottom: 2%;
  width: 260px;
  height: 260px;
  padding: 12px;
  transform: rotate(5deg);
}

.floating-note {
  position: absolute;
  max-width: 250px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.floating-note span,
.editorial-caption span,
.contact-card span,
.story-points span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.82rem;
}

.note-top {
  top: 6%;
  left: 2%;
}

.note-bottom {
  right: 4%;
  bottom: 8%;
}

.intro-strip {
  padding-top: 8px;
}

.intro-strip p {
  max-width: 860px;
  margin: 0;
  padding: 28px 32px;
  border-top: 1px solid var(--stroke);
  color: var(--text-strong);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
  align-items: stretch;
}

.story-card,
.mood-card,
.contact-layout {
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.story-card {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 243, 248, 0.84));
}

.story-points {
  display: grid;
  gap: 20px;
}

.story-points div {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(204, 113, 153, 0.16);
}

.story-points div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.story-points span {
  color: var(--pink-deep);
  font-weight: 800;
}

.moodboard-copy {
  max-width: 820px;
  margin-bottom: 24px;
}

.moodboard-layout {
  display: grid;
  grid-template-columns: 0.9fr 0.72fr 0.72fr;
  gap: 18px;
  align-items: start;
}

.mood-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 245, 249, 0.92));
}

.mood-card-text {
  padding: 30px;
}

.soft-list {
  margin: 0;
  padding-left: 20px;
}

.soft-list li + li {
  margin-top: 12px;
}

.mood-card-photo {
  min-height: 470px;
  position: relative;
}

.mood-card-photo img {
  height: 100%;
  object-fit: cover;
}

.photo-note {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  margin: 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--stroke);
  color: var(--text-strong);
  font-size: 0.92rem;
  line-height: 1.5;
  backdrop-filter: blur(10px);
}

.section-head {
  max-width: 820px;
  margin-bottom: 26px;
}

.works {
  padding-top: 88px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.editorial-card {
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid var(--stroke);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.editorial-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  flex: 0 0 auto;
}

.editorial-wide {
  grid-column: span 2;
}

.editorial-wide img {
  aspect-ratio: 1.767 / 1;
}

.editorial-heart {
  grid-column: span 1;
}

.editorial-caption {
  position: static;
  margin: 0;
  padding: 16px 18px;
  border-top: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.96);
}

.editorial-caption strong,
.floating-note strong,
.contact-card strong {
  color: var(--text-strong);
}

.contact-section {
  padding-bottom: 56px;
}

.contact-layout {
  display: block;
  padding: 18px;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(255, 242, 247, 0.96), rgba(255, 255, 255, 0.92));
}

.contact-copy {
  padding: 22px;
  max-width: 760px;
}

.contact-card {
  display: block;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--stroke);
  transition: transform 0.25s ease, background 0.25s ease;
}

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

.contact-card-static:hover {
  transform: none;
}

.contact-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-card-primary {
  background: linear-gradient(135deg, #fff, #ffe7f1);
}

.contact-visual {
  width: min(260px, 100%);
  margin: 18px auto 0;
  padding: 12px;
  border-radius: 30px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.contact-visual img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
}

.site-footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 36px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

@media (max-width: 1080px) {
  .hero,
  .story-grid,
  .moodboard-layout,
  .editorial-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-collage {
    min-height: auto;
  }

  .frame-main {
    height: 620px;
    margin-left: 0;
  }

  .editorial-wide {
    grid-column: auto;
  }

  .editorial-wide img {
    aspect-ratio: 1 / 1;
  }

  .editorial-heart {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 18px 20px 8px;
  }

  .section {
    padding: 34px 20px;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 76px;
    right: 20px;
    width: min(250px, calc(100vw - 40px));
    padding: 18px;
    border-radius: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.96);
  }

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

  .menu-button {
    display: inline-flex;
  }

  .hero-panel,
  .story-card,
  .mood-card-text,
  .contact-copy,
  .contact-card {
    padding: 22px;
  }

  h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .frame-main {
    width: 100%;
    height: 520px;
    transform: none;
  }

  .frame-cat {
    position: static;
    width: 100%;
    height: 240px;
    margin-top: 14px;
    transform: none;
  }

  .floating-note {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .intro-strip p {
    padding: 22px 0 0;
  }

  .works {
    padding-top: 56px;
  }
}
