@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Cinzel:wght@500;600&display=swap');

:root {
  --black: #000000;
  --black-soft: #121212;
  --gold: #c9a24b;
  --gold-bright: #e6c874;
  --white: #f5f3ee;
  --white-dim: #b8b6b0;
}

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

html { scroll-behavior: smooth; }

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 24px auto;
}

.divider.small {
  width: 48px;
  margin: 16px auto 32px;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* Header */
.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 88px;
  align-items: center;
  height: 88px;
  padding: 0 6%;
  position: sticky;
  top: 0;
  overflow: hidden;
  background: rgba(10, 10, 10, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 162, 75, 0.2);
  z-index: 100;
}

.site-logo {
  display: block;
  height: 56px;
  width: auto;
}

.site-brand {
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.site-wordmark {
  display: block;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 25px;
  color: var(--gold);
}

.site-wordmark-divider {
  position: relative;
  width: 180px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.site-wordmark-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-nav {
  display: flex;
  gap: 40px;
}

.site-nav-left {
  justify-self: start;
}

.site-nav-right {
  justify-self: end;
  align-items: center;
}

.site-nav a {
  color: var(--white-dim);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.site-nav a:hover {
  color: var(--gold-bright);
}

.menu-toggle {
  display: none;
  justify-self: start;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold-bright);
}

.mobile-nav {
  position: fixed;
  top: 88px;
  left: 0;
  right: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  background: rgba(10, 10, 10, 0.97);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 162, 75, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-nav a {
  display: block;
  padding: 16px 6%;
  color: var(--white-dim);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-top: 1px solid rgba(201, 162, 75, 0.1);
}

.mobile-nav a:hover {
  color: var(--gold-bright);
}

@media (max-width: 760px) {
  .site-nav-left,
  .site-nav-right {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .site-wordmark {
    font-size: 18px;
  }

  .site-wordmark-divider {
    width: 110px;
  }

  .hero-statement {
    margin-bottom: 28px;
  }

  .statement-heading {
    font-size: clamp(20px, 6vw, 30px);
    margin: 0 auto 12px;
  }

  .statement-sub {
    font-size: 15px;
    margin: 0 auto 20px;
  }

  .hero-statement .btn-outline {
    padding: 11px 24px;
    font-size: 11px;
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 6%;
  background: var(--black);
}

.hero.hero-top {
  align-items: flex-start;
  min-height: 0;
  padding-top: 40px;
  padding-bottom: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

/* Ambient particles */
.particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.particles span {
  position: absolute;
  bottom: -10px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-bright);
  opacity: 0;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% { transform: translate(0, 0); opacity: 0; }
  10% { opacity: 0.7; }
  85% { opacity: 0.35; }
  100% { transform: translate(var(--drift, 20px), -100vh); opacity: 0; }
}

.eyebrow {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-logo-frame {
  width: min(45vw, 420px, 50vh);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
}

.section-divider {
  width: 100%;
  line-height: 0;
  background: var(--black);
}

.section-divider img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.4;
  filter: brightness(0.8) saturate(1.3) sepia(0.25) hue-rotate(-8deg);
}

.hero-statement {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 56px;
  opacity: 0;
  animation: heroStatementIn 6s linear forwards;
}

@keyframes heroStatementIn {
  0% { opacity: 0; }
  35% { opacity: 0.5; }
  100% { opacity: 1; }
}

.hero-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Approximate crop — the emblem sits low in the source frame. Nudge the
     second value (vertical %) up/down if the circle isn't centered. */
  object-position: 50% 48%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html.js .hero-inner > *:not(.hero-statement) {
  opacity: 0;
  transform: translateY(18px);
}

.hero.entered .hero-inner > *:not(.hero-statement) {
  animation: fadeInUp 0.9s ease forwards;
}

.hero.entered .hero-inner > .eyebrow { animation-delay: 0.05s; }
.hero.entered .hero-inner > h1 { animation-delay: 0.35s; }
.hero.entered .hero-inner > .divider { animation-delay: 0.95s; }
.hero.entered .hero-inner > .tagline { animation-delay: 1.15s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.tagline {
  color: var(--white-dim);
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0.05em;
}

/* Sections */
main section {
  position: relative;
  overflow: hidden;
  padding: 100px 6%;
  text-align: center;
}

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

main section h2 {
  font-size: 30px;
}

main section > * {
  position: relative;
  z-index: 1;
}

/* Statement */
.statement-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  text-transform: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
  color: var(--white);
  font-size: clamp(24px, 5vw, 54px);
  line-height: 1.3;
  margin: 0 auto 20px;
}

.gold-word {
  color: var(--gold);
}

.statement-sub {
  color: var(--white-dim);
  max-width: 480px;
  margin: 0 auto 36px;
  font-size: 19px;
}

.btn-outline {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border: 1px solid var(--gold);
  padding: 14px 32px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

/* Collection */
.collection p {
  max-width: 640px;
  margin: 0 auto 40px;
  color: var(--white-dim);
}

.usp {
  padding-top: 0;
  padding-bottom: 60px;
}

.section-label {
  color: var(--gold);
  letter-spacing: 0.25em;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px 32px;
  margin-top: 48px;
  text-align: center;
}

.collection-card {
  transition: transform 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-4px);
}

.collection-image {
  position: relative;
  height: 220px;
  border-radius: 4px;
  border: 1px solid rgba(201, 162, 75, 0.2);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover .collection-image {
  border-color: var(--gold);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5), 0 0 20px rgba(201, 162, 75, 0.15);
}

.collection-image--earth {
  background-image: url('../images/collection-earth.webp');
}

.collection-image--air {
  background-image: url('../images/collection-air.webp');
}

.collection-image--fire {
  background-image: url('../images/collection-fire.webp');
}

.collection-image--water {
  background-image: url('../images/collection-water.webp');
}

.collection-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--black);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  margin: -26px auto 16px;
  position: relative;
  z-index: 2;
}

.collection-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.collection-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.collection-tagline {
  color: var(--white-dim);
  font-size: 15px;
  margin-bottom: 0;
}

/* USP row */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(201, 162, 75, 0.15);
}

.usp-item::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 auto 16px;
  background: var(--gold);
  transform: rotate(45deg);
}

.usp-item h3 {
  font-size: 15px;
  margin-bottom: 10px;
}

.usp-item p {
  color: var(--white-dim);
  font-size: 15px;
}

.about p {
  color: var(--white-dim);
  max-width: 560px;
  margin: 0 auto 20px;
}

.about p:last-child {
  margin-bottom: 0;
}

.product-image {
  display: block;
  max-width: 420px;
  width: 100%;
  margin: 0 auto 32px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 30px rgba(201, 162, 75, 0.12));
}

