/* CHECKLIST */
.checklist{
  list-style:none;
  padding: 0 16px 0 16px;
  margin: 8px 0 0 0;
}
.checklist li{
  position:relative;
  padding: 9px 0 9px 22px;
  border-top:1px solid rgba(255,255,255,.08);
  color: var(--text);
}
[data-theme="light"] .checklist li{border-top-color: rgba(16,24,40,.10)}
.checklist li::before{
  content:"✓";
  position:absolute; left:0; top:9px;
  color: var(--good);
  font-weight:900;
}

/* ===== FIXED (ALWAYS VISIBLE) HEADER ===== */
:root{
  --header-h: 86px; /* adjust if needed */
}

.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  backdrop-filter: blur(10px);
}

/* Push the page down so the fixed header doesn't cover the hero */
body{
  padding-top: var(--header-h);
}

/* Smooth anchor scroll offsets */
html{
  scroll-padding-top: calc(var(--header-h) + 10px);
}


/* Helps prevent content jumping under sticky header */
html{
  scroll-padding-top: 90px;
}

/* CARDS */
.cards{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.card{
  padding: 16px;
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  box-shadow: 0 12px 45px rgba(0,0,0,.22);
  transition: transform var(--speed), box-shadow var(--speed), border-color var(--speed);
}
[data-theme="light"] .card{background: rgba(255,255,255,.9)}
.card:hover{transform: translateY(-2px); box-shadow: var(--shadow); border-color: rgba(255,59,59,.25)}
.card h3{margin:0 0 8px 0}
.card p{margin:0; color: var(--muted)}
.card-meta{margin-top:10px; font-size:13px; color: var(--muted)}

/* STEPS */
.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.step{
  padding: 16px;
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
}
[data-theme="light"] .step{background: rgba(255,255,255,.9)}
.step-num{
  width:36px; height:36px;
  border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, rgba(255,59,59,.95), rgba(255,106,59,.75));
  color:white; font-weight:900;
  margin-bottom:10px;
}
.step h3{margin:0 0 6px 0}
.step p{margin:0; color: var(--muted)}

/* EMBEDS / CARDS */
.embed-card{
  padding: 16px;
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
}
[data-theme="light"] .embed-card{background: rgba(255,255,255,.9)}
.embed-card h3{margin:0 0 8px 0}
.small{font-size:13px; color: var(--muted)}
.embed-slot{
  margin-top: 12px;
  border-radius: 18px;
  border: 1px dashed rgba(255,255,255,.22);
  padding: 14px;
  background: rgba(0,0,0,.15);
}
[data-theme="light"] .embed-slot{
  background: rgba(255,255,255,.7);
  border-color: rgba(16,24,40,.20);
}
.placeholder{color: var(--muted)}
.fb-embed iframe{
  width:100%;
  max-width:100%;
  border-radius: 18px;
}
.hint{margin-top:10px}

/* AWARDS */
#awardsSlot a{ text-decoration: none; }
#awardsSlot a:hover{ color: var(--accent); }

.awards-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
  align-items: stretch;
}

.award-link{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  text-decoration: none;

  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.10);
  min-height: 165px;
  transition: transform var(--speed), box-shadow var(--speed), border-color var(--speed);
}

[data-theme="light"] .award-link{
  background: rgba(255,255,255,.7);
  border-color: rgba(16,24,40,.15);
}

.award-link:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(255,255,255,.22);
}

.award-badge{
  width: 100%;
  height: 85px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.award-view-link{
  margin-top: 10px;
  font-size: 13px;
  text-decoration: underline;
  opacity: 0.92;
}

/* FORMS */
.form{
  padding: 16px;
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
}
[data-theme="light"] .form{background: rgba(255,255,255,.9)}
.row{display:grid; grid-template-columns: 1fr 1fr; gap: 10px}
.field{display:flex; flex-direction:column; gap:8px; margin-bottom: 12px}
label{font-size:13px; color: var(--muted)}

input, select, textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 12px 12px;

  background: rgba(255,255,255,.03);
  color: var(--text);

  outline: none;
  transition:
    border-color var(--speed),
    box-shadow var(--speed),
    transform var(--speed),
    background var(--speed);
}

input:focus,
select:focus,
textarea:focus{
  border-color: rgba(255,59,59,.55);
  box-shadow: 0 0 0 4px rgba(255,59,59,.16);
}

textarea{
  resize: vertical;
  min-height: 120px;
}

select option{
  color: #000;
  background: #fff;
}
select option[disabled]{ color: #666; }

input:disabled,
select:disabled,
textarea:disabled{
  opacity: .6;
  cursor: not-allowed;
}

[data-theme="light"] input,
[data-theme="light"] select,
[data-theme="light"] textarea{
  background: rgba(255,255,255,.98);
  color: #101828;
  border-color: rgba(16,24,40,.12);
}

[data-theme="light"] input:focus,
[data-theme="light"] select:focus,
[data-theme="light"] textarea:focus{
  border-color: rgba(216,31,31,.55);
  box-shadow: 0 0 0 4px rgba(216,31,31,.14);
}

/* CONTACT CARD + CALLOUT */
.contact-card{
  padding: 16px;
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
}
[data-theme="light"] .contact-card{background: rgba(255,255,255,.9)}

.callout{
  margin-top: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,59,59,.25);
  background: linear-gradient(135deg, rgba(255,59,59,.12), rgba(255,106,59,.06));
}
.callout-title{font-weight:900; margin-bottom:4px}
.callout-text{color: var(--text)}
