body {
  margin: 0;
  background: #050505;
  color: #f5f1e8;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  padding: 16px 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.75), transparent);
}

.navbar-brand {
  color: #f5f1e8;
  font-family: Georgia, serif;
  font-size: 30px;
  font-style: italic;
  text-decoration: none;
}

.header-links {
  display: flex;
  gap: 24px;
}

.header-links a {
  color: #f5f1e8;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../img/cover.png") center/cover no-repeat;
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.479), rgba(0,0,0,.35)),
    linear-gradient(180deg, rgba(0,0,0,.25), rgba(0, 0, 0, 0.589));
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-label,
.section-label {
  color: #c9b98f;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 8vw, 120px);
  line-height: .9;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero-title span {
  display: block;
}

.brand-title {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: clamp(44px, 5vw, 76px);
  color: #e8e1d2;
  margin-top: 28px;
}

.material-line {
  font-family: Georgia, serif;
  font-size: clamp(20px, 2.2vw, 34px);
  color: #d9d0bf;
  margin-top: 20px;
}

.hero-description {
  max-width: 560px;
  color: rgba(245,241,232,.76);
  font-size: 17px;
  line-height: 1.8;
  margin-top: 22px;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary-custom,
.btn-outline-custom {
  border-radius: 0;
  padding: 14px 32px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
}

.btn-primary-custom {
  background: #f5f1e8;
  color: #050505;
}

.btn-outline-custom {
  border: 1px solid rgba(245,241,232,.55);
  color: #f5f1e8;
}

.btn-primary-custom:hover,
.btn-outline-custom:hover {
  background: #c9b98f;
  color: #050505;
}

.scroll-indicator {
  position: absolute;
  right: 35px;
  bottom: 35px;
  z-index: 4;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: rgba(245,241,232,.65);
}

.intro-section,
.materials-section,
.cta-section {
  padding: 110px 0;
  background: #070707;
}

.intro-section h2,
.craft-section h2,
.cta-section h2 {
  font-family: Georgia, serif;
  font-size: clamp(36px, 5vw, 70px);
  font-weight: 400;
}

.intro-section p,
.craft-section p {
  color: rgba(245,241,232,.72);
  font-size: 17px;
  line-height: 1.8;
}

.material-card {
  border: 1px solid rgba(245,241,232,.14);
  padding: 38px 28px;
  min-height: 210px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.01));
  transition: .35s ease;
}

.material-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,185,143,.6);
}

.material-card h3 {
  font-family: Georgia, serif;
  font-size: 32px;
  margin-bottom: 15px;
}

.material-card p {
  color: rgba(245,241,232,.65);
  line-height: 1.7;
}

.craft-section {
  position: relative;
  min-height: 75vh;
  padding: 120px 0;
  overflow: hidden;
}

.craft-bg {
  position: absolute;
  inset: -10%;
  background: url("../img/craftsmanship.jpg") center/cover no-repeat;
  transform: scale(1.08);
  will-change: transform;
}

.craft-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.616), rgba(0, 0, 0, 0.048)),
    linear-gradient(180deg, rgba(0,0,0,.3), rgba(0, 0, 0, 0.486));
}

.craft-section .container {
  position: relative;
  z-index: 2;
}

.craft-section .section-label,
.craft-section h2,
.craft-section p,
.craft-section .text-link {
  will-change: transform, opacity;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: #c9b98f;
  text-decoration: none;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 13px;
}

.cta-box {
  text-align: center;
  padding: clamp(40px, 7vw, 85px);
  border: 1px solid rgba(245,241,232,.16);
  background: linear-gradient(135deg, rgba(201,185,143,.12), rgba(255,255,255,.02));
}

.cta-links {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 18px 36px;
  flex-wrap: wrap;
}

.cta-links a {
  color: #f5f1e8;
  text-decoration: none;
  font-size: 16px;
}

.cta-links a:hover {
  color: #c9b98f;
}

.site-footer {
  padding: 26px 0;
  text-align: center;
  background: #030303;
  border-top: 1px solid rgba(245,241,232,.1);
}

.site-footer p {
  margin: 0;
  color: rgba(245,241,232,.52);
  font-size: 14px;
}

@media (max-width: 767px) {
  .header-links {
    display: none;
  }

  .hero-content {
    padding-top: 90px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .scroll-indicator {
    display: none;
  }
}