.products p {
  color: var(--white-dim);
  max-width: 720px;
  margin: 0 auto 20px;
  text-align: left;
}

.products p:last-child {
  margin-bottom: 0;
}

/* Product gallery + lightbox */
.gallery {
  margin-top: 64px;
}

.gallery-heading {
  font-size: 22px;
  margin-bottom: 28px;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.filter-btn {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  background: none;
  border: 1px solid rgba(201, 162, 75, 0.3);
  border-radius: 999px;
  padding: 9px 20px;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.gallery-item.hidden {
  display: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  padding: 0;
  border: 1px solid rgba(201, 162, 75, 0.25);
  border-radius: 4px;
  background: var(--black-soft);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 24px rgba(201, 162, 75, 0.2);
}

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

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.gallery-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.55);
  border: 1px solid rgba(230, 200, 116, 0.8);
  transition: background 0.3s ease;
}

.gallery-play::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent var(--gold-bright);
}

.gallery-item:hover .gallery-play {
  background: rgba(201, 162, 75, 0.85);
}

.gallery-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 10px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  color: var(--white);
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
}

.video-modal.open {
  opacity: 1;
  visibility: visible;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
}

.video-modal-content {
  position: relative;
  z-index: 1;
  width: min(90vw, 420px);
}

.video-modal-content video {
  display: block;
  width: 100%;
  max-height: 80vh;
  border-radius: 4px;
  border: 1px solid rgba(201, 162, 75, 0.3);
  background: var(--black);
}

.video-modal-title {
  margin-top: 14px;
  text-align: center;
  color: var(--gold-bright);
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 75, 0.5);
  background: rgba(10, 10, 10, 0.7);
  color: var(--gold-bright);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.video-modal-close:hover {
  background: var(--gold);
  color: var(--black);
}

/* Releases */
.release-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 40px;
  text-align: left;
}

.release-card {
  border: 1px solid rgba(201, 162, 75, 0.25);
  background: var(--black-soft);
  padding: 32px 28px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.release-image {
  position: relative;
  height: 180px;
  margin: -32px -28px 24px;
  background: linear-gradient(160deg, var(--black-soft), var(--black));
  border-bottom: 1px solid rgba(201, 162, 75, 0.2);
}

.release-image::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 1px solid rgba(201, 162, 75, 0.35);
}

.release-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(201, 162, 75, 0.15);
}

.release-status {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.release-status.sold-out {
  color: var(--white-dim);
  border: 1px solid rgba(184, 182, 176, 0.35);
}

.release-status.limited {
  color: var(--black);
  background: var(--gold);
}

.release-status.coming-soon {
  color: var(--gold);
  border: 1px solid rgba(201, 162, 75, 0.5);
}

.release-index {
  display: block;
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.release-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.release-card p {
  color: var(--white-dim);
  font-size: 16px;
  margin-bottom: 16px;
}

.release-link {
  color: var(--gold);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.release-link:hover {
  color: var(--gold-bright);
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 60px 6% 40px;
  color: var(--white-dim);
  font-size: 14px;
  letter-spacing: 0.05em;
  border-top: 1px solid rgba(201, 162, 75, 0.2);
}

/* Reveal-on-scroll (progressive enhancement — only hides content when JS is available to reveal it) */
html.js main section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

html.js main section.revealed {
  opacity: 1;
  transform: translateY(0);
}

.contact .btn-outline {
  margin-top: 28px;
}

