:root {
  --bg: #090909;
  --bg-soft: #121212;
  --text: #f5f5f5;
  --muted: #c9c9c9;
  --gold: #d4af37;
  --gold-strong: #e0bc4c;
  --card-border: rgba(212, 175, 55, 0.32);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.hero {
  min-height: 85vh;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.28), transparent 38%), #070707;
  border-bottom: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  right: -90px;
  top: 110px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0) 70%);
  animation: floatGlow 7s ease-in-out infinite;
  pointer-events: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-image {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.35));
}

.logo {
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1.2rem;
}

.logo span {
  color: var(--gold);
}

.hero-content {
  padding: 4rem 0 5rem;
  max-width: 760px;
}

.tag {
  display: inline-block;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.09em;
  margin-bottom: 0.7rem;
  font-size: 0.84rem;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4.1rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 640px;
}

.location {
  color: #ecd58a;
  font-weight: 700;
  margin: 0.8rem 0 0;
}

.ui-icon {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.hero-highlights {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-highlights span {
  border: 1px solid var(--card-border);
  background: rgba(212, 175, 55, 0.08);
  color: #e9d89c;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.72rem 1.3rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--gold), var(--gold-strong));
  color: #111;
  box-shadow: 0 9px 20px rgba(212, 175, 55, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 14px 24px rgba(212, 175, 55, 0.28);
}

.btn-outline {
  color: var(--gold);
  border: 1px solid var(--gold);
}

.section {
  padding: 4.2rem 0;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 1.4rem;
}

.title-icon {
  width: 1.15rem;
  height: 1.15rem;
  margin-right: 0.35rem;
  transform: translateY(1px);
}

.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--bg-soft);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.15rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 188, 76, 0.65);
}

.card h3 {
  margin-top: 0;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card-icon {
  width: 1rem;
  height: 1rem;
}

.section-dark {
  background: #0c0c0c;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.experience-band {
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  background: linear-gradient(140deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.03));
}

.experience-band p {
  margin: 0;
  font-size: 1.02rem;
  color: #f1e3b5;
  font-weight: 600;
}

.two-columns {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1.4fr 1fr;
}

.benefits {
  margin: 0;
  padding-left: 1.1rem;
}

.benefits li {
  margin-bottom: 0.55rem;
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.list-icon {
  width: 0.95rem;
  height: 0.95rem;
  margin-top: 0.18rem;
}

.contact-card {
  background: linear-gradient(165deg, rgba(212, 175, 55, 0.09), rgba(212, 175, 55, 0.03));
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.25rem;
}

.contact-card h3 {
  margin-top: 0;
}

.contact-card a {
  color: var(--gold-strong);
  display: block;
  text-decoration: none;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-icon {
  width: 0.95rem;
  height: 0.95rem;
  margin-right: 0.42rem;
  transform: translateY(1px);
}

.contact-card a:hover {
  color: #f2d57a;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.social-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.location-contact {
  color: #e3d5a5;
  margin-top: -0.2rem;
  font-size: 0.95rem;
}

.footer {
  padding: 1.3rem 0;
  text-align: center;
  color: #b5b5b5;
  font-size: 0.93rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatGlow {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-16px);
    opacity: 1;
  }
}

@media (max-width: 850px) {
  .logo-image {
    width: 38px;
    height: 38px;
  }

  .two-columns {
    grid-template-columns: 1fr;
  }
}
