/* ===== CSS Reset & Custom Properties ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors — Luxury Dark */
  --clr-black: #0A0A0A;
  --clr-charcoal: #141414;
  --clr-dark-grey: #1C1C1C;
  --clr-gold: #D4AF37;
  --clr-gold-light: #E8CC6E;
  --clr-gold-dim: rgba(212, 175, 55, 0.15);
  --clr-cream: #F5F0E8;
  --clr-muted: rgba(245, 240, 232, 0.6);
  --clr-dark: #080808;
  --clr-placeholder: #1A1A1A;

  /* Typography */
  --ff-heading: 'Cinzel', serif;
  --ff-body: 'Raleway', sans-serif;
  --ff-ui: 'Raleway', sans-serif;

  /* Spacing */
  --section-padding: 120px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  font-weight: 300;
  background-color: var(--clr-black);
  color: var(--clr-cream);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ===== SECTION HEADING ===== */
.section-heading {
  text-align: center;
  margin-bottom: 72px;
}

.section-heading h2 {
  font-family: var(--ff-heading);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--clr-gold);
  margin-bottom: 20px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.section-heading .ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.section-heading .ornament .line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
}

.section-heading .ornament .diamond {
  width: 8px;
  height: 8px;
  background: var(--clr-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

/* ===== BUTTON ===== */
.btn {
  display: inline-block;
  font-family: var(--ff-ui);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 14px 36px;
  border: none;
  cursor: pointer;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  position: relative;
}

.btn--gold {
  background: transparent;
  color: var(--clr-gold);
  border: 1px solid var(--clr-gold);
}

.btn--gold:hover {
  background: var(--clr-gold);
  color: var(--clr-black);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background-color: rgba(10, 10, 10, 0.95);
  padding: 12px 0;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo img {
  height: 44px;
  width: auto;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.navbar__links {
  display: flex;
  gap: 36px;
}

.navbar__links a {
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--clr-cream);
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--clr-gold);
  transition: width 0.3s ease;
}

.navbar__links a:hover {
  color: var(--clr-gold);
}

.navbar__links a:hover::after {
  width: 100%;
}

.navbar__right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.navbar__phone {
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  color: var(--clr-gold);
  letter-spacing: 1px;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--clr-gold);
  transition: all 0.3s ease;
}

.navbar__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
@media (max-width: 768px) {
  .navbar__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }

  .navbar__menu.open {
    opacity: 1;
    visibility: visible;
  }

  .navbar__links {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .navbar__links a {
    font-size: 1rem;
    letter-spacing: 3px;
  }

  .navbar__right {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
    z-index: 1001;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-black);
  overflow: hidden;
}

/* Ambient glow */
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Concentric rings */
.hero__mandala {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.06);
  box-shadow:
    inset 0 0 0 60px transparent,
    inset 0 0 0 61px rgba(212, 175, 55, 0.04),
    inset 0 0 0 130px transparent,
    inset 0 0 0 131px rgba(212, 175, 55, 0.03),
    inset 0 0 0 200px transparent,
    inset 0 0 0 201px rgba(212, 175, 55, 0.02);
  pointer-events: none;
  animation: slowRotate 120s linear infinite;
}

.hero__mandala::before,
.hero__mandala::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(212, 175, 55, 0.04);
}

.hero__mandala::before {
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%) rotate(45deg);
  border-radius: 0;
}

.hero__mandala::after {
  width: 900px;
  height: 900px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  animation: heroFadeIn 1.5s ease-out;
}

.hero__logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto 32px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.1);
}

.hero__title {
  font-family: var(--ff-heading);
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 16px;
  background: linear-gradient(
    90deg,
    var(--clr-gold) 0%,
    #F5E6A3 30%,
    var(--clr-gold) 50%,
    #F5E6A3 70%,
    var(--clr-gold) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--clr-gold);
  animation: shimmer 5s linear infinite;
}

.hero__tagline {
  font-family: var(--ff-body);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: var(--clr-muted);
  letter-spacing: 4px;
  margin-bottom: 28px;
}

.hero__divider {
  margin: 0 auto 24px;
  display: flex;
  justify-content: center;
}

.hero__since {
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(212, 175, 55, 0.7);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero__cta {
  font-size: 0.85rem;
  padding: 16px 48px;
}

/* ===== ANIMATIONS ===== */
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  to {
    background-position: 200% center;
  }
}

