:root {
  color-scheme: dark;
  --bg: #040404;
  --panel: rgba(24, 20, 20, 0.85);
  --panel-strong: rgba(255, 235, 176, 0.08);
  --text: #f7efdc;
  --muted: #d9cba7;
  --accent: #d4af37;
  --accent-2: #f2d16b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.05), transparent 25%),
    linear-gradient(180deg, #020202 0%, #090909 100%);
  color: var(--text);
  overflow: hidden;
}

.slides {
  height: 100vh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.slide {
  min-height: 100vh;
  padding: 48px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hero-slide {
  background: radial-gradient(circle at top center, rgba(212, 175, 55, 0.15), transparent 25%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.95), rgba(5, 5, 5, 0.99));
}

.hero-content,
.content-full {
  width: min(100%, 1000px);
  padding: 0 24px;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-content {
  position: relative;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 24px;
}

.hero-logo {
  width: 156px;
  margin-bottom: 20px;
  border-radius: 16px;
  filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.4));
}


.eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.8rem;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 18px;
}

.foas-title {
  font-size: clamp(2.24rem, 4vw, 3.2rem);
}

.hero-copy,
.content-full p,
.content-full li {
  color: var(--muted);
  line-height: 1.7;
}

.scroll-hint {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 0.7rem;
  color: rgba(248, 250, 252, 0.9);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.95;
  z-index: 20;
  animation: floatHint 1.8s ease-in-out infinite, fadeHint 1.8s ease-in-out infinite;
}

.scroll-hint.hidden {
  display: none;
}

@keyframes floatHint {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

@keyframes fadeHint {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

.social-links {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 24px;
}

.social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--text);
  transition: transform 0.2s ease, background 0.2s ease;
}

.icon-link:hover {
  transform: translateY(-2px);
  background: rgba(212, 175, 55, 0.22);
}

.icon-link svg {
  width: 20px;
  height: 20px;
  fill: var(--text);
}

.agenda-list,
.services-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.agenda-list article,
.services-grid article {
  padding: 18px;
  border-radius: 16px;
  background: var(--panel-strong);
  border: 1px solid rgba(212, 175, 55, 0.12);
}

.contact-card ul {
  padding-left: 18px;
}

.dot-nav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.dot.active {
  background: var(--accent);
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.9);
}

@media (max-width: 760px) {
  .slide {
    padding: 24px 14px;
  }

  .hero-content,
  .content-full {
    padding: 0 16px;
  }

  .agenda-list,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .dot-nav {
    right: 10px;
  }
}
