@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --black: #050506;
  --soft-black: #0c0c0f;
  --panel: #121217;
  --silver: #d8d8dc;
  --bright-silver: #f1f1f3;
  --muted: #aaaab3;
  --purple: #55436d;
  --purple-light: #8b73a7;
  --line: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--silver);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.96) 0%,
      rgba(0, 0, 0, 0.82) 42%,
      rgba(0, 0, 0, 0.48) 100%
    ),
    url("assets/banner temp.png") center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(1400px, 92%);
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.nav-logo {
  width: 105px;
  height: 105px;
  object-fit: contain;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: 38px;
}

.nav-links a {
  position: relative;
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--purple-light);
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.hero-content {
  width: min(1400px, 92%);
  margin: auto;
  padding: 80px 0 120px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--purple-light);
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--bright-silver);
  font-family: 'Cinzel', serif;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.hero-text {
  max-width: 650px;
  margin: 32px 0 0;
  color: #c7c7cd;
  font-size: 1.08rem;
  font-weight: 300;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.button {
  display: inline-block;
  padding: 14px 26px;
  border: 1px solid var(--line);
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--purple);
  border-color: var(--purple);
  color: white;
}

.button.primary:hover {
  background: var(--purple-light);
  border-color: var(--purple-light);
}

.button.secondary {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
}

.button.secondary:hover {
  border-color: var(--purple-light);
}

.notice {
  width: min(1100px, 88%);
  margin: -55px auto 0;
  padding: 34px 48px;
  position: relative;
  z-index: 2;
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 2px solid var(--purple-light);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  text-align: center;
}

.notice h2 {
  margin: 0 0 10px;
  color: var(--bright-silver);
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.notice p {
  max-width: 750px;
  margin: 0 auto;
  color: var(--muted);
}

.section {
  width: min(1200px, 88%);
  margin: 0 auto;
  padding: 120px 0;
}

.section h2 {
  max-width: 850px;
  margin: 0 0 28px;
  color: var(--bright-silver);
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.15;
}

.section > p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split > p {
  font-size: 1.08rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.card {
  min-height: 260px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      145deg,
      rgba(85, 67, 109, 0.16),
      rgba(18, 18, 23, 0.95)
    );
  border: 1px solid var(--line);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 55px;
  height: 2px;
  background: var(--purple-light);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 115, 167, 0.5);
}

.card h3 {
  margin: 0 0 18px;
  color: var(--bright-silver);
  font-family: 'Cinzel', serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.card p {
  color: var(--muted);
}

.banner-section {
  width: 100%;
  padding: 130px max(6%, calc((100% - 1200px) / 2));
  background:
    linear-gradient(
      rgba(5, 5, 6, 0.84),
      rgba(5, 5, 6, 0.92)
    ),
    url("assets/banner temp.png") center / cover no-repeat;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact {
  text-align: center;
}

.contact h2,
.contact > p {
  margin-left: auto;
  margin-right: auto;
}

.contact .button {
  margin-top: 24px;
}

footer {
  padding: 35px 6%;
  border-top: 1px solid var(--line);
  color: #707078;
  text-align: center;
  font-size: 0.8rem;
}

@media (max-width: 800px) {
  .nav {
    padding: 18px 0;
  }

  .nav-logo {
    width: 78px;
    height: 78px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: 0.65rem;
  }

  .hero {
    min-height: 90vh;
  }

  .hero-content {
    padding: 80px 0 130px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .notice {
    padding: 30px 24px;
  }

  .section {
    padding: 85px 0;
  }

  .split,
  .cards {
    grid-template-columns: 1fr;
  }

  .split {
    gap: 20px;
  }

  .card {
    min-height: auto;
  }
}

@media (max-width: 550px) {
  .nav-links a:nth-child(2),
  .nav-links a:nth-child(3) {
    display: none;
  }

  .hero-content {
    padding-top: 60px;
  }

  .buttons {
    flex-direction: column;
  }

  .button {
    text-align: center;
  }
}
.nav-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-links a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: var(--bright-silver);
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}
.social-links a:hover {
  color: white;
  border-color: var(--purple-light);
  background: var(--purple);
  transform: translateY(-2px);
}