.traci-header {
  background: #2b160d;
  color: #d8b982;
  font-family: "Cormorant Garamond", Georgia, serif;
}
.top-bar {
  height: 68px;
  padding: 0 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1c0d08;
  border-bottom: 1px solid rgba(216, 185, 130, 0.25);
  font-size: 22px;
}
.top-links {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 18px;
}
.top-links a,
.main-nav a {
  color: #d8b982;
  text-decoration: none;
}
.hero-brand {
  position: relative;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(116, 63, 31, 0.75), transparent 58%),
    linear-gradient(135deg, #1f0f08, #4a2412 55%, #2a1309);
}
.hero-brand::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.25;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.small-title {
  font-size: 52px;
  letter-spacing: 26px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hero-content h1 {
  margin: 0;
  font-size: 145px;
  font-weight: 400;
  letter-spacing: 28px;
  line-height: 0.9;
}
.divider {
  width: 640px;
  height: 1px;
  background: linear-gradient(to right, transparent, #d8b982, transparent);
  margin: 35px auto 25px;
}
.hero-content h2 {
  font-size: 38px;
  font-weight: 400;
  margin: 0 0 12px;
  color: #EDE5D8;
}
.hero-content p {
  font-family: "Parisienne", cursive;
  font-size: 34px;
  color: #f0d6a2;
  margin: 0;
}
.quill-mark {
  position: absolute;
  right: 12%;
  top: 28%;
  font-size: 170px;
  color: rgba(216, 185, 130, 0.65);
  transform: rotate(-18deg);
}
.main-nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 58px;
  background: #1c0d08;
  border-top: 1px solid rgba(216, 185, 130, 0.25);
  font-size: 23px;
  text-transform: uppercase;
}
.main-nav a:hover,
.top-links a:hover {
  color: #f3eee6;
}

@media (max-width: 900px) {
  .top-bar {
    height: auto;
    padding: 20px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .hero-brand {
    min-height: 420px;
    padding: 40px 20px;
  }
  .small-title {
    font-size: 30px;
    letter-spacing: 14px;
  }
  .hero-content h1 {
    font-size: 78px;
    letter-spacing: 12px;
  }
  .divider {
    width: 80%;
  }
  .hero-content h2 {
    font-size: 28px;
  }
  .hero-content p {
    font-size: 28px;
  }
  .quill-mark {
    display: none;
  }
  .main-nav {
    height: auto;
    padding: 22px;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 18px;
  }
}