:root {
  --bg: #f6f1e9;
  --paper: #fffaf2;
  --paper-strong: #fffdf8;
  --ink: #10100f;
  --ink-soft: #33302c;
  --muted: #7d7468;
  --muted-2: #a79c8c;
  --line: rgba(16, 16, 15, .14);
  --line-strong: rgba(16, 16, 15, .26);
  --accent: #7f1d1d;
  --accent-soft: #e9d7ce;
  --green: #345c43;
  --gold: #a77a28;
  --shadow: 0 26px 80px rgba(48, 39, 28, .12);
  --shadow-soft: 0 14px 44px rgba(48, 39, 28, .08);
  --max: 1240px;
  --radius: 8px;
  --radius-lg: 18px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(16, 16, 15, .035) 1px, transparent 1px) 0 0 / 84px 84px,
    linear-gradient(180deg, #f8f4ee 0%, var(--bg) 48%, #efe7dc 100%);
  color: var(--ink);
  font-family: "Trebuchet MS", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: .55;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.quote {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

code {
  font-family: inherit;
}

.page-shell {
  min-height: 100vh;
  overflow: clip;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 22px;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(280px, 1.2fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading.wide {
  grid-template-columns: 1fr minmax(300px, 520px);
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 6vw, 82px);
  line-height: .95;
}

.section-heading p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.lead {
  max-width: 560px;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
}

.btn,
.text-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  padding: 0 22px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}

.btn:hover,
.text-btn:hover {
  transform: translateY(-1px);
}

.btn.ghost,
.text-btn {
  background: transparent;
  color: var(--ink);
}

.btn.ghost:hover,
.text-btn:hover {
  background: var(--ink);
  color: var(--paper);
}

.field {
  display: grid;
  gap: 7px;
}

.field span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  background: var(--paper-strong);
  color: var(--ink);
  padding: 0 14px;
  outline: none;
}

.field textarea {
  width: 100%;
  min-height: 98px;
  border: 1px solid var(--line);
  background: var(--paper-strong);
  color: var(--ink);
  padding: 14px;
  resize: vertical;
  outline: none;
}

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

.field.compact input,
.field.compact select {
  min-height: 44px;
}

.empty-state {
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, .62);
  color: var(--muted);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
