*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: #2c2430;
  background:
    linear-gradient(180deg, #fff7f3 0%, #f6efff 42%, #e9fff7 100%);
  line-height: 1.6;
  min-height: 100vh;
}
a { color: inherit; }
button, input, textarea { font: inherit; color: inherit; }

.blobs { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.blob {
  position: absolute; filter: blur(8px); opacity: 0.55;
  border-radius: 50%;
}
.blob.a { width: 340px; height: 340px; background: #ffb4a2; left: -80px; top: -40px; }
.blob.b { width: 280px; height: 280px; background: #c8b6ff; right: -60px; top: 120px; }
.blob.c { width: 320px; height: 320px; background: #80ffdb; right: 12%; bottom: -90px; }

.wrap { width: min(1080px, calc(100% - 36px)); margin-inline: auto; position: relative; z-index: 1; }

.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255, 247, 243, 0.78);
  backdrop-filter: blur(16px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 74px; gap: 16px;
}
.logo { text-decoration: none; }
.logo b {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px; font-weight: 600; letter-spacing: -0.03em;
}
.logo span { display: block; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: #7c6a9a; }
.nav { display: flex; gap: 22px; }
.nav a { text-decoration: none; font-weight: 700; }
.pill {
  background: #2c2430; color: #fff; text-decoration: none;
  padding: 10px 16px; border-radius: 999px; font-weight: 800;
}
.menu-toggle { display: none; border: 0; background: #fff; width: 44px; height: 44px; border-radius: 14px; }

.hero { padding: 60px 0 20px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.kicker { color: #9a5b7d; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; font-size: 12px; }
h1, h2, h3 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; letter-spacing: -0.03em; line-height: 1.08; margin: 0; }
h1 { font-size: clamp(42px, 6vw, 76px); margin: 12px 0 16px; }
.lead { font-size: 18px; max-width: 40ch; color: #5c5366; }
.cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 20px; border-radius: 999px; text-decoration: none;
  font-weight: 800; border: 0; cursor: pointer;
}
.btn-dark { background: #2c2430; color: #fff; }
.btn-peach { background: #ffb4a2; color: #2c2430; }
.btn-ghost { background: rgba(255,255,255,0.7); }

.keycard {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 32px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(124, 106, 154, 0.16);
}
.keycard .num {
  font-family: "Cormorant Garamond", serif; font-size: 88px; line-height: 0.85; color: #c8b6ff;
}
.keycard p { margin: 8px 0 0; }

.section { padding: 70px 0; position: relative; z-index: 1; }
.section h2 { font-size: clamp(32px, 4vw, 48px); }
.sub { color: #5c5366; max-width: 50ch; }

.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.soft {
  background: rgba(255,255,255,0.78);
  border-radius: 26px; padding: 22px;
  border: 1px solid rgba(255,255,255,0.9);
}
.soft h3 { font-size: 26px; margin-bottom: 8px; }
.tag { display: inline-block; background: #80ffdb; border-radius: 999px; padding: 4px 10px; font-size: 12px; font-weight: 800; margin-bottom: 10px; }
.tag.peach { background: #ffb4a2; }
.tag.lilac { background: #c8b6ff; }

.tariffs .soft.is-main { outline: 3px solid #c8b6ff; transform: translateY(-6px); }
.price { font-size: 32px; font-family: "Cormorant Garamond", serif; }

.contact { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 20px; }
form { display: grid; gap: 12px; }
label { display: grid; gap: 6px; font-weight: 800; font-size: 13px; }
input, textarea { border: 0; border-radius: 14px; padding: 12px 14px; background: #fff; }
.hp { position: absolute; left: -9999px; }
.form-status { font-weight: 800; min-height: 1.3em; }
.form-status.is-error { color: #9f1239; }
.big-phone { font-family: "Cormorant Garamond", serif; font-size: 36px; text-decoration: none; }

details { background: rgba(255,255,255,0.75); border-radius: 16px; padding: 14px 18px; margin-top: 8px; }
summary { cursor: pointer; font-weight: 800; }
footer { padding: 10px 0 40px; color: #7c6a9a; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .nav, .pill { display: none; }
  .nav.is-open {
    display: flex; flex-direction: column; position: absolute; inset: 74px 0 auto;
    background: #fff7f3; padding: 12px 20px 18px;
  }
  .hero, .grid3, .contact { grid-template-columns: 1fr; }
  .tariffs .soft.is-main { transform: none; }
}
