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

:root {
  --black:      #FAFAFA;
  --card-bg:    #F0EDE8;
  --border:     #E0D8CF;
  --gold:       #8B6914;
  --gold-light: #A07820;
  --rose-gold:  #9B5E3A;
  --text:       #FAFAFA;
  --muted:      #777066;
  --white:      #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 60px;
  transition: background 0.4s, padding 0.4s;
  background: rgba(250,250,250,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav.scrolled {
  padding: 16px 60px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-logo img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  transition: border-color 0.3s;
}
.nav-logo img:hover { border-color: var(--gold-light); }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-icons { display: flex; gap: 20px; align-items: center; }
.nav-icons svg { width: 20px; height: 20px; stroke: var(--muted); cursor: pointer; transition: stroke 0.3s; }
.nav-icons svg:hover { stroke: var(--gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 1px; background: var(--text); transition: all 0.3s; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(135deg, #f5f0e8 0%, #fafafa 50%, #f0ede8 100%); */
  background: #FAFAFA;
}
.hero-orb {
  position: absolute;
  right: -10%; top: 50%;
  transform: translateY(-50%);
  width: 65vw; height: 65vw;
  max-width: 800px; max-height: 800px;
  border-radius: 50%;
  border: 1px solid rgba(139,105,20,0.2);
  animation: rotate 30s linear infinite;
}
.hero-orb::before {
  content: '';
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  border: 1px solid rgba(139,105,20,0.15);
  animation: rotate 20s linear infinite reverse;
}
.hero-orb::after {
  content: '';
  position: absolute;
  inset: 30%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,105,20,0.06) 0%, transparent 70%);
}
.hero-glow {
  position: absolute;
  right: 15%; top: 50%;
  transform: translate(50%, -50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,105,20,0.07) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 660px;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::after {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 28px;
  color: var(--text);
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 420px;
}
.hero-cta { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gold);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-stats {
  position: absolute;
  bottom: 60px; left: 60px; right: 60px;
  display: flex; gap: 60px;
  z-index: 2;
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
@keyframes rotate { to { transform: translateY(-50%) rotate(360deg); } }

/* ── MARQUEE ── */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 18px 0;
  background: var(--white);
}
.marquee-track {
  display: flex;
  animation: marquee 20s linear infinite;
  width: max-content;
}
.marquee-item {
  white-space: nowrap;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 40px;
  border-right: 1px solid var(--border);
}
.marquee-item span { color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── SECTIONS ── */
section { padding: 100px 60px; }
.section-eyebrow { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--gold); }

/* ── COLLECTIONS ── */
.collections-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.collections-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; grid-template-rows: auto auto; gap: 2px; }
.collection-card { position: relative; overflow: hidden; cursor: pointer; }
.collection-card:first-child { grid-row: 1 / 3; }
.collection-card-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform 0.6s ease; background: var(--card-bg); }
.collection-card:first-child .collection-card-img { aspect-ratio: auto; height: 100%; }
.collection-placeholder {
  width: 100%; height: 100%; min-height: 300px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px;
  background: var(--card-bg);
  color: var(--muted);
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  transition: transform 0.6s ease;
  border: 1px solid var(--border);
}
.collection-placeholder svg { width: 36px; height: 36px; stroke: var(--gold); opacity: 0.6; }
.collection-card:hover .collection-placeholder { transform: scale(1.04); }
.collection-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
  background: linear-gradient(to top, rgba(250,245,235,0.95) 0%, transparent 100%);
  transform: translateY(10px);
  transition: transform 0.4s;
}
.collection-card:hover .collection-overlay { transform: translateY(0); }
.collection-name { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 300; color: var(--text); }
.collection-count { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-top: 4px; }

