:root {
  --bg: #f7f1f6;
  --panel: #ffffff;
  --panel-soft: #f3ecf4;
  --accent: #cdb4db;
  --text: #2c2b3a;
  --muted: #6f6b7b;
  --border: rgba(44, 43, 58, 0.12);
  --shadow: 0 18px 40px rgba(110, 99, 131, 0.15);
  --radius: 22px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: radial-gradient(900px 600px at 20% 0%, #fceff6 0%, var(--bg) 55%);
  color: var(--text);
  line-height: 1.55;
}

.page {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 100vh;
  display: grid;
  gap: 18px;
  align-content: center;
  padding: 24px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  font-weight: 700;
  letter-spacing: 0.6px;
  box-shadow: var(--shadow);
}
.brand-name {
  margin: 0;
  font-size: 15px;
  letter-spacing: 0.4px;
  color: var(--muted);
}

.intro h1 {
  margin: 14px 0 10px;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.2;
}
.lead {
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
}

.intro,
.services,
.contact {
  background: var(--panel);
  border-radius: var(--radius);
  padding: clamp(18px, 2.6vw, 26px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.services h2,
.contact h2 {
  margin: 0 0 8px;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 22px;
}
.services p {
  margin: 0 0 10px;
  color: var(--muted);
}
.services ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.services li + li { margin-top: 4px; }
.small { font-size: 13px; }
.muted { color: var(--muted); }

.form {
  margin-top: 12px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel-soft);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

label {
  font-size: 13px;
  color: var(--muted);
}

input, textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(44, 43, 58, 0.18);
  background: #fff;
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(205, 180, 219, 0.3);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(205, 180, 219, 0.6);
  background: var(--accent);
  color: #2c2135;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
}
.button:hover {
  filter: brightness(0.98);
}

.hidden {
  display: none;
}

@media (max-width: 720px) {
  .page {
    padding: 20px 0;
    gap: 14px;
  }
  .field-row { grid-template-columns: 1fr; }
  .intro h1 { font-size: clamp(24px, 7vw, 34px); }
  .services h2,
  .contact h2 { font-size: 20px; }
}
