:root {
  --ink: #151816;
  --muted: #5d645e;
  --line: #e6e1d9;
  --bg: #fbfaf7;
  --paper: #ffffff;
  --green: #52622d;
  --green-dark: #273018;
  --black: #101211;
  --cream: #f0ede6;
  --shadow: 0 18px 40px rgba(0,0,0,.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

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

a { color: inherit; }

.site-header {
  min-height: 96px;
  display: grid;
  grid-template-columns: 360px 1fr 190px;
  align-items: center;
  gap: 22px;
  padding: 10px 44px;
  background: white;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

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

.brand img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 1.4rem;
  letter-spacing: -.03em;
}

.brand small {
  display: block;
  color: var(--green);
  font-weight: 800;
  font-size: .8rem;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
}

.desktop-nav a {
  text-decoration: none;
  padding: 12px 0;
}

.phone-top {
  justify-self: end;
  background: var(--black);
  color: white;
  text-decoration: none;
  padding: 15px 18px;
  font-weight: 900;
}

.hero {
  min-height: 690px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero_cedar_entry.jpg");
  background-size: cover;
  background-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.84) 0%, rgba(0,0,0,.58) 42%, rgba(0,0,0,.12) 76%);
}

.hero-content {
  position: relative;
  color: white;
  max-width: 820px;
  padding: 68px 56px;
}

.eyebrow, .section-kicker {
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .78rem;
  font-weight: 900;
  color: var(--green);
}

