*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Color scheme taken from the reference HTML */
  --navy: oklch(0.22 0.055 252);
  --navy-mid: oklch(0.28 0.055 252);
  --navy-light: oklch(0.36 0.05 252);
  --navy-deep: oklch(0.18 0.055 252);
  --gold: oklch(0.72 0.13 72);
  --gold-light: oklch(0.82 0.1 72);
  --cream: oklch(0.98 0.008 72);
  --cream2: oklch(0.93 0.014 72);
  --text: oklch(0.18 0.02 252);
  --text-mid: oklch(0.42 0.025 252);
  --text-light: oklch(0.58 0.018 252);
  --border: oklch(0.88 0.012 252);
  --red: oklch(0.55 0.18 25);
  --green: oklch(0.55 0.14 155);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px; /* Adjust this value to match your header height */
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
img {
  display: block;
}

/* =========================================================
   STICKY HEADER — single unit (utility bar + navbar)
   Two states:
     - top of page: navy bg, white text
     - scrolled:    white bg, dark text (0.3s transition)
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  background: var(--navy);
  border-bottom: 1px solid transparent;
}
.header--scrolled {
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px oklch(0 0 0 / 0.08);
}

/* ---- UTILITY BAR ---- */
.utility-bar {
  background: var(--navy-deep);
  color: oklch(1 0 0 / 0.7);
  font-size: 12px;
  transition: background 0.3s ease;
}
.header--scrolled .utility-bar {
  background: var(--navy);
}
.utility-bar__inner {
  padding: 7px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 32px;
}
.utility-bar__institution {
  font-weight: 400;
  letter-spacing: 0.01em;
  opacity: 0.85;
}
.utility-bar__links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.utility-bar__link {
  transition: color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.utility-bar__link:hover {
  color: white;
}
.utility-bar__link--external {
  color: var(--gold-light);
}
.utility-bar__link--external:hover {
  color: var(--gold);
}

@media (max-width: 900px) {
  .utility-bar__inner {
    padding: 7px 20px;
  }
  .utility-bar__institution {
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 50%;
  }
  .utility-bar__links {
    gap: 14px;
    font-size: 11px;
  }
}
@media (max-width: 640px) {
  .utility-bar {
    display: none;
  }
}

/* ---- NAVBAR ROW ---- */
.navbar {
  padding: 0 32px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* BRAND: logo + text */
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.navbar__logo {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  /* Subtle tile behind the logo helps the teal read against the navy bg.
     Fades to transparent on scroll where the background is white. */
  background: oklch(1 0 0 / 0.08);
  border-radius: 10px;
  padding: 4px;
  transition:
    background 0.3s ease,
    padding 0.3s ease;
}
.header--scrolled .navbar__logo {
  background: transparent;
  padding: 2px;
}
.navbar__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.navbar__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.navbar__brand-name {
  font-family: "Lora", serif;
  font-size: 17px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}
.navbar__brand-sub {
  font-size: 11px;
  color: oklch(1 0 0 / 0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 3px;
  transition: color 0.3s ease;
}
.header--scrolled .navbar__brand-name {
  color: var(--navy);
}
.header--scrolled .navbar__brand-sub {
  color: var(--text-light);
}

/* NAV LINKS */
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.navbar__item {
  position: relative;
}
.navbar__link {
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 500;
  color: oklch(1 0 0 / 0.88);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 6px;
  transition:
    background 0.2s,
    color 0.3s ease;
  white-space: nowrap;
}
.navbar__link svg {
  transition:
    transform 0.2s,
    opacity 0.2s,
    color 0.3s ease;
  opacity: 0.5;
  color: oklch(1 0 0 / 0.6);
}
.header--scrolled .navbar__link {
  color: var(--text);
}
.header--scrolled .navbar__link svg {
  color: var(--text-light);
}

.navbar__link:hover,
.navbar__item:hover .navbar__link {
  background: oklch(1 0 0 / 0.1);
  color: white;
}
.header--scrolled .navbar__link:hover,
.header--scrolled .navbar__item:hover .navbar__link {
  background: var(--cream2);
  color: var(--navy);
}
.navbar__item:hover .navbar__link svg {
  transform: rotate(180deg);
  opacity: 1;
}

/* DROPDOWN */
.navbar__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow:
    0 12px 32px oklch(0 0 0 / 0.12),
    0 2px 6px oklch(0 0 0 / 0.06);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.18s,
    transform 0.18s,
    visibility 0.18s;
  z-index: 100;
}
.navbar__item:hover .navbar__dropdown,
.navbar__item:focus-within .navbar__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.navbar__dropdown-link {
  display: block;
  padding: 9px 12px;
  font-size: 13px;
  color: var(--text-mid);
  border-radius: 6px;
  transition: all 0.12s;
  font-weight: 500;
}
.navbar__dropdown-link:hover {
  background: var(--cream2);
  color: var(--navy);
  padding-left: 16px;
}

/* RIGHT-SIDE ACTIONS */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.navbar__icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: oklch(1 0 0 / 0.85);
  transition:
    background 0.2s,
    color 0.3s ease;
}
.navbar__icon-btn:hover {
  background: oklch(1 0 0 / 0.12);
  color: white;
}
.header--scrolled .navbar__icon-btn {
  color: var(--text-mid);
}
.header--scrolled .navbar__icon-btn:hover {
  background: var(--cream2);
  color: var(--navy);
}
.navbar__emergency-btn {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.15s;
  margin-left: 4px;
  box-shadow: 0 1px 2px oklch(0 0 0 / 0.08);
}
.navbar__emergency-btn:hover {
  background: oklch(0.68 0.13 72);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px oklch(0.72 0.13 72 / 0.35);
}

.navbar__hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  color: white;
  transition:
    background 0.2s,
    color 0.3s ease;
}
.navbar__hamburger:hover {
  background: oklch(1 0 0 / 0.12);
}
.header--scrolled .navbar__hamburger {
  color: var(--navy);
}
.header--scrolled .navbar__hamburger:hover {
  background: var(--cream2);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1150px) {
  .navbar__link {
    padding: 10px 10px;
    font-size: 15px;
  }
}
@media (max-width: 1024px) {
  .navbar__nav {
    display: none;
  }
  .navbar__hamburger {
    display: inline-flex;
  }
  .navbar__emergency-btn span {
    display: none;
  }
  .navbar__emergency-btn {
    width: 40px;
    padding: 0;
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .navbar {
    padding: 0 32px;
    height: 68px;
  }
  .navbar__logo {
    width: 40px;
    height: 40px;
  }
  .navbar__brand-name {
    font-size: 14px;
  }
  .navbar__brand-sub {
    font-size: 10px;
    letter-spacing: 0.04em;
  }
  .navbar__icon-btn {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 900px) {
  .navbar__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 2rem;
    transition: right 0.3s ease;
  }

  .navbar__nav--open {
    right: 0;
  }
}

/* =========================================================
   HERO SECTION
   Clean, bright, institutional. Cream background.
   Just: eyebrow → headline → subhead.
   ========================================================= */
.hero {
  position: relative;
  background: var(--cream);
  padding: 96px 32px 88px;
  overflow: hidden;
}

/* Thin vertical gold rule on the left, paired with the eyebrow.
   A quiet editorial touch — gives the hero a bit of structure. */
.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.hero__content {
  max-width: 780px;
}

/* CTA column */
.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 220px;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition:
    transform 0.15s,
    background 0.2s,
    border-color 0.2s,
    box-shadow 0.2s,
    color 0.2s;
  position: relative;
  min-width: 220px;
}

