:root {
  --ink: #2f3118;
  --olive: #5e6240;
  --olive-dark: #42472b;
  --cream: #f7f1e8;
  --paper: #fffaf3;
  --line: #d8d0c0;
  --muted: #6f6d61;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Arial, Helvetica, sans-serif; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; line-height: 1.08; }
h1 { font-size: clamp(3rem, 6vw, 5.8rem); letter-spacing: -.045em; margin: 0; }
h2 { font-size: clamp(2.2rem, 4vw, 4rem); letter-spacing: -.035em; margin: 0; }
h3 { font-size: 1.65rem; margin: 0 0 .8rem; }
p { margin-top: 0; }

.site-header { min-height: 96px; padding: 10px max(24px, calc((100% - 1180px) / 2)); display: flex; align-items: center; justify-content: space-between; gap: 30px; border-bottom: 1px solid var(--line); background: rgba(255,250,243,.96); }
.mini-logo { width: 84px; flex: 0 0 auto; }
.mini-logo img { width: 84px; height: 76px; object-fit: cover; object-position: center 38%; border-radius: 50%; }
nav { display: flex; align-items: center; gap: 32px; }
nav a { text-decoration: none; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; padding: 8px 0; border-bottom: 1px solid transparent; }
nav a:hover, nav a.active { border-color: var(--olive); }
nav .nav-contact { padding: 12px 18px; border: 1px solid var(--olive); }

.hero, .section, .page-title { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.hero { min-height: 680px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 7vw; padding: 65px 0; }
.hero-text { padding: 40px 0; }
.surtitle, .section-label { color: var(--olive); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; margin: 0 0 24px; }
.surtitle::before, .section-label::before { content: ""; display: inline-block; width: 30px; height: 1px; background: currentColor; margin: 0 12px 4px 0; }
.lead { max-width: 670px; font-family: Georgia, "Times New Roman", serif; font-size: 1.22rem; color: #555747; line-height: 1.7; margin: 34px 0; }
.hero-logo { background: var(--cream); padding: 28px; border: 1px solid var(--line); }
.hero-logo img { width: 100%; }
.actions { display: flex; align-items: center; flex-wrap: wrap; gap: 28px; }
.button { display: inline-block; border: 1px solid var(--olive-dark); background: var(--olive-dark); color: white; padding: 15px 22px; text-decoration: none; text-transform: uppercase; letter-spacing: .12em; font: 700 .72rem Arial, sans-serif; cursor: pointer; }
.button:hover { background: var(--olive); }
.simple-link { color: var(--olive-dark); font-family: Georgia, "Times New Roman", serif; font-style: italic; text-underline-offset: 5px; }

.section { padding: 110px 0; }
.intro { border-top: 1px solid var(--line); text-align: center; }
.intro h2 { margin-bottom: 35px; }
.wide-text { max-width: 760px; margin: 0 auto; font-family: Georgia, "Times New Roman", serif; font-size: 1.2rem; color: var(--muted); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 55px; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.card { min-height: 320px; padding: 38px; border-right: 1px solid var(--line); }
.card:last-child { border-right: 0; }
.card > span, .service-list article > span { display: block; color: var(--olive); font-family: Georgia, serif; font-style: italic; margin-bottom: 65px; }
.card p { color: var(--muted); }

.process { width: 100%; max-width: none; padding-inline: max(24px, calc((100% - 1180px) / 2)); background: var(--olive-dark); color: white; display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; }
.section-label.light { color: #d8d3b5; }
.process ol { list-style: none; padding: 0; margin: 0; }
.process li { display: grid; grid-template-columns: 55px 1fr; gap: 20px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.25); }
.process li:last-child { border-bottom: 1px solid rgba(255,255,255,.25); }
.process li b { color: #d8d3b5; font: italic 1rem Georgia, serif; }
.process li strong { display: block; font: 1.35rem Georgia, serif; margin-bottom: 5px; }
.process li span { color: #e1e1d9; }
.cta { text-align: center; }
.cta h2 { max-width: 850px; margin: 0 auto 40px; }

.page-title { padding: 100px 0 80px; border-bottom: 1px solid var(--line); }
.page-title h1 { max-width: 900px; }
.page-title.compact { padding-bottom: 60px; }
.page-title.compact h1 { font-size: clamp(3rem, 5vw, 4.5rem); }
.service-list article { display: grid; grid-template-columns: 120px 1fr; gap: 35px; padding: 60px 0; border-bottom: 1px solid var(--line); }
.service-list article:first-child { border-top: 1px solid var(--line); }
.service-list article > span { margin: 5px 0 0; }
.service-list article > div { display: grid; grid-template-columns: 1fr .85fr; gap: 6vw; }
.service-list article p { font-family: Georgia, serif; font-size: 1.1rem; color: var(--muted); }
.service-list ul { margin: 0; padding: 0; list-style: none; }
.service-list li { padding: 9px 0; border-bottom: 1px dotted var(--line); }
.service-list li::before { content: "+"; color: var(--olive); margin-right: 10px; }

.about-title { display: grid; grid-template-columns: 1fr 330px; gap: 8vw; align-items: center; }
.about-title img { border: 1px solid var(--line); }
.about-content { display: grid; grid-template-columns: .9fr 1.1fr; gap: 10vw; }
.prose { font-family: Georgia, serif; font-size: 1.12rem; color: var(--muted); }
.prose p { margin-bottom: 1.5rem; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; padding-top: 0; background: var(--line); border: 1px solid var(--line); }
.values article { background: var(--cream); padding: 45px; }

.contact-title { text-align: center; }
.contact-title h1, .contact-title .lead { margin-left: auto; margin-right: auto; }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 10vw; }
.contact-info h2 { font-size: 2.5rem; margin-bottom: 25px; }
.email { display: inline-block; margin: 22px 0; font: 1.2rem Georgia, serif; color: var(--olive-dark); word-break: break-word; }
.note { padding: 15px; background: var(--cream); font-size: .85rem; color: var(--muted); }
form { display: grid; grid-template-columns: 1fr; }
form label { margin: 18px 0 6px; font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
form input, form select, form textarea { width: 100%; border: 1px solid var(--line); background: white; color: var(--ink); padding: 13px; font: 1rem Arial, sans-serif; }
form textarea { resize: vertical; }
form .button { margin-top: 25px; }
.legal { max-width: 850px; }
.legal h2 { font-size: 2rem; margin: 50px 0 15px; }
.notice { background: #eee8cd; border-left: 4px solid var(--olive); padding: 18px; }

footer { padding: 45px max(24px, calc((100% - 1180px) / 2)); border-top: 1px solid var(--line); display: grid; grid-template-columns: 80px 1fr auto; align-items: center; gap: 25px; background: var(--cream); }
footer img { width: 80px; height: 80px; object-fit: cover; border-radius: 50%; }
footer p { margin: 0; font-family: Georgia, serif; }
footer small { color: var(--muted); }
footer div { display: flex; gap: 22px; font-size: .78rem; }

@media (max-width: 820px) {
  .site-header { align-items: flex-start; }
  nav { flex-wrap: wrap; justify-content: flex-end; gap: 12px 20px; }
  .hero, .process, .about-content, .contact-layout { grid-template-columns: 1fr; }
  .hero { padding-top: 30px; }
  .hero-logo { max-width: 560px; margin: auto; }
  .card-grid, .values { grid-template-columns: 1fr; }
  .card { border-right: 0; border-bottom: 1px solid var(--line); min-height: 0; }
  .card:last-child { border-bottom: 0; }
  .service-list article > div { grid-template-columns: 1fr; }
  .about-title { grid-template-columns: 1fr 220px; }
}

@media (max-width: 560px) {
  .site-header { min-height: auto; padding: 12px 18px; }
  .mini-logo, .mini-logo img { width: 62px; height: 58px; }
  nav { gap: 5px 14px; }
  nav a { font-size: .65rem; }
  nav .nav-contact { padding: 7px 10px; }
  .hero, .section, .page-title { width: min(100% - 36px, 1180px); }
  .section { padding-top: 75px; padding-bottom: 75px; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .process { width: 100%; padding-inline: 18px; }
  .service-list article { grid-template-columns: 45px 1fr; gap: 12px; }
  .about-title { grid-template-columns: 1fr; }
  .about-title img { max-width: 260px; }
  footer { grid-template-columns: 60px 1fr; }
  footer img { width: 60px; height: 60px; }
  footer div { grid-column: 1 / -1; }
}
