:root {
  color-scheme: dark;
  color: #1f1a24;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 16px;
  background: #1b101a;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  background: radial-gradient(circle at top left, #f6d2e1 0%, transparent 28%),
              radial-gradient(circle at bottom right, #6b2c5c 0%, transparent 35%),
              linear-gradient(135deg, #311931 0%, #4f2f4d 45%, #f5d2d9 100%);
  color: #1f1a24;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 25%);
  pointer-events: none;
}

.page {
  width: min(100%, 960px);
  padding: 36px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 36px;
  box-shadow: 0 35px 90px rgba(18, 10, 20, 0.25);
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 1;
}

.hero-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr minmax(340px, 420px) 1fr;
  gap: 24px;
  align-items: center;
}

.hero-photo {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 32px;
  background: #f8eef7;
  box-shadow: 0 28px 55px rgba(49, 16, 39, 0.14);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-photo span {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(31, 18, 34, 0.8);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
}

.hero-content {
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.85rem;
  color: #6b2c5c;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.lead {
  margin: 20px auto 12px;
  max-width: 600px;
  color: #4c3a4f;
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  color: #7f5a75;
  font-size: 0.95rem;
}

.about-text {
  margin-top: 22px;
  color: #5b3b5e;
  font-size: 1rem;
  line-height: 1.75;
}

.about {
  margin-top: 32px;
}

.about h2 {
  margin: 0 0 16px;
  font-size: 1.8rem;
  color: #3f213f;
}

.about p {
  margin: 0;
  color: #5b3b5e;
  font-size: 1rem;
  line-height: 1.75;
}

.subheading {
  margin: 12px auto 20px;
  color: #7f5a75;
  font-size: 0.95rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.price-list {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 22px;
}

.price-card {
  background: #fff;
  border-radius: 32px;
  padding: 26px;
  box-shadow: 0 22px 50px rgba(49, 16, 39, 0.12);
}

.price-section {
  margin-bottom: 28px;
}

.price-section:last-child {
  margin-bottom: 0;
}

.price-section h2 {
  margin: 0 0 18px;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: #3f213f;
}

.price-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(83, 60, 87, 0.14);
  color: #5b3b5e;
  font-size: 0.98rem;
}

.price-item:last-child {
  border-bottom: none;
}

.price-item.price-note {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 0.92rem;
  color: #88657f;
  padding: 8px 0 0;
  border: none;
}

.price-item.price-note span {
  display: inline;
}

.social-panel {
  margin-top: 34px;
  text-align: center;
}

.social-panel h2 {
  margin: 0 0 18px;
  font-size: 1.45rem;
  color: #3f213f;
}

.instagram-card {
  display: flex;
  align-items: center;
  gap: 22px;
  text-decoration: none;
  background: #fff;
  border-radius: 28px;
  padding: 18px 20px;
  box-shadow: 0 20px 50px rgba(49, 16, 39, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.instagram-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(49, 16, 39, 0.18);
}

.insta-photo {
  width: 180px;
  min-width: 180px;
  aspect-ratio: 1;
  border-radius: 26px;
  overflow: hidden;
  background: #f3e3ef;
}

.insta-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.insta-info {
  text-align: left;
  max-width: 520px;
}

.insta-info p {
  margin: 0 0 10px;
  color: #5b3b5e;
  line-height: 1.7;
}

.insta-info span {
  display: inline-block;
  color: #6b2c5c;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-note {
  margin-top: 36px;
  color: #7b5b76;
  font-size: 0.95rem;
  text-align: center;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
  background: rgba(221, 184, 215, 0.35);
  padding: 2px 6px;
  border-radius: 6px;
}

@media (max-width: 860px) {
  .page {
    padding: 24px;
  }

  .price-list {
    grid-template-columns: 1fr;
  }

  .instagram-card {
    flex-direction: column;
    text-align: center;
  }

  .insta-info {
    text-align: center;
  }

  .insta-photo {
    width: 100%;
    min-width: auto;
  }
}