.hero__cta-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.2s,
    color 0.2s;
}

.hero__cta-arrow {
  margin-left: auto;
  transition:
    transform 0.15s,
    opacity 0.15s;
  opacity: 0.6;
  flex-shrink: 0;
}

.hero__cta:hover {
  transform: translateY(-2px);
}
.hero__cta:hover .hero__cta-arrow {
  transform: translateX(3px);
  opacity: 1;
}

/* Both CTAs use the primary navy + gold style */
.hero__cta {
  background: var(--navy);
  color: white;
  border: 1px solid var(--navy);
}
.hero__cta .hero__cta-icon {
  background: var(--gold);
  color: var(--navy);
}
.hero__cta:hover {
  background: oklch(0.26 0.055 252);
  box-shadow: 0 8px 24px oklch(0.22 0.055 252 / 0.25);
}

/* Responsive */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero__ctas {
    flex-direction: row;
    gap: 10px;
  }
  .hero__cta {
    flex: 1;
    min-width: 0;
    padding: 16px 18px;
  }
}

@media (max-width: 640px) {
  .hero__ctas {
    flex-direction: column;
  }
  .hero__cta {
    padding: 14px 16px;
    font-size: 14px;
  }
  .hero__cta-icon {
    width: 32px;
    height: 32px;
  }
}

/* HEADLINE */
.hero__headline {
  font-family: "Lora", serif;
  font-size: clamp(36px, 5.4vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 28px;
  max-width: 900px;
  animation: fadeUp 0.7s 0.05s ease-out backwards;
}
.hero__headline em {
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
}

/* SUBHEAD */
.hero__subhead {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 640px;
  animation: fadeUp 0.7s 0.12s ease-out backwards;
}

/* Entrance animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    padding: 72px 24px 64px;
  }
}
@media (max-width: 640px) {
  .hero {
    padding: 56px 20px 48px;
  }
  .hero__headline {
    margin-bottom: 20px;
  }
}

/* =========================================================
   STATS STRIP
   Navy with subtle dot pattern. 4 numbers, gold, tabular.
   Sits between hero and How Things Work.
   ========================================================= */
.stats {
  background: var(--navy);
  background-image: radial-gradient(oklch(1 0 0 / 0.05) 1.2px, transparent 1.2px);
  background-size: 22px 22px;
  padding: 40px 32px;
  position: relative;
}
.stats__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  gap: 16px;
}
.stats__item {
  flex: 1;
  text-align: center;
  padding: 8px 4px;
}
.stats__value {
  font-family: "Lora", serif;
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.stats__plus,
.stats__times {
  font-weight: 600;
  color: var(--gold-light);
}
.stats__plus {
  margin-left: 1px;
}
.stats__times {
  margin: 0 2px;
  font-size: 0.85em;
}
.stats__label {
  font-size: 13px;
  color: oklch(1 0 0 / 0.55);
  margin-top: 12px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

@media (max-width: 640px) {
  .stats {
    padding: 28px 20px;
  }
  .stats__inner {
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
  }
  .stats__item {
    flex: 0 0 50%;
    padding: 16px 8px;
  }
  .stats__divider {
    display: none;
  }
  .stats__label {
    font-size: 12px;
    margin-top: 8px;
  }
}

/* =========================================================
   CURRENT UPDATES SECTION
   ========================================================= */
.updates {
  background: var(--cream2);
  padding: 64px 32px; /* Reduced from 88px */
  position: relative;
}

.updates__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch; /* Changed from start to stretch */
}

/* ===== NOTICES COLUMN (LEFT) ===== */
.updates__notices {
  animation: fadeUp 0.7s 0.2s ease-out backwards;
  display: flex;
  flex-direction: column;
}

.updates__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px; /* Reduced from 24px */
}

.updates__title {
  font-family: "Lora", serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.updates__view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition:
    gap 0.2s,
    color 0.2s;
}

.updates__view-all:hover {
  color: oklch(0.68 0.13 72);
  gap: 10px;
}

.updates__view-all svg {
  flex-shrink: 0;
  transition: transform 0.2s;
}

