/* ==========================================================================
   Swami Vivekanand Education Trust (VEDA) — stylesheet
   Type: Libre Baskerville (display) / Inter (body) / IBM Plex Mono (labels)
   Palette: Maroon, Gold, Cream, Ink
   ========================================================================== */

:root {
  --cream: #ffffff;
  --cream-dim: #f5f3ee;
  --paper: #ffffff;
  --maroon: #7a1f2a;
  --maroon-dark: #591620;
  --gold: #b5872f;
  --gold-light: #d9b768;
  --teal: #0e6e64;
  --teal-dark: #0a4f48;
  --teal-light: #e3f2f0;
  --whatsapp: #25d366;
  --ink: #2b2420;
  --ink-soft: #574e46;
  --line: rgba(43, 36, 32, 0.14);

  --font-display: "Libre Baskerville", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Menlo, monospace;

  --max-width: 1180px;
  --radius: 3px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--maroon-dark);
  line-height: 1.18;
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
}
h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
}
h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 1em;
  max-width: 65ch;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--maroon);
  background: rgba(122, 31, 42, 0.07);
  border: 1px solid rgba(122, 31, 42, 0.25);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
}
.eyebrow.gold {
  color: var(--gold);
  background: rgba(181, 135, 47, 0.1);
  border-color: rgba(181, 135, 47, 0.32);
}

.lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
}

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease;
}
.btn-primary {
  background: var(--maroon);
  color: var(--paper);
}
.btn-primary:hover {
  background: var(--maroon-dark);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--maroon);
  color: var(--maroon);
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* Header ------------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: contain;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--maroon-dark);
}
.brand-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.site-nav {
  position: relative;
}
.nav-list {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition:
    color 0.15s ease,
    border-color 0.15s ease;
}
.nav-list a:hover {
  color: var(--maroon);
}
.nav-list a.active {
  color: var(--maroon);
  border-color: var(--gold);
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 1.2rem;
  padding: 6px 10px;
  cursor: pointer;
  color: var(--ink);
}

/* Page hero band (used on interior pages) ----------------------------------- */
.page-hero {
  border-bottom: 1px solid var(--line);
  padding: 56px 0 46px;
  background: linear-gradient(180deg, var(--cream-dim), var(--cream));
}
.page-hero .meta-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 18px;
}
.page-hero .meta-row span {
  border-left: 2px solid var(--gold);
  padding-left: 10px;
}

section {
  padding: 60px 0;
}
section.tight {
  padding: 36px 0;
}
.section-head {
  max-width: 660px;
  margin-bottom: 36px;
}
.divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

.band-dark {
  background: var(--maroon-dark);
  color: var(--cream);
}
.band-dark h2,
.band-dark h3 {
  color: var(--paper);
}
.band-dark p {
  color: rgba(248, 243, 232, 0.82);
}

.grid {
  display: grid;
  gap: 26px;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.card .code {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.07em;
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* Institution grid (signature) --------------------------------------------- */
.inst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}
.inst-cell {
  background: var(--paper);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 190px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.2s ease;
}
.inst-cell:hover {
  background: var(--cream-dim);
}
.inst-cell .code {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.07em;
}
.inst-cell h3 {
  margin: 10px 0 6px;
  font-size: 1.05rem;
}
.inst-cell span.note {
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.inst-cell.wide {
  grid-column: span 2;
}
.inst-cell.accent {
  background: var(--maroon);
  color: var(--paper);
}
.inst-cell.accent .code {
  color: var(--gold-light);
}
.inst-cell.accent span.note {
  color: rgba(248, 243, 232, 0.8);
}
.inst-cell.accent:hover {
  background: var(--maroon-dark);
}

/* Stats strip -------------------------------------------------------------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 26px 20px;
  border-left: 1px solid var(--line);
}
.stat:first-child {
  border-left: none;
}
.stat .num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--maroon);
  display: block;
}
.stat .label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Photo frame / people ------------------------------------------------------ */
.people-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.person-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 22px;
  border-radius: var(--radius);
}
.person-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold-light);
  flex-shrink: 0;
}
.person-card .code {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Message block (managing trustee message) ---------------------------------- */
.message-block {
  background: var(--paper);
  border-left: 4px solid var(--maroon);
  padding: 28px 30px;
  border-radius: var(--radius);
}
.message-block p {
  color: var(--ink-soft);
}
.message-sign {
  margin-top: 18px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--maroon-dark);
}

