:root {
  --charcoal: #252421;
  --charcoal-soft: #3a3833;
  --warm-white: #f7f3eb;
  --paper: #fffaf1;
  --stone: #e7ddcf;
  --muted-green: #617160;
  --green-dark: #344236;
  --deep-brown: #4b3527;
  --gold: #b89355;
  --ink-muted: #6f685e;
  --line: rgba(37, 36, 33, 0.14);
  --shadow: 0 24px 70px rgba(37, 36, 33, 0.13);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm-white);
  color: var(--charcoal);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(184, 147, 85, 0.82);
  outline-offset: 4px;
}

.skip-link {
  left: 1rem;
  position: fixed;
  top: -4rem;
  z-index: 30;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  align-items: center;
  background: rgba(247, 243, 235, 0.92);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  min-height: 72px;
  padding: 0.9rem clamp(1rem, 4vw, 3rem);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0.75rem;
  font-weight: 760;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  align-items: center;
  background: var(--charcoal);
  border-radius: 50%;
  color: var(--paper);
  display: inline-flex;
  font-size: 0.72rem;
  height: 2.35rem;
  justify-content: center;
  width: 2.35rem;
}

.desktop-nav {
  align-items: center;
  display: none;
  gap: 1.3rem;
  color: var(--ink-muted);
  font-size: 0.94rem;
}

.desktop-nav a:hover,
.site-footer a:hover {
  color: var(--green-dark);
}

.nav-cta {
  border: 1px solid var(--charcoal);
  border-radius: 999px;
  display: none;
  font-size: 0.9rem;
  font-weight: 750;
  padding: 0.62rem 1rem;
}

.section-band,
.section-pad {
  margin-inline: auto;
  max-width: var(--max);
  padding-inline: clamp(1rem, 4vw, 3rem);
}

.hero {
  display: grid;
  gap: 2rem;
  min-height: calc(100svh - 72px);
  padding-bottom: clamp(3rem, 7vw, 5rem);
  padding-top: clamp(2rem, 7vw, 5.8rem);
}

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

.eyebrow {
  color: var(--muted-green);
  font-size: 0.75rem;
  font-weight: 830;
  letter-spacing: 0.08em;
  margin: 0 0 0.85rem;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1.03;
}

h1 {
  font-size: clamp(3.1rem, 13vw, 6.9rem);
  margin-bottom: 1.1rem;
  max-width: 760px;
}

h2 {
  font-size: clamp(2.05rem, 6vw, 4.3rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.24rem, 3vw, 1.65rem);
  margin-bottom: 0.8rem;
}

.hero-subhead {
  color: var(--charcoal-soft);
  font-size: clamp(1.1rem, 2.6vw, 1.35rem);
  line-height: 1.5;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 780;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.2rem;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button-primary {
  background: var(--green-dark);
  box-shadow: 0 12px 26px rgba(52, 66, 54, 0.22);
  color: var(--paper);
}

.button-primary:hover {
  background: #2c392f;
}

.button-secondary {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--charcoal);
}

.hero-proof {
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  display: grid;
  gap: 0.55rem;
  margin-top: 2rem;
  max-width: 620px;
  padding-top: 1.1rem;
}

.hero-proof span::before {
  background: var(--gold);
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 0.45rem;
  margin-right: 0.55rem;
  vertical-align: 0.08rem;
  width: 0.45rem;
}

.hero-media {
  align-self: end;
}

.media-frame {
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(rgba(37, 36, 33, 0.02), rgba(37, 36, 33, 0.08)),
    var(--stone);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.media-frame img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.play-card {
  align-items: center;
  background: rgba(255, 250, 241, 0.92);
  border: 1px solid rgba(37, 36, 33, 0.15);
  border-radius: var(--radius);
  bottom: 1rem;
  box-shadow: 0 14px 36px rgba(37, 36, 33, 0.14);
  display: inline-flex;
  gap: 0.65rem;
  left: 1rem;
  padding: 0.72rem 0.82rem;
  position: absolute;
  right: 1rem;
  width: fit-content;
}

.play-icon {
  border-bottom: 0.42rem solid transparent;
  border-left: 0.62rem solid var(--green-dark);
  border-top: 0.42rem solid transparent;
  height: 0;
  width: 0;
}

.section-pad {
  padding-bottom: clamp(4rem, 9vw, 7.2rem);
  padding-top: clamp(4rem, 9vw, 7.2rem);
}

.section-intro {
  max-width: 760px;
}

.section-intro p,
.section-heading-row > p,
.lead-copy > p,
.final-cta p,
.about-panel > p {
  color: var(--charcoal-soft);
  font-size: clamp(1.04rem, 2vw, 1.2rem);
}

.wide {
  max-width: 980px;
}

.pillars {
  display: grid;
  gap: 1rem;
  margin-top: 2.2rem;
}

.pillars article,
.service-card,
.video-card {
  background: rgba(255, 250, 241, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.pillars article {
  padding: 1.35rem;
}

.pillars span,
.card-number {
  color: var(--gold);
  display: block;
  font-size: 0.78rem;
  font-weight: 820;
  margin-bottom: 1.2rem;
}

.pillars p,
.service-card p,
.video-card p,
.form-footnote {
  color: var(--ink-muted);
}

.pathways,
.media-section {
  border-top: 1px solid var(--line);
}

.section-heading-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.1rem;
}

.service-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 1.4rem;
}

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

.service-card.featured p {
  color: rgba(255, 250, 241, 0.75);
}

.service-card a {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--green-dark);
  display: flex;
  font-weight: 800;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1.2rem;
}

