:root {
  --ink: #202522;
  --muted: #777b78;
  --sage: #718078;
  --sand: #b29a78;
  --paper: #f8f8f6;
  --white: #ffffff;
  --line: #e9e9e5;
  --shadow: 0 16px 45px rgba(48, 53, 50, .07);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 3%, rgba(113,128,120,.09), transparent 24rem),
    var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { font: 600 21px Georgia, serif; text-decoration: none; }
nav { display: flex; gap: 25px; }
nav a { color: var(--muted); font-size: 14px; text-decoration: none; }
nav a:hover { color: var(--ink); }
.section { width: min(1120px, calc(100% - 40px)); margin: 0 auto; padding: 88px 0; }
.hero { min-height: calc(100vh - 76px); display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 80px; padding-top: 40px; }
.portrait-wrap { height: 570px; overflow: hidden; border-radius: 100px 8px 100px 8px; box-shadow: var(--shadow); }
.portrait { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; display: block; }
.eyebrow { display: inline-block; margin: 0 0 22px; padding: 8px 21px; border-radius: 999px; background: #ecefec; color: var(--sage); text-transform: uppercase; letter-spacing: .12em; font-size: 13px; font-weight: 700; }
h1, h2, h3 { font-family: Georgia, 'Times New Roman', serif; font-weight: 500; }
h1 { margin: 0; max-width: 680px; font-size: clamp(48px, 6vw, 82px); line-height: 1.04; letter-spacing: -.035em; }
.lead { margin: 30px 0 0; max-width: 650px; color: var(--muted); font-size: 22px; }
.experience { margin: 30px 0; padding-left: 24px; border-left: 3px solid var(--sand); color: var(--sand); font: italic 27px Georgia, serif; }
.button { display: inline-block; padding: 14px 23px; border-radius: 4px; background: var(--sage); color: white; text-decoration: none; font-weight: 700; }
.button:hover { filter: brightness(.95); }
.section-heading { text-align: center; margin-bottom: 46px; }
.section-heading h2, .contacts h2 { margin: 0; font-size: clamp(34px, 4vw, 55px); line-height: 1.13; }
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card { display: flex; gap: 22px; align-items: center; min-height: 122px; padding: 26px 30px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.82); box-shadow: var(--shadow); }
.icon { flex: 0 0 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: #faf8f4; color: var(--sand); font: 700 25px Georgia, serif; }
.card h3 { margin: 0 0 4px; font-size: 25px; }
.card p { margin: 0; color: var(--muted); font-size: 17px; }
.expertise { text-align: center; }
blockquote { position: relative; margin: 0; padding: 58px 72px; border-radius: 20px; background: var(--white); box-shadow: var(--shadow); }
blockquote::before { content: '“'; position: absolute; left: 34px; top: 3px; color: var(--sand); font: 80px Georgia, serif; }
blockquote p { margin: 0 auto 20px; max-width: 880px; font: 500 clamp(34px, 4vw, 51px)/1.28 Georgia, serif; }
blockquote footer { max-width: 900px; margin: auto; color: var(--muted); font-size: 20px; }
.promise { margin: 42px 0 0; color: var(--sage); font-size: 25px; font-weight: 700; }
.contacts { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.contact-note { color: var(--muted); font-size: 18px; max-width: 470px; }
.contact-list { display: grid; gap: 12px; }
.contact-list a { display: flex; justify-content: space-between; gap: 25px; padding: 22px 24px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
.contact-list a:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.contact-list span { color: var(--sage); font-weight: 700; }
.contact-list strong { text-align: right; font-weight: 600; }
.site-footer { width: min(1120px, calc(100% - 40px)); margin: 0 auto; padding: 28px 0 45px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; color: var(--muted); font-size: 14px; }
.site-footer p { margin: 0; }
@media (max-width: 850px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; gap: 42px; min-height: auto; padding-top: 24px; }
  .portrait-wrap { height: 480px; max-width: 520px; width: 100%; margin: auto; }
  .hero-copy { text-align: center; }
  .lead { margin-left: auto; margin-right: auto; }
  .experience { display: inline-block; text-align: left; }
  .cards, .contacts { grid-template-columns: 1fr; }
  .contacts { gap: 35px; }
}
@media (max-width: 560px) {
  .section { width: min(100% - 28px, 1120px); padding: 62px 0; }
  .site-header { width: calc(100% - 28px); }
  .portrait-wrap { height: 400px; border-radius: 70px 7px 70px 7px; }
  h1 { font-size: 45px; }
  .lead { font-size: 18px; }
  .cards { gap: 14px; }
  .card { padding: 22px 18px; align-items: flex-start; }
  .card h3 { font-size: 22px; }
  .card p { font-size: 15px; }
  blockquote { padding: 50px 22px 36px; }
  blockquote::before { left: 15px; }
  blockquote p { font-size: 30px; }
  blockquote footer { font-size: 17px; }
  .promise { font-size: 20px; }
  .contact-list a { flex-direction: column; gap: 3px; }
  .contact-list strong { text-align: left; overflow-wrap: anywhere; }
  .site-footer { flex-direction: column; gap: 5px; }
}
