/* build 2025.10.23: unique pass, fonts & minor palette tweak */
:root{/* tokens reserved */}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #6c5ee7;
  --primary-dark: #5b4dc4;
  --secondary: #00ba94;
  --dark: #0d0f0d;
  --dark-gray: #1a1c1a;
  --mid-gray: #2d2f2d;
  --light-gray: #3d3f3d;
  --text: #ffffff;
  --text-muted: #a0a2a0;
  --accent: #fd7ba8;
  --success: #00ba94;
  --gradient: linear-gradient(135deg, #6680ea 0%, #764da2 100%);
  --gradient-alt: linear-gradient(135deg, #f095fb 0%, #f5596c 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.nav-logo a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  text-decoration: none;
}

.nav-logo i {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient);
  color: var(--text);
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 92, 231, 0.6);
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6680ea 0%, #764da2 50%, #f095fb 100%);
  opacity: 0.15;
  animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(5deg);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, #a0a2a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-cta {
  margin-top: 2rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: var(--primary);
  animation: bounce 2s infinite;
  cursor: pointer;
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-muted);
}

.versatile-styling {
  padding: 8rem 0;
  background: var(--dark-gray);
}

.styling-grid {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.styling-card {
  background: var(--mid-gray);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.styling-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
}

.styling-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--light-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0;
}

.image-placeholder i {
  font-size: 3rem;
  color: var(--primary);
}

.prompt-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

.styling-info {
  padding: 1.5rem;
}

.styling-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.styling-info p {
  color: var(--text-muted);
}

.inclusivity {
  padding: 8rem 0;
  background: var(--dark);
}

.inclusivity-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.inclusivity-icon {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 2rem;
}

.inclusivity-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.inclusivity-lead {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.inclusivity-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.value-item {
  background: var(--mid-gray);
  padding: 2rem;
  border-radius: 15px;
  transition: transform 0.3s;
}

.value-item:hover {
  transform: translateY(-5px);
}

.value-item i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.value-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.value-item p {
  color: var(--text-muted);
}

.inclusivity-quote {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-muted);
  border-left: 4px solid var(--primary);
  padding-left: 2rem;
  margin-top: 3rem;
  text-align: left;
}

.material-blend {
  padding: 8rem 0;
  background: var(--dark-gray);
}

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

.material-showcase .image-placeholder.large {
  height: 500px;
}

.material-content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.material-intro {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.material-specs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.spec-item {
  display: flex;
  gap: 1.5rem;
  background: var(--mid-gray);
  padding: 1.5rem;
  border-radius: 15px;
  transition: transform 0.3s;
}

.spec-item:hover {
  transform: translateX(10px);
}

.spec-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.spec-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.spec-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.gift-guide {
  padding: 8rem 0;
  background: var(--dark);
}

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

.gift-card {
  background: var(--mid-gray);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gift-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
}

.gift-card.featured {
  border: 2px solid var(--primary);
}

.gift-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 1;
}

.gift-image {
  height: 250px;
}

.gift-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.5rem;
}

.gift-card > p {
  padding: 0 1.5rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.gift-features {
  list-style: none;
  padding: 0 1.5rem 1.5rem;
}

.gift-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.gift-features i {
  color: var(--success);
}

.contact-section {
  padding: 8rem 0;
  background: var(--dark-gray);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form-container h2,
.showroom-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-form-container p,
.showroom-info p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-group label i {
  color: var(--primary);
}

.form-group input,
.form-group textarea {
  background: var(--mid-gray);
  border: 2px solid var(--light-gray);
  color: var(--text);
  padding: 1rem;
  border-radius: 10px;
  font-size: 1rem;
  font-family: "Inter", inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.showroom-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.detail-item {
  display: flex;
  gap: 1rem;
  background: var(--mid-gray);
  padding: 1.5rem;
  border-radius: 10px;
}

.detail-item i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: 0.2rem;
}

.detail-item strong {
  display: block;
  margin-bottom: 0.3rem;
}

.detail-item p {
  margin: 0;
}

.showroom-map {
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
}

.newsletter {
  padding: 6rem 0;
  background: var(--dark);
}

.newsletter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background: var(--gradient);
  padding: 3rem;
  border-radius: 20px;
}

.newsletter-text h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  min-width: 400px;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
}

.newsletter-form input:focus {
  outline: none;
}

.newsletter-form .btn {
  background: var(--dark);
}

.newsletter-form .btn:hover {
  background: var(--dark-gray);
}

.footer {
  background: var(--dark-gray);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--light-gray);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  text-decoration: none;
}

.footer-logo i {
  color: var(--primary);
}

.footer-col p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--mid-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--light-gray);
  color: var(--text-muted);
}

.privacy-page {
  padding: 8rem 0 4rem;
  min-height: 100vh;
}

.privacy-header {
  text-align: center;
  margin-bottom: 4rem;
}

.privacy-header i {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.privacy-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.last-updated {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-section {
  background: var(--dark-gray);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
}

.privacy-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.privacy-section h3 {
  font-size: 1.3rem;
  margin: 1.5rem 0 1rem;
}

.privacy-section p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.privacy-section ul {
  list-style: none;
  margin-left: 1rem;
}

.privacy-section ul li {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.privacy-section ul li::before {
  content: "•";
  color: var(--primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.contact-info {
  background: var(--mid-gray);
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 1rem;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.contact-info i {
  color: var(--primary);
}

.privacy-footer {
  text-align: center;
  margin-top: 3rem;
}

@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: calc(100vh - 70px);
    background: var(--dark-gray);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    transition: right 0.3s;
    border-left: 1px solid var(--light-gray);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-toggle {
    display: block;
  }

  .material-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    min-width: 100%;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .styling-grid,
  .gift-grid {
    grid-template-columns: 1fr;
  }

  .inclusivity-values {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.5rem;
  }
}
