:root {
  --ink: #0e0c10;
  --ink-soft: #2a2730;
  --paper: #ffffff;
  --paper-warm: #fbf8fa;
  --line: #ece6ec;
  --muted: #6f6776;
  --pink: #e0578f;
  --pink-deep: #c0397a;
  --pink-soft: #f6d4e3;
  --pink-tint: #fff0f6;
  --gradient: linear-gradient(135deg, #f9c5d8 0%, #e0578f 55%, #b73474 100%);
  --shadow-sm: 0 2px 8px rgba(20, 12, 24, 0.04);
  --shadow-md: 0 12px 32px rgba(20, 12, 24, 0.08);
  --shadow-lg: 0 28px 56px rgba(20, 12, 24, 0.14);
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1180px;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.container.narrow { max-width: 760px; }
.container.center, .center { text-align: center; }

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h2 { font-size: clamp(1.85rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

.muted { color: var(--muted); }
.lead { font-size: 1.18rem; color: var(--ink-soft); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-deep);
  margin-bottom: 14px;
}
.eyebrow.light { color: var(--pink-soft); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--ink);
}
.brand-icon {
  width: 52px;
  height: 36px;
  display: block;
  background-image: url("assets/logo-icon.png");
  background-repeat: no-repeat;
  background-position: center 48%;
  background-size: 240% auto;
  filter: drop-shadow(0 2px 6px rgba(192, 57, 122, 0.35));
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.2s ease;
}
.nav a:hover { color: var(--pink-deep); }
.nav a.nav-cta {
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.15s ease;
}
.nav a.nav-cta:hover { background: var(--pink-deep); color: #fff; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 12px 28px 22px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  color: var(--ink-soft);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 0.96rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  letter-spacing: 0.005em;
  line-height: 1.1;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover {
  background: var(--pink-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
.btn-large { padding: 18px 40px; font-size: 1.04rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: #0e0c10;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 480px at 75% 25%, rgba(224, 87, 143, 0.32), transparent 60%),
    radial-gradient(700px 500px at 15% 85%, rgba(183, 52, 116, 0.22), transparent 65%),
    linear-gradient(180deg, #15101a 0%, #0e0c10 70%, #0a080d 100%);
  z-index: 0;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, #000 25%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 25%, transparent 75%);
  opacity: 0.6;
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
}
.hero-logo {
  max-width: 560px;
  width: 80%;
  margin: 0 auto 36px;
  filter: drop-shadow(0 20px 40px rgba(224, 87, 143, 0.35));
}
.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  margin: 0 auto 18px;
  max-width: 18ch;
}
.hero-sub {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto 40px;
  max-width: 60ch;
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Section base ---------- */
.section { padding: 100px 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { font-size: 1.05rem; }

/* ---------- Pitch ---------- */
.section-pitch { padding: 80px 0 40px; }
.section-pitch .lead {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
}

/* ---------- Packages ---------- */
.section-packages { background: var(--paper-warm); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--pink-soft);
}
.card-featured {
  border-color: var(--pink);
  box-shadow: 0 18px 48px rgba(224, 87, 143, 0.18);
  transform: translateY(-6px);
}
.card-featured:hover { transform: translateY(-10px); }
.card-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(192, 57, 122, 0.35);
}
.card-head { margin-bottom: 24px; }
.card-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  margin: 0 0 4px;
}
.card-subtitle {
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--pink-deep);
  margin: 0 0 18px;
  text-transform: uppercase;
}
.card-price {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--ink);
}
.cadence { color: var(--muted); font-size: 0.95rem; }
.card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  flex: 1;
}
.card-list li {
  position: relative;
  padding: 10px 0 10px 26px;
  font-size: 0.97rem;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--line);
}
.card-list li:last-child { border-bottom: none; }
.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 0 3px var(--pink-tint);
}
.card-note {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 14px 16px;
  background: var(--paper-warm);
  border-radius: var(--radius);
  margin: 0 0 24px;
  line-height: 1.5;
}
.card-featured .card-note { background: var(--pink-tint); }
.card-cta {
  width: 100%;
  text-align: center;
}
.fine-print {
  margin-top: 48px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ---------- Process ---------- */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.step-num {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}
.step h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.step p {
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- About ---------- */
.section-about { background: var(--paper-warm); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.about-body p { font-size: 1.02rem; }
.about-h3 {
  margin-top: 28px;
  font-size: 1.05rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}

/* ---------- Contact ---------- */
.section-contact {
  background: #0e0c10;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 380px at 80% 30%, rgba(224, 87, 143, 0.28), transparent 60%),
    radial-gradient(500px 380px at 20% 80%, rgba(183, 52, 116, 0.22), transparent 65%);
  pointer-events: none;
}
.section-contact .container { position: relative; }
.section-contact h2 { color: #fff; }
.section-contact .muted { color: rgba(255, 255, 255, 0.7); }
.section-contact .btn-primary {
  background: #fff;
  color: var(--ink);
  margin-top: 12px;
}
.section-contact .btn-primary:hover {
  background: var(--pink);
  color: #fff;
}
.contact-direct {
  margin-top: 28px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
}
.contact-direct a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.contact-direct a:hover {
  color: var(--pink-soft);
  border-bottom-color: var(--pink-soft);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0a080d;
  color: rgba(255, 255, 255, 0.7);
  padding: 44px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 500;
}
.footer-icon {
  width: 40px;
  height: 28px;
  display: block;
  background-image: url("assets/logo-icon.png");
  background-repeat: no-repeat;
  background-position: center 48%;
  background-size: 240% auto;
}
.footer-nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: var(--pink-soft); }
.footer-meta {
  font-size: 0.85rem;
  margin: 0;
  text-align: right;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 22px; }
  .card-featured { transform: none; }
  .card-featured:hover { transform: translateY(-4px); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 28px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand, .footer-nav { justify-content: center; }
  .footer-meta { text-align: center; }
}

@media (max-width: 720px) {
  .container { padding: 0 22px; }
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 70px 0; }
  .hero { min-height: auto; padding: 100px 0 70px; }
  .hero-logo { width: 90%; margin-bottom: 28px; }
  .steps { grid-template-columns: 1fr; }
  .section-head { margin-bottom: 40px; }
  .hero-cta .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
