@font-face {
  font-family: "Outfit";
  src: url("outfit-variable.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #10110f;
  --ink-soft: #343832;
  --paper: #fbfbf8;
  --paper-alt: #f0f2ed;
  --line: #dfe3dc;
  --muted: #6b7168;
  --accent: #4f6257;
  --accent-soft: #e7eee8;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Outfit", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  padding: 0.65rem 0.85rem;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header,
.hero,
.section,
.contact-inner,
.site-footer {
  width: min(100% - 2rem, 1120px);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-dot {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 850;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
}

.hero {
  min-height: 56svh;
  display: grid;
  align-items: end;
  padding: 4.25rem 0 3rem;
}

.hero-content {
  max-width: 56rem;
}

.eyebrow,
.section-label,
.service-list span {
  margin: 0 0 0.9rem;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.9rem, 10vw, 5.35rem);
  font-weight: 780;
}

h2 {
  font-size: clamp(1.75rem, 5vw, 3.1rem);
  font-weight: 760;
  line-height: 1.03;
}

h3 {
  font-size: 1.15rem;
  font-weight: 760;
}

.hero-copy {
  max-width: 42rem;
  margin: 1.1rem 0 1.45rem;
  color: var(--ink-soft);
  font-size: clamp(1.03rem, 2.5vw, 1.22rem);
}

.button,
.email-link {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 4px;
  color: var(--paper);
  background: var(--ink);
  font-weight: 750;
  text-decoration: none;
}

.section {
  display: grid;
  gap: 1.4rem;
  padding: 3rem 0;
  border-top: 1px solid var(--line);
}

.section-copy {
  display: grid;
  gap: 1.25rem;
}

.section-copy > p {
  max-width: 43rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 3vw, 1.2rem);
}

.services {
  padding-bottom: 4rem;
}

.service-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-list article {
  display: grid;
  gap: 0.7rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.service-list span {
  margin: 0;
  color: var(--muted);
}

.service-list p {
  max-width: 38rem;
  margin: 0;
  color: var(--muted);
}

.contact-section {
  background: var(--paper-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-inner {
  display: grid;
  gap: 1.2rem;
  padding: 3.5rem 0;
}

.contact-inner h2 {
  max-width: 11ch;
}

.contact-details {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.contact-details address,
.footer-meta address {
  color: var(--muted);
  font-style: normal;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.site-footer a {
  color: var(--ink);
  text-decoration: none;
}

.footer-meta,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

.footer-links {
  justify-content: flex-end;
}

.legal-page {
  width: min(100% - 2rem, 760px);
  margin: 0 auto;
  padding: 3.5rem 0;
}

.legal-page h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 8vw, 3.4rem);
}

.legal-page h2 {
  margin-top: 2.25rem;
  font-size: clamp(1.2rem, 3.4vw, 1.55rem);
  line-height: 1.15;
}

.legal-page p,
.legal-page li {
  color: var(--ink-soft);
}

.legal-page ul {
  padding-left: 1.2rem;
}

@media (min-width: 680px) {
  .site-header,
  .hero,
  .section,
  .contact-inner,
  .site-footer {
    width: min(100% - 3rem, 1120px);
  }

  .site-nav {
    display: flex;
  }

  .section {
    grid-template-columns: 12rem 1fr;
    gap: 2rem;
    padding: 4rem 0;
  }

  .service-list article {
    grid-template-columns: 3.5rem 0.8fr 1.2fr;
    align-items: start;
    gap: 1rem;
  }

  .service-list p {
    margin-top: -0.1rem;
  }

  .contact-inner {
    grid-template-columns: 1fr auto;
    align-items: end;
    padding: 4.5rem 0;
  }

  .contact-details {
    grid-column: 2;
    min-width: 17rem;
    justify-items: start;
  }

  .legal-page {
    width: min(100% - 3rem, 760px);
  }
}
