/* ==============================
   BY ARTISTIK — LUXURY CSS
   ============================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Outfit:wght@200;300;400;500;600&display=swap');

:root {
  /* ARTISTIK Luxury Palette */
  --gold: #D4AF37; /* Champagne Gold */
  --gold-light: #F3E5AB;
  --gold-dark: #AA8623;
  --silver: #E0E0E0;
  --silver-light: #FFFFFF;
  --bg: #121212; /* Matte Black */
  --bg2: #1A1A1A; /* Deep Charcoal */
  --bg3: #222222;
  --text: #FFFFFF; /* White */
  --text-muted: #A1A1A1;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 2px;
  --transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Typography ── */
.section-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold-light); font-weight: 300; }
.section-sub { color: var(--text-muted); max-width: 600px; font-size: 1.05rem; line-height: 1.7; font-weight: 300; }
.section-header { margin-bottom: 5rem; }
.section-header .section-sub { margin-top: 1rem; }

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--text);
  color: #000;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary:hover { background: var(--gold); color: #000; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(212,175,55,0.15); }

.btn-ghost {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-full { width: 100%; text-align: center; }

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 2rem 0;
  transition: all 0.5s ease;
  background: linear-gradient(to bottom, rgba(18,18,18,0.9), rgba(18,18,18,0));
}
#navbar.scrolled {
  background: rgba(18,18,18,0.98);
  backdrop-filter: blur(20px);
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-by {
  font-family: 'Outfit', sans-serif;
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 2px;
}
.brand-artistik {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text);
}
.nav-links { display: flex; gap: 3rem; }
.nav-links a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  padding: 0.7rem 1.8rem;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.nav-cta:hover { border-color: var(--gold); color: var(--gold); }
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--text);
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  background: rgba(18,18,18,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 2.5rem; text-align: center; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--text);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { height: 100%; object-position: center; filter: brightness(0.6) contrast(1.2); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(18,18,18,0.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s 0.2s forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s 0.4s forwards;
}
.hero-title em { display: block; font-style: italic; color: var(--silver); }
.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 1s 0.6s forwards;
}
.hero-actions {
  display: flex;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.8s forwards;
}
.hero-badges { display: none; } /* Kept clean for hero */
.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollDown 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  transform-origin: top;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollDown {
  0% { transform: scaleY(0); }
  50% { transform: scaleY(1); }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about-strip {
  padding: 10rem 0;
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}
.about-body {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.9;
  font-weight: 300;
}
.about-text .btn-primary { margin-top: 1rem; }
.about-visual { position: relative; }
.about-img-wrap {
  position: relative;
  height: 700px;
  overflow: hidden;
  filter: grayscale(20%);
}
.about-img-wrap img { height: 100%; object-fit: cover; transition: transform 1.5s ease; }
.about-img-wrap:hover img { transform: scale(1.05); filter: grayscale(0%); }
.about-img-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--bg);
  padding: 2.5rem 2rem 0 0;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ══════════════════════════════
   COLLECTION
══════════════════════════════ */
.collection {
  padding: 10rem 0;
  background: var(--bg2);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.product-card {
  background: var(--bg);
  border: 1px solid transparent;
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  border-color: var(--border);
  transform: translateY(-10px);
}
.product-card-img {
  height: 400px;
  overflow: hidden;
  position: relative;
  background: #111;
}
.product-card-img img { opacity: 0.9; transition: transform 1s ease, opacity 0.5s ease; filter: brightness(0.85); }
.product-card:hover .product-card-img img { transform: scale(1.08); opacity: 1; }
.product-card-tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  color: var(--gold);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.product-card-body { padding: 2.5rem 2rem; text-align: center; }
.product-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.product-card-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; font-weight: 300; }
.product-card-footer {
  padding: 0 2rem 2.5rem;
  text-align: center;
}
.product-card-price { display: none; } /* Kept clean, focus on inquiry */
.product-card-link {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
  transition: var(--transition);
}
.product-card:hover .product-card-link { color: var(--gold); border-color: var(--gold); }

