:root {
  --bg: #0d0d0d;
  --fg: #e8e0d4;
  --fg-muted: #a09585;
  --rust: #c45e2c;
  --rust-light: #e07b45;
  --iron: #3a3632;
  --iron-light: #5a5550;
  --charcoal: #1a1816;
  --warm-white: #f5efe6;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, #0d0d0d 0%, #1a1210 40%, #2a1a12 70%, #0d0d0d 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(196, 94, 44, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(196, 94, 44, 0.05) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

.hero-location {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--warm-white);
  margin-bottom: 2rem;
}

.hero-tagline {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

.hero-accent {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.15;
}

.hero-icon {
  width: 200px;
  height: 200px;
}

/* ========== CRAFT ========== */
.craft {
  padding: 8rem 2rem;
  background: var(--charcoal);
  border-top: 1px solid rgba(196, 94, 44, 0.15);
}

.craft-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.craft-text h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  color: var(--warm-white);
  margin-bottom: 1.5rem;
}

.craft-text p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.craft-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 0.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--iron);
}

.stat:last-child {
  border-bottom: none;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.4rem;
}

.stat-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--fg);
}

/* ========== PRODUCTS ========== */
.products {
  padding: 8rem 2rem;
  background: var(--bg);
}

.products-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  color: var(--warm-white);
  margin-bottom: 4rem;
}

.products-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--charcoal);
  border: 1px solid var(--iron);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.product-card:hover {
  border-color: var(--rust);
  transform: translateY(-4px);
}

.product-card-large {
  grid-column: span 3;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  background: linear-gradient(135deg, var(--charcoal) 0%, rgba(196, 94, 44, 0.08) 100%);
  border-color: var(--rust);
}

.product-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.product-card-large .product-icon {
  font-size: 3rem;
  margin-bottom: 0;
  padding-top: 0.3rem;
}

.product-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--warm-white);
  margin-bottom: 0.75rem;
}

.product-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========== PROCESS ========== */
.process {
  padding: 8rem 2rem;
  background: var(--charcoal);
  border-top: 1px solid var(--iron);
}

.process-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.process h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--warm-white);
  margin-bottom: 4rem;
  text-align: center;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.process-step {
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  color: var(--rust);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--warm-white);
  margin-bottom: 0.75rem;
}

.process-step p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ========== CLOSING ========== */
.closing {
  padding: 10rem 2rem;
  background: linear-gradient(180deg, var(--bg) 0%, #1a1210 50%, var(--bg) 100%);
  text-align: center;
}

.closing-inner {
  max-width: 650px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--warm-white);
  margin-bottom: 1.5rem;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 2rem;
}

.closing-location {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--rust);
  letter-spacing: 0.05em;
}

/* ========== FOOTER ========== */
.site-footer {
  padding: 3rem 2rem;
  background: var(--bg);
  border-top: 1px solid var(--iron);
  text-align: center;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.footer-contact {
  font-size: 0.9rem;
  color: var(--rust);
  margin-bottom: 0.5rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .craft-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .product-card-large {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-accent {
    display: none;
  }

  .hero {
    min-height: 90vh;
  }

  .craft,
  .products,
  .process {
    padding: 5rem 1.5rem;
  }

  .closing {
    padding: 6rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }
}