:root {
  --rose-50: #fdf4f5;
  --rose-100: #f8e5e9;
  --rose-200: #f2cfd6;
  --rose-300: #e7aeb9;
  --rose-600: #c86878;
  --neutral-900: #2b2225;
  --neutral-700: #5b4d51;
  --neutral-300: #d8cdd1;
  --white: #ffffff;
  --max-width: 1100px;
  --shadow: 0 18px 40px rgba(150, 95, 107, 0.12);
}

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

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--neutral-900);
  background: linear-gradient(180deg, #fff7f9 0%, #fdf4f5 45%, #fff 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

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

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 247, 249, 0.85);
  backdrop-filter: blur(12px);
  z-index: 10;
  border-bottom: 1px solid var(--rose-100);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-mark {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--neutral-700);
  letter-spacing: 1.5px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

.nav a {
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--rose-600);
  transition: width 0.25s ease;
}

.nav a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: linear-gradient(120deg, #c86878, #d9899a);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  border-color: var(--rose-300);
  color: var(--neutral-900);
}

.hero {
  padding: 56px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(231, 174, 185, 0.45),
    rgba(231, 174, 185, 0)
  );
  z-index: 0;
  filter: blur(1px);
}

.hero::before {
  top: -120px;
  right: -80px;
}

.hero::after {
  bottom: -160px;
  left: -120px;
}

.hero-grid {
  display: grid;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  margin-bottom: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--rose-600);
  font-weight: 600;
  margin-bottom: 12px;
}

.lead {
  font-size: 18px;
  color: var(--neutral-700);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-notes {
  display: grid;
  gap: 12px;
  background: var(--white);
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(216, 205, 209, 0.35);
}

.note-title {
  display: block;
  font-weight: 600;
}

.note-text {
  font-size: 14px;
  color: var(--neutral-700);
}

.hero-media img {
  box-shadow: var(--shadow);
  border: 1px solid var(--rose-100);
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.hero-media img:hover {
  transform: translateY(-6px);
}

.section {
  padding: 72px 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 140px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e7aeb9, transparent);
  transform: translateX(-50%);
}

.section-header {
  max-width: 640px;
  margin-bottom: 40px;
}

.section-header h2 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 36px);
  margin: 0 0 12px;
}

.soft-bg {
  background: var(--rose-100);
}

.cards {
  display: grid;
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--rose-100);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(150, 95, 107, 0.16);
}

.card-header h3 {
  margin: 8px 0;
  font-size: 20px;
}

.price {
  color: var(--neutral-700);
  margin: 0 0 16px;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 12px;
  color: var(--neutral-700);
}

.card-list li {
  padding-left: 20px;
  position: relative;
}

.card-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--rose-600);
}

.featured {
  border: 1px solid var(--rose-300);
  background: var(--rose-50);
}

.pill {
  display: inline-block;
  background: var(--rose-200);
  color: var(--neutral-900);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.values-grid {
  display: grid;
  gap: 20px;
}

.value {
  background: var(--white);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--rose-100);
  position: relative;
  overflow: hidden;
}

.value::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: -30px;
  top: -30px;
  background: radial-gradient(
    circle at center,
    rgba(231, 174, 185, 0.35),
    rgba(231, 174, 185, 0)
  );
}

.value h3 {
  margin-top: 0;
}

.inline-media {
  margin-top: 32px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

details {
  background: var(--white);
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--rose-100);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

details[open] {
  transform: translateY(-2px);
}

summary {
  font-weight: 600;
  cursor: pointer;
}

details p {
  margin-top: 12px;
  color: var(--neutral-700);
}

.apply-grid {
  display: grid;
  gap: 32px;
  align-items: start;
}

.contact-card {
  margin-top: 24px;
  padding: 20px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--rose-100);
}

.contact-title {
  font-weight: 600;
  margin-bottom: 8px;
}

.apply-form {
  display: grid;
  gap: 16px;
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--rose-100);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  border-radius: 12px;
  border: 1px solid var(--neutral-300);
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--rose-300);
  border-color: var(--rose-300);
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.form-note {
  font-size: 12px;
  color: var(--neutral-700);
  margin: 0;
}

.site-footer {
  padding: 48px 0 24px;
  background: var(--rose-50);
  border-top: 1px solid var(--rose-100);
}

.footer-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 24px;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-note {
  color: var(--neutral-700);
}

.footer-grid a {
  display: block;
  color: var(--neutral-700);
  margin-bottom: 6px;
}

.footer-bottom {
  text-align: center;
  color: var(--neutral-700);
  font-size: 12px;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .apply-grid {
    grid-template-columns: 1.1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