.updates__view-all:hover svg {
  transform: translateX(2px);
}

/* Notice List - Tighter spacing for 4 cards */
.updates__list {
  display: flex;
  flex-direction: column;
  gap: 12px; /* Reduced from 14px */
  flex: 1;
}

/* Notice Card - More Compact */
.notice-card {
  display: flex;
  gap: 14px; /* Reduced from 16px */
  padding: 14px; /* Reduced from 16px */
  background: white;
  border-radius: 10px; /* Slightly smaller radius */
  border: 1px solid var(--border);
  transition: all 0.2s;
  cursor: pointer;
}

.notice-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px oklch(0 0 0 / 0.08);
  border-color: var(--gold-light);
}

.notice-card__date {
  flex-shrink: 0;
  width: 48px; /* Reduced from 52px */
  height: 48px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.notice-card__day {
  font-family: "Lora", serif;
  font-size: 18px; /* Reduced from 20px */
  font-weight: 700;
  line-height: 1;
}

.notice-card__month {
  font-size: 10px; /* Reduced from 11px */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
  opacity: 0.8;
}

.notice-card__content {
  flex: 1;
  min-width: 0;
}

.notice-card__title {
  font-family: "Lora", serif;
  font-size: 15px; /* Reduced from 16px */
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px; /* Reduced from 4px */
  line-height: 1.3;
}

.notice-card__summary {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.4; /* Tighter line height */
  margin-bottom: 6px; /* Reduced from 8px */
}

.notice-card__link {
  display: inline-flex;
  align-items: center;
  font-size: 12px; /* Reduced from 13px */
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.notice-card__link:hover {
  color: oklch(0.68 0.13 72);
}

/* =========================================================
   FOOTER - 2 COLUMNS WITH MINIMAL PADDING (FINAL)
   ========================================================= */

.footer {
  background: var(--navy-deep);
  color: oklch(1 0 0 / 0.8);
}

.footer__main {
  border-bottom: 1px solid oklch(1 0 0 / 0.1);
}

.footer__main-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ===== LEFT COLUMN (50%): Branding + Contact + Map ===== */
.footer__left {
  display: flex;
  flex-direction: column;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

.footer__brand:hover {
  opacity: 0.9;
}

.footer__logo {
  width: 48px;
  height: 48px;
  background: oklch(1 0 0 / 0.08);
  border-radius: 10px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__brand-text h3 {
  font-family: "Lora", serif;
  font-size: 18px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin: 0 0 4px 0;
}

.footer__tagline {
  font-size: 10px;
  color: oklch(1 0 0 / 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0;
}

.footer__description {
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.7;
  margin-bottom: 20px;
}

/* Contact Block */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.footer__contact-item svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.footer__contact-item a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__contact-item a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.footer__contact-item span {
  color: oklch(1 0 0 / 0.7);
}

/* Map Button */
.footer__map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: oklch(1 0 0 / 0.08);
  color: white;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s;
  width: fit-content;
}

.footer__map-btn:hover {
  background: oklch(1 0 0 / 0.12);
  transform: translateY(-1px);
}

.footer__map-btn svg {
  flex-shrink: 0;
}

/* ===== RIGHT COLUMN (50%): Quick Support ===== */
.footer__right h4 {
  font-family: "Lora", serif;
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-size: 14px;
  color: oklch(1 0 0 / 0.75);
  text-decoration: none;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__link:hover {
  color: white;
  padding-left: 4px;
}

/* Emergency - Gold & Bold */
.footer__link--emergency {
  color: var(--gold-light);
  font-weight: 600;
}

.footer__link--emergency:hover {
  color: var(--gold);
}

.footer__link--emergency svg {
  flex-shrink: 0;
}

/* Secondary Links (ERP, IIITA) - Lighter & Smaller */
.footer__link--secondary {
  opacity: 0.6;
  font-size: 13px;
}

.footer__link--secondary:hover {
  opacity: 1;
}

.footer__link--secondary svg {
  flex-shrink: 0;
  opacity: 0.7;
}

/* ===== BOTTOM BAR ===== */
.footer__bottom {
  background: var(--navy-deep);
}

.footer__bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 32px;
  text-align: center;
}

.footer__copyright {
  font-size: 12px;
  opacity: 0.6;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .footer__main-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 32px 20px;
  }

  .footer__map-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .footer__brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer__bottom-inner {
    padding: 16px 20px;
  }
}

/* =========================================================
   PAGE HERO (Reusable for all pages)
   ========================================================= */

.page-hero {
  background: var(--navy);
  background-image: radial-gradient(oklch(1 0 0 / 0.05) 1.2px, transparent 1.2px);
  background-size: 22px 22px;
  padding: 64px 32px 48px;
  position: relative;
}

.page-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: oklch(1 0 0 / 0.6);
  margin-bottom: 20px;
}

.page-hero__breadcrumb a {
  color: oklch(1 0 0 / 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.page-hero__breadcrumb a:hover {
  color: var(--gold-light);
}

.page-hero__breadcrumb span {
  color: oklch(1 0 0 / 0.4);
}

.page-hero__title {
  font-family: "Lora", serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 16px;
}

.page-hero__subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: oklch(1 0 0 / 0.8);
  max-width: 720px;
}

/* =========================================================
   NOTICES PAGE
   ========================================================= */

.notices-page {
  background: var(--cream2);
  padding: 64px 32px 88px;
}

.notices-page__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Filters */
.notices-page__filters {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 20px 24px;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.notices-page__filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.notices-page__filter-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.notices-page__select {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  background: white;
  cursor: pointer;
  transition: border-color 0.2s;
  min-width: 160px;
}

.notices-page__select:hover {
  border-color: var(--gold-light);
}

.notices-page__select:focus {
  outline: none;
  border-color: var(--gold);
}

.notices-page__count {
  margin-left: auto;
  font-size: 14px;
  color: var(--text-mid);
}

.notices-page__count strong {
  color: var(--navy);
  font-weight: 700;
}

/* Notices List */
.notices-page__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 20px;
}

/* Full Notice Card */
.notice-full-card {
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 24px;
  transition: all 0.2s;
  cursor: pointer;
}

.notice-full-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px oklch(0 0 0 / 0.1);
  border-color: var(--gold-light);
}

.notice-full-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.notice-full-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--navy);
  border-radius: 10px;
  color: white;
  flex-shrink: 0;
}

