:root {
  --ink: #1c2522;
  --muted: #637068;
  --paper: #f7f5ef;
  --soft: #ebe6da;
  --line: #d7d0c0;
  --pine: #203b34;
  --moss: #617264;
  --clay: #8b6a54;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(28, 37, 34, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", 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: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(13, 21, 18, 0.72), rgba(13, 21, 18, 0));
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 650;
  letter-spacing: 0;
}

.brand span {
  font-size: 0.95rem;
}

.brand small {
  margin-top: 4px;
  font-size: 0.68rem;
  font-weight: 500;
  opacity: 0.84;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.9rem;
}

.main-nav a,
.nav-cta {
  opacity: 0.9;
  transition: opacity 160ms ease;
}

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

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 0.88rem;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(14, 24, 20, 0.76), rgba(14, 24, 20, 0.34) 48%, rgba(14, 24, 20, 0.1)),
    linear-gradient(0deg, rgba(14, 24, 20, 0.82), rgba(14, 24, 20, 0) 58%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 160px clamp(20px, 7vw, 88px) 90px;
}

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

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.8rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 4.3rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.hero-content > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.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;
  border-radius: 6px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
}

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

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

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.54);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-strip div {
  padding: 24px clamp(20px, 5vw, 54px);
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 700;
}

.split-section,
.image-copy-section,
.offer-section,
.details-section,
.area-section,
.testimonial-section,
.process-section,
.about-section,
.contact-section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 88px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(40px, 7vw, 98px);
  align-items: start;
}

.section-copy p:not(.eyebrow),
.section-heading p,
.image-copy-section p,
.area-section p,
.testimonial-section p,
.about-section p,
.contact-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
}

.quiet-panel {
  border-left: 1px solid var(--line);
  padding-left: clamp(24px, 4vw, 48px);
}

.quiet-panel p {
  color: var(--clay);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.quiet-panel ul,
.service-card ul,
.process-grid p,
.about-section ul {
  margin: 0;
  padding: 0;
}

.quiet-panel li,
.service-card li,
.about-section li {
  list-style: none;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.image-copy-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  background: var(--pine);
  color: var(--white);
}

.image-copy-section img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-copy-section p {
  color: rgba(255, 255, 255, 0.76);
}

.offer-section,
.process-section {
  background: var(--white);
}

.section-heading {
  max-width: 840px;
  margin-bottom: clamp(34px, 6vw, 68px);
}

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

.service-card {
  position: relative;
  min-height: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
}

.service-card.featured {
  border-color: rgba(32, 59, 52, 0.5);
  box-shadow: 0 16px 44px rgba(32, 59, 52, 0.12);
}

.card-number {
  color: var(--moss);
  font-size: 0.8rem;
  font-weight: 800;
}

.badge {
  position: absolute;
  top: 24px;
  right: 24px;
  border-radius: 999px;
  background: rgba(97, 114, 100, 0.14);
  color: var(--pine);
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card > p:not(.card-number) {
  color: var(--muted);
}

.service-card ul {
  margin: 22px 0 26px;
}

.service-card a {
  display: inline-flex;
  color: var(--pine);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.pricing-note {
  margin: 30px 0 0;
  color: var(--muted);
  text-align: center;
}

.details-section {
  background: var(--soft);
}

.area-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: start;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.testimonial-section {
  background: var(--paper);
}

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

.testimonial {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
  padding: clamp(24px, 4vw, 38px);
}

.testimonial blockquote {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.1vw, 2.2rem);
  line-height: 1.24;
}

.testimonial figcaption {
  margin-top: 22px;
  color: var(--muted);
  font-weight: 700;
}

.detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 980px;
}

.detail-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--pine);
  font-size: 0.95rem;
}

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

.process-grid article {
  background: var(--white);
  padding: 32px;
}

.process-grid span {
  color: var(--clay);
  font-weight: 800;
}

.process-grid p {
  color: var(--muted);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(34px, 8vw, 112px);
  background: var(--paper);
}

.family-photo-placeholder {
  margin: 34px 0 0;
}

.family-photo-placeholder img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 58%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.family-photo-placeholder figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
  gap: clamp(36px, 7vw, 90px);
  background: var(--pine);
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.founder-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.founder-list div {
  display: grid;
  gap: 5px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.founder-list span {
  color: var(--muted);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-top: 16px;
}

.contact-links a {
  display: inline-flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.62);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 14px 15px;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
}

.privacy-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.privacy-note a {
  border-bottom: 1px solid currentColor;
}

.contact-form .button-primary {
  justify-self: start;
  background: var(--white);
  color: var(--pine);
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 6vw, 88px);
  background: #14221e;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.site-footer .brand {
  color: var(--white);
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.legal-page {
  min-height: 100vh;
  padding: 120px clamp(20px, 8vw, 120px);
  background: var(--paper);
}

.legal-page article {
  max-width: 820px;
}

.legal-page h1 {
  color: var(--ink);
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.legal-page h2 {
  margin-top: 42px;
  font-size: 1.7rem;
}

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

@media (max-width: 900px) {
  .site-header {
    position: absolute;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .split-section,
  .image-copy-section,
  .area-section,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .responsibility-grid,
  .testimonial-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div,
  .process-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quiet-panel {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-top: 16px;
  }

  .nav-cta {
    display: none;
  }

  .hero-content {
    padding: 132px 20px 62px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-actions,
  .site-footer,
  .site-footer div {
    align-items: stretch;
    flex-direction: column;
  }

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

  .service-card,
  .process-grid article {
    padding: 24px;
  }
}
