:root {
  --forest: #183c36;
  --forest-dark: #102e29;
  --cream: #f5f0e4;
  --paper: #fffdf7;
  --gold: #d39a3c;
  --ink: #202421;
  --muted: #5f665e;
  --line: #d4d0c4;
  --error: #a42c20;
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

button, input, select, textarea { font: inherit; }

.container { width: min(calc(100% - 40px), var(--max-width)); margin: 0 auto; }

.site-header { border-bottom: 1px solid var(--line); background: var(--paper); }

.header-inner, .footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.header-inner { min-height: 82px; }

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--forest); font-size: 1.35rem; font-weight: bold; text-decoration: none; }
.brand-mark { display: grid; width: 38px; height: 38px; place-items: center; background: var(--forest); color: var(--cream); font-family: Arial, sans-serif; font-size: .75rem; letter-spacing: .06em; }
.header-link { color: var(--forest); font-size: .95rem; font-weight: bold; text-underline-offset: 4px; }

.hero { padding: 94px 0 78px; background: var(--cream); border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(270px, .7fr); gap: 80px; align-items: end; }
.eyebrow { margin: 0 0 13px; color: var(--forest); font-family: Arial, sans-serif; font-size: .74rem; font-weight: bold; letter-spacing: .13em; text-transform: uppercase; }
h1, h2 { color: var(--forest-dark); line-height: 1.08; }
h1 { max-width: 760px; margin: 0; font-size: clamp(2.7rem, 6vw, 5rem); font-weight: normal; letter-spacing: -.045em; }
h2 { margin: 0; font-size: clamp(1.65rem, 3vw, 2.35rem); font-weight: normal; letter-spacing: -.03em; }
.hero-text { max-width: 590px; margin: 27px 0 32px; color: #3d443e; font-size: 1.2rem; }
.button { display: inline-block; border: 1px solid transparent; padding: 13px 21px; cursor: pointer; font-family: Arial, sans-serif; font-size: .9rem; font-weight: bold; text-decoration: none; }
.button-primary { background: var(--forest); color: #fff; }
.button-primary:hover, .button-primary:focus { background: var(--forest-dark); }
.button-secondary { border-color: var(--forest); background: transparent; color: var(--forest); }
.hero-note { padding: 26px 28px; border-top: 5px solid var(--gold); background: var(--paper); }
.note-number, .principle-number { margin: 0 0 8px; color: var(--gold); font-family: Arial, sans-serif; font-size: .78rem; font-weight: bold; letter-spacing: .1em; }
.hero-note h2 { font-size: 1.48rem; }
.hero-note ol { margin: 18px 0 0; padding-left: 20px; font-size: .96rem; }
.hero-note li + li { margin-top: 8px; }

.principles { border-bottom: 1px solid var(--line); }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.principle-grid article { min-height: 190px; padding: 35px 35px 30px 0; }
.principle-grid article + article { border-left: 1px solid var(--line); padding-left: 35px; }
.principle-grid h2 { font-size: 1.4rem; }
.principle-grid p { margin: 10px 0 0; color: var(--muted); font-size: .98rem; }

.information-section { padding: 84px 0; }
.information-grid { display: grid; grid-template-columns: .8fr 1fr; gap: 80px; }
.information-copy { max-width: 560px; color: var(--muted); }
.information-copy p:first-child { margin-top: 0; }

.request-section { padding: 82px 0 96px; background: var(--forest); }
.form-wrap { display: grid; grid-template-columns: .65fr 1.35fr; gap: 72px; align-items: start; }
.form-intro { color: #dfe5da; }
.form-intro .eyebrow { color: #e5b66a; }
.form-intro h2 { color: #fffaf0; }
.form-intro p { color: #dfe5da; }
.required-note { margin-top: 28px; font-family: Arial, sans-serif; font-size: .8rem; }
.required-note span, label > span, .consent strong { color: #e5b66a; }
.request-form, .confirmation { padding: 34px; background: var(--paper); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-full { grid-column: 1 / -1; }
label { color: var(--forest-dark); font-family: Arial, sans-serif; font-size: .82rem; font-weight: bold; }
input, select, textarea { width: 100%; border: 1px solid #b9b8ae; border-radius: 0; padding: 11px 12px; background: #fff; color: var(--ink); }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid #edd19f; outline-offset: 1px; border-color: var(--forest); }
input:disabled { background: #efeee9; cursor: not-allowed; }
.field-help { margin: 0; color: var(--muted); font-size: .82rem; }
.consent { display: flex; gap: 11px; align-items: flex-start; margin: 27px 0 18px; font-weight: normal; line-height: 1.4; }
.consent input { width: 17px; height: 17px; margin-top: 2px; flex: 0 0 auto; }
.form-error { margin: 0 0 18px; color: var(--error); font-family: Arial, sans-serif; font-size: .9rem; font-weight: bold; }
.confirmation { grid-column: 2; color: var(--muted); }
.confirmation h2 { color: var(--forest-dark); }
.confirmation .button { margin-top: 10px; }

.site-footer { padding: 29px 0; background: var(--forest-dark); color: #dfe5da; font-family: Arial, sans-serif; font-size: .8rem; }
.site-footer p { margin: 0; }

@media (max-width: 760px) {
  .container { width: min(calc(100% - 30px), var(--max-width)); }
  .header-inner { min-height: 68px; }
  .header-link { font-size: .8rem; }
  .hero { padding: 62px 0 48px; }
  .hero-grid, .information-grid, .form-wrap { grid-template-columns: 1fr; gap: 38px; }
  .principle-grid, .form-grid { grid-template-columns: 1fr; }
  .principle-grid article { min-height: auto; padding: 27px 0; }
  .principle-grid article + article { border-top: 1px solid var(--line); border-left: 0; padding-left: 0; }
  .information-section, .request-section { padding: 58px 0; }
  .request-form, .confirmation { padding: 24px 20px; }
  .confirmation { grid-column: 1; }
  .footer-inner { align-items: flex-start; flex-direction: column; gap: 7px; }
}
