:root {
  --cream: #f3e4c9;
  --cream-light: #f8edd9;
  --sand: #d7ba8d;
  --burnt: #a94f1d;
  --burnt-light: #c66327;
  --brown: #2c2117;
  --brown-soft: #5b432d;
  --border: rgba(44, 33, 23, 0.18);
  --shadow: 0 14px 32px rgba(44, 33, 23, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--cream-light);
  color: var(--brown);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
  background: rgba(248, 237, 217, 0.95);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  position: relative;
  top: 20px;
}

.brand-text span {
  display: block;
  font-size: 2.05rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  line-height: 0.8;
}

.brand-text strong {
  display: block;
  color: var(--burnt);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 1rem;
  margin-left: 4px;
}

.site-nav {
  display: flex;
  gap: 32px;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.site-nav a:hover {
  color: var(--burnt);
}

.nav-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  font-weight: 900;
  cursor: pointer;
}

.nav-btn,
.btn-primary {
  background: var(--burnt);
  color: #fff3df;
  border: 1px solid var(--burnt);
}

.btn-outline {
  border: 1px solid var(--burnt);
  color: var(--burnt);
  background: transparent;
}

.nav-btn:hover,
.btn-primary:hover {
  background: #873f18;
}

.btn-outline:hover {
  background: var(--burnt);
  color: #fff3df;
}

.hero {
  min-height: 520px;
  background:
    linear-gradient(
      90deg,
      rgba(248,237,217,0.70) 0%,
      rgba(248,237,217,0.55) 10%,
      rgba(248,237,217,0.25) 30%,
      rgba(248,237,217,0.05) 50%,
      rgba(248,237,217,0) 70%
    ),
    url("images/hero-desert.png");

  background-size: 108% auto;
  background-position: 48% center;
  background-repeat: no-repeat;
  background-color: var(--cream-light);

  display: flex;
  align-items: center;
  padding: 70px 7vw;
  border-bottom: 1px solid var(--border);
}

.hero-copy {
  max-width: 520px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.82;
  text-shadow: 
    0 2px 4px rgb(0,0,0,.08),
    0 8px 30px rgb(0,0,0,.08);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 900;
}

.hero h1 span {
  display: block;
  color: var(--burnt);
  font-size: 0.43em;
  letter-spacing: 0.35em;
  margin-left: 12px;
}

.title-lines {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 24px 0;
  max-width: 450px;
}

.title-lines span {
  height: 1px;
  flex: 1;
  background: var(--brown);
}

.title-lines i {
  color: var(--brown);
  font-style: normal;
}

.hero-tagline {
  font-size: 1.25rem;
  line-height: 1.45;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 1px solid var(--border);
  background: #f0dec0;
}

.quick-card {
  text-align: center;
  padding: 24px 20px 28px;
  min-height: 210px;
  border-right: 1px solid var(--border);
  transition: all 0.25s ease;
}

.quick-card:hover {
  background: rgba(186, 99, 35, 0.04);
  transform: translateY(-3px);
}

.quick-icon-img {
    width: 115px;
    height: 95px;
    object-fit: contain;

    display: block;
    margin: 0 auto 16px;

    transition: all .25s ease;
}

.quick-card:hover .quick-icon-img {
    transform: translateY(-4px);
}

.quick-card h3 {
  text-transform: uppercase;
  font-size: 0.95rem;
  margin: 0 0 8px;
}

.quick-card p {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  line-height: 1.45;
}

.icon-magnify {
    width: 140px;
}

.icon-camera {
    width: 140px;
}

.icon-store {
    width: 140px;
}

.icon-mountain {
    width: 130px;
}

.icon-crystal {
    width: 130px;
}

.icon-tumbler {
    width: 130px;
}

.section {
  padding: 56px 36px;
}

.adventure-section {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 35px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 30px;
}

.kicker {
  color: var(--burnt);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 8px;
}

