:root {
      --orange: #F26A2E;
      --orange-light: #FFF0EA;
      --green: #3DBD6E;
      --green-light: #E8F8EF;
      --yellow: #F5A623;
      --yellow-light: #FFF8EC;
      --red: #E8453C;
      --red-light: #FDECEA;
      --white: #FFFFFF;
      --text: #1A1A1A;
      --text-muted: #8A8A8A;
      --border: #EFEFEF;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

    body {
      font-family: 'DM Sans', sans-serif;
      min-height: 100vh;
      color: var(--text);
      position: relative;
      overflow-x: hidden;
    }

    /* Layer 1: Blurred version fills entire viewport — no black gaps */
    .bg-blur {
      position: fixed;
      inset: 0;
      background: url('/assets/images/tr_bg2.jpg') center center / cover no-repeat;
      filter: blur(22px) brightness(0.55);
      transform: scale(1.1);
      z-index: 0;
	  background-color: transparent;
    }

    .bg-image {
      position: fixed;
      inset: 0;
      background: url('/assets/images/tr_bg4.jpg') center calc(100% + 120px) no-repeat;
      z-index: 1;
    }
	
	@media (min-width: 600px) and (max-width: 851px) {
		.bg-image {
			background: url('/assets/images/tr_bg2.jpg') center calc(100% + 10vw) / cover no-repeat;
		}
	}
	@media (min-width: 851px) and (max-width: 1011px) {
		.bg-image {
			background: url('/assets/images/tr_bg2.jpg') center calc(100% + 25vw) / cover no-repeat;
		}
	}
	@media (min-width: 1011px) and (max-width: 1291px) {
		.bg-image {
			background: url('/assets/images/tr_bg2.jpg') center calc(100% + 35vw) / cover no-repeat;
		}
	}
	@media (min-width: 1291px) and (max-width: 1400px) {
		.bg-image {
			background: url('/assets/images/tr_bg4.jpg') center calc(100% + 300px) / cover no-repeat;
		}
	}
	@media (min-width: 1400px) {
		.bg-image {
			background: url('/assets/images/tr_bg4.jpg') center calc(100% + 350px) / cover no-repeat;
		}
	}

    .bg-image::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(10,18,28,0.65) 0%,
        rgba(10,18,28,0.80) 40%,
        rgba(10,18,28,0.98) 100%
      );
    }

    .page {
      position: relative;
      z-index: 2;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .brand-bar {
      padding: 18px 48px 0;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      display: flex;
      align-items: center;
    }

    .brand-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      text-decoration: none;
      color: rgba(255,255,255,0.90);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.3px;
      transition: color 0.15s;
      width: fit-content;
	  position: relative;
	  margin: auto;
    }

    .brand-link:hover { color: #fff; }

    .ig-icon {
      width: 22px;
      height: 22px;
      border-radius: 7px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .hero {
      padding: 28px 48px 40px;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 14px;
    }

    .hero-eyebrow::before {
      content: '';
      width: 24px; height: 2px;
      background: var(--orange);
      border-radius: 2px;
    }

    .hero h1 {
      font-size: clamp(32px, 5vw, 56px);
      font-weight: 700;
      color: #fff;
      line-height: 1.1;
      letter-spacing: -1px;
      margin-bottom: 12px;
    }

    .hero h1 span { color: var(--orange); }

    .hero-sub {
      font-size: 15px;
      color: rgba(255,255,255,0.55);
      font-weight: 400;
      max-width: 420px;
      line-height: 1.6;
    }

    .cards-section {
      flex: 1;
      padding: 0 48px 60px;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }

    .section-label {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-bottom: 20px;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .trek-card {
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(12px);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(0,0,0,0.22);
      cursor: pointer;
      transition: transform 0.22s ease, box-shadow 0.22s ease;
      text-decoration: none;
      color: inherit;
      display: block;
      border: 1px solid rgba(255,255,255,0.6);
    }

    .card-img {
      width: 100%;
      height: 250px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #ddeaf3 0%, #bcd3e6 100%);
      position: relative;
      font-size: 46px;
    }

    .card-pdf-pill {
      position: absolute;
      top: 9px; left: 9px;
      background: var(--white);
      border-radius: 20px;
      padding: 3px 9px;
      font-size: 10px;
      font-weight: 700;
      color: var(--orange);
      display: flex; align-items: center; gap: 3px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    }

    .card-body { padding: 13px 15px 15px; }

    .card-location {
      display: flex;
      align-items: center;
      gap: 3px;
      font-size: 10px;
      color: var(--text-muted);
      font-weight: 500;
      margin-bottom: 4px;
    }

    .card-name {
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .card-meta {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 12px;
    }

    .meta-item {
      display: flex;
      align-items: center;
      gap: 3px;
      font-size: 11px;
      color: var(--text-muted);
      font-weight: 500;
    }
	
	.card-img {
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* nice zoom effect on hover */
.trek-card:hover .card-img img {
  transform: scale(1.08);
}

/* optional gradient overlay for premium feel */
.card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35), transparent);
}

    .diff-tag {
      font-size: 10px;
      font-weight: 700;
      padding: 3px 9px;
      border-radius: 20px;
      text-transform: uppercase;
      letter-spacing: 0.4px;
    }
    .easy     { background: var(--green-light); color: var(--green); }
    .moderate { background: var(--yellow-light); color: #c07c00; }
    .hard     { background: var(--red-light); color: var(--red); }
    
    .card-route {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 10px;
      color: var(--orange);
      font-weight: 600;
      margin-bottom: 4px;
    }

    .card-price {
      font-size: 14px;
      font-weight: 700;
      color: var(--orange);
      margin-bottom: 8px;
      display: flex;
      align-items: baseline;
      gap: 4px;
    }
    .card-price-sub {
      font-size: 10px;
      font-weight: 500;
      color: var(--text-muted);
    }

    .open-btn {
      width: 100%;
      padding: 10px;
      background: var(--orange);
      color: white;
      border: none;
      border-radius: 11px;
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      text-decoration: none;
      transition: background 0.15s, transform 0.1s;
      font-family: 'DM Sans', sans-serif;
      letter-spacing: 0.3px;
    }
    .open-btn:hover { background: #e0551a; }

    @media (max-width: 900px) {
      .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    }

    @media (max-width: 600px) {
      .brand-bar { padding: 16px 16px 0; gap: 5px; }
      .hero { padding: 20px 16px 24px; }
      .hero-sub { font-size: 14px; }
      .cards-section { padding: 0 16px 48px; }
      .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .card-img { height: 200px; font-size: 38px; }
      .card-body { padding: 10px 11px 12px; }
      .card-name { font-size: 13px; margin-bottom: 8px; }
      .card-meta { display: grid; gap: 5px; margin-bottom: 10px; grid-template-columns: repeat(2, max-content); justify-content: start;}
      .meta-item { font-size: 10px; }
      .diff-tag { font-size: 9px; padding: 2px 7px; grid-column: 1 / -1; justify-self: start; width: fit-content;}
      .open-btn { font-size: 11px; padding: 8px; border-radius: 9px; gap: 4px; }
      .brand-link { font-size: 13px; }
    }

    @media (max-width: 360px) {
      .cards-grid { grid-template-columns: 1fr; }
    }