:root {
  --ink: #1A1814;
  --smoke: #2D2820;
  --bone: #E8DFD0;
  --linen: #F2EBDF;
  --stone: #C4B8A6;
  --plum: #5E3A47;
  --sage: #8A9B7A;
  --terracotta: #B8704A;
  --white: #FFFFFF;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 4rem 1.5rem;
  background-color: var(--ink);
  color: var(--bone);
  font-family: "Manrope", Arial, sans-serif;
  text-align: center;
}

main {
  max-width: 640px;
  margin: 0 auto;
}

img.logo {
  max-width: 260px;
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
}

.eyebrow {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  margin: 0 0 1.25rem;
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: italic;
  color: var(--bone);
}

h2 {
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: var(--bone);
}

p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--stone);
}

.intro {
  margin-bottom: 3rem;
}

.divider {
  width: 40px;
  height: 1px;
  background-color: var(--plum);
  border: none;
  margin: 3rem auto;
}

.offerings {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
  text-align: left;
}

@media (min-width: 640px) {
  .offerings {
    flex-direction: row;
  }
}

.offering-card {
  flex: 1;
  padding: 1.5rem;
  background-color: var(--smoke);
  border-top: 2px solid var(--sage);
  border-radius: 2px;
}

.offering-card:nth-child(2) {
  border-top-color: var(--terracotta);
}

.offering-card:nth-child(3) {
  border-top-color: var(--plum);
}

.offering-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--bone);
  margin: 0 0 0.5rem;
}

.offering-card p {
  font-size: 0.95rem;
  margin: 0;
}

#contact-section h2 {
  margin-bottom: 0.5rem;
}

.form-note {
  margin-bottom: 2rem;
}

form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.field label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--bone);
}

.field .optional {
  color: var(--stone);
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1rem;
  background-color: var(--smoke);
  border: 1px solid var(--stone);
  border-radius: 4px;
  color: var(--bone);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sage);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field [data-sf-error] {
  font-size: 0.85rem;
  color: var(--terracotta);
  margin: 0.35rem 0 0;
  min-height: 0;
}

[data-sf-general-error] {
  font-size: 0.9rem;
  color: var(--terracotta);
  margin: 0;
}

button[type="submit"] {
  width: 100%;
  padding: 0.75rem 2rem;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  background-color: var(--bone);
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: default;
}

#contact-success {
  text-align: center;
}

.success-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  stroke: var(--sage);
  fill: none;
  stroke-width: 1.5;
}

#contact-success a {
  color: var(--terracotta);
}

footer {
  margin-top: 4rem;
}

footer p {
  font-size: 0.85rem;
  color: var(--stone);
  margin: 0.25rem 0;
}

footer .credit {
  margin-top: 1.5rem;
  font-size: 0.8rem;
}

footer .cs-link {
  color: var(--terracotta);
  text-decoration: none;
}

footer .cs-link:hover {
  color: var(--bone);
}
