:root {
  --bg: #fff7f8;
  --bg-soft: #f8e9ef;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-strong: #ffffff;
  --text: #3d2430;
  --muted: #8e6c78;
  --primary: #b94f73;
  --primary-2: #d98ca9;
  --accent: #b99ce8;
  --accent-soft: #f3ebff;
  --line: rgba(185, 79, 115, 0.16);
  --shadow: 0 22px 60px rgba(120, 56, 78, 0.14);
  --shadow-soft: 0 12px 32px rgba(120, 56, 78, 0.1);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Inter", Arial, sans-serif;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 7% 12%, rgba(217, 140, 169, 0.24), transparent 34%),
    radial-gradient(circle at 92% 4%, rgba(185, 156, 232, 0.2), transparent 30%),
    linear-gradient(135deg, #fffafb 0%, #fff6f7 38%, #f8eef4 100%),
    var(--bg);
  min-height: 100vh;
}

a {
  color: var(--primary);
}

p {
  line-height: 1.65;
}

.container {
  max-width: 1120px;
  margin: 28px auto;
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  max-width: 1120px;
  margin: 14px auto 0;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(120, 56, 78, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 10px 22px rgba(185, 79, 115, 0.22);
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover {
  background: rgba(185, 79, 115, 0.09);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 28px;
  align-items: stretch;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 8%, rgba(185, 156, 232, 0.24), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 241, 245, 0.94) 58%, rgba(245, 237, 255, 0.94) 100%);
}

.hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 430px;
}

.hero-card,
.panel,
.summary-card,
.card,
.contact-card,
details {
  border: 1px solid var(--line);
  background: var(--panel-strong);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 410px;
  background:
    radial-gradient(circle at 70% 20%, rgba(185, 156, 232, 0.28), transparent 32%),
    radial-gradient(circle at 22% 12%, rgba(217, 140, 169, 0.28), transparent 34%),
    #ffffff;
}

.hero-photo {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 1;
  width: 238px;
  height: 238px;
  border: 6px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  object-fit: contain;
  object-position: center;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #fff5f8, #f7efff);
  box-shadow: 0 18px 38px rgba(120, 56, 78, 0.2);
}

.hero-card > :not(.hero-photo) {
  position: relative;
  z-index: 2;
}

.hero-card h2 {
  margin: 10px 0 8px;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.eyebrow,
.soft-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-intro {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.credential-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.credential-list span {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.btn {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--primary), #9f3f61);
  box-shadow: 0 12px 24px rgba(185, 79, 115, 0.24);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(185, 79, 115, 0.28);
}

.btn-ghost {
  background: #ffffff;
  color: var(--primary);
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(120, 56, 78, 0.08);
}

.section-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.section-grid {
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.summary-card,
.card {
  padding: 18px;
}

.summary-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-card strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.22;
}

.summary-card p,
.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 24px;
  align-items: center;
}

.split-section.reverse {
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1fr);
}

.split-section h2,
.content-band h2,
.contact-section h2,
.faq-section h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.panel {
  padding: 24px;
}

.checklist-card ul,
.feature-list {
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.content-band {
  background:
    radial-gradient(circle at 95% 8%, rgba(185, 156, 232, 0.16), transparent 30%),
    rgba(255, 255, 255, 0.92);
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.role-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.role-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  font-weight: 800;
}

.role-card h3 {
  margin: 14px 0 8px;
  color: var(--primary);
}

.role-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.source-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: #6c3349;
  background: linear-gradient(135deg, #fff5f8, #f7efff);
  font-weight: 700;
}

.card h3 {
  color: var(--primary);
  margin-top: 0;
}

.soft-panel {
  background: linear-gradient(135deg, #fff5f8, #f7efff);
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 12px;
}

details {
  padding: 16px 18px;
  margin-top: 12px;
}

summary {
  cursor: pointer;
  color: var(--primary);
  font-weight: 800;
}

details p {
  color: var(--muted);
  margin-bottom: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 24px;
  align-items: center;
  background:
    radial-gradient(circle at 90% 14%, rgba(217, 140, 169, 0.22), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #fff1f5 60%, #f5edff 100%);
}

.contact-card {
  padding: 20px;
  display: grid;
  gap: 12px;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffafc;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

.primary-contact {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 12px 24px rgba(185, 79, 115, 0.2);
}

.instagram-contact {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, #b94f73, #b99ce8);
  box-shadow: 0 12px 24px rgba(120, 56, 78, 0.14);
}

.muted {
  color: var(--muted);
  margin: 6px 0 0;
}

.site-footer {
  max-width: 1120px;
  margin: 18px auto 30px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    margin: 10px;
    border-radius: var(--radius-md);
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
  }

  .nav-links a {
    flex: 1 1 calc(50% - 6px);
    background: #ffffff;
    border: 1px solid var(--line);
    text-align: center;
  }

  .container {
    margin: 10px;
    padding: 18px;
    border-radius: 18px;
  }

  .hero,
  .split-section,
  .split-section.reverse,
  .contact-section,
  .section-grid,
  .card-grid,
  .role-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    min-height: auto;
  }

  .hero-card {
    min-height: auto;
  }

  .hero-photo {
    position: relative;
    top: auto;
    left: auto;
    display: block;
    max-width: 100%;
    margin: 0 auto 24px;
    transform: none;
  }

  .btn,
  .actions {
    width: 100%;
  }

  .btn {
    text-align: center;
  }

  .credential-list span,
  .contact-link {
    width: 100%;
  }

  .site-footer {
    margin: 18px 10px 26px;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .brand {
    align-items: flex-start;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .nav-links a {
    flex: 1 1 100%;
    text-align: center;
  }

  .hero h1 {
    font-size: 34px;
  }

  .page-intro {
    font-size: 16px;
  }
}
