:root {
  --ink: #14233a;
  --muted: #637082;
  --paper: #f4f1e9;
  --accent: #a97836;
  --line: #d9d5ca;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { font-family: var(--sans); }
body { min-width: 320px; margin: 0; background: var(--paper); color: var(--ink); -webkit-font-smoothing: antialiased; }
a { color: inherit; }
.page { display: flex; min-height: 100svh; flex-direction: column; }
.wrap { width: min(1060px, calc(100% - 3rem)); margin: 0 auto; }

.header { display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; padding-top: clamp(1.75rem, 4vw, 3rem); }
.brand { display: flex; flex-direction: column; color: var(--ink); font-size: clamp(1rem, 1.4vw, 1.25rem); font-weight: 700; letter-spacing: -.025em; line-height: 1; text-decoration: none; text-transform: uppercase; }
.brand small { margin-top: .45rem; color: var(--accent); font-size: .58rem; letter-spacing: .25em; }
.header p, .kicker, .details p, .footer { font-size: .68rem; font-weight: 700; letter-spacing: .12em; line-height: 1.4; text-transform: uppercase; }
.header p { max-width: 10rem; margin: 0; color: var(--muted); text-align: right; }

.message { flex: 1; max-width: 700px; margin-top: clamp(5.5rem, 14vw, 10.5rem); margin-bottom: clamp(5rem, 12vw, 9rem); }
.kicker { margin: 0 0 1.8rem; color: var(--accent); }
.kicker::before { display: inline-block; width: 1.8rem; height: 1px; margin: 0 .75rem .23rem 0; background: currentColor; content: ''; vertical-align: middle; }
h1 { max-width: 650px; margin: 0; font-size: clamp(2.85rem, 5.7vw, 5.65rem); font-weight: 400; letter-spacing: -.065em; line-height: .98; }
.intro { max-width: 34rem; margin: 2rem 0 0; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.16rem); line-height: 1.7; }
.contact-link { display: inline-flex; min-height: 44px; align-items: center; gap: 1.25rem; margin-top: 2rem; padding: .65rem 0; border-bottom: 1px solid var(--ink); font-size: .76rem; font-weight: 700; letter-spacing: .09em; text-decoration: none; text-transform: uppercase; transition: border-color .18s ease, color .18s ease; }
.contact-link span { color: var(--accent); font-size: 1.15rem; }
.contact-link:hover { border-color: var(--accent); color: var(--accent); }
.brand:focus-visible, .contact-link:focus-visible, .details a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

.image-band { width: 100%; height: clamp(180px, 23vw, 280px); margin: 0; overflow: hidden; background: var(--ink); }
.image-band img { width: 100%; height: 100%; object-fit: cover; opacity: .78; }
.details { display: grid; grid-template-columns: 1.1fr .8fr 1.35fr; gap: 2rem; padding-top: 2rem; padding-bottom: 2rem; }
.details p { margin: 0 0 .7rem; color: var(--accent); }
.details a, .details address { color: var(--ink); font-size: .86rem; font-style: normal; line-height: 1.65; text-decoration: none; }
.details a:hover { color: var(--accent); }
.footer { padding: 1.4rem 0 2rem; color: var(--muted); border-top: 1px solid var(--line); }
@media (max-width: 600px) { .wrap { width: min(100% - 2.5rem, 1060px); } .message { margin-top: 5.5rem; margin-bottom: 5rem; } .details { grid-template-columns: 1fr; gap: 1.7rem; } .image-band { height: 190px; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition-duration: .01ms !important; } }