.notice-full-card__day {
  font-family: "Lora", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.notice-full-card__month {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
  opacity: 0.8;
}

.notice-full-card__meta {
  flex: 1;
  margin-left: 16px;
}

.notice-full-card__badges {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.notice-full-card__badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 6px;
}

.notice-full-card__badge--category {
  background: var(--cream2);
  color: var(--navy);
}

.notice-full-card__badge--priority {
  color: white;
}

.notice-full-card__badge--high {
  background: #dc2626;
}

.notice-full-card__badge--medium {
  background: #d97706;
}

.notice-full-card__badge--low {
  background: #059669;
}

.notice-full-card__title {
  font-family: "Lora", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 12px;
}

.notice-full-card__summary {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}

.notice-full-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.notice-full-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.2s;
}

.notice-full-card__link:hover {
  gap: 10px;
}

.notice-full-card__link svg {
  width: 14px;
  height: 14px;
}

/* Loading State */
.notices-page__loading {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
}

.notices-page__loading .loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 20px;
}

.notices-page__loading p {
  font-size: 15px;
  color: var(--text-mid);
}

/* Empty State */
.notices-page__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
}

.notices-page__empty p {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.notices-page__empty-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .page-hero {
    padding: 48px 24px 32px;
  }

  .notices-page {
    padding: 48px 20px 64px;
  }

  .notices-page__list {
    grid-template-columns: 1fr;
  }

  .notices-page__filters {
    flex-direction: column;
    align-items: stretch;
  }

  .notices-page__filter-group {
    width: 100%;
  }

  .notices-page__select {
    flex: 1;
  }

  .notices-page__count {
    margin-left: 0;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding: 40px 20px 28px;
  }
}

/* =========================================================
   HOW THINGS WORK
   3 horizontal process flows: Complaint, Emergency, Allotment
   Each flow = row with icon+title on left, step cards on right
   ========================================================= */
.how {
  background: var(--cream2); /* Changed from white */
  padding: 64px 32px; /* Reduced from 88px 32px 96px */
  border-top: 1px solid var(--border);
}

.how__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section header */
.how__header {
  margin-bottom: 48px; /* Reduced from 56px */
  max-width: 720px;
}

.how__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 16px; /* Reduced from 18px */
}

.how__label-bar {
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.how__title {
  font-family: "Lora", serif;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 16px; /* Reduced from 18px */
}

.how__intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-mid);
}

/* Flow card */
.flow {
  margin-bottom: 16px;
  padding: 24px 28px;
  background: white; /* Keep white for contrast against cream section */
  color: var(--text);
  border: 1px solid var(--border);
  border-left: 6px solid var(--navy);
  border-radius: 14px;
  box-shadow: 0 2px 12px oklch(0 0 0 / 0.04);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}

.flow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px oklch(0 0 0 / 0.06);
  border-color: oklch(0.82 0.04 72);
  border-left-color: var(--navy);
}

.flow:last-child {
  margin-bottom: 0;
}

.flow__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px; /* Reduced from 28px */
  flex-wrap: wrap;
}

.flow__title-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.flow__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--cream2);
  color: var(--navy);
  border: 1px solid var(--border);
}

/* Per-flow icon color accents */
.flow--complaint .flow__icon {
  background: oklch(0.96 0.04 72);
  color: oklch(0.5 0.13 68);
  border-color: oklch(0.86 0.06 72);
}

.flow--emergency .flow__icon {
  background: oklch(0.96 0.05 25);
  color: #dc2626; /* Red for emergency */
  border-color: oklch(0.86 0.09 25);
}

.flow--allotment .flow__icon {
  background: oklch(0.95 0.04 155);
  color: #059669; /* Green for allotment */
  border-color: oklch(0.85 0.06 155);
}

.flow__meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.flow__kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 5px;
}

.flow__heading {
  font-family: "Lora", serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.015em;
}

.flow__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: white;
  text-decoration: none;
  transition: all 0.15s;
}

.flow__link:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.flow__link svg {
  transition: transform 0.15s;
}

.flow__link:hover svg {
  transform: translateX(2px);
}

/* Steps row */
.flow__steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.flow__step {
  flex: 1;
  position: relative;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: 0;
  transition:
    border-color 0.2s,
    transform 0.2s,
    background 0.2s;
}

.flow__step:hover {
  border-color: var(--gold);
  background: white;
  transform: translateY(-2px);
}

.flow__step-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}

