@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

/* RESET & BASE USING CLASSES ONLY */
.html-root {
  font-family: 'Lato', sans-serif;
  color: #e0e0e0;
  background-color: #111111;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.body-root {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.box-sizing-reset {
  box-sizing: border-box;
}

.box-sizing-reset * {
  box-sizing: border-box;
}

.text-reset {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
}

/* TYPOGRAPHY */
.heading-brand {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: #ffffff;
}

.text-gold {
  color: #c9a263;
}

.text-silver {
  color: #a8a9ad;
}

.text-light {
  color: #888888;
}

.text-center {
  text-align: center;
}

/* LAYOUT UTILS */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.container-narrow {
  max-width: 800px;
}

.flex-row {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.gap-30 {
  gap: 30px;
}

.gap-40 {
  gap: 40px;
}

.gap-60 {
  gap: 60px;
}

.section-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

.section-padding-sm {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* NAVIGATION (CENTERED DARK) */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 25px;
  padding-bottom: 15px;
  background-color: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(15px);
  z-index: 1000;
  border-bottom: 1px solid rgba(201, 162, 99, 0.15);
  transition: all 0.4s ease;
}

.header-scrolled {
  padding-top: 15px;
  padding-bottom: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.brand-logo {
  font-size: 34px;
  letter-spacing: 5px;
  text-decoration: none;
  display: block;
}

.nav-links {
  display: flex;
  gap: 50px;
  justify-content: center;
  text-decoration: none;
}

.nav-link-item {
  color: #e0e0e0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link-item:hover {
  color: #c9a263;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 18px 45px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  border: 1px solid transparent;
  cursor: pointer;
  background: transparent;
  color: #e0e0e0;
}

.btn-gold {
  background-color: #c9a263;
  color: #111111;
}

.btn-gold:hover {
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-outline {
  border-color: #c9a263;
  color: #c9a263;
}

.btn-outline:hover {
  background-color: #c9a263;
  color: #111111;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-large {
  padding: 20px 60px;
  font-size: 14px;
}

/* SPLIT SCREEN HERO */
.split-hero {
  display: flex;
  min-height: 100vh;
  padding-top: 100px;
  /* Offset for header */
}

.split-hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 10%;
  background-color: #111111;
  position: relative;
}

.split-hero-content::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(201, 162, 99, 0), rgba(201, 162, 99, 0.5), rgba(201, 162, 99, 0));
}

.split-hero-image-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.split-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s ease;
}

.split-hero-image-wrap:hover .split-hero-image {
  transform: scale(1.05);
}

.hero-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #c9a263;
  margin-bottom: 25px;
  display: block;
}

.hero-title {
  font-size: 5vw;
  line-height: 1.1;
  margin-bottom: 30px;
}

.hero-subtitle {
  font-size: 18px;
  color: #a0a0a0;
  margin-bottom: 50px;
  font-weight: 300;
  line-height: 1.8;
  max-width: 450px;
}

.hero-price {
  font-family: 'Cinzel', serif;
  font-size: 38px;
  color: #ffffff;
  margin-bottom: 40px;
  display: block;
}

/* EDITORIAL COLLAGE GALLERY */
.collage-section {
  padding: 150px 0;
  position: relative;
  background-color: #0a0a0a;
}

.collage-wrap {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  align-items: center;
}

.collage-text {
  grid-column: 2 / 6;
  z-index: 10;
}

.collage-img-main {
  grid-column: 6 / 12;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.8);
}

.collage-img-overlap {
  grid-column: 4 / 8;
  grid-row: 1;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-top: 50%;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.8);
  border: 10px solid #111111;
  z-index: 5;
}

/* VERTICAL FEATURE CARDS */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.feature-card {
  background: #181818;
  padding: 50px;
  border: 1px solid rgba(201, 162, 99, 0.1);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  border-color: rgba(201, 162, 99, 0.5);
  transform: translateY(-10px);
}

.feature-card-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  margin-bottom: 40px;
  filter: grayscale(20%);
  transition: filter 0.4s ease;
}

.feature-card:hover .feature-card-img {
  filter: grayscale(0%);
}

.feature-card-title {
  font-size: 32px;
  margin-bottom: 20px;
}

.feature-card-desc {
  color: #a0a0a0;
  line-height: 1.8;
}

