:root { --ink: #17333b; --paper: #f8f5ee; --sea: #226f70; --coral: #c45b3f; --gold: #b7913a; --muted: #52636a; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Georgia, serif; line-height: 1.6; }
a { color: inherit; }
.site-header { min-height: 76px; padding: 14px max(5vw, 24px); display: flex; align-items: center; justify-content: space-between; gap: 24px; background: var(--paper); }
.brand { font-size: 1.2rem; font-weight: bold; line-height: 1.05; text-decoration: none; }
.brand span, footer span { display: block; margin-top: 4px; color: var(--muted); font-family: Arial, sans-serif; font-size: .62rem; font-weight: bold; letter-spacing: .15em; text-transform: uppercase; }
nav { display: flex; align-items: center; gap: 20px; font-family: Arial, sans-serif; font-size: .72rem; font-weight: bold; letter-spacing: .08em; text-transform: uppercase; }
nav a { text-decoration: none; }
.button { display: inline-block; padding: 13px 20px; border: 2px solid var(--coral); background: var(--coral); color: white; font-family: Arial, sans-serif; font-size: .72rem; font-weight: bold; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; cursor: pointer; }
.button:hover { background: #a94732; border-color: #a94732; }
.button-small { padding: 10px 14px; }
.hero { min-height: 560px; display: grid; align-items: end; padding: 70px max(5vw, 24px); color: white; background: linear-gradient(rgba(15, 35, 42, .38), rgba(15, 35, 42, .82)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=2200&q=85') center/cover; }
.hero-content { max-width: 720px; }
h1, h2, h3 { line-height: 1.08; }
h1 { max-width: 700px; margin: 0 0 20px; font-size: clamp(2.7rem, 6vw, 5.4rem); }
h2 { margin: 0 0 24px; font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { margin: 0 0 12px; font-size: 1.3rem; }
.hero p:not(.eyebrow), .contact-heading > p { max-width: 620px; font-size: 1.1rem; }
.eyebrow { margin: 0 0 12px; color: var(--gold); font-family: Arial, sans-serif; font-size: .68rem; font-weight: bold; letter-spacing: .14em; text-transform: uppercase; }
.section, .contact-page { padding: 86px max(5vw, 24px); }
.intro { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; max-width: 1260px; margin: auto; }
.intro p { margin-top: 0; color: var(--muted); font-size: 1.05rem; }
.services { background: white; }
.services > .eyebrow, .services > h2, .process > .eyebrow, .process > h2 { max-width: 1160px; margin-left: auto; margin-right: auto; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1160px; margin: 48px auto 0; border: 1px solid #d6d3ca; }
.service-grid article { min-height: 180px; padding: 30px; border: 1px solid #d6d3ca; }
.service-grid p, .process span { color: var(--muted); }
.highlight { padding: 90px max(5vw, 24px); color: white; background: linear-gradient(rgba(19, 51, 59, .88), rgba(19, 51, 59, .94)), url('https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1600&q=80') center/cover; }
.highlight > div { max-width: 620px; margin: auto; }
.button-light { border-color: white; background: transparent; }
.button-light:hover { background: white; border-color: white; color: var(--ink); }
.process { max-width: 1260px; margin: auto; }
.process ol { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 0; list-style: none; counter-reset: step; }
.process li { counter-increment: step; padding-top: 42px; border-top: 3px solid var(--gold); }
.process li::before { content: "0" counter(step); display: block; margin-bottom: 10px; color: var(--coral); font-size: 2rem; font-weight: bold; }
.process strong, .process span { display: block; }
footer { padding: 54px max(5vw, 24px); background: var(--ink); color: white; font-family: Arial, sans-serif; font-size: .9rem; }
footer strong { font-family: Georgia, serif; font-size: 1.35rem; }
footer p { color: #d1dcdd; }
.contact-page { max-width: 1260px; margin: auto; }
.contact-heading { padding: 20px 0 65px; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 80px; }
form { display: grid; gap: 20px; }
label { display: grid; gap: 7px; font-family: Arial, sans-serif; font-size: .75rem; font-weight: bold; letter-spacing: .05em; text-transform: uppercase; }
input, select, textarea { width: 100%; padding: 12px; border: 1px solid #bfc4c0; background: white; color: var(--ink); font-family: Arial, sans-serif; font-size: 1rem; }
textarea { resize: vertical; }
aside { align-self: start; padding: 30px; background: white; border-top: 4px solid var(--gold); }
aside h2 { font-size: 1.7rem; }
.form-note { min-height: 24px; margin: 0; color: var(--sea); font-family: Arial, sans-serif; }
@media (max-width: 760px) { .site-header { align-items: flex-start; flex-direction: column; } nav { width: 100%; justify-content: space-between; gap: 10px; font-size: .63rem; } .hero { min-height: 520px; } .intro, .contact-layout { grid-template-columns: 1fr; gap: 35px; } .service-grid, .process ol { grid-template-columns: 1fr; } .section, .contact-page { padding-top: 64px; padding-bottom: 64px; } }