/* Destiny Grace v1.0 - Premium Fashion & Lifestyle */
:root {
  --gold: #c9a96e;
  --gold-dark: #a68b53;
  --gold-light: #e0c78a;
  --dark: #1a1a2e;
  --darker: #0f0f23;
  --light: #f8f5f0;
  --white: #fff;
  --text: #2d3436;
  --text-light: #636e72;
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --max-width: 1200px;
  --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
}
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section-padding { padding: 6rem 0; }
.bg-light { background: var(--light); }
.bg-dark { background: var(--dark); }

/* Navigation */
.header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
}
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-icon { color: var(--gold); font-size: 1.6rem; }
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
}
.logo-accent { color: var(--gold); }
.nav-menu { display: flex; list-style: none; gap: 2rem; }
.nav-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition);
  padding: 0.5rem 0;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-menu a:hover::after { width: 100%; }
.nav-menu a:hover { color: var(--gold); }
.nav-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav-toggle span {
  width: 25px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 50%, #1a1a2e 100%);
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201, 169, 110, 0.1), transparent 60%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 750px; padding: 8rem 0 4rem; }
.hero-badge {
  display: inline-block;
  background: rgba(201, 169, 110, 0.15);
  color: var(--gold);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}
.hero-title-accent {
  color: var(--gold);
  font-style: italic;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.5rem;
  max-width: 550px;
  line-height: 1.8;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 2px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}
.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
}
.hero-stats { display: flex; gap: 3rem; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  z-index: 2;
  letter-spacing: 1.5px;
}
.scroll-arrow {
  width: 18px; height: 18px;
  border-right: 2px solid rgba(255, 255, 255, 0.35);
  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); }
  50% { transform: rotate(45deg) translate(5px, 5px); }
}

/* Section Headers */
.section-header { text-align: center; max-width: 650px; margin: 0 auto 4rem; }
.section-tag {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.section-description {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.value-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  text-align: center;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--gold-light);
}
.value-icon {
  width: 60px; height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
}
.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--dark);
  letter-spacing: 0.5px;
}
.value-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Collection */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 2rem;
}
.collection-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}
.collection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.collection-img-placeholder {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--dark) 0%, #2d2d4e 100%);
}
.collection-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 60%, rgba(201, 169, 110, 0.15), transparent 60%);
  z-index: 1;
}
.collection-label {
  position: relative;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 6px;
  text-transform: uppercase;
}
.collection-info { padding: 2rem; }
.collection-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.collection-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.collection-features {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.collection-features span {
  background: var(--light);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.5px;
}
.collection-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-dark);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 4px;
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author strong {
  display: block;
  color: var(--dark);
  font-size: 0.9rem;
}
.testimonial-author span {
  color: var(--text-light);
  font-size: 0.8rem;
}

/* Trust */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.trust-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: var(--transition);
}
.trust-card:hover { border-color: var(--gold); }
.trust-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.trust-card p { color: var(--text-light); font-size: 0.85rem; }
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.badge {
  background: var(--light);
  padding: 0.6rem 1.2rem;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.5px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Tech */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.tech-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 2px;
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}
.tech-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.tech-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.tech-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

/* Footer */
.footer { padding: 5rem 0 2rem; color: rgba(255, 255, 255, 0.65); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 3px;
}
.footer-logo span { color: var(--gold); }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-links h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 1px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 1px;
}
.footer-contact address { font-style: normal; font-size: 0.85rem; line-height: 1.7; }
.footer-contact a { color: var(--gold); text-decoration: none; }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.footer-copy { font-size: 0.78rem; color: rgba(255, 255, 255, 0.35); }

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .hero-stats { gap: 1.5rem; }
  .stat-number { font-size: 1.5rem; }
  .container { padding: 0 1.2rem; }
  .section-padding { padding: 4rem 0; }
  .collection-grid, .values-grid, .tech-grid, .testimonials-grid, .trust-grid {
    grid-template-columns: 1fr;
  }
}
.nav-menu.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%; left: 0;
  width: 100%;
  background: var(--dark);
  padding: 2rem;
}
