:root {
  --rose-deep: #5c3d4a;
  --rose-500: #b76e79;
  --rose-300: #d4a5ad;
  --cream: #fff9fb;
  --cream-2: #faf0f3;
  --text: #2a1f24;
  --muted: #5c4e55;
  --accent: #c9a45c;
  --radius: 22px;
  --shadow: 0 22px 50px rgba(60, 35, 45, 0.12);
  --font-h: 'Outfit', system-ui, sans-serif;
  --font-b: 'DM Sans', system-ui, sans-serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-b);
  font-weight: 400;
  line-height: 1.65;
  font-size: 1.02rem;
}
h1, h2, h3 { font-family: var(--font-h); font-weight: 700; line-height: 1.2; }
.siteHeader {
  background: rgba(255, 249, 251, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(183, 110, 121, 0.15);
  padding: 1rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.headerContainer {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.brandLogo a {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--rose-deep);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.brandLogo span { color: var(--rose-500); font-weight: 600; }
.mainNav ul {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.mainNav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.88rem;
}
.mainNav a:hover { color: var(--rose-500); }
.ctaButton {
  border: 1.5px solid var(--rose-500);
  border-radius: 999px;
  padding: 0.5rem 1.15rem;
  color: var(--rose-500);
  transition: background .2s, color .2s;
}
.ctaButton:hover { background: var(--rose-500); color: #fff; }
.navToggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.45rem;
  cursor: pointer;
  color: var(--text);
}
section, .pageSection {
  max-width: 1140px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.pageMain section:first-child { padding-top: 2.75rem; }
.glassCard {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(183, 110, 121, 0.14);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.btn {
  display: inline-block;
  padding: 0.9rem 1.85rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s, box-shadow .2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose-500), var(--rose-deep));
  color: #fff;
  border: none;
  box-shadow: 0 10px 28px rgba(92, 61, 74, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-outline {
  border: 2px solid var(--rose-500);
  color: var(--rose-500);
  background: transparent;
}
.legalNote {
  font-size: 0.82rem;
  color: var(--muted);
  border-left: 3px solid var(--accent);
  padding: 0.75rem 1rem;
  background: rgba(201, 164, 92, 0.1);
  border-radius: 0 12px 12px 0;
  margin-top: 1.25rem;
}
.orderForm input, .orderForm select, .orderForm textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(183, 110, 121, 0.22);
  background: rgba(255,255,255,0.95);
  font-family: inherit;
  font-size: 1rem;
}
.orderForm label { font-size: 0.88rem; font-weight: 600; display: block; margin-bottom: 0.35rem; color: var(--text); }
.checkboxRow { display: flex; gap: 0.65rem; align-items: flex-start; margin: 1rem 0; font-size: 0.88rem; }
.checkboxRow input { width: auto; margin: 0.25rem 0 0; }
.siteFooter {
  background: #3d2a32;
  color: #f0d8de;
  padding: 3rem 1.5rem 2rem;
  font-size: 0.9rem;
  margin-top: 2rem;
}
.siteFooterInner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.siteFooter h4 {
  margin-top: 0;
  font-family: var(--font-h);
  color: #fff;
}
.siteFooter ul { list-style: none; padding: 0; margin: 0; }
.siteFooter li { margin-bottom: 0.5rem; }
.siteFooter a { color: #e8b4c8; text-decoration: none; }
.siteFooter a:hover { text-decoration: underline; }
.siteFooterCopy {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 0.78rem;
  opacity: 0.75;
}
.grid2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.statGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.legalDoc { max-width: 720px; margin: 0 auto; padding: 2rem 1.5rem 4rem; }
.legalDoc h1 { font-size: 1.75rem; }
.legalDoc a { color: var(--rose-500); }
.contentNarrow { max-width: 720px; margin-left: auto; margin-right: auto; }
.twoCol { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.pageHero {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.pageHeroText { flex: 1; min-width: 280px; }
.pageHeroMedia { flex: 0 1 42%; min-width: 260px; }
.pageHeroMedia img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 16/10;
}
@media (max-width: 900px) {
  .navToggle { display: block; }
  .heroFlex { flex-direction: column !important; }
  .heroFlex > div { max-width: 100% !important; }
  .statGrid { grid-template-columns: 1fr !important; }
  .twoCol { grid-template-columns: 1fr !important; }
  .pageHero { flex-direction: column; }
}
