:root{
  --green:#0b3d2e;
  --green-dark:#082d22;
  --green-soft:#1d5a45;
  --gold:#c8a96b;
  --bg:#f5f3ea;
  --paper:#ffffff;
  --paper-soft:#faf8f1;
  --paper-memorial:#f3efe6;
  --text:#222;
  --muted:#6b6b6b;
  --line:#e5dfd1;
  --shadow:0 10px 25px rgba(0,0,0,.08);
  --shadow-lg:0 14px 35px rgba(0,0,0,.14);
  --header-offset:92px;
  --header-offset-mobile:84px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

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

a{
  color:inherit;
  text-decoration:none;
}

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

/* HEADER */
.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1100;
  transition:all .25s ease;
  background:rgba(8,45,34,.72);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.site-header.scrolled{
  background:rgba(8,45,34,.94);
  box-shadow:0 10px 24px rgba(0,0,0,.18);
}

.nav-inner{
  max-width:1280px;
  margin:0 auto;
  padding:14px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  transition:padding .25s ease;
}

.site-header.scrolled .nav-inner{
  padding:10px 24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.brand-logo{
  width:72px;
  flex-shrink:0;
  transition:width .25s ease;
}

.site-header.scrolled .brand-logo{
  width:58px;
}

.brand-text{
  color:#fff;
  min-width:0;
}

.brand-title{
  margin:0;
  font-family:'Bebas Neue',sans-serif;
  font-size:30px;
  letter-spacing:1.2px;
  line-height:.95;
  white-space:nowrap;
}

.site-header.scrolled .brand-title{
  font-size:26px;
}

.brand-sub{
  margin-top:4px;
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(255,255,255,.74);
  white-space:nowrap;
}

.desktop-nav{
  display:flex;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.desktop-nav a{
  color:#fff;
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  opacity:.94;
}

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

.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border:none;
  background:transparent;
  padding:0;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  position:relative;
  z-index:1102;
  touch-action:manipulation;
}

.menu-toggle span{
  display:block;
  width:20px;
  height:2px;
  background:#fff;
  border-radius:2px;
  transition:all .22s ease;
}
.menu-toggle.active span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

.mobile-menu{
  display:none;
  position:absolute;
  top:100%;
  left:0;
  width:100%;
  z-index:1101;
  background:rgba(8,45,34,.98);
  border-top:1px solid rgba(255,255,255,.08);
  box-shadow:0 16px 28px rgba(0,0,0,.16);
}

.mobile-menu.open{
  display:block;
  pointer-events:auto;
}

.mobile-menu a{
  display:block;
  padding:16px 24px;
  color:#fff;
  font-size:14px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.mobile-menu a:hover{
  background:rgba(255,255,255,.05);
  color:var(--gold);
}

/* GLOBAL PAGE SPACING */
body > .page-hero{
  padding-top:calc(56px + var(--header-offset));
}
/* COMMON LAYOUT */
.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px 70px;
}

.panel{
  background:var(--paper);
  box-shadow:var(--shadow-lg);
  overflow:hidden;
  margin-bottom:28px;
}

.section-head{
  padding:26px 28px 18px;
  border-bottom:1px solid var(--line);
  background:var(--paper-soft);
}

.section-kicker{
  margin:0 0 8px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:var(--gold);
  font-weight:700;
}

.section-title{
  margin:0;
  color:var(--green);
  font-family:'Bebas Neue',sans-serif;
  font-size:42px;
  letter-spacing:1px;
}

.section-body{
  padding:26px 28px 30px;
}


.page-hero-kicker{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.2em;
  color:var(--gold);
  font-weight:700;
  margin-bottom:12px;
}

.page-hero h1{
  margin:0;
  font-family:'Bebas Neue',sans-serif;
  font-size:72px;
  letter-spacing:2px;
  line-height:.95;
  transform:skewX(-7deg);
  display:inline-block;
}

.page-subtitle{
  margin:18px auto 0;
  max-width:900px;
  font-size:18px;
  line-height:1.6;
  color:rgba(255,255,255,.92);
}

.two-col{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:22px;
}

/* SHARED CONTENT BLOCKS */
.summary-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:16px;
}

.summary-card{
  background:#fcfbf7;
  border:1px solid var(--line);
  padding:18px;
}

.summary-label{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:var(--muted);
  font-weight:700;
  margin-bottom:8px;
}

.summary-value{
  font-size:24px;
  line-height:1.2;
  color:var(--green);
  font-weight:800;
}

.summary-note{
  margin-top:8px;
  color:#444;
  line-height:1.5;
  font-size:14px;
}

.subcard{
  background:#fcfbf7;
  border:1px solid var(--line);
  padding:22px;
}

.subcard h3,
.subcard h4{
  margin:0 0 12px;
  color:var(--green);
}

.subcard p{
  margin:0;
  line-height:1.7;
}

.note-box{
  background:#f6f2e7;
  border-left:5px solid var(--gold);
  padding:18px 18px 16px;
  color:var(--green-dark);
  line-height:1.65;
}

.bullets{
  margin:0;
  padding-left:18px;
}

.bullets li{
  margin:0 0 10px;
  line-height:1.55;
}


/* TICKER */
.ticker-wrap{
  margin-top:0;
  padding-top:0;
  background:var(--green);
  border-bottom:4px solid var(--gold);
  overflow:hidden;
}

.ticker-mask{
  overflow:hidden;
  width:100%;
}

.ticker-track{
  display:flex;
  align-items:center;
  width:max-content;
  white-space:nowrap;
  padding:14px 0;
  animation:tickerScroll 38s linear infinite;
  will-change:transform;
}

.ticker-item{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  margin-right:56px;
  color:#fff;
  font-size:15px;
  font-weight:700;
}

.ticker-rank{
  color:var(--gold);
  margin-right:6px;
}

.ticker-name{
  margin-right:6px;
}


@keyframes tickerScroll{
  0%{ transform:translate3d(0,0,0); }
  100%{ transform:translate3d(-50%,0,0); }
}

.ticker-wrap:hover .ticker-track{
  animation-play-state:paused;
}


/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:14px 22px;
  border:none;
  cursor:pointer;
  font-size:14px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  transition:.18s ease;
}

