:root {
  color-scheme: light;
  --paper: #f7f7f2;
  --ink: #20342c;
  --muted: #5a625c;
  --line: #d8dcd4;
  --accent: #2e5942;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 36px; }
body { margin: 0; font-size: 17px; line-height: 1.6; }
a { color: inherit; text-underline-offset: 5px; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: #d6e4d4; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 5px; }
.wrap { width: min(1120px, calc(100% - 96px)); margin-inline: auto; }
.skip-link { position: absolute; top: -100px; left: 16px; padding: 10px 20px; background: white; z-index: 2; }
.skip-link:focus { top: 16px; }
.header { min-height: 112px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 650; text-decoration: none; }
.brand svg { flex-shrink: 0; }
nav { display: flex; gap: 32px; font-size: 14px; }
nav a, .footer a { text-decoration: none; }
nav a:hover, .footer a:hover { text-decoration: underline; }
.hero { padding-block: 80px 104px; }
.label { margin: 0; font-size: 13px; font-weight: 500; color: var(--muted); }
.hero-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 70px; align-items: end; margin-top: 36px; }
h1, h2, p { margin-top: 0; }
h1 { margin-bottom: 0; font-size: clamp(72px, 8.7vw, 118px); line-height: .98; letter-spacing: -.065em; font-weight: 550; }
.hero-intro { max-width: 310px; padding-bottom: 8px; }
.hero-intro p { margin-bottom: 30px; font-size: 20px; line-height: 1.65; }
.text-link { display: inline-flex; align-items: center; gap: 20px; font-size: 14px; text-decoration-thickness: 1px; }
.section { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; padding-block: 66px; border-top: 1px solid var(--line); }
.section-label { padding-top: 6px; }
.section-body { min-width: 0; }
h2 { margin-bottom: 20px; font-size: clamp(26px, 3vw, 34px); line-height: 1.25; letter-spacing: -.035em; font-weight: 550; }
.section-body > p { max-width: 580px; margin-bottom: 0; color: var(--muted); }
.project-facts { display: flex; gap: 72px; margin: 32px 0 0; }
dt { color: var(--muted); font-size: 12px; }
dd { margin: 3px 0 0; font-size: 15px; }
.contact-section { padding-bottom: 80px; }
.contact-section h2 { margin-top: 24px; }
.contact-intro { max-width: 280px; color: var(--muted); font-size: 15px; }
.contact-note { padding-top: 6px; }
.button { display: inline-flex; justify-content: space-between; align-items: center; gap: 36px; padding: 13px 21px; border: 1px solid var(--ink); border-radius: 3px; background: var(--ink); color: white; font-size: 14px; line-height: 1.5; }
.button:hover:not(:disabled) { background: var(--accent); border-color: var(--accent); }
.button:disabled { background: #e6e8e2; border-color: #d8dcd4; color: #5a625c; cursor: default; }
.fields-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 22px; min-width: 0; }
label { display: block; margin-bottom: 8px; font-size: 14px; }
.field input, textarea { display: block; width: 100%; border: 1px solid #aeb8ac; border-radius: 3px; background: #fff; color: var(--ink); padding: 10px 12px; font-size: 16px; line-height: 1.5; }
textarea { resize: vertical; min-height: 160px; }
.form-note { margin: 15px 0 20px; font-size: 12px; line-height: 1.7; color: var(--muted); max-width: 550px; }
#contact-captcha { min-height: 70px; }
#contact-captcha iframe { max-width: 100%; }
#captcha-status:empty { display: none; }
#contact-submit { margin-top: 12px; }
.retry-button { display: block; padding: 0; margin: 0 0 18px; border: 0; background: none; color: var(--ink); text-decoration: underline; }
.form-status { margin: 16px 0 0; font-size: 14px; }
.form-status:empty { display: none; }
.form-status[data-state="error"] { color: #9a2c22; }
.form-status[data-state="success"] { color: var(--accent); }
.footer { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); padding-block: 27px 32px; color: var(--muted); font-size: 12px; }
@media (max-width: 800px) {
  .wrap { width: calc(100% - 48px); }
  .hero { padding-block: 48px 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-intro { max-width: 370px; padding: 0; }
  .hero-intro p { margin-bottom: 20px; }
  .section { grid-template-columns: 1fr; gap: 25px; padding-block: 42px; }
  .section-label { padding-top: 0; }
  .contact-section h2 { margin-top: 15px; }
  .contact-intro { max-width: 440px; margin-bottom: 0; }
  .contact-note { padding: 0; }
}
@media (max-width: 480px) {
  .header { min-height: 110px; align-items: flex-start; justify-content: center; flex-direction: column; gap: 15px; }
  nav { gap: 28px; font-size: 13px; }
  .hero { padding-top: 36px; }
  h1 { font-size: clamp(56px, 15vw, 72px); }
  .hero-intro p { font-size: 18px; }
  .fields-row { grid-template-columns: 1fr; gap: 0; }
  .project-facts { gap: 48px; }
  .footer { font-size: 11px; gap: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