/* Photo gallery -------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent, rgba(43, 36, 32, 0.85));
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 22px 14px 10px;
  letter-spacing: 0.04em;
}
.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

/* Timeline ------------------------------------------------------------------ */
.timeline {
  border-left: 2px solid var(--gold);
  margin-left: 6px;
}
.timeline-item {
  position: relative;
  padding: 0 0 32px 28px;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--maroon);
}

/* Contact form ---------------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
}
.form-field {
  margin-bottom: 18px;
}
.form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}
.form-field textarea {
  min-height: 120px;
  resize: vertical;
}
.form-field .error-msg {
  display: none;
  color: var(--maroon);
  font-size: 0.8rem;
  margin-top: 6px;
}
.form-field.invalid input,
.form-field.invalid select,
.form-field.invalid textarea {
  border-color: var(--maroon);
}
.form-field.invalid .error-msg {
  display: block;
}
.form-status {
  display: none;
  padding: 14px 16px;
  border: 1px solid var(--gold);
  background: rgba(181, 135, 47, 0.09);
  color: var(--maroon-dark);
  border-radius: var(--radius);
  margin-bottom: 18px;
  font-size: 0.9rem;
}
.form-status.show {
  display: block;
}
.info-block {
  margin-bottom: 26px;
}
.info-block .label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.notice {
  background: rgba(181, 135, 47, 0.1);
  border: 1px dashed var(--gold);
  color: var(--ink-soft);
  font-size: 0.85rem;
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-top: 10px;
}

/* Footer ------------------------------------------------------------------------ */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 46px 0 28px;
  margin-top: 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
.footer-grid h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-grid li {
  margin-bottom: 8px;
}
.footer-grid a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.88rem;
}
.footer-grid a:hover {
  color: var(--maroon);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  flex-wrap: wrap;
  gap: 8px;
}

/* Responsive --------------------------------------------------------------------- */
@media (max-width: 860px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5 {
    grid-template-columns: 1fr;
  }
  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .inst-grid {
    grid-template-columns: 1fr;
  }
  .inst-cell.wide {
    grid-column: span 1;
  }
  .people-grid {
    grid-template-columns: 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .elig-grid,
  .life-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-block;
  }
  .nav-list {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 14px);
    background: var(--paper);
    border: 1px solid var(--line);
    flex-direction: column;
    padding: 12px;
    gap: 4px;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(43, 36, 32, 0.12);
  }
  .nav-list.open {
    display: flex;
  }
  .nav-list a {
    display: block;
    padding: 10px 12px;
    border-bottom: none;
  }
  .nav-list a.active {
    background: rgba(122, 31, 42, 0.07);
    border-radius: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   Enhancements — scroll reveals, lightbox, hero motif, header depth
   ========================================================================== */

/* Scroll reveal ------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Header depth on scroll ----------------------------------------------------- */
.site-header {
  transition:
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.site-header.scrolled {
  box-shadow: 0 6px 20px rgba(43, 36, 32, 0.08);
}

/* Brand mark — logo gets a proper frame instead of floating on cream -------- */
.brand-mark-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--gold-light);
  box-shadow: 0 2px 8px rgba(43, 36, 32, 0.12);
  padding: 4px;
  flex-shrink: 0;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.brand:hover .brand-mark-wrap {
  transform: rotate(-6deg);
  box-shadow: 0 4px 14px rgba(43, 36, 32, 0.18);
}
.brand-mark {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* Card hover lift ------------------------------------------------------------ */
.card,
.person-card {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.card:hover,
.person-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(43, 36, 32, 0.08);
  border-color: rgba(181, 135, 47, 0.4);
}

.inst-cell {
  position: relative;
}
.inst-cell::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.inst-cell.accent::after {
  background: var(--gold-light);
}
.inst-cell:hover::after {
  transform: scaleX(1);
}

/* Buttons — small motion on hover -------------------------------------------- */
.btn-primary:hover,
.btn-ghost:hover {
  box-shadow: 0 6px 16px rgba(43, 36, 32, 0.1);
}

/* Zoomable images (lightbox trigger) ----------------------------------------- */
.zoomable,
.gallery-item img {
  cursor: zoom-in;
}

/* Lightbox -------------------------------------------------------------------- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(24, 18, 15, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.lightbox-overlay.open {
  display: flex;
  opacity: 1;
}
.lightbox-overlay img {
  max-width: min(90vw, 1100px);
  max-height: 84vh;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox-caption {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}
.lightbox-close {
  position: absolute;
  top: 22px;
  right: 30px;
  background: none;
  border: 1px solid rgba(248, 243, 232, 0.4);
  color: var(--cream);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.15s ease;
}
.lightbox-close:hover {
  background: rgba(248, 243, 232, 0.12);
}

/* Back to top ------------------------------------------------------------------ */
.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--paper);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(43, 36, 32, 0.22);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    background 0.2s ease;
  z-index: 90;
}
.back-to-top.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--maroon-dark);
}

