:root {
  --espresso: #211d19;
  --espresso-2: #181512;
  --brown: #332c25;
  --brown-2: #43372d;
  --tan: #d7c39f;
  --cream: #f2e8d4;
  --muted: #c2b397;
  --teal: #2e6970;
  --teal-deep: #214a50;
  --orange: #dc742f;
  --rust: #633a2d;
  --line: rgba(215, 195, 159, .24);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 82% 8%, rgba(46, 105, 112, .19), transparent 27rem),
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    var(--espresso);
  background-size: auto, 44px 44px, 44px 44px, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

a { color: inherit; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 20; padding: .7rem 1rem; color: var(--espresso); background: var(--cream); }
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 92px;
  padding: 12px max(4vw, calc((100vw - var(--max)) / 2));
  background: rgba(24, 21, 18, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand { display: flex; width: min(310px, 42vw); padding: 8px 13px; background: #f8efdf; border: 1px solid #c9aa78; box-shadow: 0 0 0 3px rgba(248, 239, 223, .08); }
.brand img { display: block; width: 100%; height: auto; }
nav { display: flex; align-items: center; gap: clamp(.9rem, 2vw, 2rem); }
nav a { color: var(--muted); text-decoration: none; font-size: .8rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
nav a:hover, nav a:focus-visible { color: var(--cream); }
.nav-contact { padding: .55rem .8rem; color: var(--cream); border: 1px solid var(--orange); }

main, footer { width: min(calc(100% - 8vw), var(--max)); margin-inline: auto; }
.hero { min-height: 650px; display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(270px, .65fr); align-items: center; gap: 6vw; padding: 8rem 0 6rem; border-bottom: 1px solid var(--line); }
.eyebrow, .kicker { margin: 0 0 1rem; color: #f29a5e; font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; line-height: 1.04; letter-spacing: -.035em; }
h1 { max-width: 850px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.2rem, 7vw, 6.35rem); font-weight: 500; }
h2 { max-width: 780px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.2rem, 4vw, 4.15rem); font-weight: 500; }
h3 { font-family: Georgia, "Times New Roman", serif; font-size: 2rem; font-weight: 500; }
.lead { max-width: 760px; margin: 2rem 0 0; color: var(--tan); font-size: clamp(1.05rem, 1.5vw, 1.3rem); }
.actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.4rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: .75rem 1.15rem; border: 1px solid var(--line); text-decoration: none; font-size: .85rem; font-weight: 800; letter-spacing: .055em; text-transform: uppercase; }
.button.primary { color: #1e1814; background: var(--orange); border-color: var(--orange); }
.button.primary:hover, .button.primary:focus-visible { background: #ee8b47; }
.button.secondary:hover, .button.secondary:focus-visible { border-color: var(--tan); }
.hero-note { position: relative; margin: 0; padding: 2rem; background: var(--teal-deep); border: 1px solid rgba(151, 215, 220, .4); box-shadow: 18px 18px 0 var(--rust); }
.hero-note p:last-child { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.4rem; line-height: 1.35; }
.node { position: absolute; width: 18px; height: 18px; right: -10px; top: -10px; border-radius: 50%; background: var(--orange); box-shadow: -34px 34px 0 var(--tan); }

.section { padding: 7rem 0; border-bottom: 1px solid var(--line); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 3rem; margin-bottom: 3.5rem; }
.section-heading .eyebrow { flex: 0 0 200px; }
.section-heading h2 { flex: 1; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-card { min-height: 540px; display: flex; flex-direction: column; padding: 2rem; border: 1px solid var(--line); }
.service-card.story { background: var(--brown); }
.service-card.diligence { background: var(--teal-deep); }
.service-card.desk { background: var(--rust); }
.service-number { width: 3rem; margin-bottom: 4.5rem; padding-bottom: .35rem; color: var(--tan); border-bottom: 3px solid var(--orange); font-size: .8rem; font-weight: 800; }
.service-intro { min-height: 120px; color: var(--cream); }
.service-card ul { margin: .6rem 0 2rem; padding: 0; list-style: none; color: var(--tan); font-size: .92rem; }
.service-card li { padding: .42rem 0; border-bottom: 1px solid rgba(242,232,212,.16); }
.price { margin: auto 0 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; }
.price span { display: block; color: var(--muted); font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 8vw; }
.split .section-heading { display: block; margin: 0; }
.experience-copy { padding: 2.2rem; background: var(--brown); border: 1px solid var(--line); }
.experience-copy > p:first-child { margin-top: 0; color: var(--tan); font-size: 1.18rem; }
blockquote { margin: 2.4rem 0 0; padding: 1.2rem 0 0 1.3rem; color: var(--cream); border-left: 4px solid var(--orange); font-family: Georgia, "Times New Roman", serif; font-size: 1.65rem; line-height: 1.35; }
.compact { margin-bottom: 2.5rem; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 0; padding: 0; list-style: none; border: 1px solid var(--line); }
.process-grid li { min-height: 250px; padding: 1.5rem; background: rgba(51,44,37,.74); border-right: 1px solid var(--line); }
.process-grid li:last-child { border-right: 0; }
.process-grid span { display: block; color: var(--orange); font-size: .8rem; font-weight: 850; }
.process-grid strong { display: block; margin-top: 3.2rem; font-family: Georgia, "Times New Roman", serif; font-size: 1.75rem; font-weight: 500; }
.process-grid p { color: var(--muted); font-size: .92rem; }

.contact { display: grid; grid-template-columns: 1.25fr .75fr; gap: 7vw; margin-top: 7rem; padding: 4.5rem; background: var(--tan); color: var(--espresso); border: 1px solid #ead9bb; }
.contact .eyebrow { color: var(--rust); }
.contact p { max-width: 690px; }
.contact-links { display: flex; flex-direction: column; justify-content: center; }
.contact-links a { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(33,29,25,.4); font-weight: 800; text-decoration: none; }
.contact-links a:hover, .contact-links a:focus-visible { color: var(--rust); }
footer { display: flex; justify-content: space-between; gap: 2rem; padding: 2.2rem 0 4rem; color: var(--muted); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }

@media (max-width: 900px) {
  .site-header { align-items: flex-start; }
  nav a:not(.nav-contact) { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 6rem; }
  .hero-note { max-width: 560px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-number { margin-bottom: 2.5rem; }
  .service-intro { min-height: auto; }
  .split, .contact { grid-template-columns: 1fr; }
  .section-heading { display: block; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid li:nth-child(2) { border-right: 0; }
  .process-grid li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 560px) {
  body { font-size: 17px; }
  .site-header { min-height: 76px; }
  .brand { width: 215px; }
  .nav-contact { padding: .45rem .6rem; font-size: .7rem; }
  .hero { padding: 4.5rem 0; }
  h1 { font-size: clamp(2.85rem, 14vw, 4.3rem); }
  .section { padding: 5rem 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: 210px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-grid li:last-child { border-bottom: 0; }
  .contact { margin-top: 5rem; padding: 2rem; }
  footer { flex-direction: column; gap: .2rem; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
