/* GLOBAL STYLE STUFF */

:root {
  --bg: #15140f;
  --bg-alt: #1e1c15;
  --bg-card: #211f17;
  --line: #38352a;
  --accent: #bca715;
  --accent-bright: #ddc73a;
  --olive: #8a9a5b;
  --text: #ece7da;
  --text-dim: #b3ac99;
  --text-mute: #7d7768;
  --heading-font: 'Oswald', 'Arial Narrow', sans-serif;
  --body-font: 'Inter', sans-serif;
}

html {
	background-color: var(--bg);
  color: var(--text-dim);
	font-family: var(--body-font);
	box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    repeating-linear-gradient(115deg, rgba(191, 91, 37, 0.025) 0px, rgba(191, 91, 37, 0.025) 1px, transparent 1px, transparent 68px),
    var(--bg);
}

*, *:before, *:after {
  box-sizing: inherit;
}

a {
	color: var(--accent-bright);
  transition: color 0.15s ease;
}

a:hover {
  color: var(--olive);
}

p {
  color: var(--text-dim);
  line-height: 1.6;
}

h1, h2, h3, h4 {
	font-family: var(--heading-font);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.circle {
	border-radius: 50%;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}


/* BUTTONS */

.btn {
  display: inline-block;
  font-family: var(--heading-font);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  padding: 0.85em 1.8em;
  border-radius: 3px;
  text-decoration: none !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.btn-primary {
  background: var(--accent);
  color: #15140f;
}

.btn-primary:hover {
  background: var(--accent-bright);
  color: #15140f;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(191, 91, 37, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
  transform: translateY(-2px);
}

.btn-small {
  padding: 0.5em 1.2em;
  font-size: 0.8rem;
}

.btn-large {
  padding: 1em 2.4em;
  font-size: 1.1rem;
}


/* SITE HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7em 5%;
  background: rgba(21, 20, 15, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6em;
  text-decoration: none !important;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6em;
}

.site-nav a:not(.btn) {
  color: var(--text-dim);
  text-decoration: none !important;
  font-family: var(--heading-font);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-nav a:not(.btn):hover {
  color: var(--accent-bright);
}


/* HERO */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 32% 42%;
  filter: saturate(1.05) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(15, 14, 10, 0.97) 0%, rgba(15, 14, 10, 0.65) 42%, rgba(15, 14, 10, 0.25) 70%, rgba(15, 14, 10, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 3em 5% 4.5em;
  text-align: center;
}

.eyebrow {
  font-family: var(--heading-font);
  color: var(--accent-bright);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  margin: 0 0 0.8em;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.05;
  margin: 0 0 0.5em;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.lead {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 1.6em;
}

.price-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15em;
  margin-bottom: 1.2em;
}

.price {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--accent-bright);
}

.price-note {
  font-size: 0.9rem;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  margin-bottom: 2em;
}

.badge {
  font-family: var(--heading-font);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(236, 231, 218, 0.05);
  padding: 0.4em 0.9em;
  border-radius: 999px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 1.6em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(236, 231, 218, 0.5);
  border-radius: 14px;
}

.scroll-cue span {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--accent-bright);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll-cue-bounce 1.6s ease-in-out infinite;
}

@keyframes scroll-cue-bounce {
  0%, 20% { transform: translate(-50%, 0); opacity: 1; }
  60% { transform: translate(-50%, 14px); opacity: 0; }
  61% { transform: translate(-50%, 0); opacity: 0; }
  100% { transform: translate(-50%, 0); opacity: 1; }
}


/* REVEAL ON SCROLL */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ACCORDION SECTIONS */

details.section {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 1.2em;
  overflow: hidden;
}

details.section summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1em;
  padding: 1.1em 1.5em;
}

details.section summary::-webkit-details-marker {
  display: none;
}

.section-index {
  font-family: var(--heading-font);
  font-size: 0.85rem;
  color: var(--accent-bright);
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

details.section summary h2 {
  margin: 0;
  flex: 1;
  text-align: left;
  font-size: 1.4rem;
}

details.section summary::after {
  content: '+';
  font-size: 1.8em;
  font-weight: 400;
  line-height: 1;
  color: var(--accent-bright);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

details.section[open] summary::after {
  content: '\2212';
}

details.section summary:hover {
  background: rgba(191, 91, 37, 0.06);
}

.section-body {
  padding: 0 1.5em 1.8em;
  border-top: 1px solid var(--line);
  padding-top: 1.2em;
}


/* MAIN STUFF */

#main {
  width: 64%;
  max-width: 980px;
  margin: 3em auto;
}

.vanpics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6em;
  margin-top: 1.6em;
}

.imageGallery1 a {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.imageGallery1 img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, filter 0.35s ease;
  filter: saturate(1.02);
}

.imageGallery1 a:hover img {
  transform: scale(1.08);
  filter: saturate(1.15) brightness(1.05);
}


/* CONTACT / CTA */

.cta-section {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 3em 2em;
  margin-top: 2.5em;
}

.cta-section h2 {
  font-size: 1.8rem;
  margin: 0 0 0.4em;
}

.cta-section p {
  margin: 0 0 1.6em;
}


/* FOOTER */

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8em;
  padding: 3em 0 4em;
  text-align: center;
}

.footer-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  opacity: 0.85;
}

.site-footer p {
  color: var(--text-mute);
  font-size: 0.85rem;
  margin: 0;
}


@media only screen and (max-width: 900px) {
  #main {
    width: 84%;
  }

  .site-nav {
    gap: 1em;
  }

  .site-nav a:not(.btn) {
    display: none;
  }
}

@media only screen and (max-width: 600px) {
  #main {
    width: 92%;
    margin-top: 2em;
  }

  .hero {
    min-height: 72vh;
  }

  .hero-content {
    padding: 2em 6% 3.5em;
  }

  .vanpics {
    grid-template-columns: repeat(2, 1fr);
  }

  .imageGallery1 img {
    height: 140px;
  }

  details.section summary {
    padding: 1em;
  }

  .section-body {
    padding: 0 1em 1.4em;
    padding-top: 1em;
  }
}

@media only screen and (max-width: 380px) {
  .vanpics {
    grid-template-columns: 1fr;
  }

  .imageGallery1 img {
    height: 220px;
  }
}
