:root {
  --bg: #0f0a08;
  --bg-soft: #1a1210;
  --panel: #231815;
  --text: #f7efe8;
  --muted: #ccb8a9;
  --accent: #ff5e1a;
  --accent-2: #ffd166;
  --line: #4a3229;
  --glow: 0 0 0.6rem rgba(255, 94, 26, 0.55);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans Condensed", "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 94, 26, 0.18), transparent 40%),
    radial-gradient(circle at 85% 25%, rgba(255, 209, 102, 0.14), transparent 42%),
    linear-gradient(170deg, #080504 0%, #130d0b 55%, #0f0a08 100%);
  min-height: 100vh;
  line-height: 1.45;
}

a {
  color: var(--accent-2);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.15em;
}

a:hover {
  color: #fff3cf;
}

.site-wrap {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding-bottom: 3rem;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  letter-spacing: 0.06em;
  color: var(--text);
  text-decoration: none;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.nav-links a {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: var(--glow);
}

.hero {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
}

.hero-copy,
.hero-image {
  border-radius: 1.2rem;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
}

.hero-copy {
  padding: clamp(1.1rem, 2.4vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kicker {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 700;
  font-size: 0.8rem;
}

h1,
h2,
h3 {
  margin: 0.4rem 0 0.6rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.04em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.3rem, 7vw, 4.9rem);
}

h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
}

p {
  color: var(--muted);
}

.hero-image img,
.card img,
.feature-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  margin-top: 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: linear-gradient(145deg, rgba(41, 29, 25, 0.9), rgba(26, 18, 16, 0.95));
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  transform: translateY(12px);
  opacity: 0;
  animation: rise-in 0.7s ease forwards;
}

.card:nth-child(2) { animation-delay: 0.12s; }
.card:nth-child(3) { animation-delay: 0.22s; }
.card:nth-child(4) { animation-delay: 0.32s; }
.card:nth-child(5) { animation-delay: 0.42s; }
.card:nth-child(6) { animation-delay: 0.52s; }

.card-body {
  padding: 1rem;
}

.meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffd9bc;
}

.cta-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.btn {
  display: inline-block;
  padding: 0.62rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.alt {
  border-color: var(--line);
  color: var(--text);
}

.feature-photo {
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  min-height: 260px;
}

.review-body {
  background: rgba(31, 22, 19, 0.88);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: clamp(1rem, 2.2vw, 1.6rem);
}

.quote {
  border-left: 4px solid var(--accent);
  margin: 1rem 0;
  padding: 0.2rem 0 0.2rem 1rem;
  color: #fbe8d8;
  font-style: italic;
}

.photo-credit {
  font-size: 0.78rem;
  color: #e8c9b3;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card {
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(41, 29, 25, 0.9), rgba(26, 18, 16, 0.95));
  transform: translateY(12px);
  opacity: 0;
  animation: rise-in 0.7s ease forwards;
}

.gallery-card:nth-child(1),
.gallery-card:nth-child(6) {
  grid-column: span 7;
}

.gallery-card:nth-child(2),
.gallery-card:nth-child(3),
.gallery-card:nth-child(4),
.gallery-card:nth-child(5) {
  grid-column: span 5;
}

.gallery-card:nth-child(2) { animation-delay: 0.12s; }
.gallery-card:nth-child(3) { animation-delay: 0.22s; }
.gallery-card:nth-child(4) { animation-delay: 0.32s; }
.gallery-card:nth-child(5) { animation-delay: 0.42s; }
.gallery-card:nth-child(6) { animation-delay: 0.52s; }

.gallery-photo {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.gallery-meta {
  padding: 0.9rem 1rem 1rem;
}

.source-pill {
  display: inline-block;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  color: #f7ddcc;
}

footer {
  margin-top: 2.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: #d8b9a4;
  font-size: 0.9rem;
}

@keyframes rise-in {
  from {
    transform: translateY(12px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 920px) {
  .hero,
  .grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card {
    grid-column: span 1;
  }

  .hero-image {
    min-height: 320px;
  }
}