.flow__step-num-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.flow__step-title {
  font-family: "Lora", serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.flow__step-desc {
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 10px;
}

.flow__step-sla {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: oklch(0.45 0.12 68);
  background: oklch(0.96 0.04 72);
  border: 1px solid oklch(0.86 0.06 72);
  padding: 3px 9px;
  border-radius: 100px;
  text-transform: uppercase;
}

.flow__step-sla svg {
  opacity: 0.8;
}

/* Arrow connector */
.flow__arrow {
  flex: 0 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  opacity: 0.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .flow__steps {
    flex-wrap: wrap;
    gap: 12px;
  }

  .flow__arrow {
    display: none;
  }

  .flow__step {
    flex: 1 1 calc(50% - 6px);
    min-width: 160px;
  }
}

@media (max-width: 768px) {
  .how {
    padding: 48px 24px; /* Reduced for mobile */
  }

  .how__header {
    margin-bottom: 32px;
  }
}

@media (max-width: 640px) {
  .how {
    padding: 40px 20px;
  }

  .how__header {
    margin-bottom: 28px;
  }

  .flow {
    padding: 20px 18px;
    margin-bottom: 14px;
  }

  .flow__header {
    margin-bottom: 18px;
  }

  .flow__icon {
    width: 42px;
    height: 42px;
  }

  .flow__heading {
    font-size: 19px;
  }

  .flow__step {
    flex: 1 1 100%;
  }
}

/* =========================================================
   EMERGENCY BLOCK - COMPACT
   ========================================================= */

.emergency {
  background: var(--cream2);
  padding: 56px 32px; /* Reduced from 64px */
  border-top: 1px solid var(--border);
}

.emergency__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.emergency__header {
  margin-bottom: 24px; /* Reduced from 32px */
  max-width: 720px;
}

.emergency__label {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* Reduced from 10px */
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #dc2626;
  margin-bottom: 10px; /* Reduced from 14px */
}

.emergency__label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #dc2626;
  animation: pulse-dot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

/* Pulse animation for emergency dot */
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.emergency__title {
  font-family: "Lora", serif;
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 8px; /* Reduced from 10px */
}

.emergency__intro {
  font-size: 14px; /* Reduced from 15px */
  line-height: 1.6; /* Reduced from 1.65 */
  color: var(--text-mid);
}

/* Hostel selector row */
.emergency__selector {
  display: flex;
  align-items: center;
  gap: 10px; /* Reduced from 12px */
  margin-bottom: 16px; /* Reduced from 20px */
  flex-wrap: wrap;
  padding: 12px 16px; /* Reduced from 16px 18px */
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px; /* Reduced from 12px */
}

.emergency__selector-label {
  font-size: 13px; /* Reduced from 14px */
  font-weight: 600;
  color: var(--text-mid);
}

.emergency__selector-dropdown {
  padding: 8px 14px; /* Reduced from 10px 16px */
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  min-width: 200px;
  transition: border-color 0.15s;
}

.emergency__selector-dropdown:hover,
.emergency__selector-dropdown:focus {
  border-color: var(--navy);
  outline: none;
}

.emergency__selector-hint {
  margin-left: auto;
  font-size: 11px; /* Reduced from 12px */
  color: var(--text-light);
  font-style: italic;
}

/* Hostel-specific cards (shown after selection) */
.emergency__hostel-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px; /* Reduced from 14px */
  margin-bottom: 20px; /* Reduced from 28px */
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition:
    opacity 0.3s ease,
    max-height 0.4s ease,
    margin-bottom 0.3s ease;
}

.emergency--selected .emergency__hostel-cards {
  opacity: 1;
  max-height: 400px;
  margin-bottom: 20px; /* Reduced from 28px */
}

/* Campus-wide label (static) */
.emergency__campus-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px; /* Reduced from 14px */
  padding-top: 16px; /* Reduced from 20px */
  border-top: 1px dashed var(--border);
  display: block;
}

.emergency__campus-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px; /* Reduced from 14px */
}

/* Card — shared between hostel-specific and campus-wide */
.emg-card {
  display: flex;
  flex-direction: column;
  padding: 16px 18px; /* Reduced from 20px 22px */
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px; /* Reduced from 12px */
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}

.emg-card:hover {
  border-color: #dc2626;
  box-shadow: 0 6px 20px oklch(0 0 0 / 0.06);
  transform: translateY(-2px);
}

.emg-card__label {
  display: inline-flex;
  align-items: center;
  gap: 5px; /* Reduced from 6px */
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #dc2626;
  margin-bottom: 8px; /* Reduced from 10px */
}

.emg-card__label-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #dc2626;
  flex-shrink: 0;
}

.emg-card__kicker {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 4px; /* Reduced from 6px */
}

.emg-card__who {
  font-family: "Lora", serif;
  font-size: 16px; /* Reduced from 17px */
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 10px; /* Reduced from 14px */
}

.emg-card__call {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px; /* Reduced from 10px */
  padding: 10px 14px; /* Reduced from 12px 16px */
  background: var(--navy);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px; /* Reduced from 15px */
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
  margin-top: auto;
  font-variant-numeric: tabular-nums;
}

.emg-card__call:hover {
  background: oklch(0.26 0.055 252);
  transform: translateY(-1px);
}

.emg-card__call-icon {
  flex-shrink: 0;
  opacity: 0.9;
}

.emg-card__call-action {
  font-size: 11px; /* Reduced from 12px */
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
  .emergency__hostel-cards,
  .emergency__campus-cards {
    grid-template-columns: 1fr;
  }

  .emergency {
    padding: 44px 24px; /* Reduced from 48px */
  }
}

@media (max-width: 640px) {
  .emergency {
    padding: 36px 20px; /* Reduced from 40px */
  }

  .emergency__header {
    margin-bottom: 20px; /* Reduced */
  }

  .emergency__selector {
    padding: 10px 14px; /* Reduced from 14px 16px */
    flex-direction: column;
    align-items: flex-start;
    gap: 8px; /* Reduced */
  }

  .emergency__selector-dropdown {
    width: 100%;
  }

  .emergency__selector-hint {
    margin-left: 0;
    width: 100%;
  }

  .emg-card {
    padding: 14px 16px; /* Reduced from 18px */
  }

  .emg-card__who {
    font-size: 15px; /* Reduced from 16px */
  }

  .emg-card__call {
    padding: 9px 12px; /* Reduced from 10px 14px */
    font-size: 13px; /* Reduced from 14px */
  }
}

