:root {
  --ink: #161b18;
  --muted: #5b635d;
  --paper: #f7f3eb;
  --paper-deep: #ebe2d4;
  --ivory: #fffdf8;
  --line: rgba(22, 27, 24, 0.14);
  --forest: #233a31;
  --brass: #9b7a45;
  --charcoal: #101412;
  --shadow: 0 24px 80px rgba(16, 20, 18, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: var(--ivory);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.94);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.header-cta {
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid currentColor;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 0.9rem;
  font-weight: 600;
}

.nav a,
.header-cta {
  opacity: 0.88;
}

.nav a:hover,
.header-cta:hover {
  opacity: 1;
}

.header-cta {
  justify-self: end;
  border-bottom: 1px solid currentColor;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 150px clamp(20px, 5vw, 72px) 72px;
  color: var(--ivory);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 13, 11, 0.72) 0%, rgba(10, 13, 11, 0.44) 43%, rgba(10, 13, 11, 0.08) 100%),
    linear-gradient(180deg, rgba(10, 13, 11, 0.42) 0%, rgba(10, 13, 11, 0.12) 55%, rgba(10, 13, 11, 0.48) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d8bf8a;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(3.15rem, 8vw, 7.2rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 4vw, 4rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.02rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 253, 248, 0.9);
  font-size: clamp(1.04rem, 1.8vw, 1.28rem);
}

.hero-actions,
.service-grid,
.principles {
  display: grid;
  gap: 16px;
}

.hero-actions {
  grid-template-columns: repeat(2, minmax(0, max-content));
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.button.primary {
  background: var(--forest);
  color: var(--ivory);
}

.hero .button.primary {
  background: var(--ivory);
  color: var(--charcoal);
}

.button.secondary {
  border-color: rgba(255, 253, 248, 0.62);
  color: var(--ivory);
}

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

.band,
.process,
.quote-band,
.principles,
.site-footer {
  padding: clamp(70px, 9vw, 128px) clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(130px, 0.28fr) minmax(0, 1fr);
  gap: clamp(24px, 7vw, 96px);
  background: var(--ivory);
}

.intro-copy {
  max-width: 980px;
}

.intro-copy p,
.section-heading + p,
.contact p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
}

.business-address {
  margin-top: 28px;
  color: var(--ink);
  font-style: normal;
  font-weight: 700;
}

.business-phone {
  margin-top: 8px;
  font-weight: 800;
}

.business-phone a {
  border-bottom: 1px solid currentColor;
}

.principles {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--forest);
  color: var(--ivory);
}

.principles article {
  padding: 0 24px 0 0;
  border-right: 1px solid rgba(255, 253, 248, 0.18);
}

.principles article:last-child {
  border-right: 0;
}

.principles span,
.timeline span {
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.principles p {
  color: rgba(255, 253, 248, 0.78);
}

.services {
  background: var(--paper);
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(30px, 5vw, 56px);
}

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

.service-grid article {
  min-height: 260px;
  padding: 28px;
  background: var(--ivory);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(16, 20, 18, 0.06);
}

.service-grid p,
.timeline p {
  color: var(--muted);
}

.process {
  background: var(--ivory);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
}

.timeline li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  min-height: 230px;
  padding: 30px;
  background: var(--ivory);
}

.timeline span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
}

.quote-band {
  background: var(--charcoal);
  color: var(--ivory);
}

blockquote {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(2rem, 4.6vw, 5rem);
  text-align: center;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.65fr);
  gap: clamp(30px, 8vw, 110px);
  align-items: start;
  background: var(--paper-deep);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  background: var(--ivory);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(155, 122, 69, 0.38);
  outline-offset: 2px;
}

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

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
  justify-content: space-between;
  background: var(--charcoal);
  color: rgba(255, 253, 248, 0.78);
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child,
.site-footer address,
.site-footer a {
  color: var(--ivory);
  font-weight: 800;
}

.site-footer address {
  font-style: normal;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 86vh;
  }

  .principles,
  .service-grid,
  .timeline,
  .contact {
    grid-template-columns: 1fr;
  }

  .principles article {
    padding: 0 0 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 253, 248, 0.18);
  }

  .principles article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand span:last-child {
    max-width: 145px;
    line-height: 1.1;
  }

  .header-cta {
    font-size: 0.78rem;
  }

  .hero {
    min-height: 88vh;
    padding: 118px 18px 44px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(10, 13, 11, 0.78) 0%, rgba(10, 13, 11, 0.48) 100%),
      linear-gradient(180deg, rgba(10, 13, 11, 0.32) 0%, rgba(10, 13, 11, 0.64) 100%);
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .intro {
    grid-template-columns: 1fr;
  }

  .band,
  .process,
  .quote-band,
  .principles,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .service-grid article,
  .timeline li,
  .contact-form {
    padding: 22px;
  }
}