/* ── PRODUCTS ── */
.products { background: var(--white); border-top: 1px solid var(--border); }
.products-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.products-filter { display: flex; gap: 4px; }
.filter-btn {
  padding: 8px 20px;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid var(--border);
  background: transparent; color: var(--muted);
  cursor: pointer; transition: all 0.3s;
  font-family: 'Jost', sans-serif;
}
.filter-btn.active, .filter-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(139,105,20,0.05); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card { position: relative; cursor: pointer; }
.product-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  padding: 4px 12px;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  background: var(--gold); color: #fff; font-weight: 500;
}
.product-img-wrap { position: relative; overflow: hidden; margin-bottom: 20px; }
.product-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: var(--card-bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  transition: transform 0.5s ease;
  color: var(--muted);
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid var(--border);
}
.product-placeholder svg { width: 28px; height: 28px; stroke: var(--gold); opacity: 0.5; }
.product-card:hover .product-placeholder { transform: scale(1.03); }
.product-actions {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; flex-direction: column; gap: 2px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.product-card:hover .product-actions { transform: translateY(0); }
.product-actions button {
  width: 100%; padding: 12px;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  border: none; cursor: pointer;
  font-family: 'Jost', sans-serif; font-weight: 500;
  transition: background 0.2s;
}
.btn-cart { background: var(--gold); color: #fff; }
.btn-cart:hover { background: var(--gold-light); }
.btn-wish { background: rgba(250,250,250,0.92); color: var(--text); border: 1px solid var(--border) !important; }
.product-name { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 400; color: var(--text); margin-bottom: 4px; }
.product-sub { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.product-price { display: flex; align-items: center; gap: 10px; }
.price-current { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--gold); }
.price-old { font-size: 13px; color: var(--muted); text-decoration: line-through; }

/* ── BANNER ── */
.banner {
  padding: 0; position: relative; overflow: hidden;
  min-height: 420px; display: flex; align-items: center;
  background: linear-gradient(135deg, #f0ebe0 0%, #f5f0e8 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.banner-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(139,105,20,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,105,20,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.banner-content { position: relative; z-index: 2; padding: 80px 60px; max-width: 600px; }
.banner-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 5vw, 64px); font-weight: 300; line-height: 1.1; margin-bottom: 20px; color: var(--text); }
.banner-title em { font-style: italic; color: var(--gold); }
.banner-desc { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 36px; }
.banner-image { position: absolute; right: -20px; top: 50%; transform: translateY(-50%); width: 45%; height: 100%; display: flex; align-items: center; justify-content: center; opacity: 0.15; }
.banner-image-circle { width: 500px; height: 500px; border-radius: 50%; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; }
.banner-image-circle::before { content: ''; width: 350px; height: 350px; border-radius: 50%; border: 1px solid var(--gold); }

/* ── PROCESS ── */
.process { background: var(--black); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 60px; }
.process-item { padding: 48px 32px; background: var(--white); transition: background 0.3s; border: 1px solid var(--border); }
.process-item:hover { background: var(--card-bg); }
.process-num { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; color: var(--border); line-height: 1; margin-bottom: 24px; transition: color 0.3s; }
.process-item:hover .process-num { color: var(--gold); }
.process-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--text); margin-bottom: 12px; }
.process-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--card-bg); border-top: 1px solid var(--border); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.testimonial-card { background: var(--white); padding: 36px 28px; border: 1px solid var(--border); text-align: left; transition: border-color 0.3s; }
.testimonial-card:hover { border-color: rgba(139,105,20,0.4); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-stars span { color: var(--gold); font-size: 14px; }
.testimonial-text { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-style: italic; color: var(--text); line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }

/* ── NEWSLETTER ── */
.newsletter { background: var(--white); text-align: center; border-top: 1px solid var(--border); }
.newsletter-desc { font-size: 13px; color: var(--muted); margin-bottom: 40px; }
.newsletter-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto; }
.newsletter-input {
  flex: 1; padding: 16px 24px;
  background: var(--card-bg);
  border: 1px solid var(--border); border-right: none;
  color: var(--text);
  font-family: 'Jost', sans-serif; font-size: 13px;
  outline: none; transition: border-color 0.3s;
}
.newsletter-input:focus { border-color: var(--gold); }
.newsletter-input::placeholder { color: var(--muted); }

