/* BombayGold — styles.css */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root{
  --cream: #faf7f2;
  --ivory: #f5f0e8;
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --gold-dark: #a07830;
  --champagne: #f0e6c8;
  --warm-white: #fffdf8;
  --charcoal: #2c2416;
  --text: #3a2e1e;
  --text-muted: #8c7a5e;
  --wa: #25D366;
  --wa-dark: #128C7E;
}

html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  transition: all .3s;
}
nav.scrolled {
  padding: .8rem 4rem;
  box-shadow: 0 2px 30px rgba(0,0,0,.06);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 500;
  letter-spacing: .12em; color: var(--charcoal);
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: .78rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none; font-weight: 400;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  display: flex; align-items: center; gap: .5rem;
  background: var(--wa); color: #fff;
  padding: .6rem 1.4rem; border-radius: 2rem;
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; font-weight: 500;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--wa-dark); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--warm-white) 0%, var(--ivory) 50%, var(--champagne) 100%);
  position: relative; overflow: hidden;
  padding: 8rem 4rem 4rem;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 70% 50%, rgba(201,168,76,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-deco {
  position: absolute; top: 0; right: 0; width: 45%; height: 100%;
  background: linear-gradient(160deg, rgba(201,168,76,.05) 0%, rgba(201,168,76,.1) 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-content {
  max-width: 520px; position: relative; z-index: 2;
  animation: fadeUp 1s ease both;
}
.hero-eyebrow {
  font-size: .72rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: .8rem;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 2rem; height: 1px; background: var(--gold);
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300; line-height: 1.1;
  color: var(--charcoal); margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--gold-dark); }
.hero p {
  font-size: 1.05rem; color: var(--text-muted); line-height: 1.8;
  margin-bottom: 2.5rem; max-width: 400px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-gold {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff; padding: .9rem 2rem; border-radius: .25rem;
  font-size: .82rem; letter-spacing: .15em; text-transform: uppercase;
  text-decoration: none; font-weight: 500;
  box-shadow: 0 4px 20px rgba(160,120,48,.35);
  transition: transform .2s, box-shadow .2s;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(160,120,48,.45); }

.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1.5px solid var(--gold); color: var(--gold);
  padding: .9rem 2rem; border-radius: .25rem;
  font-size: .82rem; letter-spacing: .15em; text-transform: uppercase;
  text-decoration: none; font-weight: 500;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--gold); color: #fff; }

.hero-image-grid {
  position: absolute; right: 0; top: 0; bottom: 0; width: 46%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  padding: 7rem 2rem 2rem 1rem; z-index: 1;
  animation: fadeIn 1.2s ease both .3s;
}
.hero-img { border-radius: .4rem; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,.1); }
.hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-img:nth-child(1) { grid-row: 1/3; }
.hero-img:nth-child(3) { grid-row: 2/4; }

/* ── COLLECTIONS ── */
.collections { padding: 6rem 4rem; background: var(--warm-white); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-eyebrow {
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: .8rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400; color: var(--charcoal); line-height: 1.2;
}
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-line { width: 3rem; height: 1.5px; background: var(--gold); margin: 1rem auto 0; }

.filter-tabs {
  display: flex; gap: .5rem; justify-content: center;
  flex-wrap: wrap; margin-bottom: 3rem;
}
.filter-tab {
  padding: .5rem 1.4rem; border-radius: 2rem;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  border: 1.5px solid rgba(201,168,76,.3); color: var(--text-muted);
  background: transparent; cursor: pointer;
  font-family: 'Jost', sans-serif; font-weight: 400;
  transition: all .2s;
}
.filter-tab.active, .filter-tab:hover {
  background: var(--gold); border-color: var(--gold); color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.8rem;
}
.product-card {
  background: var(--cream); border-radius: .6rem; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.1); }
.product-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 1/1; background: var(--ivory);
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease; display: block;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-badge {
  position: absolute; top: .75rem; left: .75rem;
  background: var(--gold); color: #fff;
  font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 1rem; font-weight: 500;
}
.product-info { padding: 1.2rem 1.4rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.product-cat {
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: .3rem;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 500; color: var(--charcoal);
  margin-bottom: .4rem; line-height: 1.3;
}
.product-desc { font-size: .8rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.2rem; flex: 1; }
.wa-btn {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  background: var(--wa); color: #fff;
  padding: .45rem .8rem; border-radius: .3rem;
  font-size: .7rem; letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; font-weight: 500;
  transition: background .2s, transform .15s;
  border: none; cursor: pointer; width: auto; align-self: flex-start;
}
.wa-btn:hover { background: var(--wa-dark); transform: translateY(-1px); }
.wa-icon { width: 14px; height: 14px; fill: #fff; flex-shrink: 0; }

/* ── FEATURES ── */
.features {
  padding: 5rem 4rem;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--champagne) 100%);
}
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem; margin-top: 3rem;
}
.feature-card {
  text-align: center; padding: 2rem 1.5rem;
  background: rgba(255,255,255,.6); border-radius: .6rem;
  border: 1px solid rgba(201,168,76,.15);
  backdrop-filter: blur(4px);
}
.feature-icon { font-size: 2rem; margin-bottom: 1rem; }
.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 500; color: var(--charcoal); margin-bottom: .5rem;
}
.feature-text { font-size: .82rem; color: var(--text-muted); line-height: 1.7; }

/* ── FOOTER ── */
footer {
  background: #1a1408;
  padding: 2.5rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; color: var(--gold-light); font-weight: 500; letter-spacing: .1em;
}
.footer-info { font-size: .78rem; color: rgba(255,255,255,.35); text-align: center; }
.footer-info a { color: var(--gold-light); text-decoration: none; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero { flex-direction: column; padding: 6rem 1.5rem 2rem; }
  .hero-image-grid { display: none; }
  .hero-content { max-width: 100%; }
  .collections, .features { padding: 4rem 1.5rem; }
  footer { padding: 2rem 1.5rem; }
}
