:root {
  --black: #000000;
  --ink: #0a0a0a;
  --graphite: #141414;
  --steel: #1c1c1c;
  --gold: #ffd700;
  --gold-soft: #e6c200;
  --amber: #ffa500;
  --muted: #a8a8a8;
  --line: rgba(255, 215, 0, 0.22);
  --text: #f5f5f5;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--black);
  font-family: "Libre Franklin", system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--gold);
  text-decoration: none;
}

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

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: var(--gold);
  color: var(--black);
  padding: 0.5rem 0.75rem;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  padding: 1.25rem 1.5rem;
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: 0.08em;
  color: var(--gold);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.82) 68%, #000 100%),
    url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=2000&q=80")
      center / cover no-repeat;
}

.hero-inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem 4.5rem;
  animation: rise 1s ease-out both;
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3.2rem, 10vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0.05em;
  color: var(--gold);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.65);
}

.hero p {
  max-width: 34rem;
  margin: 0;
  color: #ececec;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
}

.section {
  padding: 5rem 1.5rem;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-kicker {
  margin: 0 0 0.5rem;
  color: var(--gold-soft);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section h2 {
  margin: 0 0 1rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: 0.05em;
  color: var(--gold);
}

.section p.lead {
  max-width: 40rem;
  margin: 0 0 2rem;
  color: var(--muted);
}

.about {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0.35) 100%),
    url("https://images.unsplash.com/photo-1486006920555-c77dcf18193c?auto=format&fit=crop&w=1800&q=80")
      center / cover no-repeat;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about .section-inner {
  display: grid;
  gap: 1.25rem;
  max-width: 40rem;
}

.gallery {
  background: var(--ink);
}

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

.gallery-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--steel);
  min-height: 220px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.7s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.08);
}

.gallery-grid figure:nth-child(1) {
  grid-column: span 7;
  min-height: 360px;
}

.gallery-grid figure:nth-child(2) {
  grid-column: span 5;
  min-height: 360px;
}

.gallery-grid figure:nth-child(3),
.gallery-grid figure:nth-child(4),
.gallery-grid figure:nth-child(5) {
  grid-column: span 4;
  min-height: 250px;
}

.gallery-grid figure:nth-child(6) {
  grid-column: span 8;
  min-height: 300px;
}

.gallery-grid figure:nth-child(7) {
  grid-column: span 4;
  min-height: 300px;
}

.contact {
  background:
    radial-gradient(ellipse at top right, rgba(255, 215, 0, 0.08), transparent 45%),
    var(--graphite);
  border-top: 1px solid var(--line);
}

.contact-panel {
  display: grid;
  gap: 1.5rem;
  max-width: 34rem;
}

.contact-row {
  display: grid;
  gap: 0.2rem;
}

.contact-row span {
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-row a,
.contact-row strong {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
}

.site-footer {
  background: #000;
  border-top: 3px solid var(--gold);
  padding: 2rem 1.5rem 2.5rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.footer-brand {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.page {
  padding-top: 6rem;
  min-height: 70vh;
  background:
    linear-gradient(180deg, #111 0%, #000 100%);
}

.page .section-inner {
  max-width: 46rem;
}

.page h1 {
  margin: 0 0 1rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.6rem, 6vw, 4rem);
  letter-spacing: 0.05em;
  color: var(--gold);
}

.page h2 {
  margin: 2rem 0 0.75rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--gold-soft);
}

.page p,
.page li {
  color: var(--muted);
}

.page ul {
  padding-left: 1.2rem;
}

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

@media (max-width: 800px) {
  .gallery-grid figure:nth-child(n) {
    grid-column: span 12;
    min-height: 220px;
  }

  .nav-links {
    gap: 0.85rem;
  }

  .nav-links a {
    font-size: 0.78rem;
  }
}
