* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Avenir Next', 'Avenir', sans-serif;
  background: #000;
  color: #fff;
  overflow: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 50px;
  height: var(--nav-height);
  background: #000;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
}

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  padding: 6px 10px;
  border-radius: 4px;
  transition: opacity 0.2s, background 0.2s;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a.active {
  opacity: 1;
}

.nav-dropdown-label {
  color: #fff;
  font-family: 'Avenir Next', 'Avenir', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: default;
  display: flex;
  align-items: center;
}

.nav-dropdown-label.active {
  opacity: 1;
}

/* DROPDOWN */
.nav-links .has-dropdown {
  position: relative;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 10px;
  background: #000;
  padding: 8px 0;
  min-width: 160px;
  z-index: 200;
}

.has-dropdown:hover .dropdown {
  display: block;
}

.dropdown a {
  display: block;
  padding: 8px 16px !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.08em !important;
  opacity: 0.7;
  white-space: nowrap;
  border-radius: 0 !important;
}

.dropdown a:hover {
  opacity: 1;
}

/* CONTACT PAGE */
body.contact-page {
  overflow: auto;
}

.contact-main {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 120px 24px 80px;
}

.contact-form {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.form-field input,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-family: 'Avenir Next', 'Avenir', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 0;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-field input:focus,
.form-field textarea:focus {
  border-bottom-color: rgba(255, 255, 255, 0.8);
}

.form-submit {
  align-self: flex-start;
  margin-top: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-family: 'Avenir Next', 'Avenir', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 36px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.form-submit:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* ABOUT PAGE */
body.about-page {
  overflow: auto;
}

.about-main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 120px 48px 80px;
}

.about-title {
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 72px;
  color: #fff;
}

.about-desk {
  width: 100%;
  margin-bottom: 72px;
  overflow: hidden;
}

.about-desk img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.about-person {
  display: flex;
  align-items: flex-start;
  gap: 56px;
  margin-bottom: 80px;
}

.about-person.reverse {
  flex-direction: row-reverse;
}

.about-photo {
  flex: 0 0 280px;
  width: 280px;
  aspect-ratio: 3 / 4;
  background: #222;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-bio {
  flex: 1;
  padding-top: 8px;
}

.about-name {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  color: #fff;
}

.about-bio p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.about-ig {
  display: inline-flex;
  margin-top: 16px;
  color: #fff;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.about-ig:hover {
  opacity: 1;
}

.ig-btn {
  position: fixed;
  bottom: 28px;
  right: 32px;
  z-index: 200;
  color: #fff;
  opacity: 0.7;
  transition: opacity 0.2s;
  display: flex;
}

.ig-btn:hover {
  opacity: 1;
}

/* HOME NAV — transparent, overlays video */
nav.home-nav {
  background: transparent;
  top: 0;
}

/* HOME — FULL-SCREEN VIDEO */
:root {
  --nav-height: 85px;
}

.video-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

/* WORK — FULL-SCREEN PHOTO GALLERY */
body.work-page {
  overflow: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1580px;
  margin: 0 auto;
  padding: var(--nav-height) 32px 32px;
  box-sizing: border-box;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: default;
  aspect-ratio: 5 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease;
  filter: brightness(1);
}

.gallery-item:hover img {
  filter: brightness(1);
}

/* ── MOBILE ── */
@media (max-width: 768px) {

  /* NAV */
  nav {
    padding: 16px 16px;
  }

  .nav-logo img {
    height: 22px;
  }

  .nav-links {
    gap: 4px;
  }

  .nav-links a,
  .nav-dropdown-label {
    font-size: 0.65rem;
    padding: 4px 5px;
    letter-spacing: 0.05em;
  }

  .dropdown {
    min-width: 100px;
  }

  .dropdown a {
    font-size: 0.65rem !important;
    padding: 6px 10px !important;
  }

  .has-dropdown.open .dropdown {
    display: block;
  }

  /* GALLERY */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: var(--nav-height) 16px 24px;
  }

  /* ABOUT */
  .about-main {
    padding: 100px 24px 60px;
  }

  .about-person,
  .about-person.reverse {
    flex-direction: column;
    gap: 24px;
  }

  .about-person.reverse {
    flex-direction: column-reverse;
  }

  .about-photo {
    flex: none;
    width: 100%;
    aspect-ratio: 3 / 4;
  }

  .about-bio {
    padding-top: 0;
  }

  .about-desk {
    margin-bottom: 40px;
  }

  /* CONTACT */
  .contact-main {
    padding: 100px 20px 60px;
  }

  /* HOME VIDEO */
  .video-container iframe {
    width: 177.78vh;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
  }

  /* INSTAGRAM BTN */
  .ig-btn {
    bottom: 16px;
    right: 16px;
  }
}
