/* ============================================
   FORT McMURRAY BUILT — Design System
   A Prestige Recognition Platform
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --black: #0A0A0A;
  --black-pure: #000000;
  --charcoal: #1A1A1A;
  --charcoal-light: #222222;
  --charcoal-mid: #2A2A2A;
  --gold: #D8C092;
  --gold-light: #E8D4AD;
  --gold-dark: #B8A070;
  --white: #F5F5F5;
  --white-muted: #CCCCCC;
  --white-soft: rgba(245, 245, 245, 0.7);

  /* Typography */
  --font-serif: 'Playfair Display', 'Georgia', serif;
  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --section-padding: 140px 0;
  --container-width: 1200px;
  --container-padding: 0 40px;

  /* Transitions */
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-medium: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.3s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--gold-light);
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

p {
  font-size: 1.05rem;
  color: var(--white-soft);
  max-width: 640px;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}

/* --- Container --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 42px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transition: left var(--transition-medium);
  z-index: 0;
}

.btn:hover {
  color: var(--black);
}

.btn:hover::before {
  left: 0;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary::before {
  background: var(--gold-light);
}

.btn-primary:hover {
  color: var(--black);
}

/* --- Fade-in Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 {
  transition-delay: 0.15s;
}

.fade-in-delay-2 {
  transition-delay: 0.3s;
}

.fade-in-delay-3 {
  transition-delay: 0.45s;
}

.fade-in-delay-4 {
  transition-delay: 0.6s;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-medium);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 40px;
  border-bottom: 1px solid rgba(216, 192, 146, 0.1);
}

.nav-logo img {
  height: 40px;
  width: auto;
  transition: height var(--transition-medium);
}

.nav.scrolled .nav-logo img {
  height: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-muted);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition-fast);
}

.nav-links a:hover {
  color: var(--gold);
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  transition: all var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Subtle gold accent lines */
.hero-bg::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse at center, rgba(216, 192, 146, 0.04) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 20%;
  left: -10%;
  width: 120%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 192, 146, 0.12), transparent);
  transform: rotate(-5deg);
}

@keyframes heroGlow {
  0% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Additional gold accent line */
.hero-line {
  position: absolute;
  bottom: 30%;
  left: -10%;
  width: 120%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 192, 146, 0.08), transparent);
  transform: rotate(3deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 40px;
}

.hero-logo {
  width: 280px;
  margin: 0 auto 60px;
  opacity: 0;
  animation: fadeInDown 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.hero h1 {
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--white-soft);
  max-width: 580px;
  margin: 0 auto 50px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s forwards;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s forwards;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: var(--section-padding);
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 192, 146, 0.15), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.95);
}

.about-image::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid rgba(216, 192, 146, 0.2);
  z-index: -1;
}

.about-text h2 {
  margin-bottom: 32px;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.9;
}

.about-meta {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(216, 192, 146, 0.15);
  display: flex;
  gap: 48px;
}

.about-meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-meta-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.about-meta-value {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
}

/* ============================================
   HONOREES SECTION
   ============================================ */
.honorees {
  padding: var(--section-padding);
  background: var(--black);
  position: relative;
}

.honorees-header {
  text-align: center;
  margin-bottom: 80px;
}

.honorees-header h2 {
  margin-bottom: 16px;
}

.honorees-header p {
  margin: 0 auto;
}

.honorees-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.honoree-card {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-medium);
}

.honoree-card:hover {
  transform: translateY(-4px);
}

.honoree-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.honoree-card:hover::before {
  opacity: 1;
}

.honoree-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
  transition: filter var(--transition-medium);
}

.honoree-card:hover .honoree-image {
  filter: grayscale(0%) contrast(1.1);
}

.honoree-info {
  padding: 36px;
}

.honoree-category {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
}

.honoree-info h3 {
  margin-bottom: 8px;
}

.honoree-title {
  font-size: 0.9rem;
  color: var(--white-muted);
  margin-bottom: 16px;
}

.honoree-desc {
  font-size: 0.95rem;
  color: var(--white-soft);
  margin-bottom: 28px;
  line-height: 1.7;
}

