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

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: #000;
  color: #f5f5f5;
  line-height: 1.7;
  overflow-x: hidden;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 82px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(20, 20, 20, 0.98) 100%
  );
  backdrop-filter: blur(10px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 90px;
  width: auto;
  padding: 5px 0;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.5rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  color: #f5f5f5;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #f4e5c3);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #d4af37;
}

.nav-links a:hover:after,
.nav-links a.active:after {
  width: 100%;
}

.burger-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
}

.burger-btn span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background 0.3s ease;
}

.burger-btn.active span {
  background: #d4af37;
}

.burger-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.content-section {
  padding: 5rem 5%;
  background: #050505;
}

.content-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 3rem;
  align-items: center;
}

.content-card {
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 26px;
  background: rgba(18, 18, 18, 0.9);
  padding: 2.4rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.content-card h2,
.journal-card h2 {
  color: #d4af37;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.content-card p {
  color: #d8d8d8;
  margin-bottom: 1rem;
}

.about-highlights {
  display: grid;
  gap: 1rem;
}

.highlight-item {
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  padding: 1.4rem;
}

.highlight-item span {
  display: block;
  color: #d4af37;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.highlight-item strong {
  color: #fff;
  font-size: 1.2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-top: 3rem;
}

.value-card,
.journal-card {
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(24, 24, 24, 0.96),
    rgba(10, 10, 10, 0.96)
  );
  padding: 1.8rem;
}

.value-card i {
  color: #d4af37;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.value-card h3,
.journal-card h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
}

.value-card p,
.journal-card p {
  color: #bfbfbf;
}

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

.journal-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
}

.journal-date {
  color: #d4af37;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.journal-card p {
  margin-bottom: 1.3rem;
}

.journal-link {
  margin-top: auto;
  color: #d4af37;
  font-weight: 700;
  text-decoration: none;
}

.journal-link:hover {
  color: #f4e5c3;
}

.footer {
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  padding: 4rem 5% 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: #d4af37;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 500;
}

.footer-section p,
.footer-section a {
  color: #c9b580;
  text-decoration: none;
  display: block;
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #d4af37;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  color: #888;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  position: relative;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.footer-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #d4af37;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #d4af37;
  transform: translateY(-2px);
}

.footer-links a:hover::after {
  width: 100%;
}

@media (max-width: 900px) {
  .navbar {
    min-height: 72px;
    padding: 0 1rem;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem;
    background: rgba(5, 5, 5, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 12px;
  }

  .nav-links a:hover {
    background: rgba(212, 175, 55, 0.12);
  }

  .nav-links a:after {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  body.menu-open {
    overflow: hidden;
  }

  .about-grid,
  .values-grid,
  .journal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .logo img {
    height: 52px;
    width: auto;
  }
}

@media (max-width: 640px) {
  .content-section {
    padding: 3rem 1rem;
  }

  .content-card,
  .value-card,
  .journal-card {
    padding: 1.4rem;
  }
}