/* Responsive */
@media (max-width: 900px) {
  .mess .meals {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .mess {
    padding: 44px 20px 52px;
  }
  .mess .day--today {
    padding: 18px;
  }
  .mess .meals {
    grid-template-columns: 1fr;
  }
  .mess__feedback {
    flex-direction: column;
    align-items: flex-start;
  }
  .mess__week-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.week {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.day {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition: all 0.18s;
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 12px;
  text-align: left;
  font-family: inherit;
  width: 100%;
}
.day:hover {
  border-color: oklch(0.82 0.04 72);
}

.day__name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.day__name strong {
  display: block;
  font-family: "Lora", serif;
  font-size: 15px;
  color: var(--navy);
  letter-spacing: -0.01em;
  text-transform: none;
  font-weight: 700;
  margin-top: 1px;
}
.day__preview {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.4;
  min-width: 0;
  text-wrap: pretty;
}
.day__preview-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-right: 6px;
}
.day__chev {
  color: var(--text-light);
  opacity: 0.5;
  transition: transform 0.2s;
}

/* Meals block — hidden by default, shown when expanded */
.day__meals {
  display: none;
}

/* Today's card — expanded state */
.day--today {
  background: var(--navy);
  border-color: var(--navy);
  padding: 18px 20px;
  grid-template-columns: 1fr;
  gap: 14px;
  cursor: default;
}
.day--today .day__name {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: oklch(1 0 0 / 0.7);
}
.day--today .day__name strong {
  color: white;
}
.day--today .day__today-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 3px 9px;
  border-radius: 100px;
}
.day--today .day__today-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--navy);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.day--today .day__preview,
.day--today .day__chev {
  display: none;
}
.day--today .day__meals {
  display: block;
}

.meals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.meal {
  background: oklch(1 0 0 / 0.06);
  border: 1px solid oklch(1 0 0 / 0.1);
  border-radius: 10px;
  padding: 12px 14px;
}
.meal__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}
.meal__name {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.meal__time {
  font-size: 11px;
  color: oklch(1 0 0 / 0.55);
  font-variant-numeric: tabular-nums;
}
.meal__items {
  font-size: 12.5px;
  color: oklch(1 0 0 / 0.82);
  line-height: 1.5;
}

/* =========================================================
   ABOUT PAGE - Page Layout & Sections
   ========================================================= */

/* About page — stats strip */
.about-stats {
  display: flex;
  gap: 0;
  margin-top: 36px;
  background: var(--navy);
  border-radius: 14px;
  overflow: hidden;
  background-image: radial-gradient(oklch(1 0 0 / 0.05) 1.2px, transparent 1.2px);
  background-size: 22px 22px;
}
.about-stat {
  flex: 1;
  padding: 28px 16px;
  text-align: center;
  border-right: 1px solid oklch(1 0 0 / 0.1);
}
.about-stat:last-child {
  border-right: none;
}
.about-stat__value {
  font-family: "Lora", serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  margin-bottom: 10px;
}
.about-stat__label {
  font-size: 12px;
  color: oklch(1 0 0 / 0.55);
  letter-spacing: 0.05em;
  font-weight: 500;
  text-transform: uppercase;
}
@media (max-width: 480px) {
  .about-stats {
    flex-wrap: wrap;
    border-radius: 10px;
  }
  .about-stat {
    flex: 0 0 50%;
    border-bottom: 1px solid oklch(1 0 0 / 0.1);
  }
  .about-stat:nth-child(2) {
    border-right: none;
  }
}

/* Team Responsibilities */
.team-category__responsibilities {
  margin-top: 20px;
  background: var(--cream2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
}
.team-category__responsibilities-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.team-category__responsibilities ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.team-category__responsibilities li {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.team-category__responsibilities li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}

/* CoW Office cards — horizontal layout */
.cow-office-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}
.cow-office-card {
  display: flex;
  gap: 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  align-items: flex-start;
  transition: border-color 0.15s;
}
.cow-office-card:hover {
  border-color: var(--gold-light);
}
.cow-office-card__photo {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cream2);
}
.cow-office-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cow-office-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.cow-office-card__title {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 10px;
}
.cow-office-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cow-office-card__list li {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.5;
  display: flex;
  gap: 7px;
  align-items: flex-start;
}
.cow-office-card__list li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}
@media (max-width: 480px) {
  .cow-office-card {
    flex-direction: column;
  }
  .cow-office-card__photo {
    width: 56px;
    height: 56px;
  }
}

/* Page Container */
.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 32px 80px;
  background: white;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-mid);
  transition: color 0.15s;
}

.breadcrumb a:hover {
  color: var(--navy);
}

.breadcrumb > span {
  color: var(--text-light);
}

/* About Sections */
.about-section {
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}

.about-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

/* Section Header */
.section-header {
  margin-bottom: 32px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}

.section-label-bar {
  width: 24px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: "Lora", serif;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
}

/* Section Content */
.section-content {
  max-width: 900px;
}

.section-intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
  font-weight: 500;
}

.section-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
}

.section-content h3 {
  font-family: "Lora", serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 28px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.section-content ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.section-content ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
}

.section-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* Highlight Box */
.highlight-box {
  background: oklch(0.96 0.04 72);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 20px 24px;
  margin-top: 28px;
}

.highlight-box p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}

.highlight-box strong {
  color: var(--navy);
  font-weight: 700;
}

/* Roles Grid */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.role-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.2s;
}

.role-card:hover {
  border-color: var(--navy);
  box-shadow: 0 6px 20px oklch(0 0 0 / 0.06);
  transform: translateY(-2px);
}

.role-card__title {
  font-family: "Lora", serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.role-card ul {
  margin: 0;
}

.role-card ul li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.role-card ul li:last-child {
  margin-bottom: 0;
}

.role-card ul li::before {
  top: 8px;
  width: 5px;
  height: 5px;
}

/* Committees Grid */
.committees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.committee-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.2s;
}

