:root {
  --bg: #f3f3ee;
  --panel: #fffdf8;
  --ink: #1f2b2d;
  --accent: #0f766e;
  --line: #d8ddd3;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 0%, #deebe6 0, transparent 30%), var(--bg);
}

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

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
}

.head h1 {
  margin: 0.35rem 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
  color: #8d5b2c;
  font-size: 0.8rem;
}

.form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.form h2 {
  grid-column: 1 / -1;
  margin: 1rem 0 0.2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
}

.price-box {
  border: 1px solid #cad4ca;
  border-radius: 12px;
  background: #f8fbf8;
  padding: 0.85rem;
}

.price-box h2 { margin-top: 0.1rem; }

.price-status { margin: 0; color: #2d3f41; font-size: 0.95rem; }
.price-status.error { color: #b42318; font-weight: 700; }

.price-total { margin: 0.45rem 0 0; font-size: 1.02rem; }
.price-total strong { font-size: 1.25rem; color: #0f766e; }

.price-note { margin: 0.4rem 0 0; font-size: 0.9rem; color: #475c5f; }
.price-breakdown { margin: 0.45rem 0 0; padding-left: 1rem; color: #33484a; }
.price-breakdown li { margin: 0.1rem 0; font-size: 0.9rem; }

label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.94rem;
}

input, select, textarea, button { font: inherit; }

input, select, textarea {
  border: 1px solid #c4cdc3;
  border-radius: 10px;
  padding: 0.65rem;
  background: #fff;
}

.full { grid-column: 1 / -1; }

.consent {
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
}

.hidden { display: none; }

button {
  grid-column: 1 / -1;
  border: 0;
  border-radius: 11px;
  padding: 0.8rem 1rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  cursor: pointer;
}

a { color: var(--accent); }

@media (max-width: 760px) {
  .form { grid-template-columns: 1fr; }
  .consent { align-items: flex-start; }
}
