@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap");

:root {
  --ink: #06284a;
  --green: #006d3b;
  --green-dark: #00502e;
  --mist: #d9e5e7;
  --sky: #eef6f7;
  --paper: #fffdf8;
  --clay: #c99165;
  --line: rgba(6, 40, 74, 0.14);
  --shadow: 0 18px 50px rgba(6, 40, 74, 0.12);
  font-family: "PT Serif", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 66px;
  padding: 8px clamp(18px, 4vw, 52px);
  background: rgba(217, 229, 231, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--green-dark);
  min-width: 76px;
}

.brand img {
  display: block;
  width: auto;
  height: 54px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.8vw, 28px);
  font-family: "Marcellus", Georgia, "Times New Roman", serif;
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
}

.site-nav a {
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  border-color: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid var(--green);
  border-radius: 999px;
  font-weight: 700;
  font-family: "Marcellus", Georgia, "Times New Roman", serif;
  text-decoration: none;
  cursor: pointer;
}

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

.button.primary:hover {
  background: var(--green-dark);
}

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

.button.large {
  min-height: 58px;
  padding: 0 32px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
}

.text-link:hover {
  color: var(--ink);
}

.hero {
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: clamp(48px, 8vw, 110px) clamp(20px, 5vw, 72px);
  text-align: center;
}

.hero-home {
  background:
    linear-gradient(180deg, rgba(238, 246, 247, 0.55), rgba(238, 246, 247, 0.24) 48%, rgba(255, 253, 248, 0.86)),
    url("assets/hero-mountains.png") center / cover no-repeat,
    var(--sky);
}

.hero-content {
  width: min(1100px, 100%);
}

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

h1 {
  font-size: clamp(3.2rem, 8vw, 7rem);
}

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

h3 {
  font-size: 1.6rem;
}

p {
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero p {
  max-width: 780px;
  margin: 24px auto 0;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.section,
.page-hero {
  padding: clamp(56px, 8vw, 110px) clamp(20px, 5vw, 72px);
}

.page-hero {
  background: var(--sky);
}

.page-hero h1,
.page-hero p {
  max-width: 940px;
}

.page-hero h1 {
  font-size: clamp(2.75rem, 5.5vw, 5.25rem);
}

.page-hero p {
  font-size: 1.25rem;
}

.page-hero.diagnostic {
  background:
    linear-gradient(130deg, rgba(217, 229, 231, 0.95), rgba(255, 253, 248, 0.8)),
    linear-gradient(150deg, transparent 0 52%, rgba(201, 145, 101, 0.58) 52% 68%, transparent 68%);
}

.muted {
  background: var(--mist);
}

.intro-grid,
.split-cta,
.contact-grid,
.about-profile {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
}

.about-profile {
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
}

.profile-photo {
  margin: 0;
}

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

.profile-photo figcaption {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  color: var(--ink);
}

.profile-photo figcaption span {
  color: var(--green-dark);
}

.stacked-copy p:first-child {
  margin-top: 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
}

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

.detail-list article {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.detail-list article:first-child {
  padding-top: 0;
  border-top: 0;
}

.detail-list h3 {
  margin-bottom: 10px;
}

.detail-list p {
  margin: 0;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 42px;
}

.section-heading.compact {
  margin-bottom: 24px;
}

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

.service-card,
.process-grid article,
.service-list article {
  display: block;
  min-height: 260px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.service-card.featured {
  background: var(--green);
  color: white;
}

.service-card span,
.service-list span,
.process-grid span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--clay);
  font-weight: 800;
}

.service-card.featured span {
  color: var(--paper);
}

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

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

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

.capability-grid article {
  min-height: 255px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.capability-grid span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--clay);
  font-weight: 800;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 20px;
  background: var(--paper);
  border-left: 4px solid var(--green);
  font-size: 1.1rem;
}

.contact-links {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  font-weight: 700;
}

.feed-shell {
  max-width: 100%;
}

.feed-shell > [data-supascribe-feed] {
  width: 100%;
}

.blog-feed-section {
  padding-top: clamp(28px, 5vw, 56px);
}

.blog-feed-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.blog-aside {
  position: sticky;
  top: 92px;
  padding: 24px;
  background: var(--sky);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.blog-aside h3 {
  font-size: 1.55rem;
}

.blog-aside p:not(.eyebrow) {
  margin-bottom: 22px;
}

form {
  display: grid;
  gap: 18px;
  padding: 26px;
  background: var(--sky);
  border: 1px solid var(--line);
  border-radius: 8px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px 16px;
  color: var(--ink);
  font: inherit;
}

.calendly-inline-widget {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.calendly-compact {
  justify-self: end;
  width: min(500px, 100%);
}

.calendly-compact .calendly-inline-widget {
  box-shadow: var(--shadow);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 40px clamp(20px, 5vw, 72px);
  color: white;
  background: var(--ink);
}

.site-footer p {
  max-width: 520px;
  margin-bottom: 0;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .site-nav {
    flex-wrap: wrap;
  }

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

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

  .brand {
    min-width: 0;
  }

  .hero {
    min-height: 620px;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.7rem);
  }

  .intro-grid,
  .split-cta,
  .contact-grid,
  .about-profile,
  .detail-grid,
  .blog-feed-layout,
  .service-list,
  .process-grid,
  .check-list,
  .capability-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .calendly-compact {
    justify-self: stretch;
    width: 100%;
  }

  .site-footer {
    display: grid;
  }
}
