
:root {
  --se-gold: #d5a82c;
  --se-gold-light: #f2d46b;
  --se-gold-dark: #a87b0b;
  --se-black: #070708;
  --se-black-soft: #0d0d0f;
  --se-white: #ffffff;
  --se-text: #e8e5dd;
  --se-header-height: 88px;}


.se-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  height: var(--se-header-height);

  background:
    linear-gradient(
      180deg,
      rgba(4, 4, 5, 0.96) 0%,
      rgba(5, 5, 6, 0.84) 70%,
      rgba(5, 5, 6, 0.25) 100%
    );

  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(213, 168, 44, 0.12);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.se-header__inner {
  width: min(100% - 48px, 1320px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.se-header__brand {
  flex-shrink: 0;
}
.se-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.se-brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 500;
  color: #1c1607;
  background:
    radial-gradient(
      circle at 35% 30%,
      #fff1a7 0%,
      #e8c44f 38%,
      #b68413 100%
    );
  border: 1px solid rgba(255, 225, 111, 0.65);
  box-shadow:
    0 0 0 1px rgba(213, 168, 44, 0.15),
    0 5px 20px rgba(213, 168, 44, 0.20);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.se-brand:hover .se-brand__mark {
  transform: rotate(-5deg) scale(1.05);
  box-shadow:
    0 0 0 1px rgba(213, 168, 44, 0.35),
    0 8px 28px rgba(213, 168, 44, 0.35);
}
.se-brand__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.se-brand__name {
  color: #f3e5b5;
  font-family:
    Georgia,
    "Times New Roman",
    serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 2.8px;
  line-height: 1;
  white-space: nowrap;
}
.se-brand__tagline {
  color: rgba(229, 224, 211, 0.62);
  font-family:
    Arial,
    Helvetica,
    sans-serif;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 2.8px;
  white-space: nowrap;
}
.se-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.se-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}
.se-navigation li {
  margin: 0;
  padding: 0;
}
.se-navigation a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15px;
  white-space: nowrap;
  transition:
    color 0.25s ease;
}
.se-navigation a::after {
    content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--se-gold),
      transparent
    );
  transition:
    width 0.3s ease;
}
.se-navigation a:hover {
  color: #f4d978;
}
.se-navigation a:hover::after {
  width: 100%;
}
.se-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.se-audio-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #e7c45b;
  background: rgba(213, 168, 44, 0.03);
  border: 1px solid rgba(213, 168, 44, 0.35);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}
.se-audio-button:hover {
  background: rgba(213, 168, 44, 0.12);
  border-color: rgba(213, 168, 44, 0.8);
  transform: scale(1.06);
}
.se-audio-icon {
  font-size: 18px;
  line-height: 1;
  transform: rotate(-10deg);
}
.se-cta {
  min-height: 40px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #171205;
  background:
    linear-gradient(
      135deg,
      #f3d66b 0%,
      #d6a72c 50%,
      #bb8915 100%
    );
  border: 1px solid rgba(255, 222, 111, 0.7);
  border-radius: 24px;
  text-decoration: none;
  font-family:
    Arial,
    Helvetica,
    sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
  box-shadow:
    0 5px 20px rgba(213, 168, 44, 0.18);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}
.se-cta:hover {
  color: #100d04;
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow:
    0 8px 28px rgba(213, 168, 44, 0.35);
}
.se-cta__icon {
  font-size: 18px;
  line-height: 1;
}
.se-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(213, 168, 44, 0.35);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.se-menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: #e6c75d;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.se-mobile-actions {
  display: none;
}
.user-logged-in header#site-header {
    position: unset;
}

@media (max-width: 1200px) {
  .se-header__inner {
    width: min(100% - 36px, 1150px);
    gap: 20px;
  }
  .se-navigation ul {
    gap: 20px;
  }
  .se-navigation a {
    font-size: 13px;
  }
  .se-brand__name {
    font-size: 17px;
    letter-spacing: 2px;
  }
  .se-brand__tagline {
    letter-spacing: 2px;
  }
  .se-cta {
    padding: 0 18px;
    font-size: 12px;
  }
}

@media (max-width: 1024px) {
  .se-header {
    height: 76px;
  }
  .se-header__inner {
    width: calc(100% - 32px);
  }

  .se-header__actions {
    display: none;
  }

  .se-menu-toggle {
    display: flex;
  }
  .se-navigation {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
    background:
      linear-gradient(
        145deg,
        rgba(15, 15, 17, 0.98),
        rgba(7, 7, 8, 0.98)
      );
    border:
      1px solid rgba(213, 168, 44, 0.18);
    border-radius: 14px;
    box-shadow:
      0 25px 70px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(20px);
  }
  .se-navigation.is-open {
    display: flex;
  }
  .se-navigation ul {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .se-navigation li {
    border-bottom:
      1px solid rgba(255, 255, 255, 0.06);
  }
  .se-navigation li:last-child {
    border-bottom: 0;
  }
  .se-navigation a {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
  }
  .se-navigation a::after {
    display: none;
  }

  .se-mobile-actions {
    margin-top: 20px;
    padding-top: 20px;
    border-top:
      1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .se-mobile-actions .se-cta {
    flex: 1;
  }

}

@media (max-width: 600px) {
  .se-header {
    height: 70px;
  }
  .se-header__inner {
    width: calc(100% - 24px);
  }
  .se-brand {
    gap: 10px;
  }
  .se-brand__mark {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }
  .se-brand__name {
    font-size: 14px;
    letter-spacing: 1.7px;
  }
  .se-brand__tagline {
    font-size: 6.5px;
    letter-spacing: 1.8px;
  }
  .se-navigation {
    top: 70px;
    left: 10px;
    right: 10px;
    padding: 20px;
  }
  .se-menu-toggle {
    width: 40px;
    height: 40px;
  }

}

@media (max-width: 380px) {
  .se-brand__tagline {
    display: none;
  }
  .se-brand__name {
    font-size: 13px;
  }
}