:root {
  --bg: #fbfaf7;
  --surface: #ffffff;
  --ink: #24231f;
  --ink-soft: #55524a;
  --muted: #777169;
  --line: #ded8cd;
  --green: #173d35;
  --gold: #b79a5d;
  --shadow: 0 24px 70px rgba(27, 35, 31, 0.11);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  line-height: 1.55;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(222, 216, 205, 0.72);
  background: rgba(251, 250, 247, 0.91);
  backdrop-filter: blur(18px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  width: 38px;
  height: 38px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.75rem;
}

.header-cta {
  padding: 12px 22px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

.form-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 520px);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 118px) clamp(20px, 4vw, 56px);
}

.form-intro {
  display: grid;
  gap: 22px;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.8rem, 5.8vw, 5.5rem);
  font-weight: 500;
  line-height: 1.04;
}

p {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}

.request-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
}

textarea {
  resize: vertical;
}

input[readonly] {
  background: #f7f5f0;
  color: var(--ink-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  font: inherit;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  border: 1px solid var(--green);
  background: var(--green);
  color: #fff;
}

.microcopy {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 840px) {
  .form-hero {
    grid-template-columns: 1fr;
  }

  .header-cta {
    display: none;
  }
}