.hero .eyebrow { color: #dfe8c2; }

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

h1 {
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: .9;
  margin-bottom: 10px;
  letter-spacing: -.06em;
}

.hero h2 {
  font-size: clamp(1.65rem, 3.5vw, 3rem);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -.04em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -.04em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.hero-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  gap: 10px 24px;
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
  font-size: 1.08rem;
  font-weight: 800;
}

.hero-list li::before {
  content: "✓";
  color: #dfe8c2;
  margin-right: 10px;
}

.service-area {
  font-size: 1.05rem;
  max-width: 620px;
  color: rgba(255,255,255,.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 0 28px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
  font-weight: 900;
  border: none;
  cursor: pointer;
}

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

.btn-light {
  background: white;
  color: var(--ink);
}

.btn.full { width: 100%; }

.trust-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: white;
  padding: 48px 44px;
  border-bottom: 1px solid var(--line);
}

.trust-bar article {
  text-align: center;
  padding: 0 22px;
  border-right: 1px solid var(--line);
}

.trust-bar article:last-child { border-right: 0; }

.trust-bar span {
  display: block;
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.trust-bar p {
  color: var(--muted);
  font-size: .94rem;
  margin-bottom: 0;
}

.section {
  padding: 82px 56px;
  max-width: 1480px;
  margin: 0 auto;
}

.section.alt {
  max-width: none;
  background: var(--cream);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 32px;
}

.section-intro {
  max-width: 900px;
  color: var(--muted);
  font-size: 1.08rem;
}

.small-link {
  background: var(--green);
  color: white;
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  white-space: nowrap;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.project-card,
.timeline-grid article,
.service-grid article {
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.project-card div,
.timeline-grid article div {
  padding: 22px;
}

.project-card p,
.timeline-grid p,
.service-grid p,
.contact-section p {
  color: var(--muted);
  margin-bottom: 0;
}

.timeline-grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.timeline-grid img {
  width: 100%;
  height: 285px;
  object-fit: cover;
}

.custom-feature {
  background: white;
  max-width: none;
}

.chairlift-grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 18px;
}

.chairlift-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.chairlift-grid .big {
  grid-row: span 2;
  height: 578px;
}

.centered { text-align: center; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.service-grid article {
  text-align: center;
  padding: 32px 22px;
  min-height: 245px;
}

.service-grid span {
  display: block;
  font-size: 2.1rem;
  margin-bottom: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.gallery-grid img:nth-child(1),
.gallery-grid img:nth-child(6) {
  grid-column: span 2;
}

.service-area-block {
  background: var(--cream);
  max-width: none;
}

.area-list {
  max-width: 1000px;
  margin: 28px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.area-list span {
  background: white;
  border: 1px solid var(--line);
  padding: 12px 18px;
  font-weight: 900;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
  align-items: center;
  background: #141715;
  color: white;
  padding: 82px 56px;
}

.about-copy {
  max-width: 850px;
}

.about-copy p:not(.section-kicker) {
  color: rgba(255,255,255,.78);
  font-size: 1.06rem;
}

.about-logo img {
  width: 285px;
  border-radius: 50%;
  filter: invert(1);
  opacity: .92;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 50px;
  align-items: start;
  background: white;
  padding: 82px 56px;
}

.contact-section > div:first-child {
  max-width: 800px;
}

.contact-card {
  background: var(--black);
  color: white;
  padding: 34px;
  box-shadow: var(--shadow);
}

.contact-card label {
  display: block;
  font-weight: 900;
  margin-bottom: 14px;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.25);
  background: white;
  color: var(--ink);
  font: inherit;
}

.contact-card textarea {
  resize: vertical;
}

.contact-card a { color: white; }

.form-note {
  margin-top: 16px;
  color: rgba(255,255,255,.8) !important;
  font-size: .95rem;
}

footer {
  background: #0c0d0d;
  color: rgba(255,255,255,.72);
  text-align: center;
  padding: 26px;
  font-size: .9rem;
}

footer p { margin: 4px 0; }
footer a { color: white; }

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr 170px;
    padding: 10px 22px;
  }

  .desktop-nav { display: none; }

  .brand img {
    width: 70px;
    height: 70px;
  }

  .brand strong { font-size: 1.15rem; }

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

  .trust-bar article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 26px;
  }

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

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

  .chairlift-grid .big {
    grid-column: span 2;
    height: 420px;
  }

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

  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px 16px 14px;
    position: static;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .phone-top {
    justify-self: stretch;
    text-align: center;
    padding: 12px 14px;
    font-size: .86rem;
  }

  .hero {
    min-height: 690px;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(0,0,0,.82), rgba(0,0,0,.48), rgba(0,0,0,.82));
  }

  .hero-content {
    padding: 42px 22px;
  }

  h1 { font-size: 3.25rem; }
  .hero h2 { font-size: 1.65rem; }

  .hero-list {
    grid-template-columns: 1fr;
    font-size: 1rem;
    gap: 8px;
    margin-bottom: 18px;
  }

  .service-area {
    font-size: .98rem;
  }

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

  .btn { width: 100%; }

  .trust-bar,
  .project-grid,
  .timeline-grid,
  .service-grid,
  .gallery-grid,
  .chairlift-grid {
    grid-template-columns: 1fr;
  }

  .chairlift-grid .big {
    grid-column: auto;
    height: 300px;
  }

  .trust-bar { padding: 28px 20px; }

  .section,
  .section.alt,
  .custom-feature,
  .service-area-block,
  .about-section,
  .contact-section {
    padding: 54px 22px;
  }

  .section-header { display: block; }

  .small-link {
    display: inline-flex;
    margin-top: 10px;
  }

  .project-card img,
  .timeline-grid img,
  .gallery-grid img,
  .chairlift-grid img {
    height: 245px;
  }

  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(6) {
    grid-column: auto;
  }

  .about-logo img {
    width: 220px;
  }
}


.hidden-field {
  display: none !important;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background: var(--cream);
}

.thank-you-card {
  max-width: 780px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 46px;
  text-align: center;
}

.thank-you-card img {
  width: 150px;
  margin: 0 auto 26px;
}

.thank-you-card h1 {
  color: var(--ink);
  font-size: clamp(2.2rem, 6vw, 4rem);
}

.thank-you-card p {
  color: var(--muted);
  font-size: 1.1rem;
}

.thank-you-card .hero-actions {
  justify-content: center;
}
