/* Base */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #1b1a18;

  /* Static photoreal background behind everything */
  background: url("assets/rocky_mountains_bg.jpg") center/cover no-repeat fixed;
}

/* A readable “veil” so text doesn’t fight the mountains */
.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 16px 60px;
  background: rgba(247, 242, 233, 0.82);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

/* Nav */
.site-header { position: relative; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  max-width: 1100px;
  margin: 0 auto;
  color: #fff;
}
.nav a { color: #fff; text-decoration: none; font-weight: 800; }
.nav .nav-links a { margin-left: 14px; opacity: 0.95; }
.nav .nav-links a:hover { opacity: 1; text-decoration: underline; }
.nav-brand { letter-spacing: 0.02em; }

/* Hero */
.hero { padding: 0 0 22px; }
.hero-wrap{
  position: relative;
  min-height: 70vh;
  padding: 46px 18px 28px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.hero-wrap::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 50% 40%, rgba(0,0,0,0.18), rgba(0,0,0,0.35));
  pointer-events:none;
}
.hero-wrap > *{ position:relative; z-index:1; }

.hero-sign{
  width: min(1100px, 92vw);
  height:auto;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,0.40));
}

.hero-actions{
  margin-top: 16px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content:center;
}

.hero-sub{
  color: rgba(255,255,255,0.92);
  text-shadow: 0 2px 10px rgba(0,0,0,0.45);
  margin-top: 14px;
  font-weight: 700;
}

.btn{
  display: inline-block;
  background: rgba(245,240,230,0.96);
  border: 1px solid rgba(0,0,0,0.25);
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration:none;
  color:#1b1a18;
  font-weight: 900;
}
.btn.primary{
  background: rgba(35,25,18,0.92);
  color: #fff;
}

/* Sections */
.section { padding: 18px 0 30px; }
.section-title {
  margin: 10px 0 16px;
  font-size: 1.45rem;
  letter-spacing: 0.01em;
}

/* Thumbnails: wood grain behind, carvings not cropped */
.thumb-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.thumb{
  appearance: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  position: relative;
  border-radius: 16px;
  overflow: hidden;

  /* wood grain behind thumbnails */
  background: url("assets/wood_tile.jpg") center/cover no-repeat;

  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
  transform: translateZ(0);
}

.thumb img{
  width: 100%;
  height: auto;        /* prevents “fat belly” crops */
  display:block;
  object-fit: contain; /* keeps sculpture whole */
  transition: transform 140ms ease, filter 140ms ease;
}

/* Zoom in place on hover */
.thumb:hover img{
  transform: scale(1.30);
  filter: drop-shadow(0 14px 26px rgba(0,0,0,0.22));
}

@media (max-width: 820px){
  .thumb:hover img{ transform: scale(1.12); }
}

/* Videos */
.video-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.video-card video{
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  background: #000;
}

/* Request card */
.card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.10);
}
.big { margin: 14px 0; }
.note { opacity: 0.85; margin-top: 14px; }
.mini h3 { margin: 14px 0 8px; }

/* Footer */
.footer{
  max-width: 1100px;
  margin: 18px auto 28px;
  padding: 0 16px;
  color: rgba(255,255,255,0.90);
  text-shadow: 0 2px 10px rgba(0,0,0,0.45);
  display:flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer a { color: #fff; }

/* Lightbox (click opens larger preview panel) */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.78);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.lightbox.open{ display: flex; }

.lightbox-inner{
  position: relative;
  width: min(1100px, 92vw);
  height: min(84vh, 900px);
  background: rgba(20,16,12,0.92);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.55);
  padding: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.lb-img{
  max-width: 100%;
  max-height: 100%;
  border-radius: 12px;
}

.lb-close, .lb-prev, .lb-next{
  position:absolute;
  border: 0;
  background: rgba(245,240,230,0.92);
  color:#111;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 26px;
  cursor:pointer;
}
.lb-close{ top: 12px; right: 12px; }
.lb-prev{ left: 12px; top: 50%; transform: translateY(-50%); }
.lb-next{ right: 12px; top: 50%; transform: translateY(-50%); }
