:root {
  --ink: #060503;
  --panel: #100d08;
  --gold: #d8a83b;
  --gold-light: #f6de94;
  --cream: #f2e9d2;
  --muted: #b9a97a;
  --line: rgba(216, 168, 59, 0.26);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font:
    16px/1.7 Inter,
    system-ui,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: var(--gold-light);
}
a:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  background: var(--gold-light);
  color: var(--ink);
  padding: 0.7rem 1rem;
  z-index: 3;
}
.skip-link:focus {
  top: 1rem;
}
header {
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}
.nav {
  max-width: 980px;
  margin: auto;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  color: var(--cream);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
main {
  max-width: 760px;
  margin: auto;
  padding: clamp(4rem, 10vw, 7rem) 1.4rem;
}
.breadcrumb {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
  color: var(--muted);
  font-size: 0.78rem;
}
.breadcrumb a {
  color: var(--gold-light);
  text-decoration: none;
}
.eyebrow {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
h1 {
  font-family: Georgia, serif;
  font-size: clamp(2.4rem, 8vw, 4.7rem);
  line-height: 1.05;
  margin: 0.6rem 0 1.5rem;
}
h2 {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  margin-top: 2.5rem;
}
p,
li {
  color: var(--muted);
}
ul {
  padding-left: 1.2rem;
}
.cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 1.2rem;
  background: linear-gradient(var(--gold-light), var(--gold));
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.service-links {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.service-links ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 1.5rem;
}
footer {
  border-top: 1px solid var(--line);
  padding: 2rem 1.4rem;
  text-align: center;
  color: var(--muted);
}
@media (max-width: 560px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }
  .service-links ul {
    grid-template-columns: 1fr;
  }
  main {
    padding-top: 3rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
