:root {
  --rose: #c45c7a;
  --rose-dark: #9e3d5c;
  --blush: #f8e9ee;
  --cream: #faf6f2;
  --ink: #2c2426;
  --muted: #6e5e62;
  --line: rgba(196, 92, 122, 0.16);
  --white: #ffffff;
  --ok: #2f7d4a;
  --shadow: 0 14px 40px rgba(44, 36, 38, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 246, 242, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--rose-dark);
}

.logo span { display: block; font-size: 0.72rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active { color: var(--rose); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--rose);
  color: var(--white);
  padding: 0.72rem 1.2rem;
  border-radius: 999px;
  font-weight: 650;
  border: 0;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn:hover { background: var(--rose-dark); }
.btn-ghost {
  background: transparent;
  color: var(--rose-dark);
  border: 1px solid var(--rose);
}
.btn-ghost:hover { background: var(--blush); }

.hero {
  display: grid;
  gap: 2rem;
  padding: 3rem 0 2.5rem;
}

.kicker {
  color: var(--rose);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

h1 { font-size: clamp(2rem, 4.4vw, 3.3rem); line-height: 1.18; margin-bottom: 0.8rem; }
h2 { font-size: 1.7rem; margin-bottom: 0.7rem; }
h3 { font-size: 1.08rem; margin-bottom: 0.3rem; }
p.lead, .muted { color: var(--muted); }
.mb { margin-bottom: 1rem; }

.hero-art {
  min-height: 280px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(44, 36, 38, 0.08), rgba(44, 36, 38, 0.28)),
    url("https://images.unsplash.com/photo-1490750967868-88aa4486c946?auto=format&fit=crop&w=1400&q=80") center/cover;
  box-shadow: var(--shadow);
}

.pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.2rem 0 1.5rem; }
.pill {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.85rem;
}

section { padding: 2.4rem 0; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.1rem;
}

.card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card img { height: 170px; width: 100%; object-fit: cover; }
.card-body { padding: 1rem 1.1rem 1.2rem; }
.price { color: var(--rose-dark); font-weight: 800; margin-top: 0.45rem; }

.split {
  display: grid;
  gap: 1.6rem;
}

.panel {
  background: var(--white);
  border-radius: 22px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

label { display: block; font-weight: 650; font-size: 0.9rem; margin: 0.7rem 0 0.3rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 0.72rem 0.8rem;
  font: inherit;
  color: var(--ink);
}
textarea { min-height: 96px; resize: vertical; }
.hint { font-size: 0.82rem; color: var(--muted); margin-top: 0.25rem; }
.check { display: flex; gap: 0.55rem; align-items: flex-start; margin: 0.9rem 0 1rem; font-size: 0.9rem; }
.check input { width: auto; margin-top: 0.25rem; }
.form-msg {
  display: none;
  margin-top: 0.9rem;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  background: #e9f7ee;
  color: var(--ok);
  font-weight: 650;
}
.form-msg.show { display: block; }

.policy { max-width: 760px; }
.policy h1 { margin-bottom: 0.4rem; }
.policy h2 { font-size: 1.2rem; margin: 1.4rem 0 0.45rem; }
.policy p, .policy li { color: var(--muted); margin-bottom: 0.7rem; }
.policy ul { padding-left: 1.1rem; list-style: disc; }
.policy a { color: var(--rose-dark); text-decoration: underline; }

.page-head { padding: 2.2rem 0 0.4rem; }

footer {
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  padding: 2rem 0 1.6rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.4rem;
  margin-bottom: 1.4rem;
}

footer a:hover { color: var(--rose); }
.copyright { border-top: 1px solid var(--line); padding-top: 1rem; }

@media (max-width: 860px) {
  .nav { flex-wrap: wrap; }
  .nav-links { flex-wrap: wrap; width: 100%; gap: 0.7rem; font-size: 0.88rem; }
  .foot-grid { grid-template-columns: 1fr; }
}

@media (min-width: 860px) {
  .hero, .split { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
  .hero-art { min-height: 360px; }
  .split.top { align-items: start; }
}
