*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #f7f0f8;
  --bg-alt: #f2edff;
  --card: #ffffff;
  --text: #2b123f;
  --muted: #5c466e;
  --accent: #e2377c;
  --accent-dark: #b82461;
  --accent-soft: #ffd9ea;
  --accent-2: #f26f2b;
  --accent-3: #4fa7e3;
  --accent-4: #7c52d8;
  --border: #ead6e8;
  --shadow: 0 24px 60px rgba(45, 14, 72, 0.2);
  --radius: 28px;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(600px 600px at 8% 10%, rgba(226, 55, 124, 0.16), transparent 60%),
    radial-gradient(520px 520px at 92% 12%, rgba(79, 167, 227, 0.16), transparent 62%),
    radial-gradient(540px 540px at 50% 92%, rgba(242, 111, 43, 0.12), transparent 60%),
    var(--bg);
  line-height: 1.7;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

p {
  margin: 0 0 16px;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 240, 248, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 55, 124, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  gap: 18px;
  margin-left: auto;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav a {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--accent-dark);
}

.site-nav a:hover::after,
.site-nav a:focus::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  margin-left: auto;
}

.header-cta {
  margin-left: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 60%, var(--accent-3) 100%);
  color: #fff;
  box-shadow: 0 18px 34px rgba(226, 55, 124, 0.3);
}

.button-primary:hover,
.button-primary:focus {
  filter: brightness(1.05);
}

.button-ghost {
  background: transparent;
  border-color: var(--accent-4);
  color: var(--accent-4);
}

.button-ghost:hover,
.button-ghost:focus {
  background: rgba(255, 217, 234, 0.6);
}

.hero {
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff0f6 0%, #f1ecff 48%, #fff5ee 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.2;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin: 12px 0 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
}

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

.hero-note {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 460px;
  margin: 0;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  border-radius: var(--radius);
  box-shadow:
    0 20px 40px rgba(45, 14, 72, 0.25),
    0 0 0 6px rgba(226, 55, 124, 0.18);
  object-fit: cover;
  width: 50%;
  height: auto;
  margin: 0 auto;
}

.hero-card {
  position: absolute;
  left: -24px;
  bottom: -70px;
  background: var(--card);
  padding: 22px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  max-width: 260px;
}

.hero-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.section {
  padding: 90px 0;
}

.section-alt {
  background: linear-gradient(135deg, rgba(242, 237, 255, 0.9) 0%, rgba(255, 242, 248, 0.9) 100%);
}

.section h2 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin: 0 0 20px;
  color: var(--accent-dark);
}

.section-title {
  max-width: 640px;
  margin-bottom: 36px;
}

.section-title p {
  margin: 0;
  color: var(--muted);
}

.no-wrap {
  white-space: nowrap;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.card,
.profile-card,
.price-card,
.contact-form,
.contact-card,
.edu-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 55, 124, 0.18);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 14px 30px rgba(45, 14, 72, 0.12);
  backdrop-filter: blur(6px);
}

.card h3,
.price-card h3,
.edu-card h3,
.contact-card h3,
.profile-card h3 {
  margin-top: 0;
  color: var(--accent-dark);
}

.profile-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.profile-card li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.profile-card li:last-child {
  border-bottom: none;
}

.profile-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  border: 1px solid rgba(226, 55, 124, 0.35);
  border-radius: 999px;
  padding: 8px 16px;
  color: var(--accent-dark);
  background: rgba(255, 217, 234, 0.45);
  font-size: 0.9rem;
}

.education-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.edu-card {
  position: relative;
  overflow: hidden;
  padding: 18px 26px 18px 34px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 26px rgba(45, 14, 72, 0.12);
  display: grid;
  gap: 6px;
}

.edu-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 55%, var(--accent-3) 100%);
}

.edu-card::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff 0 35%, var(--accent-3) 36% 100%);
  transform: translateY(-50%);
  opacity: 0.7;
}

.edu-card h3 {
  font-size: 1.05rem;
  margin: 0;
}

.edu-card p {
  margin: 0;
  color: var(--muted);
}

.price-card .price {
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--accent-2);
  margin: 12px 0;
}

.price-card ul {
  padding-left: 18px;
  margin: 0 0 18px;
  color: var(--muted);
}

.note {
  margin-top: 20px;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: start;
}

.contact-card {
  margin-top: 20px;
}

.contact-phone {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent-4);
  letter-spacing: 0.02em;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  background: #fbf9f8;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(165, 144, 132, 0.2);
  border-color: var(--accent);
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.site-footer {
  background: #2b123f;
  color: #f8eefc;
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  align-items: start;
}

.site-footer a {
  color: #f0d9ff;
  display: block;
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  margin-top: 24px;
  font-size: 0.85rem;
  color: #d7c4e6;
}

@media (max-width: 920px) {
  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  body.nav-open .site-nav {
    position: absolute;
    top: 70px;
    right: 4vw;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px;
    display: grid;
    gap: 10px;
    box-shadow: var(--shadow);
    color: var(--text);
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 70px 0 60px;
  }

  .hero-visual img {
    width: 50%;
    height: auto;
  }

  .hero-card {
    position: static;
    margin-top: 18px;
  }
}
