/* Public top navigation + hero title polish only. */

.site-header {
  padding: 12px 3.5vw;
  gap: 18px;
  background: rgba(7,7,10,.94);
  border-bottom-color: rgba(217,185,111,.20);
}

.site-header .brand,
.site-header .site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(217,185,111,.72);
  border-radius: 11px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.14), transparent 30%),
    linear-gradient(112deg,#5f6670 0%,#474d56 48%,#323740 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    inset 0 -1px 0 rgba(0,0,0,.30),
    0 4px 11px rgba(0,0,0,.30),
    0 0 8px rgba(217,185,111,.10);
  color: #fff0c8;
  font-weight: 950;
  line-height: 1;
  text-shadow:
    0 1px 0 rgba(73,44,17,.95),
    0 0 4px rgba(240,108,255,.26);
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.site-header .brand {
  flex: 0 0 auto;
  padding: 0 18px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.12rem,1.55vw,1.42rem);
  letter-spacing: .075em;
  white-space: nowrap;
  background-image:
    linear-gradient(180deg,#fffdf6 0%,#fff0c8 18%,#f1d18d 38%,#c8933e 56%,#efd38a 75%,#fff8df 100%),
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.14), transparent 30%),
    linear-gradient(112deg,#5f6670 0%,#474d56 48%,#323740 100%);
  background-size: 100% 100%,100% 100%,100% 100%;
  background-origin: border-box;
  background-clip: text,padding-box,padding-box;
  -webkit-background-clip: text,padding-box,padding-box;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: .28px rgba(255,244,210,.64);
}

.site-header .site-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: inherit;
  font-size: 1rem;
}

.site-header .site-nav a {
  padding: 0 12px;
  white-space: nowrap;
  letter-spacing: .01em;
  color: #ffe7f7;
  border-color: rgba(217,185,111,.54);
  text-shadow:
    0 1px 0 rgba(58,32,19,.92),
    0 0 4px rgba(240,108,255,.36);
}

.site-header .site-nav a:hover,
.site-header .brand:hover {
  transform: translateY(-1px);
  border-color: #f1d18d;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.20),
    0 5px 14px rgba(0,0,0,.34),
    0 0 10px rgba(217,185,111,.20),
    0 0 8px rgba(240,108,255,.14);
}

.hero {
  max-width: 1320px;
}

.hero h1 {
  max-width: none;
  width: auto;
  white-space: nowrap;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3rem,7.35vw,7.45rem);
  line-height: .95;
  letter-spacing: .02em;
  color: #fff2c8;
  background: linear-gradient(
    180deg,
    #fffdf6 0%,
    #fff0c8 17%,
    #f1d18d 36%,
    #c8933e 54%,
    #efd38a 72%,
    #fff8df 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: .55px rgba(255,244,210,.72);
  filter:
    drop-shadow(0 1px 0 rgba(255,247,220,.28))
    drop-shadow(0 3px 0 rgba(75,45,18,.95))
    drop-shadow(0 8px 13px rgba(0,0,0,.54))
    drop-shadow(0 0 14px rgba(238,199,112,.22));
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .site-header .site-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .hero h1 {
    font-size: clamp(2.6rem,9.5vw,5.4rem);
  }
}

@media (max-width: 620px) {
  .site-header .brand,
  .site-header .site-nav a {
    min-height: 39px;
  }
  .site-header .site-nav {
    gap: 7px;
  }
  .site-header .site-nav a {
    padding: 0 10px;
    font-size: .92rem;
  }
  .hero h1 {
    font-size: clamp(2.2rem,10.8vw,3.8rem);
    letter-spacing: 0;
  }
}
