:root {
  --bg: #f7f2ea;
  --text: #3a322a;
  --muted: #7a6f64;
  --accent: #8b9a7a;
  --accent-dark: #6f7e60;
  --field-bg: #fbf8f2;
  --border: #d9cfc1;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  max-width: 560px;
  margin: 0 auto;
  padding: 80px 28px 96px;
}

/* ───── Brand ───── */
.brand {
  text-align: center;
  margin-bottom: 56px;
}

.logotype {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.5rem, 7vw, 3.5rem);
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: 0.01em;
}

.logotype span {
  display: block;
}

.tagline {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--accent-dark);
  margin: 0;
}

/* ───── Blurb ───── */
.blurb {
  text-align: center;
  margin-bottom: 64px;
}

.blurb p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  margin: 0;
}

/* ───── Divider ───── */
.divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 40px;
  color: var(--accent-dark);
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--accent);
  opacity: 0.55;
}

.divider span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

/* ───── Form ───── */
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--field-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--sans);
  line-height: 1.55;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237a6f64' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(139, 154, 122, 0.18);
}

.submit {
  margin-top: 14px;
  align-self: stretch;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #fbf8f2;
  background: var(--accent);
  border: none;
  border-radius: 4px;
  padding: 16px 20px;
  cursor: pointer;
  transition: background 160ms ease, transform 80ms ease;
}

.submit:hover {
  background: var(--accent-dark);
}

.submit:active {
  transform: translateY(1px);
}

.submit:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(139, 154, 122, 0.35);
}

.submit:disabled {
  opacity: 0.65;
  cursor: progress;
}

.form-status {
  margin: 8px 0 0;
  font-size: 0.92rem;
  color: #a04a3c;
  text-align: center;
}

.honeypot { display: none; }

/* ───── Thanks page ───── */
.thanks {
  text-align: center;
}

.thanks-headline {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
  margin: 0 0 24px;
}

.back-link {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-dark);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 160ms ease;
}

.back-link:hover {
  border-bottom-color: var(--accent-dark);
}

/* ───── Mobile ───── */
@media (max-width: 600px) {
  .page {
    padding: 56px 22px 72px;
  }

  .brand {
    margin-bottom: 44px;
  }

  .blurb {
    margin-bottom: 48px;
  }

  .divider {
    margin-bottom: 32px;
  }
}
