:root { --navy: #172b3a; --ink: #25333a; --muted: #65737a; --cream: #f7f1e8; --paper: #fffdf9; --terra: #c7684d; --line: #dfd4c6; }

* { box-sizing: border-box; }

body { min-height: 100vh; margin: 0; color: var(--ink); background: var(--cream); font-family: Georgia, "Times New Roman", serif; font-size: 17px; line-height: 1.6; }
.site-header, main, footer { width: min(1120px, calc(100% - 48px)); margin-inline: auto; }
.site-header { display: flex; align-items: center; justify-content: space-between; padding: 30px 0 18px; }
.brand img { display: block; width: 180px; height: auto; mix-blend-mode: multiply; }
nav { display: flex; gap: 24px; margin-left: auto; margin-right: 28px; }
nav a { color: var(--ink); font: 700 12px Arial, sans-serif; letter-spacing: .05em; text-decoration: none; }
nav a:hover { color: var(--terra); }
.header-mark { color: var(--terra); font-size: 28px; }
.hero { padding: 76px 8% 92px; }
.eyebrow { margin: 0 0 13px; color: var(--terra); font: 700 12px/1.2 Arial, sans-serif; letter-spacing: .16em; text-transform: uppercase; }
h1, h2 { margin: 0; color: var(--navy); font-weight: 400; letter-spacing: -.035em; }
h1 { max-width: 670px; font-size: clamp(3.2rem, 8vw, 6.6rem); line-height: .98; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; }
.hero-lead { max-width: 500px; margin: 28px 0; color: var(--muted); font-size: 21px; }
.hero-link, button { color: var(--paper); background: var(--navy); }
.hero-link { display: inline-flex; gap: 15px; align-items: center; padding: 13px 18px; font: 700 14px Arial, sans-serif; text-decoration: none; }
.hero-link:hover, button:hover { background: var(--terra); }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.panel { padding: 38px; background: var(--paper); border: 1px solid var(--line); border-radius: 3px; }
.intro p { margin: 0 0 1em; }
.services h2 { margin-bottom: 25px; }
.services p { color: var(--muted); }
.text-link { display: inline-flex; gap: 12px; align-items: center; margin-top: 12px; color: var(--terra); font: 700 14px Arial, sans-serif; text-decoration: none; }
.text-link:hover { color: var(--navy); }
.services ul { margin: 0; padding: 0; list-style: none; }
.services > ul > li { display: flex; gap: 12px; margin: 0 0 17px; }
.service-dot { color: var(--terra); font-size: 10px; line-height: 1.8; }
.services strong { font-weight: 400; }
.services li ul { margin-top: 4px; color: var(--muted); font-size: .9em; }
.services li li { margin: 2px 0; }
.services li li::before { content: "— "; color: var(--terra); }
.page-content { max-width: 820px; padding: 78px 8% 105px; }
.page-content h1 { max-width: 700px; font-size: clamp(3rem, 7vw, 5.8rem); }
.prose { max-width: 680px; margin-top: 46px; }
.prose p { margin: 0 0 1.25em; }
.prose blockquote { margin: 0 0 42px; padding-left: 22px; color: var(--terra); font-size: 25px; line-height: 1.3; border-left: 3px solid var(--terra); }
.prose h2 { margin: 56px 0 22px; font-size: 2.2rem; }
.prose h3 { margin: 34px 0 8px; color: var(--navy); font: 700 17px/1.3 Arial, sans-serif; }
.page-back { margin-top: 24px; }
.contact-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; padding: 108px 8% 90px; }
.contact-copy > p:not(.eyebrow) { max-width: 390px; color: var(--muted); }
address { display: grid; gap: 3px; margin-top: 28px; font-size: 15px; font-style: normal; }
address a { color: var(--terra); font-weight: 700; text-decoration: none; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; column-gap: 18px; align-content: start; }
.contact-form label { margin: 0 0 5px; font: 700 12px Arial, sans-serif; letter-spacing: .06em; text-transform: uppercase; }
.contact-form input, .contact-form textarea { width: 100%; margin: 0 0 18px; padding: 11px 12px; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; font: inherit; }
.contact-form textarea, .contact-form label:nth-of-type(3), .contact-form input:nth-of-type(3), .contact-form button { grid-column: 1 / -1; }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--terra); outline-offset: 2px; border-color: transparent; }
.contact-form button { justify-self: start; padding: 13px 18px; border: 0; font: 700 14px Arial, sans-serif; cursor: pointer; }
footer { padding: 24px 0 34px; color: var(--muted); border-top: 1px solid var(--line); font: 13px Arial, sans-serif; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

@media (max-width: 767px) {
  .site-header, main, footer { width: min(100% - 32px, 1120px); }
  .site-header { padding-top: 20px; }
  .brand img { width: 145px; }
  nav { gap: 12px; margin-right: 14px; }
  nav a { font-size: 10px; }
  .hero { padding: 58px 0 65px; }
  .hero-lead { font-size: 19px; }
  .content-grid, .contact-section { grid-template-columns: 1fr; }
  .panel { padding: 27px 23px; }
  .page-content { padding: 58px 0 75px; }
  .contact-section { gap: 38px; padding: 75px 0 65px; }
}
@media (prefers-reduced-motion: no-preference) { .hero-link, button { transition: background-color .18s ease; } }