@keyframes slowRotate {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Scroll-triggered fade in */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Responsive hero */
@media (max-width: 768px) {
  .hero__logo {
    width: 110px;
    height: 110px;
  }

  .hero__title {
    font-size: 1.8rem;
    letter-spacing: 4px;
  }

  .hero__tagline {
    font-size: 1rem;
    letter-spacing: 2px;
  }
}

/* ===== ABOUT ===== */
.about {
  padding: var(--section-padding);
  background: var(--clr-charcoal);
  position: relative;
  overflow: hidden;
}

/* Subtle ambient glow */
.about::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.about__frame {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.about__video {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

/* Corner ornaments */
.corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--clr-gold);
  border-style: solid;
}

.corner--tl { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.corner--tr { top: -1px; right: -1px; border-width: 1px 1px 0 0; }
.corner--bl { bottom: -1px; left: -1px; border-width: 0 0 1px 1px; }
.corner--br { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }

.about__text p {
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.9;
  color: var(--clr-muted);
}

.about__text strong {
  color: var(--clr-gold);
  font-weight: 500;
}

.about__stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.about__stat {
  text-align: center;
}

.about__stat-number {
  display: block;
  font-family: var(--ff-heading);
  font-size: 2.2rem;
  color: var(--clr-gold);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
}

.about__stat-label {
  font-family: var(--ff-ui);
  font-size: 0.7rem;
  color: var(--clr-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__stats {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
}

/* ===== COLLECTIONS ===== */
.collections {
  padding: var(--section-padding);
  background: var(--clr-black);
}

.collections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.collection-card {
  position: relative;
  transition: transform 0.5s ease;
  cursor: pointer;
  overflow: hidden;
}

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

.collection-card__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--clr-placeholder);
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.collection-card:hover .collection-card__image {
  border-color: var(--clr-gold);
  box-shadow: 0 8px 40px rgba(212, 175, 55, 0.12);
}

.collection-card__image img,
.collection-card__image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collection-card:hover .collection-card__image img,
.collection-card:hover .collection-card__image video {
  transform: scale(1.05);
}

.collection-card__title {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--clr-cream);
  margin-bottom: 8px;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.collection-card:hover .collection-card__title {
  color: var(--clr-gold);
}

.collection-card__desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--clr-muted);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .collections__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .collections__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ===== CRAFTSMANSHIP ===== */
.craftsmanship {
  padding: var(--section-padding);
  background: var(--clr-charcoal);
  position: relative;
}

/* Top/bottom gold line accents */
.craftsmanship::before,
.craftsmanship::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
}

.craftsmanship::before { top: 0; }
.craftsmanship::after { bottom: 0; }

.craftsmanship__border {
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.1);
  padding: 72px 48px;
  margin: 0 auto;
  max-width: var(--container-width);
}

.craftsmanship__border .corner {
  width: 30px;
  height: 30px;
}

.craftsmanship__features {
  display: flex;
  gap: 60px;
  justify-content: center;
}

.craft-feature {
  flex: 1;
  text-align: center;
  max-width: 320px;
}

.craft-feature__icon {
  margin-bottom: 28px;
  opacity: 0.9;
}

.craft-feature__icon svg {
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.2));
}

.craft-feature h3 {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--clr-gold);
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.craft-feature p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--clr-muted);
}

@media (max-width: 768px) {
  .craftsmanship__border {
    padding: 48px 20px;
  }

  .craftsmanship__features {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: var(--section-padding);
  background: var(--clr-black);
  position: relative;
  overflow: hidden;
}

.testimonials__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.03);
  box-shadow:
    inset 0 0 0 50px transparent,
    inset 0 0 0 51px rgba(212, 175, 55, 0.02),
    inset 0 0 0 100px transparent,
    inset 0 0 0 101px rgba(212, 175, 55, 0.015);
  pointer-events: none;
}

.testimonials__track-wrapper {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.testimonials__track {
  display: flex;
  gap: 32px;
  animation: scrollTestimonials 35s linear infinite;
  width: max-content;
}

.testimonials__track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  flex-shrink: 0;
  width: 380px;
  padding: 44px 36px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: 2px;
  transition: border-color 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(212, 175, 55, 0.25);
}

.testimonial-card__quote {
  font-family: var(--ff-heading);
  font-size: 3.5rem;
  color: rgba(212, 175, 55, 0.4);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

.testimonial-card__text {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.85;
  color: var(--clr-cream);
  margin-bottom: 24px;
}

.testimonial-card__name {
  font-family: var(--ff-ui);
  font-size: 0.8rem;
  color: var(--clr-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

@keyframes scrollTestimonials {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    width: 300px;
    padding: 32px 24px;
  }
}

/* ===== VISIT US ===== */
.visit {
  padding: var(--section-padding);
  background: var(--clr-charcoal);
  position: relative;
}

.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.visit__store-name {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--clr-gold);
  margin-bottom: 36px;
  letter-spacing: 2px;
}

.visit__detail {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}

.visit__detail svg {
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.8;
}

.visit__detail p,
.visit__detail a {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--clr-cream);
}

.visit__detail a {
  transition: color 0.3s ease;
}

.visit__detail a:hover {
  color: var(--clr-gold);
}

.visit__map {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.visit__map-embed {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(212, 175, 55, 0.15);
  filter: grayscale(0.3) brightness(0.8);
  transition: filter 0.4s ease;
}

.visit__map-embed:hover {
  filter: grayscale(0) brightness(1);
}

.visit__map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--clr-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.visit__map-link:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .visit__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--clr-dark);
  padding: 72px 0 0;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-bottom: 16px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.footer__brand h3 {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--clr-gold);
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.footer__tagline {
  font-family: var(--ff-body);
  font-weight: 300;
  font-style: italic;
  color: var(--clr-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer__links h4,
.footer__contact h4 {
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  color: var(--clr-gold);
  margin-bottom: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-family: var(--ff-ui);
  font-size: 0.85rem;
  color: var(--clr-muted);
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--clr-gold);
}

.footer__contact p {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 12px;
  line-height: 1.6;
  color: var(--clr-muted);
}

.footer__contact a {
  transition: color 0.3s ease;
}

.footer__contact a:hover {
  color: var(--clr-gold);
}

.footer__bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.35);
  letter-spacing: 0.5px;
}

.footer__socials {
  display: flex;
  gap: 20px;
}

.footer__socials a {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.footer__socials a:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }

  .footer__logo {
    margin: 0 auto 16px;
  }

  .footer__links ul {
    align-items: center;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ===== RESPONSIVE POLISH ===== */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
  }

  .section-heading h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
  }

  .section-heading h2 {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }

  .section-heading .ornament .line {
    width: 50px;
  }
}

/* Smooth scrolling offset for fixed navbar */
section[id] {
  scroll-margin-top: 80px;
}

/* Keyboard focus styles */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--clr-gold);
  outline-offset: 2px;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
