html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

html, body {
  margin: 0;
  padding: 0;
  background: #0b0b0b;
  color: #ffffff;
  font-family: Helvetica, Arial, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

/* ── Skip link (accessibility) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: #79aefc;
  color: #0b0b0b;
  padding: 8px 16px;
  z-index: 1000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
}
.skip-link:focus {
  top: 0;
}

/* ── Navigation ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-nav.scrolled {
  background: rgba(11, 11, 11, 0.95);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.nav-brand {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.site-nav.scrolled .nav-brand {
  opacity: 1;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #79aefc;
}

.nav-cta {
  padding: 8px 18px;
  border: 1px solid #79aefc;
  color: #79aefc !important;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: #79aefc;
  color: #0b0b0b !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ── Page wrapper ── */
.page-wrapper {
  min-height: 100vh;
  background: #0b0b0b;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.85)),
    url("../images/hero.jpg") center center / cover no-repeat;
  animation: zoom 40s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.logo {
  width: 420px;
  max-width: 85%;
  display: block;
  margin: 0 auto 18px auto;
}

.tagline {
  letter-spacing: 3px;
  margin-top: 10px;
  margin-bottom: 30px;
  color: #cccccc;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.cta {
  display: inline-block;
  padding: 16px 36px;
  border: 1px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  background: rgba(255,255,255,.05);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.cta:hover,
.cta:focus-visible {
  background: #79aefc;
  border-color: #79aefc;
  transform: translateY(-2px);
}

/* ── Gear strip ── */
.gear {
  background: #111111;
  text-align: center;
  padding: 16px;
  font-size: 0.9rem;
  color: #aaaaaa;
  border-top: 1px solid #1c1c1c;
  border-bottom: 1px solid #1c1c1c;
}

/* ── Sections ── */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 20px;
}

h2 {
  border-bottom: 1px solid #333333;
  padding-bottom: 10px;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.4rem;
}

/* ── Artists ── */
.artists {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.artist {
  background: #141414;
  border: 1px solid #232323;
  padding: 18px;
  text-align: center;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.artist:hover {
  border-color: #79aefc;
  transform: translateY(-3px);
}

/* ── Photo break ── */
.photo-break {
  height: 350px;
  background:
    linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.7)),
    url("../images/hero.jpg") center center / cover no-repeat;
  background-attachment: fixed;
}

/* ── Services ── */
.services {
  background: #101010;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.service {
  background: #161616;
  padding: 28px;
  border: 1px solid #232323;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.service:hover {
  border-color: #79aefc;
  transform: translateY(-3px);
}

.service h3 {
  margin-top: 0;
  color: #79aefc;
}

.service p {
  color: #aaaaaa;
}

/* ── About ── */
.about p {
  color: #d7d7d7;
  margin-bottom: 18px;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-card {
  background: #141414;
  border: 1px solid #232323;
  padding: 28px;
  transition: border-color 0.25s ease;
}

.contact-card:hover {
  border-color: #333;
}

.contact-card a {
  color: #79aefc;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* ── Social links ── */
.social-links {
  margin-top: 14px;
  display: flex;
  gap: 12px;
}

.social-links a {
  color: #aaa;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-flex;
}

.social-links a:hover {
  color: #79aefc;
  transform: scale(1.15);
  text-decoration: none;
}

/* ── Footer ── */
footer {
  text-align: center;
  padding: 40px;
  color: #666666;
  border-top: 1px solid #181818;
}

/* ── Fade-in animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Focus styles (accessibility) ── */
*:focus-visible {
  outline: 2px solid #79aefc;
  outline-offset: 3px;
}

/* ── Keyframes ── */
@keyframes zoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

/* ── Responsive: tablet ── */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 80vh;
    padding: 100px 20px 60px;
  }

  .logo {
    width: 280px;
  }

  .photo-break {
    background-attachment: scroll;
  }
}

/* ── Responsive: mobile nav ── */
@media (max-width: 700px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(11, 11, 11, 0.97);
    padding: 0;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }

  .nav-links.open {
    max-height: 320px;
    padding: 12px 0;
  }

  .nav-links li {
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  .nav-cta {
    margin: 8px 20px;
    text-align: center;
  }

  .section {
    padding: 50px 16px;
  }

  .hero {
    min-height: 70vh;
    padding: 80px 16px 50px;
  }

  .tagline {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }

  h2 {
    font-size: 1.2rem;
  }
}

/* ── Responsive: small mobile ── */
@media (max-width: 400px) {
  .logo {
    width: 220px;
  }

  .cta {
    padding: 12px 24px;
    font-size: 0.82rem;
  }

  .service {
    padding: 18px;
  }

  .contact-card {
    padding: 18px;
  }
}
