:root {
  --orange:#FF6600;
  --green:#145A32;
  --sage:#d8e0d5;     /* light color like top-left */
}

html, body { height: 100%; }

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;

  /* Gradient you loved */
  background: linear-gradient(135deg, #d8e0d5 0%, #c7d2c7 25%, #b1c1ae 50%, #f0a56a 75%, #ea8f49 100%);
}

/* Texture overlay */
body::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: url("texture.png") center center repeat;
  background-size: cover;
  opacity: 0.4;  /* 60% transparent look */
  mix-blend-mode: multiply;
}

/* Keep content above texture */
.hero, .site-header, .cta, .footer-note { position: relative; z-index: 1; }

/* Logo top-left */
.site-header {
  position: fixed;
  top: 20px;
  left: 20px;
}
.logo {
  height: 220px;  /* reduced 10% */
  width: auto;
  display: block;
}

/* CTA button top-right */
.cta {
  position: fixed;
  top: 40px;
  right: 40px;
  font-weight: 800;
  font-size: 1rem;
  padding: 12px 20px;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  border: 2px solid rgba(0,0,0,0.08);
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
  cursor: default;  /* visual only */
}

/* Center text block */
.hero {
  text-align: center;
  padding: 2rem;
  max-width: min(92vw, 1000px);
}
.hero h1 {
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: clamp(1.56rem, 4vw, 3.3rem);
  margin: 0.35rem 0;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.22);
}
.build { color: var(--green); }
.climb { color: var(--orange); }

/* Bottom-center note */
.footer-note {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--sage);
  text-shadow: 1px 1px 4px rgba(0,0,0,0.18);
  font-size: clamp(0.9rem, 1.8vw, 1.2rem);
  opacity: 0.95;
}

/* Mobile tweak */
@media (max-width: 640px){
  .logo { height: 170px; }
  .cta { font-size: 0.85rem; padding: 8px 12px; top: 2
