* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background: linear-gradient(165deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
  font-family: 'Archivo', 'Helvetica Neue', sans-serif;
  color: #e8e8e8;
  overflow-x: hidden;
}

.metal-grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  z-index: 1;
}

.spark {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #ff9500;
  border-radius: 50%;
  box-shadow: 0 0 10px #ff9500, 0 0 20px #ff6a00;
  animation: spark-fall 2s ease-in infinite;
}

@keyframes spark-fall {
  0% { transform: translateY(0) scale(1); opacity: 1; }
  100% { transform: translateY(100px) scale(0); opacity: 0; }
}

@keyframes hero-glow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes slide-up {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes line-expand {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.hero-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 0%, #a8a8a8 40%, #d4af37 60%, #ffffff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: hero-glow 4s ease-in-out infinite;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, transparent 100%);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #d4af37 0%, #8b7225 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.2rem;
  color: #0a0a0a;
}

.logo-text {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-location {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 3rem 4rem;
  position: relative;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-line {
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, transparent);
  margin-bottom: 2rem;
  animation: line-expand 1s ease forwards;
  animation-delay: 0.5s;
  transform-origin: left;
  transform: scaleX(0);
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin-bottom: 3rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2.5rem;
  background: transparent;
  border: 2px solid #d4af37;
  color: #d4af37;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-button:hover {
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(212,175,55,0.5), transparent);
}

/* Services Section */
.services {
  padding: 6rem 3rem;
  position: relative;
  z-index: 2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: linear-gradient(145deg, rgba(40,40,40,0.6) 0%, rgba(20,20,20,0.8) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 60px rgba(212, 175, 55, 0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  filter: grayscale(1) brightness(1.5);
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.service-desc {
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Divider */
.divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
  margin: 4rem auto;
  max-width: 1200px;
}

/* Materials & Finishes Section */
.materials-section {
  padding: 4rem 3rem;
  position: relative;
  z-index: 2;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 4rem;
}

.subsection-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.subsection-desc {
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.material-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.material-chip {
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
  transition: all 0.3s ease;
}

.material-chip.primary {
  border-color: rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
  color: #d4af37;
}

.finishes-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.finish-tag {
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(80,80,80,0.3) 0%, rgba(40,40,40,0.5) 100%);
  border-left: 3px solid #d4af37;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

/* Quote Form Section */
.quote-section {
  padding: 6rem 3rem 8rem;
  position: relative;
  z-index: 2;
}

.quote-container {
  max-width: 800px;
  margin: 0 auto;
}

.quote-header {
  text-align: center;
  margin-bottom: 3rem;
}

.quote-subtitle {
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  color: #e8e8e8;
  font-size: 1rem;
  font-family: 'Archivo', sans-serif;
  transition: all 0.3s ease;
  outline: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: #d4af37;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.quote-form select {
  color: rgba(255,255,255,0.3);
}

.quote-form select.has-value {
  color: #e8e8e8;
}

.submit-btn {
  width: 100%;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, #d4af37 0%, #b8942e 100%);
  color: #0a0a0a;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.error-message {
  padding: 1rem;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: #fca5a5;
  font-size: 0.9rem;
  display: none;
}

.error-message.visible {
  display: block;
}

.success-message {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(145deg, rgba(40,40,40,0.6) 0%, rgba(20,20,20,0.8) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: none;
}

.success-message.visible {
  display: block;
}

.success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37 0%, #8b7225 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.success-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.success-desc {
  color: rgba(255,255,255,0.6);
}

/* Footer */
footer {
  padding: 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 2;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.02) 0px,
    rgba(255,255,255,0.02) 1px,
    transparent 1px,
    transparent 3px
  );
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-brand {
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.footer-location {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.footer-contact {
  display: flex;
  gap: 3rem;
  font-size: 0.85rem;
}

.contact-label {
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .hero {
    padding: 6rem 1.5rem 4rem;
  }

  .services,
  .materials-section,
  .quote-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-contact {
    flex-direction: column;
    gap: 1.5rem;
  }
}
