:root {
  --ink: #1f2a2d;
  --muted: #4d585b;
  --line: #d8dfdc;
  --paper: #fbfaf7;
  --quiet: #eef3f0;
  --sage: #6e897d;
  --deep: #263f3a;
  --copper: #a6653d;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(31, 42, 45, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

p {
  margin: 0;
}

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

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

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

h3 {
  font-size: 1.35rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(216, 223, 220, 0.82);
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--deep);
  border-radius: 50%;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
}

.brand span span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

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

.nav-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(28px, 5vw, 64px);
  min-height: calc(100vh - 76px);
  padding: clamp(56px, 9vw, 110px) clamp(18px, 6vw, 82px) 42px;
  background:
    linear-gradient(115deg, rgba(251, 250, 247, 0.95) 0%, rgba(251, 250, 247, 0.72) 55%, rgba(238, 243, 240, 0.98) 100%),
    url("hero.jpeg") center / cover;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-text {
  max-width: 690px;
  margin-top: 24px;
  color: #3c484b;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--deep);
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--deep);
}

.button.primary:hover {
  background: #1b302c;
}

.button.secondary {
  color: var(--deep);
  background: rgba(255, 255, 255, 0.62);
}

.hero-panel {
  align-self: end;
  padding: 24px;
  border: 1px solid rgba(38, 63, 58, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.panel-visual {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.panel-visual span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: var(--line);
}

.panel-visual span:nth-child(1) {
  width: 62%;
  background: var(--sage);
}

.panel-visual span:nth-child(2) {
  width: 86%;
  background: #d7c3af;
}

.panel-visual span:nth-child(3) {
  width: 44%;
  background: var(--copper);
}

dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

dd {
  margin: 4px 0 0;
  font-weight: 650;
}

.intro,
.section,
.band,
.contact-section {
  padding: clamp(54px, 8vw, 92px) clamp(18px, 6vw, 82px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 5vw, 70px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.intro p,
.split p,
.contact-section p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.06rem;
}

.intro-note {
  padding-left: 24px;
  border-left: 3px solid var(--copper);
}

.intro-note strong {
  display: block;
  font-size: 1.1rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.credentials,
.process div,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card.highlight{
  background: var(--quiet);
}

.service-card {
  padding: 26px;
}

.service-card p {
  margin-top: 14px;
  color: var(--muted);
}

ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

li + li {
  margin-top: 8px;
}

.band {
  background: var(--white);
}

.approach-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.approach-list article {
  padding-top: 18px;
  border-top: 1px solid rgba(38, 63, 58, 0.24);
}

.approach-list span {
  display: block;
  margin-bottom: 20px;
  color: var(--copper);
  font-weight: 800;
}

.approach-list p {
  margin-top: 12px;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.credentials {
  padding: 26px;
}

.credentials h3 {
  margin-bottom: 18px;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process div {
  padding: 22px;
  background-color: var(--paper);
}

.process p {
  margin-top: 10px;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 5vw, 70px);
  color: var(--white);
  background: var(--deep);
}

.contact-section .eyebrow,
.contact-section p {
  color: #dfe8e3;
}

.contact-card {
  display: grid;
  gap: 15px;
  padding: 24px;

}

.contact-card .form-note {
  color: var(--ink);
}

label {
  display: grid;
  gap: 7px;
  color: #324044;
  font-size: 0.94rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--ink);
  font-size: 0.88rem;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(18px, 6vw, 82px);
  color: #e5ece8;
  background: #192926;
  font-size: 0.92rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .hero,
  .intro,
  .split,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    align-self: stretch;
  }

  .service-grid,
  .approach-list,
  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
  }

  .site-nav {
    position: fixed;
    inset: 76px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px 10px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .service-grid,
  .approach-list,
  .process {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }
}
