:root {
  --bg: #f7f4ef;
  --paper: #ffffff;
  --ink: #171717;
  --muted: #68615a;
  --line: #ded7cd;
  --accent: #b89b68;
  --accent-dark: #876f46;
  --shadow: 0 24px 70px rgba(23, 23, 23, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  background: rgba(247, 244, 239, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(222, 215, 205, 0.75);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.15rem;
}
.brand span span { color: var(--accent-dark); }
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  font-weight: 800;
}
.nav {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav a:hover { color: var(--ink); }

.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 44px;
  align-items: center;
  padding: 78px 6vw 90px;
}
.hero-content { max-width: 780px; }
.eyebrow {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: -0.085em;
  margin-bottom: 28px;
}
h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.065em;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem;
  letter-spacing: -0.035em;
  margin-bottom: 12px;
}
.lead {
  max-width: 700px;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: var(--muted);
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--ink); color: var(--paper); box-shadow: var(--shadow); }
.button.secondary { border: 1px solid var(--line); background: rgba(255, 255, 255, 0.52); }

.hero-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.hero-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.hero-card div:last-child { border-bottom: 0; }
.hero-card span { color: var(--accent-dark); font-weight: 800; }
.hero-card strong { font-size: 1.18rem; letter-spacing: -0.04em; text-align: right; }

.section, .experience-section, .split-section, .contact-section { padding: 92px 6vw; }
.section-heading { max-width: 820px; margin-bottom: 34px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.service {
  min-height: 250px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
}
.service p, .text-panel p, .experience-card p, .contact-card p { color: var(--muted); }
.experience-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(34px, 6vw, 70px);
  box-shadow: var(--shadow);
}
.experience-card p { max-width: 850px; font-size: 1.12rem; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.values-grid span {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbfaf8;
  font-weight: 800;
  color: var(--accent-dark);
  padding: 0 18px;
}
.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.text-panel {
  background: var(--paper);
  border-radius: 30px;
  padding: 34px;
  border: 1px solid var(--line);
  font-size: 1.1rem;
}
.contact-section { display: flex; justify-content: center; }
.contact-card {
  width: min(100%, 820px);
  text-align: center;
  background: var(--ink);
  color: var(--paper);
  border-radius: 36px;
  padding: 58px 34px;
  box-shadow: var(--shadow);
}
.contact-card .eyebrow, .contact-card p { color: #d8c8aa; }
.email-link {
  display: inline-block;
  margin: 10px 0 18px;
  font-size: clamp(1.4rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.055em;
}
.location { margin-bottom: 0; }
.footer { padding: 28px 6vw 46px; color: var(--muted); text-align: center; font-size: 0.92rem; }

@media (max-width: 920px) {
  .hero, .split-section { grid-template-columns: 1fr; }
  .services-grid, .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .site-header { align-items: flex-start; gap: 16px; flex-direction: column; }
  .nav { width: 100%; justify-content: space-between; gap: 12px; font-size: 0.86rem; }
  .hero, .section, .experience-section, .split-section, .contact-section { padding-left: 22px; padding-right: 22px; }
  .services-grid, .values-grid { grid-template-columns: 1fr; }
  .service { min-height: auto; }
}
