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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #000;
  color: #fff;
  min-height: 100vh;
}

.top-bar + main {
  padding-top: 70px;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10;
}

.top-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-small {
  height: 36px;
  width: auto;
}

.brand-name {
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 30px;
  font-size: 0.9rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  position: relative;
}

.nav-links a.active,
.nav-links a:hover {
  color: #fff;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  bottom: -6px;
  background: #00c9ff;
}

.hero-full {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-large {
  max-width: 320px;
  width: 60vw;
  height: auto;
  margin-bottom: 20px;
}

.tagline {
  letter-spacing: 0.35em;
  font-size: 0.75rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #ccc;
}

.btn-order {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 28px;
  border-radius: 999px;
  border: 1px solid #ffffff80;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.btn-order:hover {
  background: #ffffff;
  color: #000;
  transform: translateY(-1px);
}

.gallery-section {
  padding: 40px 40px 60px;
}

.gallery-section h2 {
  font-size: 1.2rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: center;
}

.gallery-subtitle {
  color: #aaaaaa;
  font-size: 0.9rem;
  margin-bottom: 25px;
  text-align: center;
}

.collection-video-wrap {
  max-width: 800px;
  margin: 0 auto 30px;
  border-radius: 16px;
  overflow: hidden;
}

.collection-video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
  pointer-events: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.03);
}

.photo-caption {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 35px;
  font-size: 1.4rem;
  color: #e5e5e5;
}

.photo-price {
  font-weight: 600;
  letter-spacing: 0.08em;
}

.gallery-note {
  margin-top: 35px;
  margin-bottom: 35px;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-align: center;
}

.collection-name {
  font-weight: 600;
}

.about-section {
  padding: 40px 40px 80px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  color: #cccccc;
  font-size: 0.95rem;
}

.about-section h2 {
  font-size: 1.1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.contact-section {
  padding: 0 40px 80px;
  max-width: 800px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: #dddddd;
}

.contact-section h2 {
  font-size: 1.1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact-line + .contact-line {
  margin-top: 6px;
}

.contact-section a {
  color: #ffffff;
  text-decoration: none;
}

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

@media (max-width: 600px) {
  .top-bar {
    padding: 0 20px;
  }

  .nav-links {
    gap: 15px;
    font-size: 0.8rem;
  }

  .brand-name {
    display: none;
  }

  .gallery-section {
    padding: 40px 12px 60px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .photo-caption {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}