:root {
  --ink: #26322d;
  --muted: #68746d;
  --paper: #fffaf2;
  --soft-green: #e4ede4;
  --sage: #6f8f78;
  --deep-green: #314f42;
  --terra: #b86f53;
  --blue: #d9e8ee;
  --line: rgba(49, 79, 66, 0.18);
  --shadow: 0 22px 60px rgba(49, 79, 66, 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.65;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 242, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--deep-green);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 15px;
  border-radius: 50%;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 30px);
  color: var(--muted);
  font-size: 14px;
}

nav a {
  text-decoration: none;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
}

.header-cta,
.button.primary {
  background: var(--deep-green);
  color: #fff;
}

.button.secondary {
  background: #fff;
  color: var(--deep-green);
  border-color: var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(36px, 6vw, 82px);
  min-height: calc(100svh - 78px);
  padding: clamp(44px, 7vw, 92px) clamp(18px, 6vw, 84px) clamp(28px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(228, 237, 228, 0.82), rgba(255, 250, 242, 0.92) 48%, rgba(217, 232, 238, 0.78)),
    repeating-linear-gradient(135deg, rgba(49, 79, 66, 0.06) 0 1px, transparent 1px 18px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--terra);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 840px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 92px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.96;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.25;
}

.hero-lede {
  max-width: 690px;
  margin: 26px 0 0;
  color: #41524b;
  font-size: clamp(18px, 2vw, 23px);
}

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

.hero-photo {
  align-self: stretch;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-content: end;
  min-height: 560px;
  background: var(--blue);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.photo-caption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.photo-caption strong,
.photo-caption span {
  display: block;
}

.photo-caption span {
  max-width: 270px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  text-align: right;
}

.intro-band {
  padding: clamp(42px, 7vw, 84px) clamp(18px, 12vw, 180px);
  background: var(--deep-green);
  color: #f8f3ea;
}

.intro-band p {
  max-width: 980px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.2;
}

.split,
.services,
.about,
.details,
.contact {
  padding: clamp(56px, 8vw, 108px) clamp(18px, 6vw, 84px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 74px);
  background: #fff;
}

.fit-list {
  display: grid;
  gap: 18px;
}

.fit-list article,
.service-grid article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.fit-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 18px;
}

.fit-list span {
  grid-row: 1 / span 2;
  color: var(--sage);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
}

.fit-list h3,
.fit-list p {
  grid-column: 2;
}

.fit-list p,
.service-grid p,
.about p,
.details p,
.details li,
.contact p {
  color: var(--muted);
}

.fit-list p,
.service-grid p {
  margin: 0;
}

.services {
  background: var(--soft-green);
}

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

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

.about {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
  background: #fff;
}

.about img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about p {
  max-width: 760px;
  font-size: 18px;
}

.credentials {
  display: grid;
  gap: 1px;
  max-width: 780px;
  margin: 28px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.credentials div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 18px;
  background: var(--paper);
}

dt {
  color: var(--deep-green);
  font-weight: 850;
}

dd {
  margin: 0;
  color: var(--muted);
}

.details {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 72px);
  background: #f7f1e7;
}

.details ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.details li {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background: var(--deep-green);
  color: #fff;
}

.contact .eyebrow,
.contact p {
  color: #f0c6b5;
}

.contact h2 {
  max-width: 700px;
}

.contact p {
  max-width: 620px;
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.contact .button.primary {
  background: #fff;
  color: var(--deep-green);
}

.contact .button.secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(18px, 6vw, 84px);
  color: var(--muted);
  font-size: 14px;
}

footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .hero,
  .split,
  .about,
  .details,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-photo {
    min-height: auto;
  }

  .hero-photo img {
    max-height: 620px;
  }

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

  .contact-actions {
    justify-content: flex-start;
  }
}

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

  .brand small,
  .header-cta {
    display: none;
  }

  h1 {
    font-size: 46px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .photo-caption,
  footer {
    display: block;
  }

  .photo-caption span {
    max-width: none;
    margin-top: 4px;
    text-align: left;
  }

  .fit-list article,
  .credentials div {
    grid-template-columns: 1fr;
  }

  .fit-list span,
  .fit-list h3,
  .fit-list p {
    grid-column: auto;
    grid-row: auto;
  }

  footer p + p {
    margin-top: 8px;
  }
}