/* Smoother mobile nav slide --------------------------------------------------- */
@media (max-width: 860px) {
  .nav-list {
    max-height: 0;
    overflow: hidden;
    display: flex;
    padding: 0 12px;
    transition:
      max-height 0.28s ease,
      padding 0.28s ease;
    border: none;
    box-shadow: none;
  }
  .nav-list.open {
    max-height: 340px;
    padding: 12px;
    border: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(43, 36, 32, 0.12);
  }
}

/* Visible keyboard focus everywhere ------------------------------------------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   Home page — video hero banner
   ========================================================================== */

.hero-video {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--maroon-dark);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(43, 20, 16, 0.55) 0%,
      rgba(43, 20, 16, 0.35) 40%,
      rgba(30, 14, 12, 0.82) 100%
    ),
    linear-gradient(
      90deg,
      rgba(89, 22, 32, 0.65) 0%,
      rgba(89, 22, 32, 0.15) 55%,
      rgba(89, 22, 32, 0.05) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 32px 90px;
  max-width: 760px;
}

.eyebrow-on-dark {
  color: var(--gold-light);
  background: rgba(248, 243, 232, 0.08);
  border-color: rgba(217, 183, 104, 0.45);
}

.hero-heading {
  color: var(--paper);
  margin-bottom: 0.42em;
}

.hero-lede {
  color: rgba(248, 243, 232, 0.88);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.btn-on-dark {
  border-color: rgba(248, 243, 232, 0.5);
  color: var(--paper);
}
.btn-on-dark:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(248, 243, 232, 0.06);
}

.hero-sound-toggle {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(24, 18, 15, 0.45);
  border: 1px solid rgba(248, 243, 232, 0.4);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 9px 14px;
  border-radius: 30px;
  cursor: pointer;
  backdrop-filter: blur(3px);
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}
.hero-sound-toggle:hover {
  background: rgba(24, 18, 15, 0.65);
  border-color: var(--gold-light);
}

.hero-sound-icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  position: relative;
}
.hero-sound-icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 7px;
  height: 8px;
  background: currentColor;
  clip-path: polygon(0 30%, 40% 30%, 100% 0, 100% 100%, 40% 70%, 0 70%);
}
.hero-sound-toggle[data-muted="true"] .hero-sound-icon::after {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  width: 16px;
  height: 16px;
  border-top: 1.5px solid currentColor;
  transform: rotate(45deg);
  transform-origin: 0 0;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(248, 243, 232, 0.55);
  border-radius: 20px;
  background: transparent;
  cursor: pointer;
}
.hero-scroll-cue span {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--gold-light);
  animation: hero-scroll-cue-move 1.8s ease-in-out infinite;
}
@keyframes hero-scroll-cue-move {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  70% {
    transform: translateY(14px);
    opacity: 0;
  }
  100% {
    transform: translateY(14px);
    opacity: 0;
  }
}

@media (max-width: 860px) {
  .hero-video {
    min-height: 78vh;
  }
  .hero-content {
    padding: 100px 24px 70px;
  }
  .hero-sound-toggle .hero-sound-label {
    display: none;
  }
  .hero-sound-toggle {
    padding: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue span {
    animation: none;
    top: 16px;
  }
}

/* ==========================================================================
   Pillars — "Why VEDA"
   ========================================================================== */

.pillar-grid {
  grid-template-columns: repeat(4, 1fr);
}

.pillar-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 26px 22px;
}
.pillar-code {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 12px;
}
.pillar-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.pillar-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 0;
}

