:root {
  --cream: #fbf5ed;
  --cream-2: #f5eee5;
  --lavender: #d9d0e8;
  --lavender-2: #eee9f6;
  --purple: #776399;
  --purple-dark: #564273;
  --ink: #2e3340;
  --muted: #626675;
  --white: #ffffff;
  --line: rgba(119,99,153,.25);
  --shadow: 0 20px 50px rgba(68, 55, 90, .16);
  --radius: 26px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--cream) 0%, #fff 48%, var(--lavender-2) 100%);
  line-height: 1.65;
}
a { color: var(--purple-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }
.container { width: min(1140px, calc(100% - 36px)); margin-inline: auto; }
.topbar { background: var(--purple-dark); color: var(--white); font-size: .92rem; }
.topbar a { color: var(--white); }
.topbar-inner { display: flex; justify-content: space-between; gap: 20px; padding: 8px 0; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,245,237,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { min-height: 94px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand img { width: 210px; display: block; }
.primary-nav { display: flex; align-items: center; gap: 18px; font-weight: 700; font-size: .95rem; }
.primary-nav a { color: var(--ink); text-decoration: none; }
.primary-nav a.active, .primary-nav a:hover { color: var(--purple); }
.nav-toggle { display: none; border: 1px solid var(--line); border-radius: 999px; padding: 10px 16px; background: var(--white); color: var(--purple-dark); font-weight: 700; }
.button, button.button, input.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; border-radius: 999px; padding: 14px 24px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: var(--white); font-weight: 800; text-decoration: none; cursor: pointer;
  box-shadow: 0 10px 25px rgba(86,66,115,.24);
}
.button:hover { text-decoration: none; transform: translateY(-1px); }
.button-outline { background: var(--white); color: var(--purple-dark); border: 1px solid var(--line); box-shadow: none; }
.button-small { padding: 10px 16px; font-size: .9rem; }
.hero {
  position: relative; overflow: hidden; padding: 76px 0 64px;
}
.hero::before, .section-soft::before {
  content: ""; position: absolute; inset: -140px auto auto -120px; width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(119,99,153,.22), transparent 65%); border-radius: 999px;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 48px; }
.eyebrow { letter-spacing: .18em; text-transform: uppercase; color: var(--purple); font-weight: 800; font-size: .8rem; }
h1, h2, h3 { font-family: "Cormorant Garamond", Georgia, serif; line-height: 1.08; color: var(--ink); }
h1 { font-size: clamp(3.1rem, 7vw, 6.4rem); margin: 10px 0 18px; font-weight: 600; }
h2 { font-size: clamp(2.3rem, 4vw, 4rem); margin: 0 0 16px; }
h3 { font-size: 1.75rem; margin: 0 0 10px; }
.lead { font-size: 1.22rem; color: var(--muted); max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.hero-card {
  position: relative; border-radius: 46px; overflow: hidden; min-height: 560px;
  background: var(--lavender); box-shadow: var(--shadow); border: 8px solid rgba(255,255,255,.65);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; min-height: 560px; }
.floating-note {
  position: absolute; left: 22px; right: 22px; bottom: 22px; background: rgba(255,255,255,.9);
  border-radius: 24px; padding: 18px; box-shadow: var(--shadow); backdrop-filter: blur(8px);
}
.decor-line { display: flex; align-items: center; gap: 16px; margin: 22px 0; color: var(--purple); }
.decor-line::before, .decor-line::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.section { padding: 72px 0; position: relative; }
.section-soft { background: rgba(255,255,255,.58); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.center { text-align: center; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: rgba(255,255,255,.82); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: 0 12px 35px rgba(68,55,90,.08);
}
.card-highlight { background: linear-gradient(180deg, #fff, var(--lavender-2)); }
.icon-pill { width: 54px; height: 54px; display: inline-grid; place-items: center; border-radius: 999px; color: var(--white); background: var(--purple); font-weight: 900; margin-bottom: 16px; }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 34px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 24px; height: 24px; border-radius: 999px; background: var(--purple); color: var(--white); display: grid; place-items: center; font-weight: 900; font-size: .8rem; }
.image-card { border-radius: 42px; overflow: hidden; box-shadow: var(--shadow); background: var(--lavender-2); }
.image-card img { display: block; width: 100%; min-height: 360px; object-fit: cover; }
.banner-cta { background: linear-gradient(135deg, var(--purple), var(--purple-dark)); color: var(--white); border-radius: 36px; padding: 44px; display: grid; grid-template-columns: 1.4fr .6fr; gap: 24px; align-items: center; box-shadow: var(--shadow); }
.banner-cta h2, .banner-cta p { color: var(--white); }
.banner-cta .button { background: var(--white); color: var(--purple-dark); box-shadow: none; }
.testimonial { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.55rem; color: var(--purple-dark); }
.page-hero { padding: 56px 0; background: linear-gradient(135deg, rgba(217,208,232,.75), rgba(251,245,237,.9)); border-bottom: 1px solid var(--line); }
.breadcrumbs { font-size: .9rem; color: var(--muted); margin-bottom: 12px; }
.form-wrap { background: rgba(255,255,255,.86); border: 1px solid var(--line); border-radius: 34px; padding: clamp(22px, 4vw, 44px); box-shadow: var(--shadow); }
.form-section { border-top: 1px solid var(--line); padding-top: 24px; margin-top: 28px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-weight: 800; margin: 0 0 7px; color: var(--ink); }
input, select, textarea {
  width: 100%; border: 1px solid rgba(86,66,115,.26); border-radius: 14px; background: #fff; color: var(--ink);
  padding: 13px 14px; font: inherit; outline: none;
}
textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(119,99,153,.12); }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 18px; }
.checkbox-grid label { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.checkbox-grid input { width: auto; }
.honeypot { position: absolute; left: -10000px; height: 1px; overflow: hidden; }
.alert { border-radius: 16px; padding: 14px 16px; margin-bottom: 20px; font-weight: 700; }
.alert-success { background: #e8f6ee; color: #126134; }
.alert-error { background: #feecec; color: #7b1c1c; }
.blog-card img { border-radius: 20px; width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--lavender-2); }
.post-meta { color: var(--muted); font-size: .92rem; }
.post-content { font-size: 1.08rem; }
.post-content img { border-radius: 22px; }
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-item h3 { margin-bottom: 8px; }
.site-footer { background: #2e2a3b; color: rgba(255,255,255,.84); padding-top: 54px; }
.site-footer a { color: #fff; }
.site-footer h3 { color: #fff; font-size: 1.45rem; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 34px; }
.footer-logo { width: 180px; filter: drop-shadow(0 8px 18px rgba(0,0,0,.16)); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 38px; padding: 18px 0; font-size: .92rem; }
.admin-body { background: #f7f4fb; }
.admin-shell { min-height: 100vh; display: grid; grid-template-columns: 260px 1fr; }
.admin-sidebar { background: #2e2a3b; color: #fff; padding: 24px; }
.admin-sidebar img { width: 160px; margin-bottom: 24px; }
.admin-sidebar a { display: block; color: #fff; padding: 11px 12px; border-radius: 12px; text-decoration: none; }
.admin-sidebar a:hover, .admin-sidebar a.active { background: rgba(255,255,255,.12); }
.admin-main { padding: 34px; }
.admin-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.table-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 12px 30px rgba(68,55,90,.08); }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--purple-dark); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.badge { display: inline-flex; border-radius: 999px; background: var(--lavender-2); color: var(--purple-dark); padding: 4px 10px; font-weight: 800; font-size: .8rem; }
@media (max-width: 900px) {
  .topbar-inner { flex-direction: column; gap: 4px; text-align: center; }
  .header-inner { min-height: 76px; }
  .brand img { width: 160px; }
  .nav-toggle { display: inline-flex; }
  .primary-nav { position: absolute; left: 18px; right: 18px; top: 86px; background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); padding: 16px; display: none; flex-direction: column; align-items: stretch; }
  .primary-nav.open { display: flex; }
  .hero-grid, .grid-2, .grid-3, .grid-4, .banner-cta, .footer-grid, .admin-shell { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
  .hero-card, .hero-card img { min-height: 420px; }
  .form-grid, .checkbox-grid { grid-template-columns: 1fr; }
  .admin-main { padding: 22px; }
  .admin-sidebar { position: static; }
}