/* ══════════════════════════════
   VENUES
══════════════════════════════ */
.venues {
  padding: 10rem 0;
  background: var(--bg);
}
.venues-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 6rem;
}
.venue-chip {
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  transition: var(--transition);
}
.venue-chip:hover { border-color: var(--text); color: var(--text); }
.venues-image-wrap {
  position: relative;
  height: 600px;
  overflow: hidden;
}
.venues-image-wrap img { height: 100%; filter: brightness(0.4) grayscale(30%); }
.venues-quote {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}
.venues-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 2rem;
  max-width: 800px;
  line-height: 1.3;
}
.venues-quote cite { font-size: 0.65rem; color: var(--gold); letter-spacing: 0.3em; text-transform: uppercase; font-style: normal; }

.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 4rem;
}

/* ══════════════════════════════
   CRAFTSMANSHIP
══════════════════════════════ */
.craftsmanship {
  padding: 10rem 0;
  background: var(--bg2);
}
.craft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
}
.steps { margin-top: 4rem; display: flex; flex-direction: column; }
.step {
  display: flex;
  gap: 2.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  opacity: 0.3;
}
.step.active, .step:hover { opacity: 1; }
.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.1em;
  padding-top: 0.4rem;
}
.step-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}
.step-body p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; font-weight: 300; }
.craft-visual {
  position: sticky;
  top: 10rem;
  height: 700px;
}
.craft-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%);
}
.craft-progress-bar { display: none; } /* Cleaner without progress bar */

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact {
  position: relative;
  padding: 10rem 0;
  background: var(--bg);
}
.contact-inner { max-width: 800px; }
.contact .section-eyebrow { justify-content: center; }
.contact .section-eyebrow::before { display: none; }
.contact .section-title { text-align: center; }
.contact-sub {
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 4rem;
  font-size: 1.1rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  padding: 1rem 0;
  outline: none;
  transition: var(--transition);
  font-weight: 300;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #555; }
.form-group input:focus,
.form-group textarea:focus { border-bottom-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-form .btn-primary { margin-top: 1rem; width: 100%; }
.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
}
.form-note a { color: var(--text); font-weight: 400; text-decoration: none !important; border-bottom: 1px solid var(--gold); padding-bottom: 2px;}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--bg);
  padding-top: 5rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 5rem;
  padding-bottom: 5rem;
}
.footer-brand .brand-by { font-size: 0.5rem; }
.footer-brand .brand-artistik { font-size: 1.4rem; margin-bottom: 1.5rem; display: block; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; max-width: 320px; line-height: 1.8; }
.footer-links h4, .footer-contact h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 2rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 1rem; }
.footer-links a, .footer-contact a, .footer-contact p { color: var(--text-muted); font-size: 0.9rem; transition: color 0.3s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 1rem; }
.social-row { display: flex; gap: 1rem; margin-top: 1rem; }
.social-icon { 
  color: var(--text-muted); 
  transition: var(--transition); 
}
.social-icon svg { width: 20px; height: 20px; }
.social-icon:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 2rem;
  color: #555;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

/* ══════════════════════════════
   SCROLL REVEAL
══════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════
   FLOATING WHATSAPP
══════════════════════════════ */
.floating-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 65px;
  height: 65px;
  background-color: var(--gold);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  z-index: 1000;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.floating-wa:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}
.floating-wa svg {
  width: 35px;
  height: 35px;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid, .craft-grid { grid-template-columns: 1fr; gap: 4rem; }
  .about-img-wrap { height: 500px; }
  .craft-visual { position: relative; top: 0; height: 500px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .hero-title { font-size: 3rem; }
  .section-title { font-size: 2.2rem; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .venues-logos { gap: 0.5rem; }
  .venue-chip { padding: 0.8rem 1.2rem; font-size: 0.6rem; }
  .partners-grid { grid-template-columns: 1fr; gap: 2rem; }
}
