@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Mulish:wght@300;400;500;600;700&display=swap');

:root {
  --cream: #F6F3EC;
  --cream-2: #FBFAF5;
  --ink: #283328;
  --green: #2F4A3A;
  --green-deep: #20342A;
  --green-soft: #89A38A;
  --olive: #B7B985;
  --text-body: #4C584C;
  --text-muted: #5E6B5F;
  --text-faint: #6E7B6C;
  --border-soft: rgba(47, 74, 58, .12);
  --error: #B4543F;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Mulish', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--green);
  font-weight: 600;
  line-height: 1.12;
}

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

form,
.form,
.contact-form,
.crisp-form {
  background: var(--cream-2);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 26px 56px -34px rgba(36, 58, 45, .4);
}

label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: #3D4A3D;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 11px;
  border: 1px solid rgba(47, 74, 58, .2);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: none;
}

textarea {
  min-height: 96px;
  resize: vertical;
  line-height: 1.5;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green-soft);
  box-shadow: 0 0 0 3px rgba(137, 163, 138, .18);
}

button,
input[type='submit'],
.button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: none;
  border-radius: 13px;
  background: var(--green);
  color: var(--cream);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  padding: 16px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(47, 74, 58, .22);
}

button:hover,
input[type='submit']:hover,
.button:hover,
.btn:hover {
  background: var(--green-deep);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--text-faint);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--olive);
}

.help-text,
.description,
.hint,
small {
  color: var(--text-muted);
  font-size: 13.5px;
}

.error,
.form-error {
  color: var(--error);
  font-size: 12px;
  font-weight: 500;
}

@media (max-width: 640px) {
  form,
  .form,
  .contact-form,
  .crisp-form {
    padding: 26px 22px;
    border-radius: 20px;
  }
}
