:root {
  --bg: #f6f1ec;
  --bg-strong: #efe5dc;
  --surface: #fbf8f4;
  --text: #1e1d1d;
  --muted: #5f5853;
  --line: rgba(30, 29, 29, 0.12);
  --accent: #a64f39;
  --accent-dark: #7d3a2a;
  --ink: #202533;
  --ink-soft: #31384a;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 241, 236, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
nav a, .site-footer a {
  color: var(--muted);
  text-decoration: none;
}
nav a:hover, .site-footer a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 68px;
}
.hero-layout {
  position: relative;
  z-index: 2;
}
.hero-accent {
  position: absolute;
  right: -140px;
  top: 40px;
  width: min(42vw, 520px);
  height: min(42vw, 520px);
  border-radius: 46% 54% 58% 42% / 38% 41% 59% 62%;
  background: linear-gradient(135deg, rgba(166, 79, 57, .18), rgba(32, 37, 51, .10));
  filter: blur(0.5px);
}
.eyebrow, .kicker {
  margin: 0 0 14px 0;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 700;
}
h1, h2, h3 {
  margin-top: 0;
  line-height: 1.05;
  font-weight: 700;
}
h1, h2 {
  font-family: Georgia, 'Times New Roman', serif;
  letter-spacing: -0.03em;
}
h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 8vw, 6.5rem);
}
h2 {
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}
h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  color: var(--ink);
}
.hero-copy {
  width: min(100%, 720px);
  margin-left: auto;
}
.lead {
  margin: 0;
  font-size: 1.18rem;
  color: var(--muted);
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.button {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .16s ease, background-color .16s ease;
  font-weight: 700;
}
.button:hover { transform: translateY(-1px); }
.button.primary {
  background: var(--ink);
  color: #fff;
}
.button.primary:hover {
  background: #161a26;
}
.button.secondary {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255,255,255,0.38);
}

.section {
  padding: 86px 0;
}
.intro-statement {
  padding-top: 10px;
}
.split-text {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  align-items: start;
}
.statement {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.7rem, 2.7vw, 2.5rem);
  line-height: 1.22;
}
.section-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: end;
  gap: 18px;
  margin-bottom: 28px;
}
.section-head .kicker {
  margin-bottom: 8px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 38px;
}
.services-grid article {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.services-grid p {
  margin: 0;
  color: var(--muted);
}
.section-alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.35), rgba(239,229,220,0.55));
}
.values-block p:last-child { margin-bottom: 0; }

.process-section {
  background: var(--surface);
}
.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.process-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.process-no {
  display: inline-block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2rem;
  color: var(--accent);
}
.process-list p {
  margin: 0;
  color: var(--muted);
}
.about-section {
  background: linear-gradient(180deg, rgba(166,79,57,.03), transparent 80%);
}
.contact-section {
  padding-top: 96px;
}
.contact-wrap {
  text-align: center;
  max-width: 760px;
}
.contact-wrap p:not(.kicker):not(.contact-meta) {
  color: var(--muted);
  font-size: 1.08rem;
}
.contact-meta {
  margin-top: 18px;
  color: var(--muted);
}

.legal-page {
  min-height: calc(100vh - 80px);
}
.legal-page .narrow {
  max-width: 760px;
}
.legal-page h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin-bottom: 28px;
}
.legal-page h2 {
  font-size: 1.55rem;
  margin-top: 36px;
  margin-bottom: 12px;
}
.legal-page p {
  max-width: 760px;
}

.site-footer {
  padding: 24px 0 30px;
  border-top: 1px solid var(--line);
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.footer-wrap div {
  display: flex;
  gap: 18px;
}

@media (max-width: 900px) {
  .section-head,
  .split-text,
  .services-grid,
  .process-list li {
    grid-template-columns: 1fr;
  }
  .process-list li {
    gap: 10px;
  }
  .hero-copy {
    margin-left: 0;
  }
  .hero-accent {
    width: 320px;
    height: 320px;
    right: -100px;
    top: 60px;
  }
}

@media (max-width: 720px) {
  .nav {
    align-items: flex-start;
    padding: 18px 0;
  }
  nav {
    gap: 12px;
    font-size: 0.94rem;
  }
  .hero {
    padding-top: 64px;
  }
  .footer-wrap {
    flex-direction: column;
  }
  .footer-wrap div {
    flex-wrap: wrap;
  }
}
