/* ─── HONORLOCK PAGE ─── */

:root {
  --orange: #c0622a;
  --orange-light: #fff4ec;
  --orange-mid: #e07030;
  --orange-dark: #8c3a14;
  --blue-mid: #2563b0;
  --gray-bg: #f5f6f8;
  --text: #1a1a2e;
  --muted: #6b7280;
  --border: #e2e6ea;
}

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, #1a0e07 0%, #2d1408 55%, #1a0e07 100%);
  padding: 4.5rem 1.5rem 4rem;
  color: #fff;
}
.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c8a070;
  margin-bottom: 1rem;
}
.hero-title {
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: #fff;
}
.proc-accent { color: #f5a461; }
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #d4b898;
  max-width: 560px;
  margin: 0 0 1.5rem;
}
.hero-chips {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.hero-chip {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
  background: rgba(255,255,255,0.08);
  color: #d4b898;
  border: 1px solid rgba(255,255,255,0.13);
}

/* Hero aside */
.hero-aside-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,165,70,0.2);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
}
.hero-aside-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c8a070;
  margin-bottom: 1rem;
}
.hero-aside-rule {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #d4b898;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-aside-rule:last-child { border-bottom: none; }
.hero-aside-rule strong { color: #fff; }
.rule-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 0.3rem;
}
.rule-dot-orange { background: #f5a461; }

/* ─── NOTICE BAND ─── */
.notice-band {
  background: #fff8f2;
  border-top: 3px solid var(--orange-mid);
  border-bottom: 1px solid #f0d0b0;
  padding: 1.1rem 1.5rem;
}
.notice-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.notice-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.notice-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #5a2010;
  margin-bottom: 0.25rem;
}
.notice-desc {
  font-size: 0.84rem;
  line-height: 1.55;
  color: #7a4020;
}
.notice-desc a { color: var(--orange-dark); font-weight: 600; }

/* ─── SECTIONS ─── */
.section { padding: 4rem 1.5rem; }
.section-alt { background: var(--gray-bg); }
.section-inner { max-width: 1080px; margin: 0 auto; }
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-mid);
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 0.75rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 0 2.5rem;
}

/* ─── FEATURE GRID ─── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}
.feature-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.feature-desc {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ─── STUDENT SETUP ─── */
.setup-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.setup-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.setup-step {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.setup-step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--orange-mid);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}
.step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.step-desc {
  font-size: 0.87rem;
  line-height: 1.6;
  color: #374151;
}
.step-desc a { color: var(--blue-mid); }

/* Setup aside cards */
.setup-aside { display: flex; flex-direction: column; gap: 1rem; }
.aside-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1.4rem;
}
.aside-card-orange {
  background: var(--orange-light);
  border-color: #f0c898;
}
.aside-card-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.aside-card-body {
  font-size: 0.84rem;
  line-height: 1.6;
  color: #374151;
}
.aside-card-body a { color: var(--orange-dark); font-weight: 600; }

/* ─── FACULTY STEPS ─── */
.callout {
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.callout-orange {
  background: var(--orange-light);
  border-left: 4px solid var(--orange-mid);
  color: #5a2010;
}
.callout a { color: var(--orange-dark); font-weight: 600; }

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.step-row {
  display: flex;
  gap: 1.5rem;
  padding: 1.4rem 1.75rem;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.step-row:last-child { border-bottom: none; }
.step-row .step-num {
  background: #f8ede4;
  color: var(--orange-dark);
  font-weight: 800;
  font-size: 0.85rem;
}
.step-row .step-desc a { color: var(--blue-mid); }

/* ─── MISCONDUCT GRID ─── */
.misconduct-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.misconduct-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}
.misconduct-num {
  font-size: 2rem;
  font-weight: 900;
  color: #f0d8c8;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.misconduct-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.misconduct-desc {
  font-size: 0.86rem;
  line-height: 1.65;
  color: #374151;
}
.misconduct-desc a { color: var(--blue-mid); }

code {
  font-family: 'SF Mono', 'Fira Mono', monospace;
  font-size: 0.82em;
  background: #f0f4ff;
  border-radius: 4px;
  padding: 0.1em 0.35em;
  color: #1a3a6a;
}

/* ─── CONTACT GRID ─── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.contact-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.contact-icon { font-size: 1.8rem; }
.contact-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.contact-desc {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--muted);
  flex: 1;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.84rem;
  color: #374151;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: 0.25rem;
}
.contact-details a { color: var(--orange-mid); text-decoration: none; font-weight: 600; }
.contact-details a:hover { text-decoration: underline; }
.contact-btn {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: 7px;
  text-decoration: none;
  background: var(--orange-mid);
  color: #fff;
  text-align: center;
  margin-top: 0.25rem;
  transition: background 0.15s;
}
.contact-btn:hover { background: var(--orange); }
.contact-btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.contact-btn-outline:hover { background: var(--gray-bg); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .misconduct-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.1rem; }
  .setup-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero { padding: 3rem 1rem 2.5rem; }
  .section { padding: 2.5rem 1rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .misconduct-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