@media (max-width: 860px) {
  .pillar-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .pillar-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Campus Life — video spotlight
   ========================================================================== */

.video-spotlight {
  position: relative;
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 21/9;
  background: var(--ink);
}
.video-spotlight-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.video-spotlight:hover .video-spotlight-poster {
  transform: scale(1.03);
}
.video-spotlight-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(43, 20, 16, 0.15) 0%,
    rgba(43, 20, 16, 0.7) 100%
  );
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(248, 243, 232, 0.94);
  color: var(--maroon-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  padding-left: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.video-spotlight:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--gold-light);
}
.video-spotlight-caption {
  position: absolute;
  left: 24px;
  bottom: 20px;
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

@media (max-width: 860px) {
  .video-spotlight {
    aspect-ratio: 4/3;
  }
}

/* Video modal ------------------------------------------------------------------ */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 12, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 220;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.video-modal-overlay.open {
  display: flex;
  opacity: 1;
}
.video-modal-inner {
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}
.video-modal-inner video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}
.video-modal-close {
  position: absolute;
  top: 22px;
  right: 30px;
  background: none;
  border: 1px solid rgba(248, 243, 232, 0.4);
  color: var(--cream);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.15s ease;
}
.video-modal-close:hover {
  background: rgba(248, 243, 232, 0.12);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonial-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  position: relative;
}
.testimonial-card .quote {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 14px;
}
.testimonial-card .attribution {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  background: var(--maroon);
  background-image: radial-gradient(
    circle at 85% 20%,
    rgba(217, 183, 104, 0.18),
    transparent 55%
  );
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 {
  color: var(--paper);
  margin-bottom: 8px;
}
.cta-band p {
  color: rgba(248, 243, 232, 0.85);
  margin-bottom: 0;
}
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-actions .btn-ghost {
  border-color: rgba(248, 243, 232, 0.5);
  color: var(--paper);
}
.cta-actions .btn-ghost:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

@media (max-width: 700px) {
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   Utility — tint sections, teal accent variants
   ========================================================================== */
.section-tint {
  background: var(--cream-dim);
}
.eyebrow.teal {
  color: var(--teal);
  background: var(--teal-light);
  border-color: rgba(14, 110, 100, 0.32);
}
.text-teal {
  color: var(--teal);
}
.btn-teal {
  background: var(--teal);
  color: var(--paper);
}
.btn-teal:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

/* ==========================================================================
   Dropdown navigation
   ========================================================================== */
.has-dropdown {
  position: relative;
}
.has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.caret {
  font-size: 0.62em;
  transition: transform 0.2s ease;
  display: inline-block;
}
.has-dropdown:hover .caret {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -14px;
  min-width: 210px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(43, 36, 32, 0.14);
  list-style: none;
  margin: 0;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s;
  z-index: 60;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.dropdown-menu li {
  margin: 0;
}
.dropdown-menu a {
  display: block;
  padding: 9px 12px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  border-radius: 3px;
  border-bottom: none !important;
}
.dropdown-menu a:hover {
  background: var(--cream-dim);
  color: var(--maroon);
}

@media (max-width: 860px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 14px;
    max-height: 0;
    overflow: hidden;
    display: block;
    transition: max-height 0.25s ease;
  }
  .has-dropdown.open .dropdown-menu {
    max-height: 260px;
    padding: 6px 0 6px 14px;
  }
  .has-dropdown > a {
    justify-content: space-between;
    width: 100%;
  }
}

/* ==========================================================================
   Floating contact buttons — WhatsApp + Call
   ========================================================================== */
.floating-contact {
  position: fixed;
  left: 22px;
  bottom: 26px;
  z-index: 95;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.fc-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 52px;
  height: 52px;
  border-radius: 3rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(43, 36, 32, 0.28);
  overflow: hidden;
  transition:
    width 0.28s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.2s ease,
    box-shadow 0.2s ease;
  white-space: nowrap;
}
.fc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(43, 36, 32, 0.34);
}
.fc-icon {
  width: 52px;
  height: 52px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc-icon svg {
  width: 24px;
  height: 24px;
}
.fc-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--paper);
  padding-right: 18px;
  opacity: 0;
  transition: opacity 0.15s ease 0.05s;
}
.fc-btn:hover {
  width: auto;
}
.fc-btn:hover .fc-label {
  opacity: 1;
}
.fc-whatsapp {
  background: var(--whatsapp);
}
.fc-call {
  background: var(--maroon);
}
.fc-pulse {
  position: absolute;
  /* inset: 0; */
  /* border-radius: 50%; */
  /* animation: fc-pulse 2.4s ease-out infinite; */
  pointer-events: none;
}
.fc-whatsapp .fc-pulse {
  background: var(--whatsapp);
}
@keyframes fc-pulse {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}
@media (max-width: 860px) {
  .floating-contact {
    left: 16px;
    bottom: 18px;
    gap: 12px;
  }
  .fc-btn,
  .fc-icon {
    width: 48px;
    height: 48px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fc-pulse {
    animation: none;
  }
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.faq-tab {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-soft);
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}
.faq-tab:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.faq-tab.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--paper);
}
.faq-search {
  margin-bottom: 30px;
}
.faq-search input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--paper);
}
.faq-search input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-light);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
  transition: border-color 0.15s ease;
}
.faq-item[data-hidden="true"] {
  display: none;
}
.faq-item.open {
  border-color: rgba(14, 110, 100, 0.4);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 20px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
}
.faq-question .faq-plus {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1rem;
  transition: transform 0.25s ease;
}
.faq-item.open .faq-question .faq-plus {
  transform: rotate(135deg);
  background: var(--teal);
  color: var(--paper);
  border-color: var(--teal);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 20px 20px;
  color: var(--ink-soft);
}
.faq-answer-inner p:last-child {
  margin-bottom: 0;
}
.faq-cat-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.faq-empty {
  display: none;
  text-align: center;
  padding: 40px 20px;
  color: var(--ink-soft);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}