/* ── FOOTER ── */
footer { background: var(--card-bg); border-top: 1px solid var(--border); padding: 80px 60px 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand .nav-logo { margin-bottom: 16px; display: block; }
.footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-link { width: 36px; height: 36px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: border-color 0.3s, background 0.3s; font-size: 12px; color: var(--muted); }
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 13px; color: var(--muted); transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 40px; border-top: 1px solid var(--border); }
.footer-copy { font-size: 11px; color: var(--muted); letter-spacing: 1px; }
.footer-payment { display: flex; gap: 8px; align-items: center; }
.payment-badge { padding: 4px 10px; border: 1px solid var(--border); font-size: 9px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }

/* ── CART SIDEBAR ── */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.3); z-index: 2000; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar { position: fixed; top: 0; right: 0; bottom: 0; width: 420px; background: var(--white); border-left: 1px solid var(--border); z-index: 2001; transform: translateX(100%); transition: transform 0.4s ease; display: flex; flex-direction: column; padding: 40px 32px; }
.cart-overlay.open .cart-sidebar { transform: translateX(0); }
.cart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.cart-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 300; color: var(--text); }
.cart-close { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; cursor: pointer; border: 1px solid var(--border); transition: border-color 0.3s; color: var(--text); }
.cart-close:hover { border-color: var(--gold); }
.cart-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; color: var(--muted); font-size: 13px; letter-spacing: 1px; }
.cart-empty svg { width: 40px; height: 40px; stroke: var(--muted); opacity: 0.4; }
.cart-items { flex: 1; overflow-y: auto; }
.cart-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.cart-item-img { width: 72px; height: 90px; background: var(--card-bg); flex-shrink: 0; border: 1px solid var(--border); }
.cart-item-info { flex: 1; }
.cart-item-name { font-family: 'Cormorant Garamond', serif; font-size: 16px; margin-bottom: 4px; color: var(--text); }
.cart-item-price { font-size: 13px; color: var(--gold); }
.cart-item-qty { display: flex; align-items: center; gap: 12px; margin-top: 12px; }
.qty-btn { width: 24px; height: 24px; border: 1px solid var(--border); background: transparent; color: var(--text); cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s; }
.qty-btn:hover { border-color: var(--gold); }
.qty-num { font-size: 13px; min-width: 20px; text-align: center; color: var(--text); }
.cart-footer { margin-top: 24px; }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 24px; font-size: 13px; }
.cart-total-label { color: var(--muted); letter-spacing: 2px; text-transform: uppercase; font-size: 10px; }
.cart-total-price { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--gold); }

/* ── MOBILE MENU ── */
.mobile-menu { position: fixed; inset: 0; background: var(--white); z-index: 1500; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px; transform: translateX(-100%); transition: transform 0.4s ease; border-right: 1px solid var(--border); }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; color: var(--text); letter-spacing: 3px; transition: color 0.3s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-close { position: absolute; top: 24px; right: 24px; font-size: 28px; cursor: pointer; color: var(--muted); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) {
  section { padding: 72px 32px; }
  .nav { padding: 20px 32px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 32px; }
  .hero-stats { left: 32px; right: 32px; }
  .collections-grid { grid-template-columns: 1fr 1fr; }
  .collections-grid .collection-card:first-child { grid-row: auto; grid-column: 1 / -1; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cart-sidebar { width: 100%; }
}
@media (max-width: 600px) {
  section { padding: 56px 20px; }
  .nav { padding: 18px 20px; }
  .hero-content { padding: 0 20px; }
  .hero-stats { left: 20px; flex-wrap: wrap; gap: 24px; bottom: 40px; }
  .collections-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .products-header, .collections-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid var(--border); border-bottom: none; }
  .banner-content { padding: 60px 20px; }
}