.committee-card:hover {
  background: white;
  border-color: var(--gold);
  box-shadow: 0 4px 16px oklch(0 0 0 / 0.05);
}

.committee-card__name {
  font-family: "Lora", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.committee-card ul {
  margin: 0;
}

.committee-card ul li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.committee-card ul li:last-child {
  margin-bottom: 0;
}

.committee-card ul li::before {
  top: 8px;
  width: 5px;
  height: 5px;
  background: var(--gold);
}

/* Documents List */
.documents-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.documents-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  margin-bottom: 12px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.15s;
}

.documents-list li::before {
  display: none; /* Remove bullet */
}

.documents-list li:hover {
  background: white;
  border-color: var(--navy);
  box-shadow: 0 4px 16px oklch(0 0 0 / 0.04);
}

.doc-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  flex: 1;
}

.doc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  background: white;
  border: 1px solid var(--border);
  transition: all 0.15s;
  white-space: nowrap;
}

.doc-link:hover {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
  transform: translateY(-1px);
}

.doc-link svg {
  flex-shrink: 0;
  transition: transform 0.15s;
}

.doc-link:hover svg {
  transform: translateY(2px);
}

/* Responsive */
@media (max-width: 768px) {
  .page-container {
    padding: 24px 20px 60px;
  }

  .page-header {
    margin-bottom: 32px;
  }

  .quick-nav {
    position: static; /* Remove sticky on mobile */
    margin-bottom: 40px;
    padding: 16px 18px;
  }

  .quick-nav__list {
    grid-template-columns: 1fr;
  }

  .about-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .roles-grid,
  .committees-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .role-card,
  .committee-card {
    padding: 20px;
  }

  .documents-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .doc-link {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .breadcrumb {
    font-size: 12px;
    margin-bottom: 24px;
  }

  .page-title {
    font-size: 28px;
  }

  .page-subtitle {
    font-size: 15px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-intro {
    font-size: 15px;
  }
}
/* =========================================================
   LEADERSHIP - SHOWCASE LAYOUT
   ========================================================= */

/* Director - Featured Large Card */
.leader-featured {
  display: grid;
  grid-template-columns: 160px 1fr;
  grid-template-rows: auto 1fr;
  gap: 24px 32px;
  margin-bottom: 48px;
  padding: 32px;
  background: white;
  border: 2px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s;
}

.leader-featured:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 32px oklch(0 0 0 / 0.08);
}

.leader-featured__photo {
  grid-row: 1 / 3;
  width: 160px;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid var(--border);
  background: var(--cream);
}

.leader-featured__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-featured__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 8px;
}

.leader-featured__name {
  font-family: "Lora", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 0;
}

.leader-featured__designation {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-mid);
  margin: 0;
}

.leader-featured__email {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

.leader-featured__message {
  grid-column: 2;
  display: flex;
  gap: 16px;
  padding: 24px;
  background: oklch(0.96 0.04 72 / 0.5);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
}

.message-icon {
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.6;
}

.message-quote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin: 0;
  font-style: italic;
}

/* Dean & Chairman - Side by Side Cards */
.leader-duo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 0;
}

.leader-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.2s;
}

.leader-card:hover {
  border-color: var(--navy);
  box-shadow: 0 8px 24px oklch(0 0 0 / 0.06);
  transform: translateY(-2px);
}

.leader-card__header {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.leader-card__photo {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--border);
  background: var(--cream);
  flex-shrink: 0;
}

.leader-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-card__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}

.leader-card__name {
  font-family: "Lora", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 0;
}

.leader-card__designation {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  margin: 0;
}

.leader-card__email {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
}

.leader-card__message {
  display: flex;
  gap: 12px;
}

.message-icon-small {
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.5;
}

.message-quote-small {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
  margin: 0;
  font-style: italic;
}

/* =========================================================
   TEAM SECTION - ORGANIZED BY ROLE
   ========================================================= */

.team-category {
  margin-bottom: 56px;
}

.team-category:last-child {
  margin-bottom: 0;
}

.team-category__title {
  font-family: "Lora", serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}

.team-category__subtitle {
  font-size: 14px;
  color: var(--text-mid);
  margin: 0 0 24px 0;
}

/* Team Grids */
.team-grid {
  display: grid;
  gap: 24px;
}

.team-grid--wardens {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
}

.team-grid--compact {
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 18px;
}

.team-grid--caretakers {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

/* Regular Team Members */
.team-member {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.2s;
}

.team-member:hover {
  border-color: var(--navy);
  box-shadow: 0 6px 20px oklch(0 0 0 / 0.05);
  transform: translateY(-2px);
}

.team-member__photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 3px solid var(--cream);
  background: var(--cream);
}

.team-member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member__name {
  font-family: "Lora", serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.team-member__role {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  margin: 0 0 8px 0;
}

.team-member__contact {
  font-size: 12px;
  color: var(--text-light);
  margin: 0;
  word-break: break-all;
}

/* Small Team Members */
.team-member--small .team-member__photo {
  width: 90px;
  height: 90px;
}

.team-member--small .team-member__name {
  font-size: 14px;
}

.team-member--small .team-member__role {
  font-size: 12px;
}

.team-member--small .team-member__contact {
  font-size: 11px;
}

/* Caretaker Cards (Featured with Contact) */
.caretaker-card {
  display: flex;
  gap: 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.2s;
}

.caretaker-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px oklch(0 0 0 / 0.06);
  transform: translateY(-2px);
}

.caretaker-card__photo {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--border);
  background: var(--cream);
  flex-shrink: 0;
}

.caretaker-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.caretaker-card__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.caretaker-card__name {
  font-family: "Lora", serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.01em;
}

.caretaker-card__hostel {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  margin: 0;
}