.faq-empty.show {
  display: block;
}

/* ==========================================================================
   Gallery filter
   ========================================================================== */
.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.gallery-tab {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-soft);
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}
.gallery-tab:hover {
  border-color: var(--maroon);
  color: var(--maroon);
}
.gallery-tab.active {
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--paper);
}
.gallery-grid.full {
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.gallery-grid.full .gallery-item[data-hidden="true"] {
  display: none;
}
@media (max-width: 860px) {
  .gallery-grid.full {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gallery-count {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

/* ==========================================================================
   Blog — cards, article
   ========================================================================== */
.blog-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  background: var(--paper);
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.blog-featured:hover {
  box-shadow: 0 16px 40px rgba(43, 36, 32, 0.12);
  transform: translateY(-2px);
}
.blog-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}
.blog-featured-body {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.blog-tag {
  color: var(--teal);
  background: var(--teal-light);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}
.blog-featured h2 {
  margin-bottom: 10px;
}
.blog-featured p {
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  background: var(--paper);
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}
.blog-card:hover {
  box-shadow: 0 14px 32px rgba(43, 36, 32, 0.1);
  transform: translateY(-3px);
  border-color: rgba(181, 135, 47, 0.4);
}
.blog-card-media {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.blog-card:hover .blog-card-media img {
  transform: scale(1.06);
}
.blog-card-body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card h3 {
  font-size: 1.08rem;
  margin: 0 0 8px;
}
.blog-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 0;
  flex: 1;
}
.blog-read-more {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--maroon);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}
.blog-card:hover .blog-read-more {
  gap: 10px;
}

/* Article page ---------------------------------------------------------- */
.article-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}
.article-hero-img {
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 30px 0 10px;
}
.article-body h2 {
  margin-top: 1.6em;
  font-size: 1.4rem;
}
.article-body h3 {
  margin-top: 1.4em;
}
.article-body p {
  max-width: none;
  color: var(--ink-soft);
  font-size: 1.03rem;
}
.article-body ul,
.article-body ol {
  color: var(--ink-soft);
  font-size: 1.03rem;
  padding-left: 22px;
}
.article-body li {
  margin-bottom: 8px;
}
.pull-quote {
  border-left: 4px solid var(--gold);
  margin: 32px 0;
  padding: 6px 0 6px 24px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--maroon-dark);
}
.article-author-box {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream-dim);
}
.article-author-box .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  flex-shrink: 0;
}
.share-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 26px 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.share-row span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
}
.share-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  text-decoration: none;
  transition:
    border-color 0.15s ease,
    color 0.15s ease;
}
.share-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.share-btn svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 860px) {
  .blog-featured {
    grid-template-columns: 1fr;
  }
  .blog-featured img {
    min-height: 220px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Admissions — steps timeline
   ========================================================================== */
.steps-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.step-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--teal);
  border-radius: var(--radius);
  padding: 22px 16px 18px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--teal);
  display: block;
  margin-bottom: 8px;
}
.step-card h3 {
  font-size: 0.94rem;
  margin-bottom: 6px;
}
.step-card p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 960px) {
  .steps-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}
@media (max-width: 560px) {
  .steps-row {
    grid-template-columns: 1fr;
  }
}

.elig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) {
  .elig-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Campus life — icon feature cards, day timeline
   ========================================================================== */
.life-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.life-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.life-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(43, 36, 32, 0.08);
}
.life-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.life-icon svg {
  width: 22px;
  height: 22px;
}
@media (max-width: 860px) {
  .life-grid {
    grid-template-columns: 1fr;
  }
}

.day-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.day-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.day-row:last-child {
  border-bottom: none;
}
.day-time {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--teal);
  font-weight: 600;
  padding-top: 2px;
}
.day-row h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.day-row p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
@media (max-width: 640px) {
  .day-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