.honoree-info .btn {
  padding: 14px 32px;
  font-size: 0.7rem;
}

/* ============================================
   COACHING SECTION
   ============================================ */
.coaching {
  padding: 160px 0;
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.coaching::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(216, 192, 146, 0.03) 0%, transparent 70%);
}

.coaching-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.coaching h2 {
  margin-bottom: 28px;
}

.coaching p {
  margin: 0 auto 20px;
  text-align: center;
}

.coaching .btn {
  margin-top: 32px;
}

.coaching-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 40px auto 0;
  opacity: 0.4;
}

/* ============================================
   PARTNERS SECTION
   ============================================ */
.partners {
  padding: var(--section-padding);
  background: var(--black);
  position: relative;
}

.partners::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 192, 146, 0.15), transparent);
}

.partners-header {
  text-align: center;
  margin-bottom: 80px;
}

.partners-header h2 {
  margin-bottom: 20px;
}

.partners-header p {
  margin: 0 auto;
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  padding: 60px 40px;
  border: 1px solid rgba(216, 192, 146, 0.08);
  background: rgba(26, 26, 26, 0.5);
}

.partner-logo {
  height: 50px;
  width: auto;
  opacity: 0.6;
  filter: brightness(0) invert(1);
  transition: opacity var(--transition-fast);
}

.partner-logo:hover {
  opacity: 1;
}

.partner-logo.prestige {
  height: 60px;
  opacity: 0.8;
}

.partners-cta {
  text-align: center;
}

.partners-email {
  margin-top: 28px;
  font-size: 0.95rem;
  color: var(--white-soft);
  letter-spacing: 0.02em;
  text-align: center;
  max-width: none;
}

.partners-email a {
  color: var(--gold);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.partners-email a:hover {
  color: var(--gold-light);
}

/* Coming Soon State */
.coming-soon-text {
  opacity: 0.5;
  font-style: italic;
}

.btn-disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}

/* ============================================
   NOMINATION SECTION
   ============================================ */
.nomination {
  padding: var(--section-padding);
  background: var(--charcoal);
  position: relative;
}

.nomination::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 192, 146, 0.15), transparent);
}

.nomination-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.nomination-text h2 {
  margin-bottom: 20px;
}

.nomination-text p {
  line-height: 1.9;
}

.nomination-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 16px 20px;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(216, 192, 146, 0.15);
  color: var(--white);
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245, 245, 245, 0.25);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.nomination-form .btn {
  align-self: flex-start;
  margin-top: 12px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 80px 0 40px;
  background: var(--black-pure);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 192, 146, 0.2), transparent);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 60px;
}

.footer-brand img {
  height: 36px;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--white-soft);
  max-width: 300px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--white-muted);
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(216, 192, 146, 0.08);
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(245, 245, 245, 0.35);
}

.footer-social {
  display: flex;
  gap: 24px;
}

.footer-social a {
  color: var(--white-muted);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.footer-social a:hover {
  color: var(--gold);
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-medium);
}

.mobile-nav.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
}

.mobile-nav a:hover {
  color: var(--gold);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 100px 0;
    --container-padding: 0 32px;
  }

  .about-grid {
    gap: 60px;
  }

  .nomination-grid {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
    --container-padding: 0 24px;
  }

  /* Nav */
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    padding: 20px 24px;
  }

  .nav.scrolled {
    padding: 14px 24px;
  }

  /* Hero */
  .hero-logo {
    width: 200px;
    margin-bottom: 40px;
  }

  .hero-content {
    padding: 0 24px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image {
    order: -1;
    display: flex;
    justify-content: center;
  }

  .about-image img {
    max-width: 320px;
  }

  .about-meta {
    flex-direction: column;
    gap: 24px;
  }

  /* Honorees */
  .honorees-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Nomination */
  .nomination-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 48px;
  }

  .footer-links {
    flex-direction: column;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  /* Partners */
  .partners-logos {
    gap: 40px;
    padding: 40px 24px;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    width: 160px;
  }

  .btn {
    padding: 15px 32px;
    font-size: 0.75rem;
  }

  .coaching {
    padding: 100px 0;
  }
}