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

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

:root {
  --black: #0a0a0a;
  --white: #fafaf7;
  --cream: #f4f0e8;
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --gold-dark: #8a6f2e;
  --charcoal: #1e1e1e;
  --gray: #5a5a5a;
  --light-gray: #e8e4dc;
  --accent: #c0392b;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

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

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 80px;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: all 0.3s ease;
}

nav .logo img {
  height: 48px;
  filter: brightness(0) invert(1);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

nav ul li a {
  text-decoration: none;
  color: rgba(250,250,247,0.75);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

nav ul li a:hover { color: var(--gold); }
nav ul li a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 10px 24px;
  font-weight: 500 !important;
  letter-spacing: 1.5px !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light); color: var(--black) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 5% 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.05) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 900px;
  animation: fadeUp 1s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 28px);
  color: rgba(250,250,247,0.5);
  font-weight: 300;
  margin-bottom: 32px;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.hero-desc {
  font-size: 16px;
  color: rgba(250,250,247,0.6);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  border: 1px solid rgba(250,250,247,0.3);
  color: var(--white);
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(250,250,247,0.3);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── SECTIONS ── */
section { padding: 100px 5%; }

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-title em { font-style: italic; color: var(--gold); }

.section-desc {
  font-size: 16px;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.9;
  margin-bottom: 60px;
}

/* ── BRANDS STRIP ── */
.brands-strip {
  background: var(--black);
  padding: 60px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.brand-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
}

.brand-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.brand-pill h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
}

.brand-pill p {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

/* ── PRODUCTS ── */
.products-section { background: var(--cream); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
}

.product-card {
  background: var(--white);
  padding: 48px 40px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}

.product-card:hover::before { height: 100%; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }

.product-brand-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-light);
  padding: 4px 12px;
  margin-bottom: 24px;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.2;
}

.product-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 32px;
}

.product-card .card-link {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  transition: color 0.3s;
}

.product-card .card-link:hover { color: var(--gold); }
.product-card .card-link::after { content: '→'; transition: transform 0.3s; }
.product-card .card-link:hover::after { transform: translateX(4px); }

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.why-item {
  border-top: 1px solid var(--light-gray);
  padding-top: 32px;
}

.why-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 16px;
}

.why-item h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.why-item p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--black);
  padding: 160px 5% 80px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero h1 em { color: var(--gold); font-style: italic; }

.page-hero p {
  font-size: 16px;
  color: rgba(250,250,247,0.5);
  max-width: 500px;
  margin: 0 auto;
}

/* ── CONTACT ── */
.contact-section { background: var(--black); color: var(--white); }
.contact-section .section-desc { color: rgba(250,250,247,0.5); }

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

.contact-info { display: flex; flex-direction: column; gap: 32px; }

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-item h4 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 400;
}

.contact-item p, .contact-item a {
  font-size: 15px;
  color: rgba(250,250,247,0.7);
  text-decoration: none;
  line-height: 1.6;
}

.contact-item a:hover { color: var(--gold); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250,250,247,0.4);
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(250,250,247,0.2); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }

.form-group select option { background: var(--charcoal); color: var(--white); }

.form-submit {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 18px 40px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: #050505;
  padding: 60px 5% 30px;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand img {
  height: 42px;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(250,250,247,0.35);
  line-height: 1.8;
  max-width: 260px;
}

.footer-col h5 {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  text-decoration: none;
  font-size: 13px;
  color: rgba(250,250,247,0.4);
  transition: color 0.3s;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(250,250,247,0.2);
  letter-spacing: 0.5px;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 500px;
}

.about-box {
  position: absolute;
  background: var(--gold);
  right: 0; top: 0;
  width: 75%;
  height: 85%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-box-inner {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 300;
  color: rgba(0,0,0,0.1);
  line-height: 1;
  text-align: center;
}

.about-accent {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 55%;
  height: 45%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-stat {
  text-align: center;
}

.about-stat .num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: var(--gold);
  display: block;
}

.about-stat .label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}

.about-text p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-text strong { color: var(--black); font-weight: 500; }

/* ── BRANDS PAGE ── */
.brand-card {
  padding: 60px;
  border: 1px solid var(--light-gray);
  margin-bottom: 2px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  transition: border-color 0.3s;
}

.brand-card:hover { border-color: var(--gold); }

.brand-card-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
}

.brand-card h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1;
}

.brand-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 28px;
}

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

.brand-product-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--cream);
  font-size: 14px;
}

.brand-product-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  flex-shrink: 0;
}

.brand-card-visual {
  background: var(--black);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.brand-card-visual .brand-name-display {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: rgba(201,168,76,0.15);
  letter-spacing: 4px;
  text-align: center;
  line-height: 1.2;
}

.brand-card-visual::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(201,168,76,0.15);
}

/* ── WHOLESALE BANNER ── */
.wholesale-banner {
  background: var(--gold);
  padding: 80px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.wholesale-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: var(--black);
}

.wholesale-banner p {
  font-size: 15px;
  color: rgba(0,0,0,0.6);
  margin-top: 8px;
}

.btn-dark {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 18px 40px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  flex-shrink: 0;
}

.btn-dark:hover { background: var(--charcoal); transform: translateY(-2px); }

/* ── PAGE VISIBILITY ── */
.page { display: none; }
.page.active { display: block; }

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: var(--gold);
  color: var(--black);
  padding: 16px 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
}

.toast.show { transform: translateY(0); opacity: 1; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav ul { display: none; }
  nav ul.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: var(--black);
    padding: 32px 5%;
    gap: 24px;
    border-top: 1px solid rgba(201,168,76,0.2);
  }
  .hamburger { display: flex; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { height: 280px; }
  .brand-card { grid-template-columns: 1fr; padding: 40px 24px; }
  .brand-card-visual { height: 200px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .wholesale-banner { flex-direction: column; }
}
