:root {
  color: #17211d;
  background: #e7eee5;
  font-family: 'DM Sans', sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-width: 320px;
  background: #e7eee5;
}

.page-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 28px clamp(24px, 6vw, 96px) 32px;
  background: radial-gradient(circle at 85% 16%, rgba(215, 127, 73, .18), transparent 27%), linear-gradient(135deg, #e7eee5 0%, #f6f1e6 68%, #f2dfcf 100%);
}

.site-nav, .site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  color: inherit;
  font: 700 1.1rem 'Space Grotesk', sans-serif;
  letter-spacing: -.02em;
  text-decoration: none;
}

.brand span { color: #d2764d; }

.nav-link {
  color: #17211d;
  font-size: .88rem;
  text-decoration: none;
}

.nav-link span { margin-left: 8px; color: #d2764d; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  align-items: end;
  gap: clamp(48px, 10vw, 150px);
  width: min(980px, 100%);
  margin: auto 0;
  padding: 12vh 0 13vh;
  animation: rise-in .7s ease-out both;
}

.eyebrow {
  margin: 0 0 25px;
  color: #b45f3e;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #17211d;
  font: 600 clamp(2.5rem, 5vw, 4.8rem)/1 'Space Grotesk', sans-serif;
  letter-spacing: -.04em;
}

h1 em {
  color: #b45f3e;
  font-style: normal;
}

.intro {
  max-width: 500px;
  margin: 36px 0 30px;
  color: #57645b;
  font-size: 1.05rem;
  line-height: 1.65;
}

.services {
  align-self: end;
  margin-bottom: 8px;
  border-top: 2px solid #17211d;
  padding-top: 16px;
}

.services-title {
  margin: 0 0 14px;
  color: #b45f3e;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.services ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  color: #57645b;
  font-size: .92rem;
  line-height: 1.35;
  list-style: none;
}

.services li::before { content: '•'; margin-right: 10px; color: #d2764d; }

.button {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 14px 18px 14px 20px;
  border: 1px solid #17211d;
  color: #17211d;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.button:hover, .button:focus-visible { background: #17211d; color: #f6f1e6; transform: translateY(-2px); }

.site-footer {
  border-top: 1px solid rgba(23, 33, 29, .18);
  padding-top: 18px;
  color: #6c776e;
  font-size: .78rem;
}

.site-footer a { color: #57645b; text-decoration: none; }
.site-footer a:hover, .site-footer a:focus-visible { color: #b45f3e; }

@keyframes rise-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 560px) {
  .page-shell { padding: 22px 20px 24px; }
  .nav-link { font-size: .78rem; }
  .hero { display: block; padding: 16vh 0 18vh; }
  h1 { font-size: clamp(2.5rem, 11vw, 3.8rem); }
  .services { margin-top: 58px; }
  .site-footer { align-items: flex-start; flex-direction: column; gap: 10px; }
}