/* WIDE SPECS BAR */
.specs-bar {
  background: linear-gradient(90deg, #c9a263, #a67b3f);
  padding: 80px 0;
  color: #111111;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.spec-icon {
  font-size: 50px;
  margin-bottom: 20px;
  color: #111111;
}

.spec-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111111;
}

.spec-desc {
  font-size: 15px;
  color: rgba(17, 17, 17, 0.8);
  line-height: 1.6;
}

/* MAGAZINE REVIEW PAGE */
.magazine-header {
  padding-top: 220px;
  padding-bottom: 80px;
  text-align: center;
}

.magazine-title {
  font-size: 60px;
  max-width: 900px;
  margin: 0 auto 30px;
  line-height: 1.1;
}

.magazine-article {
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  line-height: 2.1;
  color: #cccccc;
}

.magazine-article p {
  margin-bottom: 35px;
}

.magazine-bleed-img {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 70vh;
  object-fit: cover;
  margin-top: 60px;
  margin-bottom: 60px;
}

.magazine-img-top {
  margin-top: 0;
}

.magazine-quote {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  color: #c9a263;
  text-align: center;
  padding: 60px 40px;
  margin: 60px 0;
  border-top: 1px solid rgba(201, 162, 99, 0.3);
  border-bottom: 1px solid rgba(201, 162, 99, 0.3);
  line-height: 1.4;
}

.magazine-subheading {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  color: #ffffff;
  margin-top: 80px;
  margin-bottom: 30px;
}

/* STICKY SHOP PAGE */
.sticky-shop {
  padding-top: 180px;
  padding-bottom: 120px;
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.sticky-gallery {
  flex: 1;
  position: sticky;
  top: 140px;
}

.sticky-main-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.sticky-thumb-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.4;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.sticky-thumb-img.active,
.sticky-thumb-img:hover {
  opacity: 1;
  border-color: #c9a263;
}

.sticky-info {
  flex: 1;
  padding-bottom: 100vh;
  /* Allow scrolling past */
}

.shop-brand {
  font-size: 14px;
  letter-spacing: 4px;
  color: #c9a263;
  text-transform: uppercase;
  margin-bottom: 25px;
  display: block;
}

.shop-title {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 40px;
}

.shop-desc {
  font-size: 18px;
  color: #a0a0a0;
  line-height: 1.9;
  margin-bottom: 50px;
}

.shop-price-box {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 50px;
}

.shop-price-value {
  font-family: 'Cinzel', serif;
  font-size: 60px;
  color: #ffffff;
}

.shop-price-note {
  font-size: 13px;
  color: #777777;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-top: 10px;
}

/* FORMS & CONTACT BOX */
.contact-box {
  background: #181818;
  padding: 60px;
  border: 1px solid rgba(201, 162, 99, 0.2);
  margin-top: 60px;
  text-align: left;
}

/* FOOTER */
.site-footer {
  background-color: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 100px;
  padding-bottom: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}

.footer-brand {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 20px;
  display: block;
  letter-spacing: 4px;
}

.footer-owner {
  font-size: 12px;
  color: #777777;
  margin-bottom: 30px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.footer-desc {
  font-size: 15px;
  color: #999999;
  line-height: 1.9;
}

.footer-heading {
  font-size: 13px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 35px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-link {
  color: #888888;
  font-size: 14px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-link:hover {
  color: #c9a263;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 12px;
  color: #555555;
  letter-spacing: 2px;
}

/* PRELOADER */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111111;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease;
}

.loader-circle {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(201, 162, 99, 0.2);
  border-top-color: #c9a263;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 40px;
  left: 40px;
  max-width: 400px;
  background: #1a1a1a;
  padding: 40px;
  border-left: 2px solid #c9a263;
  z-index: 9998;
  transform: translateY(150%);
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.cookie-banner-visible {
  transform: translateY(0);
}

.cookie-text {
  font-size: 14px;
  color: #aaaaaa;
  margin-bottom: 25px;
  line-height: 1.7;
}

.cookie-link {
  color: #c9a263;
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .split-hero {
    flex-direction: column;
  }

  .split-hero-content {
    padding: 100px 5%;
  }

  .split-hero-image-wrap {
    min-height: 500px;
  }

  .collage-wrap {
    display: flex;
    flex-direction: column;
  }

  .collage-img-overlap {
    margin-top: -100px;
    margin-left: 50px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .specs-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .sticky-shop {
    flex-direction: column;
  }

  .sticky-info {
    padding-bottom: 0;
  }

  .hero-title {
    font-size: 48px;
  }
}