/* ============================================
   MECAM AWARDS — Main Stylesheet
   Figma canvas: 1920px
============================================ */
:root {
  --gold:       #E7AD3F;
  --gold-light: #FEEB94;
  --gold-mid:   #ECBB45;
  --gold-deep:  #BD7B2E;
  --burg:       #6D2312;
  --black:      #0D0D0D;
  --off:        #F8F4EE;
  --muted:      #888888;
  --border:     #E5DDD0;
  --white:      #FFFFFF;
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;
  --brand-bg: radial-gradient(70.71% 84.85% at 50% 60%, #6D2312 0%, #010101 77.4%);
  --gold-grad: linear-gradient(90deg, #ECBB45, #BD7B2E, #EACB7A, #EBA34D, #A16327, #FEEB94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  background: #0D0D0D;
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ══════════════════════════════════════
   HEADER — exact Figma spec
   1920 × 226px
   border-bottom: 1px solid #E7AD3F42
   backdrop-filter: blur(14px)
   Logo: 151×201px, left:64, top:7
   Nav items: Jost 16px/400/1.76px/#EFE3CE
   CTA: 182×35 burgundy gradient
══════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 110px;
  background: linear-gradient(180deg, rgba(13,13,13,0.96) 0%, rgba(13,13,13,0) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(231,173,63,0.2588);
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  gap: 24px;
}

/* Logo block — fixed width so it never pushes into nav */
.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  gap: 0;
  min-width: 0;
}
.brand-logo img {
  width: auto;
  height: 96px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-logo-divider { display: none; }
.brand-logo-text { display: none; }

/* Nav right: takes remaining space, aligns right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: nowrap;
}
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 1.76px;
  text-transform: uppercase;
  color: #EFE3CE;
  white-space: nowrap;
  position: relative;
  transition: color .25s ease;
}
.nav-links a:hover,
.nav-links a.active { color: #FEEB94; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: #E7AD3F;
}

/* CTA button */
.nav-cta { flex-shrink: 0; }
.nav-cta .btn-nav {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 35px;
  background: linear-gradient(100.39deg, #6D2312 0%, #8A3015 100%);
  border: 1px solid #E7AD3F;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 10.5px;
  line-height: 15px;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  color: #FEEB94;
  text-decoration: none;
  white-space: nowrap;
  transition: filter .2s ease;
}
.nav-cta .btn-nav:hover { filter: brightness(1.2); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 1.5px;
  background: #EFE3CE;
  transition: all .3s ease;
  display: block;
}

/* ── Footer ── */
.site-footer { background: var(--black); padding: 80px 0 0; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-logo { height: 70px; margin-bottom: 18px; object-fit: contain; }
.footer-about p { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.4); max-width: 320px; }
.footer-social { display: flex; gap: 14px; margin-top: 22px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(231,173,63,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 13px;
  transition: all .25s ease;
}
.footer-social a:hover { background: var(--gold); color: var(--black); }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.footer-col ul li { margin-bottom: 13px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color .2s ease; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-col .contact-line { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 13px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 0; font-size: 11px; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 12px;
}
.footer-bottom .legal-links { display: flex; gap: 22px; }
.footer-bottom .legal-links a:hover { color: var(--gold-light); }

/* ── Page Banner ── */
.page-banner {
  background: var(--brand-bg);
  position: relative;
  padding: 300px 0 90px;
  text-align: center;
  overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(231,173,63,0.04) 20px, rgba(231,173,63,0.04) 21px);
}
.page-banner-inner { position: relative; z-index: 1; }
.page-banner h1 { font-size: clamp(38px,5.5vw,64px); color: var(--white); font-family: var(--font-display); }
.page-banner .crumb { font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; margin-top: 14px; }
.page-banner .crumb span { color: var(--gold); }

/* ── Sections ── */
.section { padding: 110px 0; }
.section.dark { background: #111; }
.section.light { background: var(--off); color: var(--black); }

/* ── Typography ── */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 400; letter-spacing: 0.04em; line-height: 1.15; }
.gold-text { background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.eyebrow {
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.eyebrow::before,.eyebrow::after { content:''; width:24px; height:1px; background:var(--gold); opacity:.6; }
.eyebrow.left::after { display:none; }
.section-title { font-size: clamp(28px,3.5vw,42px); font-weight: 400; margin-bottom: 14px; }
.section-sub { font-family: var(--font-body); font-weight: 300; font-size: 15px; color: var(--muted); max-width: 560px; }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; margin: 0 auto 56px; }
.section-head.center .section-sub { margin: 0 auto; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-body); font-size: 11px; font-weight: 500; letter-spacing: 2.42px; text-transform: uppercase; padding: 0 28px; height: 50px; border: 1px solid transparent; cursor: pointer; transition: all .3s ease; white-space: nowrap; text-decoration: none; }
.btn-gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-gold:hover { filter: brightness(1.1); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline-dark:hover { background: var(--black); color: var(--gold-light); }

/* ── Accessibility ── */
.skip-link { position:absolute; left:-999px; top:0; background:var(--gold); color:var(--black); padding:10px 16px; z-index:2000; }
.skip-link:focus { left:16px; top:16px; }
:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { * { animation-duration:.001ms!important; transition-duration:.001ms!important; } }

/* ── Reveal ── */
[data-reveal] { opacity:0; transform:translateY(24px); transition:opacity .7s ease,transform .7s ease; }
[data-reveal].revealed { opacity:1; transform:translateY(0); }
[data-reveal="1"] { transition-delay:.05s; }
[data-reveal="2"] { transition-delay:.15s; }
[data-reveal="3"] { transition-delay:.25s; }
[data-reveal="4"] { transition-delay:.35s; }


/* ══════════════════════════════════════
   NAV DROPDOWN
══════════════════════════════════════ */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 1.76px;
  text-transform: uppercase;
  color: #EFE3CE;
  padding: 0;
  white-space: nowrap;
  transition: color .25s ease;
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active { color: #FEEB94; }
.nav-dropdown-arrow {
  width: 10px; height: 7px;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.nav-dropdown:hover .nav-dropdown-arrow { transform: rotate(180deg); }

/* Dropdown menu */
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 200px;
  background: rgba(13,13,13,0.97);
  border: 0.5px solid rgba(231,173,63,0.25);
  border-top: 2px solid #C9962A;
  list-style: none;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li a {
  display: block;
  padding: 11px 20px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(239,227,206,0.7);
  text-decoration: none;
  transition: color .2s, background .2s, padding-left .2s;
  white-space: nowrap;
}
.nav-dropdown-menu li a:hover {
  color: #E7AD3F;
  background: rgba(201,150,42,0.07);
  padding-left: 26px;
}

/* Mobile — dropdown becomes stacked in slide-in nav */
@media (max-width: 991px) {
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle {
    font-size: 16px;
    letter-spacing: 2px;
    color: #EFE3CE;
    width: 100%;
    justify-content: space-between;
  }
  .nav-dropdown-menu {
    position: static;
    transform: none !important;
    min-width: 100%;
    left: 0;
    border: none;
    border-top: none;
    border-left: 2px solid rgba(201,150,42,0.3);
    background: rgba(255,255,255,0.03);
    backdrop-filter: none;
    margin-top: 8px;
    padding: 4px 0;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu li a {
    font-size: 14px;
    padding: 10px 16px;
    letter-spacing: 1.5px;
  }
  .nav-dropdown-menu li a:hover { padding-left: 22px; }
}
/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1400px) {
  .nav-links { gap: 28px; }
  .nav-links a { font-size: 14px; }
}
@media (max-width: 1100px) {
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 12px; letter-spacing: 1px; }
  .nav-cta .btn-nav { font-size: 9px; padding: 0 14px; }
}
@media (max-width: 900px) {
  .site-header { height: 80px; }
  .brand-logo img { height: 65px; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 80vw);
    height: 100vh;
    background: #0D0D0D;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    transition: right .35s ease;
    z-index: 999;
    border-left: 1px solid rgba(231,173,63,0.15);
    display: flex;
    margin: 0;
  }
  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; z-index: 1001; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1),
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2),
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3),
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  body.nav-open { overflow: hidden; }
  .nav-cta .btn-nav { display: none; }
  .nav-right { gap: 16px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .page-banner { padding: 160px 0 70px; }
  .section { padding: 80px 0; }
}
@media (max-width: 575px) {
  .container { padding: 0 20px; }
  .site-header .container { padding: 0 20px; }
  .brand-logo img { height: 50px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section { padding: 60px 0; }
}

/* ══════════════════════════════════════
   FULL RESPONSIVE SYSTEM
   Breakpoints: 1400 / 1200 / 991 / 768 / 480 / 360
══════════════════════════════════════ */

/* Large desktop — slight tighten */
@media (max-width: 1400px) {
  .container { padding: 0 48px; }
  .nav-links { gap: 28px; }
}

/* Medium desktop / small laptop */
@media (max-width: 1200px) {
  .container { padding: 0 36px; }
  .site-header .container { padding: 0 36px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 13px; letter-spacing: 1.2px; }
  .nav-cta .btn-nav { width: 160px; font-size: 9.5px; }
  .brand-logo img { height: 80px; }
  .brand-logo-text { font-size: 11px; max-width: 180px; }
}

/* Tablet landscape / small desktop */
@media (max-width: 991px) {
  .container { padding: 0 28px; }
  .site-header .container { padding: 0 28px; }
  .site-header { height: 80px; }
  .brand-logo img { height: 64px; }
  .brand-logo-divider { height: 28px; margin: 0 10px; }
  .brand-logo-text { display: none; }

  /* Hamburger nav */
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 78vw);
    height: 100vh;
    background: #0D0D0D;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 40px 32px;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    z-index: 999;
    border-left: 1px solid rgba(231,173,63,0.15);
    display: flex;
    margin: 0;
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 16px; letter-spacing: 2px; color: #EFE3CE; }
  .nav-toggle { display: flex; z-index: 1001; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  body.nav-open { overflow: hidden; }
  .nav-cta .btn-nav { display: none; }
  .nav-right { gap: 16px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .page-banner { padding: 160px 0 60px; }
  .section { padding: 80px 0; }
}

/* Tablet portrait */
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .site-header .container { padding: 0 24px; }
  .site-header { height: 72px; }
  .brand-logo img { height: 56px; }
  .section { padding: 64px 0; }
  .section-title { font-size: 28px; }
  .page-banner { padding: 140px 0 50px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* Mobile large */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .site-header .container { padding: 0 16px; }
  .site-header { height: 64px; }
  .brand-logo img { height: 48px; }
  .section { padding: 50px 0; }
  .section-title { font-size: 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-bottom .legal-links { flex-wrap: wrap; gap: 12px; }
}

/* Mobile small */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .brand-logo img { height: 42px; }
}


/* ── Inner page header — dark bg since no hero behind it ── */
body.inner-page .site-header {
  background: linear-gradient(180deg, rgba(13,13,13,0.96) 0%, rgba(13,13,13,0.96) 100%);
}
