:root {
  --bg: #090909;
  --panel: #121212;
  --soft: #1b1a18;
  --text: #f6efe4;
  --muted: #bdb3a4;
  --gold: #d0a85f;
  --line: rgba(246, 239, 228, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

a { color: inherit; }

.hero {
  min-height: 100vh;
  padding: 28px clamp(20px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.65)),
    url("images/coloradowaterfall1.JPG");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.6), transparent);
  pointer-events: none;
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.brand {
  text-decoration: none;
  letter-spacing: .22em;
  font-size: .88rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--muted);
}

.nav-links a {
  text-decoration: none;
  font-size: .92rem;
}

.nav-links a:hover { color: var(--text); }

.hero-inner {
  position: relative;
  z-index: 2;
  margin-top: auto;
  margin-bottom: 10vh;
  max-width: 980px;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .19em;
  font-size: .76rem;
  font-weight: 800;
}

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

h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3.4rem, 9vw, 8.5rem);
  line-height: .88;
  letter-spacing: -0.06em;
  margin-bottom: 28px;
}

h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.4rem, 5.5vw, 5.2rem);
  line-height: .95;
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.22rem;
}

.hero-copy {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.75;
}

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

.button {
  text-decoration: none;
  background: var(--text);
  color: #080808;
  border: 1px solid var(--text);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
}

.button.ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.scroll-note {
  position: relative;
  z-index: 2;
  color: var(--muted);
  font-size: .85rem;
  padding-bottom: 10px;
}

.intro {
  padding: 55px clamp(20px, 8vw, 120px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0d0d0d;
}

.intro p {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.5rem, 3vw, 2.7rem);
  line-height: 1.22;
  max-width: 1120px;
  color: #e9dfd0;
}

.section {
  padding: 105px clamp(20px, 5vw, 72px);
}

.section-top {
  max-width: 900px;
  margin-bottom: 36px;
}

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

.tile {
  min-height: 310px;
  border-radius: 26px;
  padding: 22px;
  display: flex;
  align-items: end;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(to top, rgba(0,0,0,.82), transparent 52%),
    radial-gradient(circle at 75% 25%, rgba(208,168,95,.28), transparent 32%),
    linear-gradient(135deg, #24211d, #111318);
}

.tile:nth-child(2) { background: linear-gradient(to top, rgba(0,0,0,.78), transparent), linear-gradient(135deg, #2a221d, #17120f); }
.tile:nth-child(3) { background: linear-gradient(to top, rgba(0,0,0,.78), transparent), linear-gradient(135deg, #202219, #101010); }
.tile:nth-child(4) { background: linear-gradient(to top, rgba(0,0,0,.78), transparent), radial-gradient(circle at center, rgba(208,168,95,.34), transparent 42%), #080a11; }
.tile:nth-child(5) { background: linear-gradient(to top, rgba(0,0,0,.78), transparent), linear-gradient(135deg, #2d302b, #111); }
.tile:nth-child(6) { background: linear-gradient(to top, rgba(0,0,0,.78), transparent), linear-gradient(135deg, #151a24, #090909); }

.tile span {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2rem;
}

.tile.tall {
  grid-row: span 2;
  min-height: 638px;
}

.tile.wide { grid-column: span 2; }

.services {
  background: #0d0d0d;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cards, .price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.service-card, .price-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  min-height: 300px;
}

.service-card.featured {
  background: linear-gradient(135deg, rgba(208,168,95,.18), rgba(255,255,255,.04));
}

.number {
  color: var(--gold);
  font-weight: 800;
}

.service-card p, .price-grid p, .banner p, .steps p, .cta p {
  color: var(--muted);
  line-height: 1.7;
}

.service-card a {
  display: inline-block;
  margin-top: 16px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 800;
}

.banner {
  padding: 95px clamp(20px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: end;
  background:
    linear-gradient(rgba(9,9,9,.78), rgba(9,9,9,.94)),
    radial-gradient(circle at 25% 35%, rgba(208,168,95,.28), transparent 35%);
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 60px;
}

.steps {
  display: grid;
  gap: 20px;
}

.steps div {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.pricing {
  background: #0d0d0d;
}

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

.price {
  color: var(--gold) !important;
  font-size: 1.5rem;
  font-family: Georgia, 'Times New Roman', serif;
}

.cta {
  padding: 120px clamp(20px, 5vw, 72px);
  text-align: center;
  max-width: 920px;
  margin: auto;
}

.email {
  display: inline-block;
  margin-top: 12px;
  font-size: clamp(1.3rem, 4vw, 2.4rem);
  font-family: Georgia, 'Times New Roman', serif;
  text-decoration: none;
  color: var(--text);
}

.contact-buttons {
  justify-content: center;
}

footer {
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  padding: 28px;
}

@media (max-width: 950px) {
  .cards, .price-grid, .masonry, .banner, .split {
    grid-template-columns: 1fr;
  }

  .tile.tall, .tile.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 330px;
  }

  .nav {
    align-items: flex-start;
  }

  h1 {
    font-size: clamp(3.2rem, 15vw, 5.6rem);
  }
}
