@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=Lora:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700;800&family=Nunito:wght@400;500;600;700;800&family=Playfair+Display:wght@500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --page-bg: #faf7f2;
  --card-bg: #fffaf3;
  --text-color: #4a342b;
  --muted-text: #8c7a6b;
  --button-bg: #6f4e37;
  --button-text: #fffaf3;
  --accent-color: #b59a7d;

  --font-main: 'Montserrat', sans-serif;
  --button-radius: 22px;

  --shadow-soft: 0 24px 70px rgba(90, 62, 50, 0.14);
  --shadow-button: 0 14px 28px rgba(90, 62, 50, 0.18);

  --border-soft: rgba(111, 78, 55, 0.14);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-main);
  background: var(--page-bg);
  color: var(--text-color);
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  cursor: pointer;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 13px 14px;
  background: #fffdf9;
  color: #4a342b;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #b59a7d;
  box-shadow: 0 0 0 4px rgba(181, 154, 125, 0.18);
}

textarea {
  resize: vertical;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #5a3e32;
}

a {
  color: inherit;
  text-decoration: none;
}

.is-hidden {
  display: none !important;
}

.eyebrow {
  margin-bottom: 6px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b59a7d;
}

.primary-button,
.secondary-button {
  min-height: 46px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.primary-button {
  background: #6f4e37;
  color: #fffaf3;
  box-shadow: var(--shadow-button);
}

.secondary-button {
  border: 1px solid rgba(111, 78, 55, 0.18);
  background: #fffaf3;
  color: #6f4e37;
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.primary-button:disabled,
.secondary-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-group {
  width: 100%;
}

.form-message {
  min-height: 20px;
  margin-top: 10px;
  font-size: 0.88rem;
  font-weight: 700;
}

.form-message.success {
  color: #3d7c49;
}

.form-message.error {
  color: #a5483f;
}