:root {
  --ink: #252522;
  --muted: #69655e;
  --paper: #fbfaf7;
  --cream: #f3efe8;
  --stone: #d8d0c4;
  --sage: #7d897c;
  --sage-dark: #4f5d51;
  --clay: #a98263;
  --white: #ffffff;
  --line: rgba(37, 37, 34, 0.14);
  --shadow: 0 24px 70px rgba(49, 45, 39, 0.12);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  background: var(--ink);
  color: var(--white);
  padding: 0.7rem 1rem;
  z-index: 20;
}

.skip-link:focus {
  left: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  text-decoration: none;
  display: grid;
  gap: 0.05rem;
  line-height: 1.15;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.brand span {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.2rem;
  height: 2px;
  background: currentColor;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -0.42rem;
}

.nav-toggle span::after {
  top: 0.42rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 0.4rem 0;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  background: var(--sage-dark);
  color: var(--white);
  text-decoration: none;
  border: 1px solid var(--sage-dark);
  font-weight: 650;
  line-height: 1.1;
}

.button.secondary {
  background: transparent;
  color: var(--sage-dark);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  align-items: center;
  padding: 4.5rem 1.25rem 3rem;
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.96), rgba(251, 250, 247, 0.7) 52%, rgba(251, 250, 247, 0.08)),
    url("assets/quiet-path.png") center/cover;
}

.hero-inner,
.section-inner,
.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  color: var(--sage-dark);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  max-width: 780px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  max-width: 720px;
  margin-top: 1.3rem;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.section {
  padding: 5rem 1.25rem;
}

.section.tint {
  background: var(--cream);
}

.section-header {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 760px;
}

.section-header p {
  color: var(--muted);
  font-size: 1.06rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.panel,
.service-card,
.faq-item,
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.service-card {
  min-height: 100%;
}

.service-card p,
.panel p,
.faq-item p,
.contact-card p {
  color: var(--muted);
  margin-top: 0.65rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.portrait {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}

.portrait img {
  height: 100%;
  object-fit: cover;
}

.content-flow {
  display: grid;
  gap: 1rem;
}

.content-flow p,
.content-flow li {
  color: var(--muted);
}

.clean-list {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.clean-list li {
  padding-left: 1.25rem;
  position: relative;
}

.clean-list li::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--clay);
  position: absolute;
  left: 0;
  top: 0.65rem;
}

.page-hero {
  padding: 4.75rem 1.25rem 3.75rem;
  background: linear-gradient(135deg, var(--cream), var(--paper));
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  display: grid;
  gap: 1rem;
}

.page-hero p {
  color: var(--muted);
  max-width: 760px;
  font-size: 1.12rem;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.info-strip div {
  background: var(--white);
  padding: 1rem;
}

.info-strip strong {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 0.25rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 1.5rem;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.contact-list a {
  color: var(--sage-dark);
  font-weight: 700;
  text-decoration: none;
}

form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font-weight: 650;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 0.9rem;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note,
.small {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  background: #252522;
  color: rgba(255, 255, 255, 0.82);
  padding: 2.5rem 1.25rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-top strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.disclaimer {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.4rem);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.55rem 0;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: 5rem;
    background:
      linear-gradient(180deg, rgba(251, 250, 247, 0.96), rgba(251, 250, 247, 0.72)),
      url("assets/quiet-path.png") center/cover;
  }

  .split,
  .grid.two,
  .grid.three,
  .contact-layout,
  .info-strip {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.5rem 1.1rem;
  }
}