.caretaker-card__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  margin-top: 4px;
  transition: color 0.15s;
  font-variant-numeric: tabular-nums;
}

.caretaker-card__phone:hover {
  color: var(--navy);
}

.caretaker-card__phone svg {
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .leader-featured {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .leader-featured__photo {
    grid-row: 1;
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }

  .leader-featured__info {
    text-align: center;
  }

  .leader-featured__message {
    grid-column: 1;
  }

  .leader-duo {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .leader-card__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .leader-card__photo {
    width: 100px;
    height: 100px;
  }

  .team-grid--wardens {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }

  .team-grid--caretakers {
    grid-template-columns: 1fr;
  }

  .caretaker-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .leader-featured__name {
    font-size: 22px;
  }

  .leader-card {
    padding: 20px;
  }

  .team-grid--wardens,
  .team-grid--compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .team-member {
    padding: 16px 12px;
  }

  .team-member__photo {
    width: 80px;
    height: 80px;
  }
}

/* =========================================================
   SERVICES PAGE
   ========================================================= */
.svc-anchor-strip {
  background: white;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 108px;
  z-index: 100;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.svc-anchor-strip::-webkit-scrollbar {
  display: none;
}
.svc-anchor-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  white-space: nowrap;
}
.svc-anchor-strip__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  border-bottom: 2px solid transparent;
  text-decoration: none;
  flex-shrink: 0;
  transition:
    color 0.15s,
    border-color 0.15s;
}
.svc-anchor-strip__link:hover {
  color: var(--navy);
}
.svc-anchor-strip__link.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.svc-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 80px;
}
.svc-section {
  padding: 52px 0 48px;
  border-bottom: 1px solid var(--border);
}
.svc-section:last-child {
  border-bottom: none;
}
.svc-section__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.svc-section__title {
  font-family: "Lora", serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.svc-section__desc {
  font-size: 14px;
  color: var(--text-mid);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.erp-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--navy);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.erp-cta h3 {
  font-family: "Lora", serif;
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}
.erp-cta p {
  font-size: 13px;
  color: oklch(1 0 0 / 0.55);
  max-width: 400px;
  line-height: 1.6;
}
.erp-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 8px;
  text-decoration: none;
  flex-shrink: 0;
  transition:
    background 0.15s,
    transform 0.15s;
}
.erp-cta__btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.flow-diagram {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 16px;
  overflow-x: auto;
}
.flow-diagram svg {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.form-card__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.form-card__checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-card__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}
.form-card__checklist li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}
.form-card__note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
  font-style: italic;
}
.form-card__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 168px;
}
.form-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--navy);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 10px;
  text-decoration: none;
  width: 100%;
  transition:
    background 0.15s,
    transform 0.15s;
}
.form-link-btn:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
}
.form-card__auth {
  font-size: 11px;
  color: var(--text-light);
  text-align: center;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 5px;
}
.form-card__auth svg {
  color: var(--green);
  flex-shrink: 0;
}

.grounds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}
.ground-pill {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 20px;
  background: var(--cream2);
  color: var(--text-mid);
  border: 1px solid var(--border);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.info-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 20px;
  transition: border-color 0.15s;
}
.info-card:hover {
  border-color: var(--gold-light);
}
.info-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--cream2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 14px;
}
.info-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.info-card__body {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
}
.info-card__body strong {
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 768px) {
  .svc-anchor-strip__inner {
    padding: 0 16px;
  }
  .svc-inner {
    padding: 0 20px 60px;
  }
  .form-card {
    grid-template-columns: 1fr;
  }
  .form-card__action {
    flex-direction: row;
    min-width: 0;
  }
  .erp-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .svc-anchor-strip {
    top: 60px;
  }
  .form-card__action {
    flex-direction: column;
  }
  .form-link-btn {
    width: 100%;
  }
}
/* Mess section — services page overrides */
#mess.svc-section {
  padding: 52px 0 48px;
}
#mess .mess__inner {
  padding: 0;
  background: none;
  max-width: none;
}
#mess .mess__label {
  display: none;
}
#mess .mess__title {
  font-family: "Lora", serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  background: none;
  -webkit-text-fill-color: unset;
}
#mess .mess__intro {
  font-size: 14px;
  color: var(--text-mid);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 28px;
}
#mess .mess__header {
  background: none;
  padding: 0;
  margin-bottom: 24px;
  border: none;
  flex-wrap: wrap;
  gap: 12px;
}
#mess .mess__header-cta {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
}
#mess .mess__feedback {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
#mess .mess__feedback-prompt {
  font-size: 13px;
  color: var(--text-mid);
}
#mess .mess__feedback-prompt strong {
  color: var(--text);
}
#mess .mess__feedback-btn {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--text-mid);
  transition:
    border-color 0.15s,
    color 0.15s;
}
#mess .mess__feedback-btn:hover {
  border-color: var(--gold);
  color: var(--text);
}
#mess .mess__week-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-light);
  background: none;
}
#mess .mess__week-footer-link {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
}

/* ── Quick Action Cards — notice style ── */
.updates__events {
  display: flex;
  flex-direction: column;
  animation: fadeUp 0.7s 0.3s ease-out backwards;
}
.quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
  flex: 1;
}
.quick-action-card {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: white;
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: all 0.2s;
  text-decoration: none;
}
.quick-action-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px oklch(0 0 0 / 0.08);
  border-color: var(--gold-light);
}
.quick-action-card__date {
  width: 44px;
  min-width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.quick-action-card__content {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.quick-action-card__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.quick-action-card__summary {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.5;
}
.quick-action-card__cta {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  margin-top: 2px;
}
.quick-action-card:hover .quick-action-card__cta {
  color: oklch(0.68 0.13 72);
}
@media (max-width: 640px) {
  .quick-actions {
    grid-template-columns: 1fr;
    grid-template-rows: unset;
  }
}