.service-card.featured a {
  border-color: rgba(255, 250, 241, 0.18);
  color: var(--paper);
}

.service-card a::after {
  content: "->";
}

.lead-capture {
  align-items: start;
  background: var(--charcoal);
  color: var(--paper);
  display: grid;
  gap: 2rem;
  max-width: none;
  padding-left: max(clamp(1rem, 4vw, 3rem), calc((100vw - var(--max)) / 2 + 3rem));
  padding-right: max(clamp(1rem, 4vw, 3rem), calc((100vw - var(--max)) / 2 + 3rem));
}

.lead-capture .eyebrow {
  color: var(--gold);
}

.lead-copy {
  max-width: 520px;
}

.lead-copy > p {
  color: rgba(255, 250, 241, 0.78);
}

.contact-note {
  background: rgba(255, 250, 241, 0.07);
  border: 1px solid rgba(255, 250, 241, 0.13);
  border-radius: var(--radius);
  color: rgba(255, 250, 241, 0.8);
  margin-top: 2rem;
  padding: 1rem;
}

.contact-note strong {
  color: var(--paper);
  display: block;
  margin-bottom: 0.25rem;
}

.lead-form {
  background: var(--paper);
  border-radius: var(--radius);
  color: var(--charcoal);
  padding: clamp(1rem, 4vw, 1.5rem);
}

.form-row {
  margin-bottom: 1rem;
}

.two-column {
  display: grid;
  gap: 1rem;
}

label {
  color: var(--charcoal-soft);
  display: block;
  font-size: 0.84rem;
  font-weight: 780;
  margin-bottom: 0.4rem;
}

input,
select,
textarea {
  background: #fffefa;
  border: 1px solid rgba(37, 36, 33, 0.2);
  border-radius: var(--radius);
  color: var(--charcoal);
  min-height: 48px;
  padding: 0.78rem 0.85rem;
  width: 100%;
}

textarea {
  min-height: 136px;
  resize: vertical;
}

.form-button {
  border: 0;
  cursor: pointer;
  width: 100%;
}

.form-footnote {
  font-size: 0.86rem;
  margin: 0.85rem 0 0;
}

.video-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.video-card {
  overflow: hidden;
}

.video-card h3,
.video-card p {
  padding-inline: 1.15rem;
}

.video-card h3 {
  margin-top: 1.1rem;
}

.video-card p {
  padding-bottom: 1.1rem;
}

.video-thumb {
  align-items: end;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(52, 66, 54, 0.88), rgba(75, 53, 39, 0.78)),
    var(--deep-brown);
  color: var(--paper);
  display: flex;
  padding: 1rem;
}

.video-thumb span {
  border: 1px solid rgba(255, 250, 241, 0.42);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 820;
  padding: 0.34rem 0.6rem;
  text-transform: uppercase;
}

.about {
  border-top: 1px solid var(--line);
}

.about-panel {
  display: grid;
  gap: 1.3rem;
}

.local {
  background: var(--deep-brown);
  color: var(--paper);
  max-width: none;
  padding-left: max(clamp(1rem, 4vw, 3rem), calc((100vw - var(--max)) / 2 + 3rem));
  padding-right: max(clamp(1rem, 4vw, 3rem), calc((100vw - var(--max)) / 2 + 3rem));
}

.local .eyebrow {
  color: #d0ad73;
}

.local h2 {
  max-width: 900px;
}

.final-cta {
  align-items: center;
  display: grid;
  gap: 1.5rem;
  padding-bottom: clamp(4rem, 8vw, 6rem);
  padding-top: clamp(4rem, 8vw, 6rem);
}

.final-cta h2 {
  max-width: 760px;
}

.final-cta p {
  max-width: 660px;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding: 1.4rem clamp(1rem, 4vw, 3rem) 5.4rem;
}

.site-footer p {
  margin: 0;
}

.mobile-sticky-cta {
  background: var(--green-dark);
  border-radius: 999px;
  bottom: 0.85rem;
  box-shadow: 0 12px 30px rgba(37, 36, 33, 0.2);
  color: var(--paper);
  font-weight: 820;
  left: 1rem;
  min-height: 48px;
  padding: 0.78rem 1rem;
  position: fixed;
  right: 1rem;
  text-align: center;
  z-index: 25;
}

@media (min-width: 620px) {
  .hero-proof {
    grid-template-columns: repeat(3, 1fr);
  }

  .two-column,
  .pillars,
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .two-column {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-sticky-cta {
    left: auto;
    min-width: 190px;
    right: 1.2rem;
  }
}

@media (min-width: 820px) {
  .desktop-nav,
  .nav-cta {
    display: flex;
  }

  .hero {
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.78fr);
  }

  .media-frame {
    min-height: 620px;
  }

  .section-heading-row,
  .lead-capture,
  .about-panel,
  .final-cta {
    grid-template-columns: 0.9fr 1.1fr;
  }

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

  .mobile-sticky-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 1.4rem;
  }
}

@media (max-width: 420px) {
  .hero-actions .button {
    width: 100%;
  }

  .brand {
    font-size: 0.96rem;
  }

  .site-header {
    min-height: 66px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