.section-side h2,
.section-title h2,
.tumbler-intro h2,
.trail-notes h2,
.store-hero h1 {
  font-size: 2.5rem;
  text-transform: uppercase;
  margin: 0 0 14px;
  line-height: 0.95;
}

.section-side p,
.trail-notes p,
.store-hero p {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.content-card,
.find-card,
.store-card {
  background: #f6e9d1;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.content-card img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}

.card-body {
  padding: 22px;
  position: relative;
}

.card-body h3 {
  text-transform: uppercase;
  font-size: 1.35rem;
  line-height: 1.1;
  margin: 0 0 10px;
}

.card-body p {
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

.location {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--burnt);
}

.badge {
  position: absolute;
  top: -36px;
  right: 14px;
  background: var(--burnt);
  color: white;
  padding: 8px 12px;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 900;
}

.centered {
  text-align: center;
}

.finds-section {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 25px;
}

.finds-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  border: 1px solid var(--border);
  padding: 14px;
  border-radius: 8px;
}

.find-card {
  text-align: center;
  box-shadow: none;
}

.find-card img {
  height: 130px;
  width: 100%;
  object-fit: cover;
}

.find-card h3 {
  text-transform: uppercase;
  font-size: 1rem;
  margin: 14px 8px 4px;
}

.find-card p,
.find-card span {
  display: block;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

.tumbler-strip {
  max-width: 1240px;
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 260px 1fr;
  background: var(--brown);
  color: #f7e7c9;
  border-radius: 6px;
  overflow: hidden;
}

.tumbler-intro {
  padding: 34px;
}

.tumbler-intro p {
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

.tumble-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.tumble-steps div {
  border-left: 1px solid rgba(255,255,255,0.18);
  text-align: center;
  background: rgba(0,0,0,0.15);
}

.tumble-steps img {
  height: 150px;
  width: 100%;
  object-fit: cover;
}

.tumble-steps h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
}

.tumble-steps p {
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
}

.gallery-notes {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
}

.gallery-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 20px 0;
}

.gallery-preview img {
  height: 120px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.trail-notes {
  background: #e7c69c;
  border: 1px solid var(--border);
  padding: 42px;
  text-align: center;
  border-radius: 6px;
}

.trail-notes form {
  display: flex;
  gap: 10px;
  margin: 22px 0 8px;
}

.trail-notes input {
  flex: 1;
  min-height: 44px;
  border: 1px solid var(--border);
  padding: 0 14px;
}

.trail-notes button {
  background: var(--burnt);
  color: white;
  border: none;
  padding: 0 22px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.site-footer {
  background: #ead7b5;
  border-top: 1px solid var(--border);
  padding: 20px 50px 10px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}

.footer-brand img {
  width: 280px;
  margin-top: 8px;
}

.footer-brand h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  margin: 5px 0;
}

.footer-brand p {
    margin-top: 8px;
}

.footer-brand h2 span {
  display: block;
  color: var(--burnt);
  font-size: 0.55em;
  letter-spacing: 0.35em;
}

.footer-brand,
.site-footer > div:not(.footer-bottom) {
    padding-top: 15px;
}

.site-footer a {
  display: block;
  font-family: Arial, sans-serif;
  margin-bottom: 8px;
  transition: color .2s ease;
}

.site-footer a:hover {
    color: var(--burnt);
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(44,33,23,18);
  margin-top: 10px;
  padding-top: 10px;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.store-hero {
  padding: 110px 7vw;
  background:
    linear-gradient(rgba(248,237,217,0.88), rgba(248,237,217,0.88)),
    url("images/hero-desert.jpg") center / cover no-repeat;
  text-align: center;
}

.store-hero h1 {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.store-hero p {
  max-width: 620px;
  margin: 0 auto 26px;
}

.store-grid {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.store-card {
  padding-bottom: 24px;
}

.store-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.store-card h3,
.store-card p,
.store-card a {
  margin-left: 22px;
  margin-right: 22px;
}

.store-card h3 {
  text-transform: uppercase;
}

.store-card p {
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

.store-card a {
  color: var(--burnt);
  text-transform: uppercase;
  font-weight: 900;
}

/* ========================================
   SITE-WIDE NOTICE / UNDER CONSTRUCTION BAR
======================================== */

.site-notice {
    position: relative;
    z-index: 100;
    width: 100%;
    max-width: none;
    left: 0;
    right: 0;

    background:
        linear-gradient(
            90deg,
            rgba(79, 78, 49, .96),
            rgba(109, 109, 75, .98),
            rgba(79, 78, 49, .96)
        );

    color: #fff8ec;
    padding: 8px 40px;
    text-align: center;

    border-bottom: 1px solid rgba(242, 194, 129, .25);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
}

.site-notice span {
    display: block;

    color: #f2c281;
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: .72rem;
    font-weight: 900;

    margin-bottom: 4px;
}

.site-notice p {
    max-width: 900px;
    margin: 0 auto;

    color: rgba(255, 248, 236, .92);
    line-height: 1.35;
    font-size: .84rem;
}

@media (max-width: 700px) {
    .site-notice {
        padding: 10px 18px;
    }

    .site-notice span {
        font-size: .66rem;
        letter-spacing: .16em;
    }

    .site-notice p {
        font-size: .78rem;
    }
}

@media (max-width: 950px) {
  .site-header {
    height: auto;
    flex-wrap: wrap;
    gap: 16px;
    padding: 18px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
  }

  .quick-links,
  .finds-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .adventure-section,
  .gallery-notes,
  .tumbler-strip {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .store-grid {
    grid-template-columns: 1fr;
  }

  .tumble-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 34px 24px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 55px 24px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .quick-links,
  .finds-grid,
  .tumble-steps {
    grid-template-columns: 1fr;
  }

  .trail-notes form {
    flex-direction: column;
  }
}

.site-footer {
  position: relative;
  overflow: hidden;
}

.footer-cactus-art {
  position: absolute;
  right: 80px;
  bottom: 15px;
  width: 340px;
  max-width: none;
  opacity: 0.9;
  pointer-events: none;
}


#preloader {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(176, 88, 34, 0.18), transparent 45%),
    #f3e5c8;
  z-index: 9999;
  display: grid;
  place-items: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.scorpion-loader {
  position: relative;
  width: 500px;
  height: 260px;
  text-align: center;
  overflow: hidden;
}

.scorpion {
  position: absolute;
  left: -70px;
  top: 90px;
  font-size: 3rem;
  animation: scorpionWalk 2.6s ease-in-out forwards;
}

.ufo-beam {
  position: absolute;
  left: 50%;
  top: 15px;
  width: 90px;
  height: 115px;
  transform: translateX(-50%);
  background: linear-gradient(
    to bottom,
    rgba(255, 244, 205, 0),
    rgba(255, 244, 205, 0.55),
    rgba(255, 244, 205, 0)
  );
  clip-path: polygon(45% 0, 55% 0, 100% 100%, 0 100%);
  opacity: 0;
  animation: beamFlash 2.6s ease-in-out forwards;
}

.scorpion-loader p {
  position: absolute;
  top: 120px;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: 0;
  font-family: Georgia, serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5a341f;
}

.loader-ufo {
  position: absolute;
  top: -30;
  left: 50%;
  width: 320px;
  transform: translateX(-50%);
  z-index: 3;
  animation: loaderUfoFloat 2.6s ease-in-out forwards;
}

@keyframes loaderUfoFloat {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

@keyframes scorpionWalk {
  0% {
    left: -70px;
    transform: rotate(-4deg);
  }

  55% {
    left: 145px;
    transform: rotate(3deg);
  }

  70% {
    left: 145px;
    transform: rotate(-2deg);
  }

  100% {
    left: 430px;
    transform: rotate(2deg);
  }
}

@keyframes beamFlash {
  0%, 48% {
    opacity: 0;
  }

  58% {
    opacity: 1;
  }

  78% {
    opacity: 0.8;
  }

  100% {
    opacity: 0;
  }
}