@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
  --black: #070707;
  --dark: #101010;
  --dark2: #171717;
  --gold: #d7a84a;
  --gold2: #f4d48a;
  --cream: #f7f2e8;
  --muted: #b9b4a9;
  --white: #fff;
  --line: rgba(215, 168, 74, 0.22);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1160px, 92%);
  margin: auto;
}

.section {
  padding: 105px 0;
  position: relative;
}

/* Typography & Headers */
.eyebrow {
  color: var(--gold2);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.08;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin: 13px 0 20px;
}

h3 {
  font-size: 1.45rem;
}

p {
  color: var(--muted);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  background: rgba(215, 168, 74, 0.12);
  border: 1px solid var(--line);
  color: var(--gold2);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.section-title {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.section-lead {
  max-width: 650px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, #b98222, #f0cc79);
  color: #111;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: 0.35s;
  box-shadow: 0 12px 35px rgba(215, 168, 74, 0.16);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(215, 168, 74, 0.3);
}

.btn.alt {
  background: transparent;
  color: var(--gold2);
}

.btn.alt:hover {
  background: rgba(215, 168, 74, 0.1);
}

/* Header & Navigation */
header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 27px;
}

.nav-links a {
  font-size: 0.86rem;
  color: #ddd;
  position: relative;
}

.nav-links a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: 0.3s;
}

.nav-links a:hover:after,
.nav-links a.active:after {
  width: 100%;
}

.nav-links a.active {
  color: var(--gold2);
}

.menu {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 1.7rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding-top: 82px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 45%, rgba(215, 168, 74, 0.18), transparent 28%), radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05), transparent 25%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(3.3rem, 7vw, 6.8rem);
  max-width: 720px;
}

.hero h1 span {
  color: var(--gold2);
}

.hero-copy {
  font-size: 1.08rem;
  max-width: 600px;
  margin: 25px 0 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-art {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-art:before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(215, 168, 74, 0.12);
}

.hero-art:after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border: 1px dashed rgba(244, 212, 138, 0.3);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

.hero-art img {
  width: min(420px, 85%);
  position: relative;
  z-index: 2;
  border-radius: 26px;
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.6));
}

.orbit {
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  animation: spin 28s linear infinite;
}

.orbit i {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  top: 5px;
  left: 50%;
  box-shadow: 0 0 18px var(--gold);
}

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

/* Marquee */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 15px 0;
  color: var(--gold2);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  white-space: nowrap;
}

.marquee span {
  display: inline-block;
  animation: marquee 25s linear infinite;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Base Grid & Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: linear-gradient(145deg, #171717, #0c0c0c);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: 0.35s;
}

.card:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  right: -50px;
  top: -50px;
  background: rgba(215, 168, 74, 0.12);
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--gold2);
  font-size: 1.2rem;
  margin-bottom: 22px;
}

.card p {
  margin-top: 10px;
  font-size: 0.93rem;
}