.btn-primary{
  background:var(--gold);
  color:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,.18);
}

.btn-primary:hover{
  transform:translateY(-2px);
  filter:brightness(.98);
}

.btn-secondary{
  background:rgba(255,255,255,.12);
  color:#fff;
  border:1px solid rgba(255,255,255,.22);
  backdrop-filter:blur(3px);
}

.btn-secondary:hover{
  background:rgba(255,255,255,.18);
  transform:translateY(-2px);
}

.load-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:14px 22px;
  border:none;
  cursor:pointer;
  font-size:14px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  transition:.18s ease;
  background:var(--green);
  color:#fff;
}

.load-btn:hover{
  background:var(--green-dark);
  transform:translateY(-2px);
}

/* TABLES */
.table-wrapper{
  overflow-x:auto;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow-lg);
  border-radius:6px;
}

.table-wrapper table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
}

.table-wrapper thead{
  background:var(--green);
  color:#fff;
}

.table-wrapper th{
  padding:12px;
  text-align:center;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
  border-right:1px solid rgba(255,255,255,.18);
}

.table-wrapper th:last-child{
  border-right:none;
}

.table-wrapper td{
  padding:12px;
  border-bottom:1px solid var(--line);
  text-align:center;
  font-size:14px;
  line-height:1.45;
}

.table-wrapper tbody tr:nth-child(even){
  background:#fbfaf6;
}

.day-content table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
}

.day-content th{
  padding:14px 16px;
  text-align:left;
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
  border-bottom:1px solid var(--line);
}

.day-content td{
  padding:14px 16px;
  text-align:left;
  border-bottom:1px solid var(--line);
}

/* STATUS */
.status-message{
  padding:12px 14px;
  margin-bottom:16px;
  display:none;
  font-size:14px;
  line-height:1.5;
}

.status-success{
  background:#dff1e3;
  border:1px solid #b9dfc2;
  color:#1d5a2f;
}

.status-error{
  background:#f8dddd;
  border:1px solid #efbcbc;
  color:#7b2323;
}

/* FOOTER */
.site-footer{
  background:var(--green-dark);
  color:#fff;
  margin-top:30px;
  border-top:6px solid var(--gold);
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-inner{
  max-width:1200px;
  margin:0 auto;
  padding:26px 20px 34px;
}

.footer-title{
  font-family:'Bebas Neue',sans-serif;
  font-size:34px;
  letter-spacing:1px;
  margin:0 0 6px;
}

.footer-copy{
  font-size:14px;
  color:rgba(255,255,255,.8);
  line-height:1.6;
}

.page-footer-links{
  display:flex;
  justify-content:space-between;
  gap:12px;
  max-width:1200px;
  margin:40px auto 0;
  padding:0 20px;
}

.page-footer-links a{
  color:var(--green);
  font-weight:700;
}

/* RESPONSIVE */
@media (max-width:920px){
  .two-col{
    grid-template-columns:1fr;
  }

  .page-hero h1{
    font-size:56px;
  }
}

@media (max-width:700px){

  body > .page-hero{
    padding-top:calc(56px + var(--header-offset-mobile));
  }

  body.has-ticker > .page-hero{
    padding-top:56px;
  }

  body.has-ticker .ticker-wrap{
    padding-top:var(--header-offset-mobile);
  }

  .desktop-nav{
    display:none;
  }

  .menu-toggle{
    display:inline-flex;
  }

  .brand-text{
    min-width:0;
    max-width:150px;
  }

  .brand-title{
    font-size:24px;
    white-space:normal;
  }

  .site-header.scrolled .brand-title{
    font-size:22px;
  }

  .brand-sub{
    display:block;
    font-size:9px;
    line-height:1.3;
    letter-spacing:.08em;
    white-space:normal;
    max-width:150px;
  }

  .brand-logo{
    width:58px;
  }

  .site-header.scrolled .brand-logo{
    width:52px;
  }

  .section-head,
  .section-body{
    padding-left:18px;
    padding-right:18px;
  }

  .section-title{
    font-size:34px;
  }

  .page-subtitle{
    font-size:16px;
  }

 .table-wrapper th,
.table-wrapper td{
  font-size:13px;
  padding:10px 8px;
}

  .page-footer-links{
    flex-direction:column;
  }
  
  
 .ticker-track{
  padding:20px 0;
}

.ticker-item{
  font-size:14px;
  margin-right:44px;
}


}
