:root {
  --ink: #18211f;
  --deep: #263a33;
  --pine: #3f6254;
  --water: #6a9095;
  --stone: #d7d1c3;
  --paper: #f7f4ed;
  --clay: #9f6847;
  --moss: #b5bd95;
  --white: #fffaf1;
  --shadow: 0 18px 50px rgba(24, 33, 31, 0.16);
  color-scheme: light;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body,
input,
textarea,
button {
  font: 16px/1.6 ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1,
h2,
h3,
.brand {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-weight: 500;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(90px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(24, 33, 31, 0.66), rgba(24, 33, 31, 0));
}

.brand {
  display: inline-flex;
  flex-direction: column;
  width: fit-content;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  line-height: 1.1;
}

.brand span:last-child {
  color: var(--moss);
}

.nav-links {
  display: flex;
  gap: clamp(14px, 2vw, 30px);
  font-size: 0.86rem;
}

.nav-links a,
.nav-cta,
.site-footer a {
  text-decoration: none;
}

.nav-links a {
  opacity: 0.88;
}

.nav-links a:hover,
.nav-cta:hover,
.site-footer a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.nav-cta {
  justify-self: end;
  border: 1px solid rgba(255, 250, 241, 0.7);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.86rem;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: flex-end;
  padding: 128px clamp(18px, 5vw, 74px) 10vh;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 30, 27, 0.88), rgba(18, 30, 27, 0.46) 46%, rgba(18, 30, 27, 0.12)),
    linear-gradient(0deg, rgba(18, 30, 27, 0.5), rgba(18, 30, 27, 0.05) 42%);
}

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

.eyebrow,
.section-kicker {
  margin-bottom: 18px;
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 7vw, 6.8rem);
  line-height: 0.94;
}

.hero-copy {
  width: min(680px, 100%);
  margin-bottom: 32px;
  color: rgba(255, 250, 241, 0.9);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
}

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

.button.secondary {
  border-color: rgba(255, 250, 241, 0.7);
  color: var(--white);
  background: rgba(255, 250, 241, 0.08);
}

.section,
.band {
  padding: clamp(72px, 9vw, 128px) clamp(18px, 5vw, 74px);
}

.band {
  background: var(--deep);
  color: var(--white);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.two-column,
.split,
.fees-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.intro h2,
.section h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
}

.intro p,
.section p {
  font-size: 1.03rem;
}

.section-kicker {
  color: var(--clay);
}

.band .section-kicker {
  color: var(--moss);
}

.sticky-copy {
  position: sticky;
  top: 110px;
}

.text-stack {
  display: grid;
  gap: 18px;
}

.text-stack p,
.fees-layout > div:first-child p,
.contact-layout > div:first-child p {
  color: rgba(24, 33, 31, 0.78);
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
}

.intro .two-column > p {
  color: rgba(255, 250, 241, 0.84);
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
}

.muted {
  background: #ece8dc;
}

.section-heading {
  width: min(660px, 100%);
  margin-bottom: 36px;
}

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

.focus-card,
.details-panel,
.contact-form {
  border: 1px solid rgba(38, 58, 51, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.7);
  box-shadow: var(--shadow);
}

.focus-card {
  min-height: 260px;
  padding: 28px;
}

.focus-card h3 {
  margin-bottom: 18px;
  color: var(--deep);
  font-size: 1.55rem;
  line-height: 1.1;
}

.focus-card p {
  color: rgba(24, 33, 31, 0.74);
}

.about {
  border-top: 1px solid rgba(38, 58, 51, 0.18);
  padding-top: clamp(42px, 7vw, 82px);
}

.details-panel {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.details-panel div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 16px;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(38, 58, 51, 0.13);
}

.details-panel div:last-child {
  border-bottom: 0;
}

.details-panel span {
  color: rgba(24, 33, 31, 0.55);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.details-panel strong {
  color: var(--deep);
  font-size: 1rem;
}

.contact-section {
  background: var(--deep);
  color: var(--white);
}

.contact-section .section-kicker {
  color: var(--moss);
}

.contact-section p {
  color: rgba(255, 250, 241, 0.78);
}

.contact-section .contact-layout > div:first-child p {
  color: rgba(255, 250, 241, 0.82);
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-methods a {
  width: fit-content;
  color: var(--white);
  text-decoration-color: rgba(181, 189, 149, 0.7);
  text-underline-offset: 5px;
}

.contact-address {
  margin-top: 6px;
  color: rgba(255, 250, 241, 0.82);
  font-style: normal;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 36px);
  background: rgba(255, 250, 241, 0.08);
  color: var(--white);
  border-color: rgba(255, 250, 241, 0.22);
  scroll-margin-top: 110px;
}

.hidden-field {
  display: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(38, 58, 51, 0.28);
  border-radius: 6px;
  padding: 12px 13px;
  background: #fffdf8;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(106, 144, 149, 0.28);
  border-color: var(--water);
}

.contact-form .button {
  width: fit-content;
}

.form-note {
  margin-bottom: 0;
  color: rgba(255, 250, 241, 0.72);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 5vw, 74px);
  background: #131b19;
  color: rgba(255, 250, 241, 0.74);
}

.site-footer div {
  display: grid;
  gap: 3px;
}

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

.thank-you-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(18, 30, 27, 0.92), rgba(18, 30, 27, 0.62)),
    url("assets/colorado-creek-hero.png") center / cover;
  color: var(--white);
}

.thank-you {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.thank-you-card {
  width: min(680px, 100%);
}

.thank-you-card h1 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.96;
}

.thank-you-card p:not(.section-kicker) {
  margin-bottom: 28px;
  color: rgba(255, 250, 241, 0.84);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
}

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

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 92vh;
    padding-top: 112px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(18, 30, 27, 0.9), rgba(18, 30, 27, 0.5)),
      linear-gradient(0deg, rgba(18, 30, 27, 0.55), rgba(18, 30, 27, 0.08));
  }

  .two-column,
  .split,
  .fees-layout,
  .contact-layout,
  .focus-grid {
    grid-template-columns: 1fr;
  }

  .sticky-copy {
    position: static;
  }

  .focus-card {
    min-height: auto;
  }
}

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

  .nav-cta {
    padding: 7px 12px;
  }

  .hero {
    min-height: 88vh;
    padding: 98px 18px 58px;
  }

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

  .details-panel div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-footer {
    flex-direction: column;
  }
}