/* Product Grid & Upgraded Product Cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.product,
.product-card {
  background: linear-gradient(145deg, #171717, #0c0c0c);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

.product:hover,
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.product-img,
.product-img-container {
  position: relative;
  height: 260px;
  background: linear-gradient(135deg, #252018, #0c0c0c);
  overflow: hidden;
}

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

.product:hover .product-img img,
.product-card:hover .product-img-container img {
  transform: scale(1.08);
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(7, 7, 7, 0.82);
  border: 1px solid var(--line);
  color: var(--gold2);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  backdrop-filter: blur(6px);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.product-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.product-body p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.product-link {
  font-weight: 600;
  color: var(--gold2);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.product-link:hover {
  color: var(--gold);
  transform: translateX(3px);
}

/* Split Layouts & Stats */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.visual {
  min-height: 450px;
  background: linear-gradient(135deg, #201b12, #0e0e0e);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.stat {
  border-left: 1px solid var(--gold);
  padding-left: 18px;
}

.stat strong {
  font: 700 2.1rem 'Playfair Display', serif;
  display: block;
  color: var(--gold2);
}

.stat span {
  font-size: 0.75rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Page Hero */
.page-hero {
  padding: 165px 0 90px;
  background: radial-gradient(circle at 80% 40%, rgba(215, 168, 74, 0.16), transparent 28%), #0a0a0a;
}

.page-hero h1 {
  font-size: clamp(3rem, 6vw, 6rem);
}

.breadcrumb {
  margin-top: 15px;
  color: #8f8b83;
}

.breadcrumb span {
  color: var(--gold2);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-item {
  height: 300px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-item.tall {
  height: 420px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

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

.gallery-item:after {
  content: "View gallery";
  position: absolute;
  inset: auto 15px 15px auto;
  background: rgba(0, 0, 0, 0.7);
  padding: 7px 12px;
  color: var(--gold2);
  font-size: 0.7rem;
  opacity: 0;
  transition: 0.3s;
}

.gallery-item:hover:after {
  opacity: 1;
}

/* Slider */
.slider {
  position: relative;
  height: min(720px, 78vh);
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 1s;
  transform: scale(1.06);
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18));
}

.slide-content {
  position: absolute;
  z-index: 2;
  left: 7%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 680px;
}

.slide-content h1 {
  font-size: clamp(3rem, 6vw, 6rem);
}

.slide-content p {
  font-size: 1.05rem;
  margin: 22px 0 28px;
}

.slider-controls {
  position: absolute;
  z-index: 5;
  right: 6%;
  bottom: 35px;
  display: flex;
  gap: 8px;
}

.dot {
  width: 40px;
  height: 3px;
  background: #777;
  border: 0;
}

.dot.active {
  background: var(--gold);
}

/* Contact & Forms */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 25px;
}

.contact-box {
  padding: 30px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-box h3 {
  margin-bottom: 8px;
}

.contact-box a {
  color: var(--gold2);
}

form {
  display: grid;
  gap: 15px;
}

input, textarea, select {
  width: 100%;
  padding: 15px;
  background: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: #fff;
  font: inherit;
  outline: none;
}

input:focus, textarea:focus {
  border-color: var(--gold);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
footer {
  background: #080808;
  border-top: 1px solid var(--line);
  padding: 65px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 35px;
}

.footer-logo {
  height: 70px;
}

.footer p {
  font-size: 0.87rem;
  margin-top: 14px;
}

.footer h4 {
  color: var(--gold2);
  margin-bottom: 13px;
}

.footer a {
  display: block;
  color: #aaa;
  font-size: 0.86rem;
  margin: 7px 0;
}

.social {
  display: flex;
  gap: 9px;
  margin-top: 18px;
}

.social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  margin: 0;
  color: #fff;
}

.social a:hover {
  border-color: var(--gold);
  color: var(--gold2);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 45px;
  padding-top: 20px;
  text-align: center;
  color: #777;
  font-size: 0.75rem;
}

/* Scroll Reveals & Back to Top */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: 0.8s;
}

.reveal.show {
  opacity: 1;
  transform: none;
}

.backtop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 45px;
  height: 45px;
  border: 1px solid var(--gold);
  background: #0c0c0c;
  color: var(--gold2);
  display: none;
  z-index: 90;
}

/* Responsive Media Queries */
@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: #090909;
    display: none;
    flex-direction: column;
    padding: 25px;
  }
  
  .nav-links.open {
    display: flex;
  }
  
  .menu {
    display: block;
  }
  
  .hero-grid, .split, .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .hero {
    padding-top: 120px;
  }
  
  .hero-art {
    min-height: 380px;
  }
  
  .cards, .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .section {
    padding: 75px 0;
  }
  
  .hero h1 {
    font-size: 3.3rem;
  }
  
  .hero-art:before {
    width: 300px;
    height: 300px;
  }
  
  .orbit {
    width: 350px;
    height: 350px;
  }
  
  .cards, .product-grid, .gallery-grid, .stats, .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item, .gallery-item.tall {
    height: 300px;
  }
  
  .page-hero {
    padding: 135px 0 65px;
  }
  
  .slide-content {
    left: 7%;
    right: 7%;
  }
  
  .slide-content h1 {
    font-size: 3.1rem;
  }
  
  .logo {
    height: 54px;
  }
}



