:root {
  --pink: #e9a0c5;
  --pink-dark: #c65d92;
  --ink: #171214;
  --muted: #6d6268;
  --paper: #fffafc;
  --line: #ead8e2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

h1,
h2,
h3 {
  font-family: "Crimson Text", Georgia, serif;
  line-height: 1.08;
  margin: 0;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 14px clamp(20px, 5vw, 64px);
  background: rgba(255, 250, 252, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  font-family: "Crimson Text", Georgia, serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  text-decoration: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a {
  text-decoration: none;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.button.light {
  background: #fff;
  color: var(--ink);
}

.hero {
  min-height: min(760px, calc(100vh - 68px));
  display: grid;
  align-items: center;
  padding: clamp(56px, 8vw, 110px) clamp(20px, 5vw, 64px);
  background:
    linear-gradient(rgba(255, 250, 252, 0.05), rgba(255, 250, 252, 0.15)),
    url("https://img1.wsimg.com/isteam/ip/89e8ca6e-70b9-45cc-8b0f-822223c38d0e/IzzyPhotos-72.jpg/:/rs=w:1534,m") center/cover;
}

.hero-panel {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(28px, 6vw, 54px);
  background: rgba(233, 160, 197, 0.88);
  text-align: center;
}

.hero h1 {
  font-size: clamp(44px, 8vw, 88px);
}

.hero p {
  max-width: 760px;
  margin: 12px auto 28px;
  font-size: clamp(20px, 3vw, 30px);
}

.section {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 64px);
}

.section.narrow {
  max-width: 920px;
  margin: 0 auto;
}

.section h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 6vw, 60px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid var(--line);
}

.catalog {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.product-card {
  display: grid;
  gap: 12px;
  text-decoration: none;
}

.product-card img,
.product-hero img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #fff;
  border: 1px solid var(--line);
}

.product-card h3 {
  font-size: 26px;
}

.price {
  font-weight: 700;
  color: var(--pink-dark);
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.75fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.product-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
}

.notice {
  margin: 22px 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
}

.contact {
  background: var(--pink);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.7fr);
  gap: 28px;
  align-items: start;
}

.footer {
  padding: 34px clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
}

.footer nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.legal {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  padding: clamp(24px, 5vw, 44px);
}

@media (max-width: 760px) {
  .topbar,
  .nav {
    justify-content: center;
  }

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