:root {
  color-scheme: light;
  --accent: #8a4224;
  --accent-dark: #66301b;
  --accent-soft: #f0ded2;
  --ink: #231e1b;
  --muted: #685f5a;
  --line: #ded7d2;
  --paper: #fffdfb;
  --surface: #f7f1ed;
  --shell: 72rem;
  --radius: 1rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--accent-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent);
}

a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
  border-radius: 0.2rem;
}

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

h1,
h2,
h3 {
  line-height: 1.15;
  text-wrap: balance;
}

h1 {
  max-width: 14ch;
  margin-bottom: 1.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 7vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 1.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  transform: translateY(-150%);
  background: var(--paper);
  box-shadow: 0 0 0 2px var(--accent);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
}

.header-inner {
  display: flex;
  min-height: 5.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 13.75rem;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

nav a {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.hero {
  padding-block: clamp(4rem, 10vw, 8rem);
  background:
    radial-gradient(circle at 87% 18%, var(--accent-soft) 0, transparent 26rem),
    var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(17rem, 0.75fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 7rem);
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lead {
  max-width: 42rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.15rem;
  border: 2px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 800;
  text-decoration: none;
}

.button:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  color: white;
}

.text-link {
  font-weight: 800;
}

.status-card {
  padding: 1.5rem;
  border-top: 4px solid var(--accent);
  background: var(--surface);
  box-shadow: 0 1rem 3rem rgb(74 46 32 / 10%);
}

.status-card h2 {
  font-family: inherit;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.status-card p:last-child {
  margin-bottom: 0;
}

.status-label {
  margin-bottom: 0.4rem;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding-block: clamp(4rem, 9vw, 7rem);
  scroll-margin-top: 2rem;
}

.section-tinted {
  background: var(--surface);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 8vw, 7rem);
}

.prose {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.principles article {
  min-height: 12rem;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgb(255 253 251 / 55%);
}

.principles p {
  margin-bottom: 0;
  color: var(--muted);
}

.steps article {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding-block: 1.25rem;
  border-top: 1px solid var(--line);
}

.steps article:last-child {
  border-bottom: 1px solid var(--line);
}

.steps span {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-contact {
  background: var(--accent-dark);
  color: white;
}

.section-contact .eyebrow {
  color: #f1b99a;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(16rem, 0.7fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.contact-grid > div:first-child > p:not(.eyebrow) {
  max-width: 38rem;
  color: #eaded8;
}

.button-light {
  border-color: white;
  background: white;
  color: var(--accent-dark);
}

.button-light:hover {
  border-color: var(--accent-soft);
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.text-link-light,
.contact-details a {
  color: white;
}

.contact-details {
  padding-left: 2rem;
  border-left: 1px solid rgb(255 255 255 / 30%);
}

.contact-details address {
  margin-bottom: 1rem;
  font-style: normal;
}

.bank-details {
  margin: 2rem 0 0;
  font-variant-numeric: tabular-nums;
}

.bank-details div {
  display: grid;
  grid-template-columns: 7rem 1fr;
  padding-block: 0.75rem;
  border-top: 1px solid var(--line);
}

.bank-details div:last-child {
  border-bottom: 1px solid var(--line);
}

.bank-details dt {
  color: var(--muted);
}

.bank-details dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 9vw, 8rem);
}

.document-link {
  display: inline-block;
  font-weight: 800;
}

.privacy-copy h3 {
  margin-top: 1.75rem;
}

.privacy-copy p {
  color: var(--muted);
}

.privacy-copy .updated {
  margin-top: 2rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-footer {
  padding-block: 1.75rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 52rem) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    padding-block: 1rem;
  }

  nav ul {
    flex-wrap: wrap;
    column-gap: 1.25rem;
    row-gap: 0.5rem;
  }

  .hero-grid,
  .two-column,
  .contact-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .principles {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-details {
    padding-top: 2rem;
    padding-left: 0;
    border-top: 1px solid rgb(255 255 255 / 30%);
    border-left: 0;
  }
}

@media (max-width: 34rem) {
  .brand img {
    width: 11rem;
  }

  .principles {
    grid-template-columns: 1fr;
  }

  .principles article {
    min-height: 0;
  }

  .bank-details div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

@media print {
  .site-header,
  .actions,
  .site-footer {
    display: none;
  }

  .section,
  .hero {
    padding-block: 2rem;
  }
}
