:root {
  --bg: #0b0b0c;
  --fg: #f2f0ec;
  --muted: #8a8a8a;
  --line: #262626;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, sans-serif;
}

h1, h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin: 0;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 3rem;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(to bottom, rgba(11,11,12,0.9), rgba(11,11,12,0));
  backdrop-filter: blur(6px);
}

.wordmark {
  display: block;
  padding-left: 2.1rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  flex-shrink: 0;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1.25rem;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

@media (max-width: 480px) {
  header {
    flex-direction: column;
    padding: 1.25rem 1.25rem;
  }
  .wordmark {
    font-size: 0.95rem;
    padding-left: 0;
    text-align: center;
  }
  nav {
    width: 100%;
    justify-content: center;
    gap: 0.5rem 0.9rem;
  }
  nav a { font-size: 0.68rem; }
}

nav a:hover,
nav a.active { color: var(--fg); }

.hero {
  position: relative;
  height: 88vh;
  min-height: 420px;
  max-height: 900px;
  margin-top: -5.5rem;
  background: #000;
}

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-fg {
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85);
}

.hero-caption {
  position: absolute;
  left: 3rem;
  bottom: 3rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.hero-caption h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
}

.hero-caption p {
  margin: 0.5rem 0 0;
  color: var(--fg);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.gallery {
  columns: 3 320px;
  column-gap: 4px;
  padding: 4px;
}

.gallery figure {
  margin: 0 0 4px;
  break-inside: avoid;
}

.gallery img {
  display: block;
  width: 100%;
  height: auto;
  cursor: zoom-in;
  transition: transform 0.5s ease;
}

.gallery figure:hover img {
  transform: scale(1.02);
}

.gallery figure:hover img {
  transform: scale(1.04);
}

.page {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 3rem;
  line-height: 1.7;
}

.page h2 {
  font-size: 2.4rem;
  margin-bottom: 1.25rem;
}

.page p {
  color: #cfcfcf;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.about img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line);
}

@media (max-width: 720px) {
  .about { grid-template-columns: 1fr; }
}

.contact {
  text-align: center;
}

.contact .email {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.25rem;
}

.contact .email:hover { border-color: var(--fg); }

.contact .socials {
  margin-top: 2.5rem;
}

footer {
  text-align: center;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  padding: 3rem 2rem 2.5rem;
  border-top: 1px solid var(--line);
}

.socials {
  margin-top: 0.75rem;
}

.socials a {
  color: var(--muted);
  text-decoration: none;
  margin: 0 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.socials a:hover { color: var(--fg); }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 100;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--fg);
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem;
  opacity: 0.8;
}

.lb-close:hover, .lb-prev:hover, .lb-next:hover { opacity: 1; }

.lb-close { top: 0.5rem; right: 1rem; }
.lb-prev { left: 0.5rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 0.5rem; top: 50%; transform: translateY(-50%); }

@media (max-width: 600px) {
  .lb-prev, .lb-next { font-size: 1.4rem; padding: 0.5rem; }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 420px;
  margin: 2.5rem auto 0;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  background: #161616;
  border: 1px solid var(--line);
  color: var(--fg);
  padding: 0.75rem 1rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  border-radius: 2px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--fg);
}

.contact-form button {
  background: var(--fg);
  color: var(--bg);
  border: none;
  padding: 0.75rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
}

.contact-form button:hover { opacity: 0.85; }

.gear-list {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.gear-list li {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.gear-list h3 {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

.gear-list p {
  margin: 0;
  font-size: 1.1rem;
}

.gear-list a {
  color: var(--fg);
}
