@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
  --about-ink: #1b1716;
  --about-muted: #675d59;
  --about-line: rgba(127, 17, 19, 0.1);
  --about-surface: #fffaf6;
  --about-surface-soft: #f7eee8;
  --about-maroon-light: #a11d23;
  --about-maroon: #7f1113;
  --about-maroon-deep: #4f090c;
  --about-gold: #d7aa43;
  --about-shadow: 0 22px 48px rgba(79, 9, 12, 0.1);
  --about-page-gutter: var(--layout-page-gutter, 24px);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: #f6efe8;
  overflow-x: hidden;
}

.main-content,
.main-content button,
.main-content input,
.main-content textarea,
.main-content select {
  font-family: "Poppins", sans-serif;
}

.main-content *,
.main-content *::before,
.main-content *::after {
  box-sizing: border-box;
}

.main-content {
  width: 100%;
  margin: 0;
  padding: 0;
  min-height: 0;
}

/* ============================================================
   SECTION TAG
   ============================================================ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--about-maroon);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-tag::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

/* ============================================================
   HERO / CAROUSEL
   ============================================================ */
.hero-shell {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  z-index: 1;
}

.carousel-section {
  height: 100%;
  margin-top: 0;
}

.carousel {
  position: relative;
  min-height: 340px;
  background: linear-gradient(180deg, #4b090c 0%, #120304 100%);
  overflow: hidden;
}

.full-carousel {
  border-bottom: 1px solid rgba(127, 17, 19, 0.1);
}

.carousel-stage {
  position: relative;
  width: 100%;
  min-height: 340px;
  height: 340px;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.carousel-split {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  height: 100%;
}

.carousel-half {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) sepia(0.08);
}

.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(240, 200, 90, 0.2), transparent 45%),
    linear-gradient(145deg, rgba(45, 0, 0, 0.5), rgba(12, 8, 8, 0.4));
}

.carousel-caption {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: #fffaf4;
  text-align: center;
  pointer-events: none;
}

.carousel-caption h2 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(1.9rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 14px 30px rgba(18, 3, 4, 0.45);
}

.carousel-prev,
.carousel-next,
.carousel-indicators {
  display: none;
}

/* ============================================================
   ABOUT SHELL & INTRO
   ============================================================ */
.about-shell {
  width: 100%;
  max-width: none;
  margin: 0 auto 0;
  display: grid;
  gap: 10px;
  justify-items: stretch; /* FIX: was center — prevented 100vw breakout children from working */
}

.about-intro,
.about-section-card {
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.96) 0%, rgba(247, 239, 232, 0.92) 100%);
  border: 1px solid var(--about-line);
  border-radius: 24px;
  box-shadow: var(--about-shadow);
}

.about-intro {
  display: flex;
  justify-content: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -8px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
  position: relative;
  z-index: 4;
  /* FIX: ensure it stretches to fill the grid cell before the 100vw breakout */
  justify-self: stretch;
  align-self: start;
}

.about-intro h1 {
  margin: 0 0 14px;
  color: var(--about-ink);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.02;
}

.about-intro-copy p,
.section-copy,
.section-copy p {
  color: var(--about-muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.about-intro-copy #aboutPUP p:last-child,
.section-copy p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   CAMPUS STORY CARD
   ============================================================ */
.campus-story-card {
  position: relative;
  max-width: 100%;
  width: 100%;
  margin: 0;
  min-height: 360px;
  padding: 40px 460px 40px clamp(24px, 4.2vw, 64px);
  border-radius: 0;
  background: linear-gradient(180deg, var(--about-maroon-light) 0%, var(--about-maroon) 48%, var(--about-maroon-deep) 100%);
  color: #fffaf4;
  overflow: visible;
  z-index: 4;
}

.campus-story-layout {
  display: block;
  width: 100%;
  margin: 0;
}

.campus-story-copy {
  min-width: 0;
  max-width: 1080px;
  padding-left: 0;
  padding-right: 0;
}

.campus-story-tag {
  color: rgba(255, 241, 231, 0.82);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.campus-story-card h2 {
  margin: 12px 0 12px;
  color: #fffaf4;
  font-size: 1.6rem;
  line-height: 1.12;
}

.campus-story-card p {
  color: rgba(255, 241, 231, 0.88);
  font-size: 0.94rem;
  line-height: 1.7;
}

.campus-story-description {
  margin-top: 18px;
  max-width: 980px;
  padding: 22px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.14) 0%, rgba(255, 250, 244, 0.08) 100%);
  border: 1px solid rgba(255, 241, 231, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 30px rgba(18, 3, 4, 0.12);
  backdrop-filter: blur(6px);
}

.campus-story-description > :first-child {
  margin-top: 0;
}

.campus-story-description > :last-child {
  margin-bottom: 0;
}

.campus-story-description p,
.campus-story-description ul,
.campus-story-description ol,
.campus-story-description blockquote {
  margin: 0 0 12px;
}

.campus-story-description ul,
.campus-story-description ol {
  padding-left: 1.25rem;
}

.campus-story-description blockquote {
  padding-left: 14px;
  border-left: 3px solid rgba(240, 200, 90, 0.75);
}

.campus-story-visual {
  position: absolute;
  top: -34px;
  bottom: -36px;
  right: 38px;
  width: 380px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 241, 231, 0.16);
  z-index: 8;
}

.campus-story-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
}

/* ============================================================
   CONTENTS STRIP & CARDS
   ============================================================ */
.contents-strip {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -10px;
  padding: 24px 32px 28px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 247, 237, 0.96) 0%, rgba(247, 239, 232, 0.92) 54%, rgba(215, 170, 67, 0.16) 100%);
  box-shadow: var(--about-shadow);
  position: relative;
  z-index: 1;
  /* FIX: ensure it stretches to fill the grid cell before the 100vw breakout */
  justify-self: stretch;
  align-self: start;
}

.contents-strip-head {
  margin-bottom: 16px;
}

.contents-strip-head .section-tag {
  color: var(--about-maroon);
}

.contents-strip-head h2 {
  margin: 0;
  color: #000;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.15;
}

.contents-strip-head .section-tag::before {
  opacity: 0.55;
}

.contents-cards {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 310px);
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(127, 17, 19, 0.24) transparent;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  scroll-snap-type: x mandatory;
}

.contents-cards::-webkit-scrollbar {
  height: 8px;
}

.contents-cards::-webkit-scrollbar-thumb {
  background: rgba(127, 17, 19, 0.22);
  border-radius: 999px;
}

.contents-card {
  position: relative;
  isolation: isolate;
  height: 360px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 239, 232, 0.88) 100%);
  border: 1px solid rgba(127, 17, 19, 0.12);
  color: var(--about-ink);
  text-decoration: none;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.22);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  scroll-snap-align: start;
}

.contents-card:hover,
.contents-card:focus-visible,
.contents-card.active {
  transform: translateY(-4px);
  border-color: rgba(127, 17, 19, 0.22);
  box-shadow: 0 18px 28px rgba(79, 9, 12, 0.2);
}

.contents-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.contents-card-front,
.contents-card-back {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  overflow: hidden;
}

.contents-card-front {
  background: #f2f2f2;
  display: grid;
  grid-template-rows: 1fr auto;
  z-index: 1;
}

.contents-card-front img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: none;
  transition: transform 0.45s ease;
}

.contents-card-copy {
  position: relative;
  min-height: 102px;
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  background: var(--about-maroon);
  z-index: 2;
  transition: opacity 0.28s ease, transform 0.35s ease;
}

.contents-card-number {
  display: inline-flex;
  color: rgba(255, 241, 231, 0.76);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contents-card-copy h3,
.contents-card-back h3 {
  margin: 0;
  color: #fffaf4;
  font-size: clamp(0.82rem, 2.8vw, 1.12rem);
  font-weight: 800;
  line-height: 1.25;
  text-shadow: none;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contents-card-back {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 18px 22px;
  box-sizing: border-box;
  background:
    radial-gradient(circle at 72% 28%, rgba(161, 29, 35, 0.24) 0%, rgba(161, 29, 35, 0.12) 18%, transparent 42%),
    linear-gradient(180deg, rgba(161, 29, 35, 0.96) 0%, rgba(127, 17, 19, 0.94) 52%, rgba(63, 7, 11, 0.98) 100%);
  color: #fffaf4;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.48s ease;
  pointer-events: none;
  z-index: 3;
}

.contents-card-back::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, transparent 38%, rgba(63, 7, 11, 0.22) 100%);
  pointer-events: none;
  z-index: 0;
}

.contents-card-overlay-copy,
.contents-card-action {
  position: relative;
  z-index: 1;
}

.contents-card-overlay-copy {
  display: grid;
  gap: 10px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.4s ease, transform 0.42s ease;
}

.contents-card-overlay-copy p {
  margin: 0;
  color: rgba(255, 250, 244, 0.82);
  font-size: clamp(0.76rem, 2.4vw, 0.92rem);
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contents-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  width: fit-content;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f3c45a 0%, #d7aa43 100%);
  color: #2d1606;
  font-size: 0.84rem;
  font-weight: 800;
  transform: translateY(18px);
  opacity: 0;
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.card_without_section .contents-card-copy {
  min-height: 62px;
  padding: 8px 14px 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.card_without_section .contents-card-copy h3 {
  width: 100%;
  font-size: 0.96rem;
  line-height: 1.12;
  text-align: center;
  text-wrap: balance;
}

.card_without_section .contents-card-overlay-copy {
  align-items: center;
  text-align: center;
}

.card_without_section .contents-card-overlay-copy h3,
.card_without_section .contents-card-overlay-copy p {
  text-align: center;
  text-wrap: balance;
}

.card_without_section .contents-card-action {
  align-self: center;
}

.contents-card:hover .contents-card-back,
.contents-card:focus-visible .contents-card-back,
.contents-card.active .contents-card-back {
  opacity: 1;
  transform: translateY(0);
}

.contents-card:hover .contents-card-overlay-copy,
.contents-card:hover .contents-card-action,
.contents-card:focus-visible .contents-card-overlay-copy,
.contents-card:focus-visible .contents-card-action,
.contents-card.active .contents-card-overlay-copy,
.contents-card.active .contents-card-action {
  opacity: 1;
  transform: translateY(0);
}

.contents-card:hover .contents-card-front img,
.contents-card:focus-visible .contents-card-front img,
.contents-card.active .contents-card-front img {
  transform: scale(1.05);
  filter: none;
}

/* Info card variant */
.contents-card--info {
  height: auto;
  min-height: 0;
  transform: none;
}

.contents-card--info:hover,
.contents-card--info:focus-visible,
.contents-card--info.active {
  transform: none;
}

.contents-card--info .contents-card-inner {
  height: 100%;
}

.contents-card--info .contents-card-front {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 239, 232, 0.92) 100%);
}

.contents-card--info .contents-card-copy {
  min-height: 0;
  padding: 18px 18px 20px;
}

.contents-card--info .contents-card-copy h3 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contents-card--info .contents-card-body {
  padding: 18px 18px 22px;
  color: var(--about-muted);
  display: grid;
  align-content: start;
  gap: 14px;
}

.contents-card--info .contents-card-body p {
  margin: 0;
  line-height: 1.72;
}

.contents-card--info .contents-card-back {
  display: none;
}

.contents-card--accent .contents-card-copy {
  background: linear-gradient(180deg, rgba(127, 17, 19, 0.95) 0%, rgba(79, 9, 12, 0.98) 100%);
}

.contents-card--accent .contents-card-copy h3 {
  color: #fffaf4;
}

.contents-card--accent .contents-card-body {
  background: linear-gradient(180deg, rgba(127, 17, 19, 0.08) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.contents-card--identity .contents-card-body--identity {
  justify-items: start;
}

.contents-card--identity .contents-card-body--identity img {
  width: min(100%, 210px);
  display: block;
}

.contents-card--note {
  width: 100%;
}

.contents-card-body--split {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.about-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fffaf4;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.about-card-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contents-card:not(.contents-card--accent) .about-card-icon {
  background: rgba(127, 17, 19, 0.08);
  color: var(--about-maroon);
  box-shadow: inset 0 0 0 1px rgba(127, 17, 19, 0.08);
}

/* ============================================================
   ABOUT SECTIONS & BREADCRUMB
   ============================================================ */
.about-sections {
  display: grid;
  gap: 22px;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 0 28px;
  justify-items: center;
  /* FIX: ensure it stretches within the parent grid */
  justify-self: stretch;
  align-self: start;
}

.about-breadcrumb {
  width: min(1180px, 100%);
  max-width: 1180px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
  align-self: stretch;
  justify-self: stretch;
  margin: 14px 0 8px;
  padding: 14px 0 12px;
  border: none;
  background: transparent;
  border-radius: 0;
  color: var(--about-maroon);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-breadcrumb::before {
  content: "";
  width: 46px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.about-breadcrumb a {
  color: var(--about-maroon);
  text-decoration: none;
  padding: 4px 0;
}

.about-breadcrumb span {
  color: var(--about-maroon);
  font-weight: 800;
}

.about-breadcrumb strong {
  color: var(--about-ink);
  font-weight: 800;
}

.about-section-card {
  width: 100vw;
  max-width: none;
  padding: var(--about-page-gutter);
  scroll-margin-top: 110px;
  border-radius: 0;
}

.about-section-card--detail {
  display: grid;
  gap: clamp(22px, 2.8vw, 34px);
  position: relative;
  overflow: hidden;
}

.about-section-card--detail::before {
  display: none;
}

/* ============================================================
   DETAIL HERO
   ============================================================ */
.about-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(18px, 2.4vw, 28px);
  align-items: start;
  padding: clamp(18px, 2.6vw, 30px);
  border: 1px solid rgba(127, 17, 19, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 12%, rgba(243, 196, 90, 0.22) 0%, transparent 28%),
    linear-gradient(135deg, rgba(255, 249, 242, 0.98) 0%, rgba(247, 239, 232, 0.94) 55%, rgba(215, 170, 67, 0.1) 100%);
}

.about-detail-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
  margin-bottom: clamp(16px, 2.6vw, 28px);
}

.about-detail-heading-copy {
  display: grid;
  gap: 10px;
}

.about-detail-heading h2 {
  margin: 0;
  color: var(--about-ink);
  font-size: clamp(1.8rem, 2.7vw, 2.45rem);
  line-height: 1.02;
}

.about-section-card--vision .about-detail-heading {
  width: 100%;
  margin-bottom: clamp(18px, 2.8vw, 30px);
}

.about-vision-header {
  width: 100%;
  margin: 0 0 clamp(18px, 2.8vw, 30px);
}

.about-detail-body--vision {
  margin-top: clamp(18px, 2.4vw, 28px);
}

.about-section-card--vision .about-detail-heading-copy {
  gap: 12px;
}

.about-section-card--vision .about-detail-heading h2 {
  font-size: clamp(2.3rem, 4.4vw, 3.9rem);
  line-height: 0.98;
}

.about-detail-copy {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 100%;
  padding: clamp(24px, 3vw, 36px);
  border-radius: 26px;
  background:
    radial-gradient(circle at 16% 18%, rgba(243, 196, 90, 0.18) 0%, transparent 24%),
    linear-gradient(180deg, rgba(127, 17, 19, 0.96) 0%, rgba(79, 9, 12, 0.98) 100%);
  box-shadow: 0 22px 36px rgba(79, 9, 12, 0.16);
}

.about-detail-hero--vision {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  margin-top: 0;
  padding-top: clamp(10px, 1vw, 16px);
  position: relative;
}

/* ============================================================
   FLOATING LOGO
   ============================================================ */
.about-floating-logo {
  position: absolute;
  top: clamp(18px, 2.2vw, 26px);
  left: 50%;
  transform: translateX(-50%);
  width: clamp(88px, 8vw, 112px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  animation: aboutLogoFloat 4.8s ease-in-out infinite;
  filter: drop-shadow(0 14px 26px rgba(22, 2, 4, 0.28));
  pointer-events: none;
}

.about-floating-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@keyframes aboutLogoFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ============================================================
   DETAIL COPY & LEAD
   ============================================================ */
.about-detail-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: rgba(255, 244, 235, 0.78);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-detail-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
}

.about-detail-lead {
  margin: 0;
  max-width: 34ch;
  color: #fff7ef;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.85;
}

.about-detail-copy--vision {
  position: relative;
  justify-items: center;
  gap: 18px;
  width: min(100%, 1040px);
  min-height: 0;
  padding:
    clamp(112px, 10vw, 132px)
    clamp(28px, 5vw, 72px)
    clamp(34px, 4vw, 46px);
  overflow: hidden;
}

.about-detail-eyebrow--center {
  justify-self: center;
}

.about-detail-lead--vision {
  max-width: 48ch;
  text-align: center;
}

.about-detail-visual {
  min-height: 340px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(127, 17, 19, 0.12);
  box-shadow: 0 22px 34px rgba(79, 9, 12, 0.12);
}

.about-detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.9) contrast(1.02);
}

.about-detail-body,
.about-detail-section-grid,
.about-detail-card-grid,
.about-roadmap-grid,
.about-identity-shell {
  display: grid;
  gap: clamp(16px, 2vw, 22px);
  align-items: start;
}

.about-detail-body {
  gap: clamp(18px, 2.4vw, 28px);
}

.about-detail-section-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

/* ============================================================
   VISION SECTION
   ============================================================ */
.history-timeline-container--vision {
  width: 100%;
  --about-vision-shell-padding: clamp(18px, 2.5vw, 28px);
  padding: var(--about-vision-shell-padding);
}

.history-page-header--vision {
  width: 100%;
  max-width: none;
  padding-inline: 0;
}

.history-page-header.history-page-header--vision h2 {
  margin: 0;
  color: var(--about-ink);
  width: 100%;
  max-width: 100%;
  font-size: clamp(1.15rem, 1.75vw, 1.55rem);
  line-height: 1.12;
  white-space: normal;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.about-detail-body--vision {
  padding-inline: 0;
}

.about-vision-content {
  display: grid;
  width: 100%;
  margin-inline: 0;
  gap: clamp(10px, 1.8vw, 18px);
  padding: clamp(18px, 2.2vw, 26px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 18%, rgba(243, 196, 90, 0.14) 0%, transparent 24%),
    linear-gradient(180deg, rgba(127, 17, 19, 0.98) 0%, rgba(79, 9, 12, 0.99) 100%);
  box-shadow: 0 22px 40px rgba(79, 9, 12, 0.18);
  --about-vision-card-max-width: min(100%, 32ch);
  --about-vision-arrow-size: clamp(30px, 2.4vw, 36px);
  --about-vision-arrow-gap: clamp(14px, 1.4vw, 18px);
  --about-vision-panel-gap: clamp(12px, 1.2vw, 16px);
}

.about-vision-row {
  position: relative;
  min-height: clamp(112px, 9vw, 145px);
}

.about-vision-trigger {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--about-vision-arrow-gap);
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: center;
  transform: translate(-50%, -50%);
  transition: left 0.38s ease, transform 0.38s ease;
  z-index: 2;
  min-height: 44px;
  touch-action: manipulation;
}

.about-vision-trigger:focus-visible {
  outline: 2px solid rgba(243, 196, 90, 0.9);
  outline-offset: 10px;
}

.about-vision-word {
  margin: 0;
  color: #fff7ef;
  font-size: clamp(3.8rem, 8.2vw, 7.2rem);
  font-weight: 800;
  line-height: 0.84;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-wrap: nowrap;
}

.about-vision-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--about-vision-arrow-size);
  height: var(--about-vision-arrow-size);
  color: rgba(255, 247, 239, 0.72);
  transition: transform 0.28s ease, color 0.28s ease, opacity 0.28s ease;
  flex: 0 0 auto;
}

.about-vision-arrow svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-vision-panel {
  position: absolute;
  top: 50%;
  width: fit-content;
  max-width: var(--about-vision-card-max-width);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-50%);
  transition:
    opacity 0.24s ease,
    transform 0.38s ease,
    visibility 0s linear 0.24s;
}

.about-vision-row--vision .about-vision-panel {
  left: calc(50% + (var(--about-vision-arrow-size) / 2) + var(--about-vision-panel-gap));
  transform: translate(0, -50%);
}

.about-vision-panel--mission {
  right: calc(50% + (var(--about-vision-arrow-size) / 2) + var(--about-vision-panel-gap));
  transform: translate(0, -50%);
}

.about-vision-row.is-open .about-vision-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(0, -50%);
  transition:
    opacity 0.24s ease,
    transform 0.38s ease,
    visibility 0s linear 0s;
}

.about-vision-row--vision.is-open .about-vision-trigger {
  left: calc(50% + (var(--about-vision-arrow-size) / 2));
  transform: translate(-100%, -50%);
}

.about-vision-row--mission.is-open .about-vision-trigger {
  left: calc(50% - (var(--about-vision-arrow-size) / 2));
  transform: translate(0, -50%);
}

.about-vision-row.is-open .about-vision-arrow {
  color: #f3c45a;
}

.about-vision-row.is-open .about-vision-arrow--right {
  transform: translateX(4px);
}

.about-vision-row.is-open .about-vision-arrow--left {
  transform: translateX(-4px);
}

.about-vision-card {
  display: grid;
  align-content: center;
  width: fit-content;
  max-width: 100%;
  min-height: 0;
  padding: 16px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.12) 0%, rgba(255, 250, 244, 0.08) 100%);
  border: 1px solid rgba(255, 241, 231, 0.16);
  box-shadow:
    0 0 0 1px rgba(243, 196, 90, 0.12),
    0 0 24px rgba(243, 196, 90, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 26px rgba(18, 3, 4, 0.18);
  backdrop-filter: blur(6px);
}

.about-vision-card--mission {
  justify-items: start;
}

.about-vision-statement {
  margin: 0;
  width: auto;
  max-width: none;
  color: rgba(255, 247, 239, 0.96);
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-wrap: pretty;
  text-align: left;
}

.about-vision-statement--mission {
  text-align: left;
}

.about-vision-extension-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(18px, 2.2vw, 26px);
  align-items: start;
}

.about-vision-feature {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: clamp(22px, 2.4vw, 30px);
  padding: clamp(24px, 2.8vw, 34px);
  border-radius: 28px;
  box-shadow: 0 22px 36px rgba(79, 9, 12, 0.12);
}

.about-vision-feature::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(243, 196, 90, 0.22) 0%, rgba(243, 196, 90, 0) 72%);
  transform: translate(-25%, -30%);
  pointer-events: none;
}

.about-vision-feature--goals {
  border: 1px solid rgba(127, 17, 19, 0.12);
  background:
    radial-gradient(circle at 82% 18%, rgba(243, 196, 90, 0.14) 0%, transparent 26%),
    linear-gradient(180deg, rgba(127, 17, 19, 0.95) 0%, rgba(79, 9, 12, 0.99) 100%);
}

.about-vision-feature-head {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.about-vision-feature-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-vision-feature--goals .about-vision-feature-kicker {
  position: relative;
  min-height: 0;
  padding: 0 0 0 46px;
  border-radius: 0;
  background: transparent;
  color: #fff4eb;
  justify-content: flex-start;
}

.about-vision-feature--goals .about-vision-feature-kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 34px;
  height: 1px;
  background: rgba(243, 196, 90, 0.9);
  transform: translateY(-50%);
}

.about-vision-feature-head h3 {
  margin: 0;
  max-width: 32ch;
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  line-height: 1.24;
}

.about-vision-feature--goals .about-vision-feature-head h3 {
  color: #fff7ef;
  max-width: none;
  white-space: nowrap;
}

/* ============================================================
   GOALS GRID
   ============================================================ */
.about-goals-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 18px);
  margin-top: clamp(10px, 1.4vw, 18px);
}

.about-goal-pillar {
  display: grid;
  gap: 14px;
  grid-template-rows: auto 1fr;
  padding: 24px 18px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.12) 0%, rgba(255, 250, 244, 0.06) 100%);
  border: 1px solid rgba(255, 241, 231, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 12px 24px rgba(18, 3, 4, 0.12);
  backdrop-filter: blur(6px);
}

.about-goal-pillar-head {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  align-content: start;
  min-height: 144px;
}

.about-goal-pillar-tag {
  display: inline-grid;
  justify-items: center;
  gap: 4px;
  width: 100%;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #f6d37b;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-goal-pillar-icon-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 102px;
  height: 102px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0.16) 55%, rgba(255, 255, 255, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 14px 28px rgba(255, 255, 255, 0.12);
}

.about-goal-pillar-icon {
  display: block;
  width: 78px;
  height: 78px;
  flex: 0 0 auto;
  color: #ffffff;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.about-goal-pillar-icon path {
  fill: currentColor;
}

.about-goal-pillar-label-group {
  display: grid;
  gap: 0;
  line-height: 1;
  justify-items: center;
}

.about-goal-pillar-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-align: center;
}

.about-goal-pillar h4,
.about-value-copy h4 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.18;
}

.about-goal-pillar h4 {
  color: #fff7ef;
  max-width: none;
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  line-height: 1.05;
  white-space: nowrap;
}

.about-goal-list {
  position: relative;
  margin: 0;
  padding: 10px 0 0;
  list-style: none;
  display: grid;
  gap: 10px;
  align-content: start;
}

.about-goal-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100%, 140px);
  height: 1px;
  background: linear-gradient(90deg, rgba(243, 196, 90, 0) 0%, rgba(243, 196, 90, 0.72) 18%, rgba(255, 244, 220, 0.96) 50%, rgba(243, 196, 90, 0.72) 82%, rgba(243, 196, 90, 0) 100%);
  transform: translateX(-50%);
}

.about-goal-list li {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-height: 54px;
  color: rgba(255, 247, 239, 0.92);
  font-size: 0.9rem;
  line-height: 1.55;
}

.about-goal-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(243, 196, 90, 0.14);
  color: #f6d37b;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.about-goal-text {
  display: block;
}

/* ============================================================
   VALUES BAND
   ============================================================ */
.about-values-band {
  overflow: hidden;
  display: grid;
  gap: 0;
  width: calc(100% + (var(--about-page-gutter) * 2));
  margin-inline: calc(var(--about-page-gutter) * -1);
  border-radius: 0;
  border: 1px solid rgba(127, 17, 19, 0.1);
  background:
    radial-gradient(circle at 12% 18%, rgba(243, 196, 90, 0.12) 0%, transparent 22%),
    linear-gradient(180deg, rgba(255, 252, 248, 0.99) 0%, rgba(247, 239, 233, 0.98) 100%);
  box-shadow: 0 18px 30px rgba(79, 9, 12, 0.08);
}

.about-values-band-head {
  display: grid;
  gap: 10px;
  padding: clamp(22px, 2.4vw, 30px) var(--about-page-gutter) 20px;
}

.about-values-band-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  min-height: 0;
  padding: 0 0 0 46px;
  border-radius: 0;
  background: transparent;
  color: var(--about-maroon);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-values-band-kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 34px;
  height: 1px;
  background: rgba(127, 17, 19, 0.9);
  transform: translateY(-50%);
}

.about-values-band-head h3 {
  margin: 0;
  max-width: none;
  color: var(--about-ink);
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  line-height: 1.18;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  border-top: 1px solid rgba(127, 17, 19, 0.1);
}

.about-value-card {
  display: grid;
  justify-items: center;
  gap: 16px;
  align-content: start;
  min-height: 100%;
  padding: 28px 28px 24px;
  border-right: 1px solid rgba(127, 17, 19, 0.1);
  background: rgba(255, 255, 255, 0.42);
}

.about-value-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(127, 17, 19, 0.98) 0%, rgba(97, 10, 13, 0.98) 100%);
  color: #fff4eb;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    0 0 0 1px rgba(243, 196, 90, 0.12),
    0 8px 18px rgba(127, 17, 19, 0.18);
}

.about-value-copy {
  display: grid;
  gap: 0;
  justify-items: center;
  text-align: center;
}

.about-value-copy h4 {
  color: var(--about-ink);
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-wrap: balance;
}

.about-value-card:last-child {
  border-right: none;
}

/* ============================================================
   CARD GRIDS & PANELS
   ============================================================ */
.about-detail-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.about-detail-card-grid--officials,
.about-roadmap-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.about-detail-panel,
.about-detail-mini-card,
.about-roadmap-card,
.about-detail-note,
.about-map-callout,
.about-identity-mark {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(127, 17, 19, 0.12);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(250, 244, 239, 0.92) 100%);
  box-shadow: 0 18px 30px rgba(79, 9, 12, 0.08);
}

.about-detail-panel::before,
.about-detail-mini-card::before,
.about-roadmap-card::before,
.about-detail-note::before,
.about-map-callout::before,
.about-identity-mark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, rgba(243, 196, 90, 0.95) 0%, rgba(127, 17, 19, 0.9) 100%);
}

.about-detail-panel,
.about-detail-mini-card,
.about-roadmap-card,
.about-detail-note,
.about-map-callout {
  padding: clamp(20px, 2.6vw, 28px);
}

.about-detail-panel--accent {
  background:
    radial-gradient(circle at 18% 18%, rgba(243, 196, 90, 0.18) 0%, transparent 22%),
    linear-gradient(180deg, rgba(127, 17, 19, 0.95) 0%, rgba(79, 9, 12, 0.99) 100%);
}

.about-detail-panel-label,
.about-roadmap-step,
.about-mini-card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-detail-panel-label,
.about-roadmap-step {
  background: rgba(127, 17, 19, 0.08);
  color: var(--about-maroon);
}

.about-detail-panel--accent .about-detail-panel-label {
  background: rgba(255, 255, 255, 0.16);
  color: #fff4eb;
}

.about-detail-panel p,
.about-detail-mini-card p,
.about-roadmap-card p,
.about-detail-note p,
.about-map-callout p,
.about-detail-caption {
  margin: 10px 0 0;
  color: var(--about-muted);
  font-size: 0.96rem;
  line-height: 1.76;
}

.about-detail-panel--accent p,
.about-detail-panel--accent li {
  color: rgba(255, 244, 235, 0.92);
}

.about-detail-mini-card h3,
.about-roadmap-card h3,
.about-detail-note h3,
.about-map-callout h3 {
  margin: 12px 0 0;
  color: var(--about-ink);
  font-size: 1.14rem;
  line-height: 1.22;
}

.about-detail-list {
  margin: 14px 0 0;
  padding-left: 0;
  list-style: none;
  color: var(--about-muted);
  display: grid;
  gap: 12px;
}

.about-detail-list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.68;
}

.about-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f3c45a 0%, #d7aa43 100%);
  transform: translateY(-50%);
}

.about-detail-panel--accent .about-detail-list li::before {
  background: rgba(255, 244, 235, 0.86);
}

/* ============================================================
   IDENTITY
   ============================================================ */
.about-identity-shell {
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
}

.about-identity-mark {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 20px;
  padding: clamp(22px, 2.8vw, 30px);
  background:
    radial-gradient(circle at 84% 14%, rgba(243, 196, 90, 0.16) 0%, transparent 26%),
    linear-gradient(180deg, rgba(255, 249, 242, 0.98) 0%, rgba(247, 239, 232, 0.95) 100%);
}

.about-identity-mark img {
  width: min(100%, 210px);
  justify-self: start;
  display: block;
}

.about-identity-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-identity-badges span,
.about-mini-card-index {
  background: linear-gradient(135deg, #f3c45a 0%, #d7aa43 100%);
  color: #2d1606;
}

.about-identity-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.about-detail-mini-card--indexed {
  position: relative;
}

.about-mini-card-index {
  margin-bottom: 8px;
}

.about-map-callout {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  background:
    radial-gradient(circle at 88% 22%, rgba(215, 170, 67, 0.18) 0%, transparent 32%),
    linear-gradient(180deg, rgba(255, 249, 242, 0.98) 0%, rgba(247, 239, 232, 0.95) 100%);
}

.about-detail-caption {
  margin: 2px 2px 0;
  font-style: italic;
}

.section-copy-intro {
  margin-bottom: 4px;
}

/* ============================================================
   HISTORY STORY
   ============================================================ */
.history-story {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 var(--about-page-gutter) 28px;
  display: grid;
  gap: 0;
}

.history-story--vision {
  padding-inline: var(--about-page-gutter);
}

.history-story-inner {
  display: grid;
  gap: 28px;
}

.history-timeline-container {
  padding: clamp(18px, 2.5vw, 28px);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 249, 242, 0.98) 0%, rgba(249, 241, 233, 0.95) 60%, rgba(215, 170, 67, 0.12) 100%);
  border: 1px solid rgba(127, 17, 19, 0.12);
  box-shadow: 0 18px 32px rgba(79, 9, 12, 0.08);
}

.history-page-header {
  display: grid;
  gap: 10px;
  width: min(900px, 100%);
}

.history-page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--about-maroon);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.history-page-kicker::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.history-page-header h2 {
  margin: 0;
  color: var(--about-ink);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.98;
}

.history-page-header p:last-child {
  margin: 0;
  max-width: 72ch;
  color: var(--about-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.history-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--about-maroon);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.history-kicker::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

/* ============================================================
   HISTORY HERO
   ============================================================ */
.history-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 20px;
  align-items: start;
  padding: 18px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 247, 237, 0.96) 0%, rgba(247, 239, 232, 0.94) 56%, rgba(215, 170, 67, 0.16) 100%);
  border: 1px solid rgba(127, 17, 19, 0.1);
}

.history-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: start;
  min-height: 0;
}

.history-hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin-bottom: 14px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(127, 17, 19, 0.12);
  box-shadow: 0 14px 24px rgba(79, 9, 12, 0.08);
}

.history-hero-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
}

.history-hero-brand-copy {
  display: grid;
  gap: 4px;
}

.history-hero-brand-copy span,
.history-hero-brand-copy strong {
  display: block;
}

.history-hero-brand-copy span {
  color: var(--about-maroon);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.history-hero-brand-copy strong {
  color: var(--about-ink);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.history-hero-copy h3,
.history-timeline-head h4 {
  margin: 0;
  color: var(--about-ink);
}

.history-hero-copy h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.04;
}

.history-lead {
  margin: 14px 0 0;
  color: var(--about-muted);
  font-size: 0.96rem;
  line-height: 1.62;
  max-width: none;
}

.history-hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.history-hero-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(127, 17, 19, 0.96) 0%, rgba(79, 9, 12, 0.94) 100%);
  color: #fffaf4;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 20px rgba(79, 9, 12, 0.12);
}

.history-hero-visual {
  overflow: hidden;
  border-radius: 24px;
  min-height: 220px;
  border: 1px solid rgba(127, 17, 19, 0.08);
  box-shadow: 0 18px 34px rgba(79, 9, 12, 0.12);
}

.history-hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ============================================================
   HISTORY TIMELINE
   ============================================================ */
.history-timeline-shell {
  display: grid;
  gap: 24px;
}

.history-timeline-head h4 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.1;
}

.history-timeline-grid {
  position: relative;
  display: grid;
  gap: 22px;
  margin-top: 8px;
  padding-bottom: 6px;
}

.history-timeline-grid::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 50%;
  width: 3px;
  background: linear-gradient(180deg, rgba(215, 170, 67, 0.78) 0%, rgba(127, 17, 19, 0.92) 100%);
  transform: translateX(-50%);
}

.history-timeline-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 76px minmax(0, 1fr);
  gap: 0;
  align-items: center;
  position: relative;
  z-index: 1;
  min-height: 190px;
}

.history-timeline-row.is-left .history-timeline-card {
  grid-column: 1;
  justify-self: end;
  margin-right: 30px;
}

.history-timeline-row.is-right .history-timeline-card {
  grid-column: 3;
  justify-self: start;
  margin-left: 30px;
}

.history-timeline-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 0;
  height: 0;
  pointer-events: none;
}

.history-timeline-dot {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--about-maroon);
  border: 4px solid #fffaf4;
  box-shadow:
    0 0 0 3px rgba(127, 17, 19, 0.14),
    0 12px 18px rgba(79, 9, 12, 0.18);
}

.history-timeline-dot::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: linear-gradient(180deg, #f3c45a 0%, #d7aa43 100%);
}

.history-timeline-card {
  position: relative;
  min-height: auto;
  width: min(100%, 600px);
  padding: 26px 26px 42px;
  border: 1px solid rgba(127, 17, 19, 0.22);
  border-radius: 22px;
  overflow: visible;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 239, 232, 0.96) 100%);
  color: var(--about-ink);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.history-timeline-card::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 68px;
  height: 2px;
  background: linear-gradient(90deg, rgba(215, 170, 67, 0.92) 0%, rgba(127, 17, 19, 0.88) 100%);
  transform: translateY(-50%);
}

.history-timeline-row.is-left .history-timeline-card::before {
  right: -68px;
}

.history-timeline-row.is-right .history-timeline-card::before {
  left: -68px;
}

.history-timeline-card:hover {
  box-shadow: 0 18px 30px rgba(79, 9, 12, 0.08);
}

.history-timeline-period {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--about-maroon);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.history-timeline-card h5 {
  margin: 0;
  color: var(--about-ink);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.15;
  max-width: none;
}

.history-timeline-card p {
  margin: 12px 0 0;
  color: var(--about-muted);
  font-size: 0.9rem;
  line-height: 1.72;
  max-width: none;
}

.history-timeline-copy {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  color: var(--about-muted);
  font-size: 0.9rem;
  line-height: 1.72;
}

.history-timeline-copy > :first-child {
  margin-top: 0;
}

.history-timeline-copy > :last-child {
  margin-bottom: 0;
}

.history-timeline-copy p,
.history-timeline-copy ul,
.history-timeline-copy ol,
.history-timeline-copy blockquote {
  margin: 0;
}

.history-timeline-preview {
  width: 100%;
  max-width: none;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
  max-height: 6.25rem;
  transition:
    max-height 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.22s ease;
}

.history-timeline-more {
  display: grid;
  gap: 10px;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    max-height 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.22s ease,
    transform 0.28s ease,
    margin-top 0.22s ease;
}

.history-timeline-card.is-open .history-timeline-preview {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  max-height: 48rem;
}

.history-timeline-card.is-open .history-timeline-more {
  margin-top: 12px;
  max-height: 1200px;
  opacity: 1;
  transform: translateY(0);
}

.history-timeline-more:empty {
  display: none;
}

.history-timeline-toggle {
  position: absolute;
  left: 50%;
  bottom: -21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  padding: 0;
  background: linear-gradient(135deg, var(--about-maroon) 0%, var(--about-maroon-deep) 100%);
  color: #fffaf4;
  cursor: pointer;
  box-shadow: 0 20px 30px rgba(79, 9, 12, 0.28);
  transform: translateX(-50%);
  touch-action: manipulation;
}

.history-timeline-toggle:hover,
.history-timeline-toggle:focus-visible {
  outline: none;
  transform: translateX(-50%);
}

.history-timeline-toggle svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ============================================================
   SECTION HEADING ROW & LINKS
   ============================================================ */
.section-heading-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 0;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(127, 17, 19, 0.12);
}

.section-heading-row--plain {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: clamp(14px, 2vw, 24px);
}

.section-heading-row h2 {
  margin: 0;
  color: var(--about-ink);
  font-size: clamp(1.8rem, 2.7vw, 2.45rem);
  line-height: 1.02;
}

.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f3c45a 0%, #d7aa43 100%);
  color: #2d1606;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease;
  touch-action: manipulation;
}

.section-link:hover {
  transform: translateY(-2px);
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.72s ease-out, transform 0.72s ease-out;
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

body.scroll-down .reveal:not(.active) { transform: translateY(40px); }
body.scroll-up  .reveal:not(.active) { transform: translateY(-40px); }

.reveal.delay-100 { transition-delay: 0.1s; }
.reveal.delay-200 { transition-delay: 0.2s; }

pup-footer .footer { margin-top: 0; }

/* ============================================================
   RESPONSIVE — LARGE TABLET (max-width: 1100px)
   ============================================================ */
@media (max-width: 1100px) {
  .about-shell {
    justify-items: stretch; /* FIX: ensure full-bleed children work on large tablet */
  }

  .campus-story-card {
    padding: 40px 420px 40px clamp(24px, 3.5vw, 48px);
  }

  .campus-story-visual {
    width: 340px;
    right: 28px;
  }

  .about-values-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .about-value-card:nth-child(4n) { border-right: none; }
  .about-value-card:nth-child(4) { border-right: none; }
}

/* ============================================================
   RESPONSIVE — TABLET LANDSCAPE (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .about-shell {
    justify-items: stretch; /* FIX: ensure full-bleed children work on tablet landscape */
  }

  .campus-story-card {
    padding: 36px 300px 36px clamp(20px, 3vw, 40px);
    min-height: 0;
  }

  .campus-story-visual {
    width: 260px;
    right: 26px;
    top: -20px;
    bottom: -28px;
  }

  .campus-story-visual img {
    min-height: 440px;
  }

  .about-goals-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(12px, 1.4vw, 16px);
  }

  .about-detail-hero {
    grid-template-columns: 1fr;
  }

  .about-detail-section-grid {
    grid-template-columns: 1fr;
  }

  .about-identity-shell {
    grid-template-columns: 1fr;
  }

  .history-hero {
    grid-template-columns: 1fr;
  }

  .history-timeline-row {
    grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr);
  }
}

/* ============================================================
   RESPONSIVE — TABLET PORTRAIT (max-width: 900px)
   ============================================================ */
@media (max-width: 900px) {
  .about-shell {
    justify-items: stretch; /* FIX: critical for campus story and contents strip visibility */
  }

  .about-detail-hero,
  .about-detail-section-grid,
  .about-identity-shell {
    grid-template-columns: 1fr;
  }

  .about-section-card--vision .about-detail-section-grid {
    grid-template-columns: 1fr;
  }

  .about-detail-card-grid,
  .about-detail-card-grid--officials,
  .about-roadmap-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .about-detail-copy,
  .about-detail-visual {
    min-height: 0;
  }

  .card_without_section .contents-card-copy {
    min-height: 56px;
    padding: 7px 12px 9px;
  }

  .card_without_section .contents-card-copy h3 {
    font-size: 0.86rem;
    line-height: 1.08;
  }

  /* Vision rows: stack on tablet */
  .about-vision-row,
  .about-vision-row--vision,
  .about-vision-row--mission {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 0;
    align-items: flex-start;
  }

  .about-vision-trigger {
    position: static;
    transform: none;
    left: auto;
    top: auto;
    justify-self: start;
  }

  .about-vision-row--vision.is-open .about-vision-trigger,
  .about-vision-row--mission.is-open .about-vision-trigger {
    left: auto;
    transform: none;
  }

  .about-vision-panel,
  .about-vision-row--vision .about-vision-panel,
  .about-vision-panel--mission {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.28s ease, visibility 0s linear 0.24s;
    max-width: 100%;
    width: 100%;
  }

  .about-vision-row.is-open .about-vision-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.24s ease, transform 0.28s ease, visibility 0s linear 0s;
    position: static;
  }

  .about-vision-card {
    width: 100%;
    max-width: none;
    min-height: 0;
  }

  .about-vision-word {
    font-size: clamp(3rem, 14vw, 5.2rem);
    text-wrap: wrap;
  }

  .about-vision-statement {
    max-width: 24ch;
    font-size: clamp(1rem, 3vw, 1.4rem);
  }

  .about-vision-content {
    gap: 28px;
    padding: 18px;
  }

  .about-vision-extension-grid,
  .about-goals-grid {
    grid-template-columns: 1fr;
  }

  .about-values-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .history-page-header.history-page-header--vision h2 {
    white-space: normal;
    text-wrap: balance;
  }

  .history-hero {
    grid-template-columns: 1fr;
  }

  .history-timeline-row {
    grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr);
    min-height: 0;
  }

  /* Campus story: stack layout begins at 900px */
  .campus-story-card {
    min-height: 0;
    padding: 32px 24px;
    overflow: hidden;
  }

  .campus-story-layout {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .campus-story-visual {
    position: relative;
    top: auto;
    bottom: auto;
    right: auto;
    width: 100%;
    height: 240px;
    border-radius: 16px;
    flex-shrink: 0;
  }

  .campus-story-visual img {
    min-height: 0;
    height: 100%;
    object-fit: cover;
  }

  .campus-story-copy {
    max-width: 100%;
    padding-left: 0;
  }

  .campus-story-description {
    margin-top: 0;
    max-width: 100%;
  }

  .carousel-stage,
  .carousel {
    min-height: 280px;
    height: 280px;
  }

  .carousel-caption {
    padding: 18px;
  }
}

/* ============================================================
   RESPONSIVE — TABLET SMALL (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --about-page-gutter: 14px;
  }

  .main-content { padding-bottom: 32px; }

  .about-shell {
    width: 100%;
    margin-top: 18px;
    gap: 16px;
    justify-items: stretch; /* FIX: critical — prevents intro + strip from collapsing */
  }

  .about-intro {
    padding: 0;
    /* FIX: remove any inherited width constraints that fight 100vw breakout */
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  /* FIX: contents-strip must also fully reset for mobile breakout to work */
  .contents-strip {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
    padding: 18px var(--about-page-gutter) 20px;
  }

  /* History story */
  .history-story {
    padding: 0 var(--about-page-gutter) 24px;
  }

  .history-story-inner { gap: 20px; }

  .history-page-header h2 { font-size: clamp(1.8rem, 6vw, 2.4rem); }

  .history-page-header p:last-child {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .history-hero {
    gap: 16px;
    padding: 18px;
    border-radius: 20px;
    grid-template-columns: 1fr;
  }

  .history-timeline-container {
    padding: 18px;
    border-radius: 22px;
  }

  .history-hero-copy h3 { font-size: clamp(1.4rem, 5vw, 1.9rem); }

  .history-hero-brand {
    gap: 10px;
    margin-bottom: 14px;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .history-hero-logo { width: 44px; height: 44px; }

  .history-hero-brand-copy strong { font-size: 0.9rem; }

  .history-lead,
  .history-timeline-card p {
    font-size: 0.86rem;
    line-height: 1.58;
  }

  .history-hero-visual,
  .history-timeline-card { border-radius: 18px; }

  .history-hero-visual { min-height: 240px; }

  .history-timeline-head h4 { font-size: 1.1rem; }

  .history-timeline-grid { gap: 12px; }

  /* Timeline: single column */
  .history-timeline-grid::before {
    left: 14px;
    width: 2px;
    transform: none;
  }

  .history-timeline-row {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
  }

  .history-timeline-row.is-left .history-timeline-card,
  .history-timeline-row.is-right .history-timeline-card {
    grid-column: 2;
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .history-timeline-marker {
    left: 14px;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .history-timeline-card {
    padding: 18px 18px 34px;
  }

  .history-timeline-card h5 { font-size: 1.2rem; }

  .history-timeline-card::before {
    left: -18px;
    right: auto;
    width: 18px;
  }

  .history-hero-highlights { gap: 8px; margin-top: 18px; }

  .history-hero-highlights span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  /* Campus story refinements at 768px */
  .campus-story-card {
    padding: 24px var(--about-page-gutter);
  }

  .campus-story-visual {
    height: 220px;
    border-radius: 14px;
  }

  .campus-story-description {
    padding: 18px;
    border-radius: 20px;
  }

  /* Carousel */
  .carousel, .carousel-stage, .carousel-half {
    min-height: 230px;
    height: 230px;
  }

  .carousel-split { grid-template-columns: 1fr; }
  .carousel-half-right { display: none; }
  .carousel-caption { padding: 16px; }
  .carousel-caption h2 {
    max-width: 12ch;
    font-size: clamp(1.5rem, 8vw, 2.3rem);
  }

  .contents-cards {
    grid-auto-columns: minmax(220px, 250px);
    gap: 12px;
  }

  .contents-card {
    height: 300px;
    border-radius: 18px;
  }

  .contents-card-front,
  .contents-card-back { border-radius: 18px; }

  .contents-card-copy {
    min-height: 80px;
    padding: 12px 12px 14px;
    gap: 6px;
  }

  .contents-card-copy h3,
  .contents-card-back h3 {
    font-size: 0.88rem;
    line-height: 1.2;
  }

  .contents-card-number { font-size: 0.66rem; }

  .contents-card-back { padding: 12px; }

  .contents-card-overlay-copy p {
    font-size: 0.76rem;
    line-height: 1.45;
  }

  .contents-card-action {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.76rem;
  }

  /* Breadcrumb */
  .about-breadcrumb { font-size: 0.74rem; gap: 6px; }

  /* Section card */
  .about-section-card {
    width: 100vw;
    padding: var(--about-page-gutter);
    border-radius: 0;
  }

  .about-detail-hero {
    padding: 16px;
    border-radius: 24px;
  }

  .about-detail-copy,
  .about-detail-panel,
  .about-detail-mini-card,
  .about-roadmap-card,
  .about-detail-note,
  .about-map-callout,
  .about-identity-mark {
    padding: 18px;
    border-radius: 22px;
  }

  .about-detail-visual {
    min-height: 260px;
    border-radius: 22px;
  }

  /* Values: 4 → 2 cols */
  .about-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-value-card {
    border-right: 1px solid rgba(127, 17, 19, 0.1);
    border-bottom: 1px solid rgba(127, 17, 19, 0.1);
  }

  .about-value-card:nth-child(2n) { border-right: none; }

  /* Goals: 2 cols */
  .about-goals-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-goal-list li {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 8px;
    font-size: 0.84rem;
  }

  .about-goal-code {
    width: 52px;
    font-size: 0.62rem;
    padding: 0 6px;
  }

  /* Vision content */
  .about-vision-content {
    padding: 16px;
    gap: 22px;
  }

  .about-vision-word { font-size: clamp(2.8rem, 10vw, 4.5rem); }

  .about-floating-logo { width: 80px; top: 16px; }

  /* Heading */
  .section-heading-row h2 { font-size: clamp(1.4rem, 4vw, 1.9rem); }
}

/* ============================================================
   RESPONSIVE — PHONE (max-width: 640px)
   ============================================================ */
@media (max-width: 640px) {
  :root {
    --about-page-gutter: 12px;
  }

  .about-shell {
    justify-items: stretch; /* FIX: keep full-bleed children working on phone */
  }

  .contents-cards {
    grid-auto-columns: minmax(200px, 230px);
    gap: 10px;
  }

  .contents-card { height: 280px; }

  .contents-card-copy h3,
  .contents-card-back h3 { font-size: 0.85rem; }

  .contents-card-overlay-copy p { font-size: 0.74rem; }

  .about-goals-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   RESPONSIVE — PHONE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  :root {
    --about-page-gutter: 10px;
  }

  .about-shell {
    justify-items: stretch; /* FIX: keep full-bleed children working */
  }

  /* Carousel */
  .carousel, .carousel-stage, .carousel-half {
    min-height: 210px;
    height: 210px;
  }

  .carousel-caption h2 { font-size: 1.35rem; max-width: 11ch; }

  /* Typography */
  .about-intro h1,
  .section-heading-row h2,
  .about-detail-heading h2 { font-size: clamp(1.2rem, 6vw, 1.48rem); }

  /* Campus story */
  .campus-story-card { padding: 20px var(--about-page-gutter); }
  .campus-story-visual { height: 180px; border-radius: 12px; }
  .campus-story-card h2 { font-size: 1.2rem; line-height: 1.2; }
  .campus-story-description { padding: 14px 12px; }

  .about-intro-copy p,
  .section-copy,
  .section-copy p,
  .campus-story-card p {
    font-size: 0.85rem;
    line-height: 1.65;
  }

  /* History hero */
  .history-hero { padding: 14px 12px; }

  .history-timeline-container {
    padding: 14px 12px 18px;
    border-radius: 18px;
  }

  .history-story { padding: 0 var(--about-page-gutter) 20px; }

  .history-page-header h2 { font-size: 1.65rem; }

  .history-page-header.history-page-header--vision h2 {
    font-size: 1.35rem;
    line-height: 1.12;
    white-space: normal;
    text-wrap: balance;
  }

  .history-page-header p:last-child {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .history-page-header--vision .history-page-kicker { font-size: 0.68rem; }

  .history-story--vision { padding-inline: var(--about-page-gutter); }

  .history-page-header--vision,
  .about-detail-body--vision { padding-inline: 0; }

  /* Vision */
  .about-vision-content {
    gap: 30px;
    padding: 18px 16px;
    border-radius: 20px;
  }

  .about-vision-feature {
    gap: 18px;
    padding: 20px 18px;
    border-radius: 22px;
  }

  .about-vision-feature--goals .about-vision-feature-head h3 {
    white-space: normal;
  }

  .about-values-band {
    width: calc(100% + (var(--about-page-gutter) * 2));
    margin-inline: calc(var(--about-page-gutter) * -1);
  }

  .about-values-band-head {
    padding: 18px var(--about-page-gutter) 14px;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-vision-word { font-size: clamp(2.5rem, 16vw, 4.2rem); line-height: 0.9; }

  .about-vision-statement {
    max-width: none;
    font-size: 0.92rem;
    line-height: 1.2;
    letter-spacing: 0.015em;
  }

  .about-vision-statement--mission { justify-self: start; }

  .about-vision-card {
    padding: 16px 14px;
    border-radius: 16px;
  }

  /* Goal pillars: stack with horizontal header */
  .about-goals-grid { grid-template-columns: 1fr; }

  .about-goal-pillar {
    grid-template-rows: auto 1fr;
    padding: 18px 16px;
    border-radius: 18px;
    gap: 12px;
  }

  .about-goal-pillar-head {
    min-height: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    text-align: left;
    justify-content: flex-start;
  }

  .about-goal-pillar-icon-shell {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
  }

  .about-goal-pillar-icon {
    width: 54px;
    height: 54px;
  }

  .about-goal-pillar h4 {
    white-space: normal;
    text-align: left;
    font-size: 1rem;
  }

  .about-goal-list li {
    grid-template-columns: 48px minmax(0, 1fr);
    font-size: 0.8rem;
    min-height: 0;
  }

  .about-goal-code { width: 48px; font-size: 0.6rem; }

  .about-goal-pillar,
  .about-value-card {
    padding: 14px;
    border-radius: 18px;
  }

  .about-value-card {
    gap: 12px;
    padding: 18px 16px;
    border-right: 1px solid rgba(127, 17, 19, 0.1);
    border-bottom: 1px solid rgba(127, 17, 19, 0.1);
  }

  .about-value-letter {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 0.96rem;
  }

  .about-value-card:nth-child(2n) { border-right: none; }
  .about-value-card:last-child,
  .about-value-card:nth-last-child(2) { border-bottom: none; }

  /* Kickers and labels */
  .history-kicker,
  .history-timeline-period { font-size: 0.68rem; }

  /* Timeline: tightest */
  .history-timeline-row {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 10px;
  }

  .history-timeline-grid::before { left: 11px; }
  .history-timeline-marker { left: 11px; }

  .history-timeline-dot {
    width: 18px;
    height: 18px;
    border-width: 3px;
  }

  .history-timeline-card {
    padding: 16px 14px 32px;
    border-radius: 18px;
  }

  .history-timeline-card::before { left: -14px; width: 14px; }

  .history-timeline-toggle {
    left: 50%;
    bottom: -19px;
    width: 38px;
    height: 38px;
  }

  .history-timeline-toggle svg { width: 16px; height: 16px; }

  .history-hero-copy h3,
  .history-timeline-head h4 { font-size: 1rem; }

  /* Hero detail */
  .about-detail-hero {
    padding: 12px;
    border-radius: 20px;
  }

  .about-detail-hero--vision {
    margin-top: 18px;
    padding-top: 8px;
  }

  .about-floating-logo { width: 78px; top: 16px; }

  .about-detail-copy--vision {
    padding:
      84px
      clamp(18px, 5vw, 26px)
      clamp(26px, 5vw, 34px);
  }

  .about-detail-eyebrow,
  .about-detail-panel-label,
  .about-roadmap-step,
  .about-mini-card-index { font-size: 0.68rem; }

  .about-detail-lead,
  .about-detail-panel p,
  .about-detail-mini-card p,
  .about-roadmap-card p,
  .about-detail-note p,
  .about-map-callout p,
  .about-detail-caption,
  .about-detail-list li {
    font-size: 0.86rem;
    line-height: 1.6;
  }

  .about-detail-mini-card h3,
  .about-roadmap-card h3,
  .about-detail-note h3,
  .about-map-callout h3 { font-size: 1rem; }

  .about-detail-copy,
  .about-detail-panel,
  .about-detail-mini-card,
  .about-roadmap-card,
  .about-detail-note,
  .about-map-callout,
  .about-identity-mark {
    padding: 16px;
    border-radius: 18px;
  }

  .about-detail-visual {
    min-height: 220px;
    border-radius: 18px;
  }

  .about-identity-badges span {
    min-height: 32px;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  /* Contents cards */
  .contents-strip-head h2 { font-size: 1.1rem; }

  .contents-cards {
    grid-auto-columns: minmax(190px, 210px);
    gap: 10px;
  }

  .contents-card {
    height: 260px;
    border-radius: 16px;
  }

  .contents-card-copy,
  .contents-card-back { padding: 10px; }

  .contents-card-copy h3,
  .contents-card-back h3 { font-size: 0.8rem; line-height: 1.18; }

  .contents-card-overlay-copy p { font-size: 0.7rem; line-height: 1.32; }

  .contents-card-action { font-size: 0.72rem; }

  /* Section tag */
  .section-tag {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
  }

  /* Section heading */
  .about-section-card {
    padding: var(--about-page-gutter);
    border-radius: 0;
  }

  .about-detail-heading h2 { font-size: 1.4rem; }

  .about-section-card--vision .about-detail-heading h2 {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
  }

  /* History hero brand */
  .history-hero-brand { padding: 8px 10px; gap: 8px; }
  .history-hero-logo { width: 38px; height: 38px; }
  .history-hero-brand-copy span { font-size: 0.66rem; }
  .history-hero-brand-copy strong { font-size: 0.84rem; }
}

/* ============================================================
   RESPONSIVE — SMALL PHONE (max-width: 360px)
   ============================================================ */
@media (max-width: 360px) {
  :root {
    --about-page-gutter: 8px;
  }

  .about-shell {
    justify-items: stretch; /* FIX: smallest screens */
  }

  .campus-story-visual { height: 150px; }
  .campus-story-card h2 { font-size: 1.05rem; }

  .contents-cards { grid-auto-columns: minmax(160px, 190px); }
  .contents-card { height: 240px; }

  .about-vision-word { font-size: clamp(1.9rem, 12vw, 2.8rem); }

  .about-goal-pillar-icon-shell { width: 44px; height: 44px; }
  .about-goal-pillar-icon { width: 24px; height: 24px; }

  .history-timeline-card { padding: 12px 10px 28px; }
  .history-timeline-toggle { width: 34px; height: 34px; bottom: -17px; }
  .history-timeline-card h5 { font-size: 1rem; }

  .carousel, .carousel-stage, .carousel-half {
    min-height: 170px;
    height: 170px;
  }

  .carousel-caption h2 { font-size: 1.05rem; max-width: 10ch; }

  .contents-strip { padding: 14px var(--about-page-gutter) 16px; }

  .about-breadcrumb { font-size: 0.68rem; gap: 4px; }
  .about-breadcrumb::before { width: 28px; }

  .section-heading-row h2 { font-size: 1.2rem; }
}

/* ============================================================
   HOVER: TOUCH DEVICES — disable hover-only effects
   ============================================================ */
@media (hover: none) {
  .contents-card:hover {
    transform: none;
    border-color: rgba(127, 17, 19, 0.12);
    box-shadow: none;
  }

  .contents-card:hover .contents-card-back {
    opacity: 0;
    transform: translateY(100%);
  }

  .contents-card:hover .contents-card-overlay-copy,
  .contents-card:hover .contents-card-action {
    opacity: 0;
    transform: translateY(18px);
  }

  .contents-card:hover .contents-card-front img {
    transform: none;
    filter: none;
  }

  .contents-card.active .contents-card-back {
    opacity: 1;
    transform: translateY(0);
  }

  .contents-card.active .contents-card-overlay-copy,
  .contents-card.active .contents-card-action {
    opacity: 1;
    transform: translateY(0);
  }

  .contents-card.active .contents-card-front img {
    transform: scale(1.05);
    filter: none;
  }

  .section-link:hover { transform: none; }
  .history-timeline-toggle:hover { transform: translateX(-50%); }
}

/* ============================================================
   LANDSCAPE PHONES (short + wide)
   ============================================================ */
@media (max-height: 500px) and (max-width: 900px) and (orientation: landscape) {
  .carousel, .carousel-stage, .carousel-half {
    min-height: 160px;
    height: 160px;
  }

  .campus-story-visual { height: 160px; }
  .about-vision-word { font-size: clamp(2rem, 8vw, 3rem); }
  .about-goal-pillar-head { min-height: 0; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .about-floating-logo {
    animation: none;
  }

  .contents-card-back,
  .contents-card-overlay-copy,
  .contents-card-front img {
    transition: none;
  }

  .contents-card:hover,
  .section-link:hover {
    transform: none;
  }

  .history-timeline-toggle:hover {
    transform: translateX(-50%);
  }
}

/* ============================================================
   SAFE AREA INSETS (iPhone notch / home bar)
   ============================================================ */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .main-content {
    padding-bottom: max(32px, env(safe-area-inset-bottom));
  }

  .contents-strip {
    padding-left: max(var(--about-page-gutter), env(safe-area-inset-left));
    padding-right: max(var(--about-page-gutter), env(safe-area-inset-right));
  }
}

/* ============================================================
   FOCUS STYLES (keyboard navigation)
   ============================================================ */
.section-link:focus-visible,
.contents-card:focus-visible,
.about-breadcrumb a:focus-visible,
.history-timeline-toggle:focus-visible {
  outline: 3px solid var(--about-gold);
  outline-offset: 3px;
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .campus-story-visual,
  .carousel,
  .carousel-section { display: none; }

  .campus-story-card { padding: 24px; }

  .about-values-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .history-timeline-grid::before { display: none; }

  .history-timeline-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}



body.pup-dark-mode {
  --about-ink: #f5e8e8;
  --about-muted: #c8a8a8;
  --about-line: rgba(255, 160, 160, 0.1);
  --about-surface: #1a0d0f;
  --about-surface-soft: #220d10;
  --about-maroon-light: #c0282f;
  --about-maroon: #a11d23;
  --about-maroon-deep: #7f1113;
  --about-gold: #d7aa43;
  --about-shadow: 0 22px 48px rgba(0, 0, 0, 0.5);
}

body.pup-dark-mode {
  background: #0a0304;
}

body.pup-dark-mode .carousel {
  background: linear-gradient(180deg, #180406 0%, #080102 100%);
}

body.pup-dark-mode .about-intro h1 {
  color: #f5e8e8;
}

body.pup-dark-mode .about-intro-copy p,
body.pup-dark-mode .section-copy,
body.pup-dark-mode .section-copy p {
  color: #c8a8a8;
}

body.pup-dark-mode .campus-story-card {
  background: linear-gradient(180deg, #5c0d0f 0%, #3d0709 48%, #260406 100%);
}

body.pup-dark-mode .campus-story-description {
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.06) 0%, rgba(255, 250, 244, 0.03) 100%);
  border-color: rgba(255, 241, 231, 0.08);
}

body.pup-dark-mode .contents-strip {
  background: linear-gradient(135deg, rgba(18, 4, 5, 0.99) 0%, rgba(12, 2, 3, 0.99) 54%, rgba(20, 8, 2, 0.18) 100%);
  box-shadow: var(--about-shadow);
}

body.pup-dark-mode .contents-strip-head h2 {
  color: #f0dada;
}

body.pup-dark-mode .contents-cards::-webkit-scrollbar-thumb {
  background: rgba(160, 40, 40, 0.35);
}

body.pup-dark-mode .contents-card {
  background: linear-gradient(180deg, rgba(55, 8, 10, 0.95) 0%, rgba(35, 4, 6, 0.98) 100%);
  border-color: rgba(180, 130, 40, 0.14);
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.25);
  color: #f5e8e8;
}

body.pup-dark-mode .contents-card:hover,
body.pup-dark-mode .contents-card.active {
  border-color: rgba(215, 170, 67, 0.28);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.65);
}

body.pup-dark-mode .contents-card-front {
  background: rgba(45, 6, 8, 0.72);
}

body.pup-dark-mode .contents-card-copy {
  background: linear-gradient(180deg, rgba(90, 12, 15, 0.98) 0%, rgba(60, 6, 9, 0.99) 100%);
}

body.pup-dark-mode .contents-card-back {
  background:
    radial-gradient(circle at 72% 28%, rgba(80, 10, 12, 0.28) 0%, rgba(50, 6, 8, 0.14) 18%, transparent 42%),
    linear-gradient(180deg, rgba(55, 8, 10, 0.98) 0%, rgba(35, 4, 6, 0.97) 52%, rgba(18, 2, 3, 0.99) 100%);
}

body.pup-dark-mode .contents-card-overlay-copy h3 {
  color: #fff4eb;
}

body.pup-dark-mode .contents-card-overlay-copy p {
  color: rgba(255, 230, 210, 0.78);
}

body.pup-dark-mode .contents-card-action {
  background: linear-gradient(135deg, #f3c45a 0%, #d7aa43 100%);
  color: #2d1606;
}

body.pup-dark-mode .contents-card--info .contents-card-front {
  background: linear-gradient(180deg, rgba(45, 6, 8, 0.96) 0%, rgba(28, 3, 5, 0.98) 100%);
}

body.pup-dark-mode .contents-card--info .contents-card-body {
  color: #c8a8a8;
}

body.pup-dark-mode .contents-card--info .contents-card-body p {
  color: #c8a8a8;
}

body.pup-dark-mode .about-card-icon:not(.contents-card--accent .about-card-icon) {
  background: rgba(160, 40, 40, 0.14);
  color: #e08080;
  box-shadow: inset 0 0 0 1px rgba(160, 40, 40, 0.14);
}

body.pup-dark-mode .about-intro,
body.pup-dark-mode .about-section-card {
  background: linear-gradient(180deg, rgba(14, 3, 4, 0.99) 0%, rgba(10, 2, 3, 0.99) 100%);
  border-color: rgba(160, 40, 40, 0.1);
}

body.pup-dark-mode .about-breadcrumb,
body.pup-dark-mode .about-breadcrumb a,
body.pup-dark-mode .about-breadcrumb span {
  color: #e08080;
}

body.pup-dark-mode .about-breadcrumb strong {
  color: #f5e8e8;
}

body.pup-dark-mode .about-detail-hero {
  background:
    radial-gradient(circle at 88% 12%, rgba(80, 20, 8, 0.18) 0%, transparent 28%),
    linear-gradient(135deg, rgba(14, 3, 4, 0.99) 0%, rgba(10, 2, 3, 0.99) 55%, rgba(20, 8, 2, 0.1) 100%);
  border-color: rgba(160, 40, 40, 0.14);
}

body.pup-dark-mode .about-detail-heading h2 {
  color: #f5e8e8;
}

body.pup-dark-mode .about-detail-panel,
body.pup-dark-mode .about-detail-mini-card,
body.pup-dark-mode .about-roadmap-card,
body.pup-dark-mode .about-detail-note,
body.pup-dark-mode .about-map-callout,
body.pup-dark-mode .about-identity-mark {
  background: linear-gradient(180deg, rgba(18, 4, 5, 0.99) 0%, rgba(12, 2, 3, 0.99) 100%);
  border-color: rgba(160, 40, 40, 0.14);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.5);
}

body.pup-dark-mode .about-detail-panel p,
body.pup-dark-mode .about-detail-mini-card p,
body.pup-dark-mode .about-roadmap-card p,
body.pup-dark-mode .about-detail-note p,
body.pup-dark-mode .about-map-callout p,
body.pup-dark-mode .about-detail-caption {
  color: #c8a8a8;
}

body.pup-dark-mode .about-detail-mini-card h3,
body.pup-dark-mode .about-roadmap-card h3,
body.pup-dark-mode .about-detail-note h3,
body.pup-dark-mode .about-map-callout h3 {
  color: #f5e8e8;
}

body.pup-dark-mode .about-detail-panel-label,
body.pup-dark-mode .about-roadmap-step {
  background: rgba(160, 40, 40, 0.12);
  color: #e08080;
}

body.pup-dark-mode .about-detail-list {
  color: #c8a8a8;
}

body.pup-dark-mode .about-map-callout {
  background:
    radial-gradient(circle at 88% 22%, rgba(60, 20, 8, 0.14) 0%, transparent 32%),
    linear-gradient(180deg, rgba(18, 4, 5, 0.99) 0%, rgba(12, 2, 3, 0.99) 100%);
}

body.pup-dark-mode .about-identity-mark {
  background:
    radial-gradient(circle at 84% 14%, rgba(60, 20, 8, 0.12) 0%, transparent 26%),
    linear-gradient(180deg, rgba(18, 4, 5, 0.99) 0%, rgba(12, 2, 3, 0.99) 100%);
}

body.pup-dark-mode .about-values-band {
  background:
    radial-gradient(circle at 12% 18%, rgba(60, 20, 8, 0.1) 0%, transparent 22%),
    linear-gradient(180deg, rgba(14, 3, 4, 0.99) 0%, rgba(10, 2, 3, 0.99) 100%);
  border-color: rgba(160, 40, 40, 0.1);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.5);
}

body.pup-dark-mode .about-values-band-head h3 {
  color: #f5e8e8;
}

body.pup-dark-mode .about-values-band-kicker {
  color: #e08080;
}

body.pup-dark-mode .about-values-band-kicker::before {
  background: rgba(160, 40, 40, 0.9);
}

body.pup-dark-mode .about-values-grid {
  border-top-color: rgba(160, 40, 40, 0.1);
}

body.pup-dark-mode .about-value-card {
  background: rgba(18, 4, 5, 0.7);
  border-right-color: rgba(160, 40, 40, 0.1);
  border-bottom-color: rgba(160, 40, 40, 0.1);
}

body.pup-dark-mode .about-value-copy h4 {
  color: #f5e8e8;
}

body.pup-dark-mode .history-timeline-container {
  background:
    linear-gradient(135deg, rgba(45, 8, 10, 0.96) 0%, rgba(30, 4, 6, 0.96) 60%, rgba(25, 10, 2, 0.12) 100%);
  border-color: rgba(160, 40, 47, 0.22);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.5);
}

body.pup-dark-mode .history-page-header h2 {
  color: #f5e8e8;
}

body.pup-dark-mode .history-page-header p:last-child {
  color: #c8a8a8;
}

body.pup-dark-mode .history-page-kicker,
body.pup-dark-mode .history-kicker {
  color: #e08080;
}

body.pup-dark-mode .history-hero {
  background:
    linear-gradient(135deg, rgba(14, 3, 4, 0.99) 0%, rgba(10, 2, 3, 0.99) 56%, rgba(20, 8, 2, 0.12) 100%);
  border-color: rgba(160, 40, 40, 0.1);
}

body.pup-dark-mode .history-hero-copy h3 {
  color: #f5e8e8;
}

body.pup-dark-mode .history-lead {
  color: #c8a8a8;
}

body.pup-dark-mode .history-hero-brand {
  background: rgba(18, 4, 5, 0.85);
  border-color: rgba(160, 40, 40, 0.14);
}

body.pup-dark-mode .history-hero-brand-copy span {
  color: #e08080;
}

body.pup-dark-mode .history-hero-brand-copy strong {
  color: #f5e8e8;
}

body.pup-dark-mode .history-hero-visual {
  border-color: rgba(160, 40, 40, 0.1);
}

body.pup-dark-mode .history-timeline-head h4 {
  color: #f5e8e8;
}

body.pup-dark-mode .history-timeline-card {
  background: linear-gradient(180deg, rgba(55, 10, 12, 0.92) 0%, rgba(38, 6, 8, 0.96) 100%);
  border-color: rgba(160, 40, 47, 0.28);
  color: #f5e8e8;
}

body.pup-dark-mode .history-timeline-card h5 {
  color: #f5e8e8;
}

body.pup-dark-mode .history-timeline-card p {
  color: #c8a8a8;
}

body.pup-dark-mode .history-timeline-period {
  color: #f3c45a;
}

body.pup-dark-mode .history-timeline-dot {
  background: #a11d23;
  border: 4px solid #0a0304;
  box-shadow:
    0 0 0 3px rgba(160, 40, 47, 0.35),
    0 12px 18px rgba(0, 0, 0, 0.5);
}

body.pup-dark-mode .history-timeline-dot::after {
  background: linear-gradient(180deg, #f3c45a 0%, #d7aa43 100%);
}

body.pup-dark-mode .history-timeline-toggle {
  background: linear-gradient(135deg, #a11d23 0%, #6e1215 100%);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
}

body.pup-dark-mode .section-heading-row {
  border-bottom-color: rgba(160, 40, 40, 0.12);
}

body.pup-dark-mode .section-heading-row h2 {
  color: #f5e8e8;
}

body.pup-dark-mode .section-tag {
  color: #e08080;
}

body.pup-dark-mode .about-vision-content {
  background:
    radial-gradient(circle at 18% 18%, rgba(80, 20, 8, 0.1) 0%, transparent 24%),
    linear-gradient(180deg, rgba(40, 5, 7, 0.99) 0%, rgba(25, 3, 5, 0.99) 100%);
}

body.pup-dark-mode .about-vision-word {
  color: #fff7ef;
}

body.pup-dark-mode .about-vision-arrow {
  color: rgba(255, 247, 239, 0.72);
}

body.pup-dark-mode .about-vision-row.is-open .about-vision-arrow {
  color: #f3c45a;
}

body.pup-dark-mode .about-vision-card {
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.08) 0%, rgba(255, 250, 244, 0.05) 100%);
  border-color: rgba(255, 241, 231, 0.12);
}

body.pup-dark-mode .about-vision-statement,
body.pup-dark-mode .about-vision-statement--mission {
  color: #fff7ef;
}

body.pup-dark-mode .about-vision-feature--goals {
  background:
    radial-gradient(circle at 82% 18%, rgba(80, 20, 8, 0.14) 0%, transparent 26%),
    linear-gradient(180deg, rgba(30, 4, 6, 0.99) 0%, rgba(18, 2, 3, 0.99) 100%);
  border-color: rgba(160, 40, 47, 0.16);
}

body.pup-dark-mode .about-goal-pillar {
  background: linear-gradient(180deg, rgba(10, 2, 3, 0.95) 0%, rgba(6, 1, 2, 0.98) 100%);
  border-color: rgba(243, 196, 90, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 12px 24px rgba(0, 0, 0, 0.5);
}

body.pup-dark-mode .about-goal-pillar h4 {
  color: #fff7ef;
}

body.pup-dark-mode .about-goal-pillar-tag {
  color: #f6d37b;
}

body.pup-dark-mode .about-goal-list li {
  color: rgba(255, 247, 239, 0.88);
}

body.pup-dark-mode .about-goal-code {
  background: rgba(243, 196, 90, 0.1);
  color: #f6d37b;
}

body.pup-dark-mode .history-page-header.history-page-header--vision h2 {
  color: #f5e8e8;
}

body.pup-dark-mode .reveal {
  opacity: 0;
  transform: translateY(40px);
}

body.pup-dark-mode .reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   LOGO & SYMBOLS — ls-* components
   ============================================================ */

.ls-page-header {
  display: none;
}

.ls-seal-hero {
  width: 100%;
  overflow: hidden;
  border-radius: 28px;
  padding: clamp(32px, 4vw, 56px) clamp(28px, 4vw, 52px);
  box-sizing: border-box;
  margin-bottom: clamp(12px, 1.6vw, 20px);
  background: linear-gradient(135deg,
    rgba(127, 17, 19, 0.97) 0%,
    rgba(79, 9, 12, 0.99) 55%,
    rgba(45, 5, 8, 0.99) 100%);
  border: 1px solid rgba(215, 170, 67, 0.18);
  box-shadow: 0 32px 64px rgba(79, 9, 12, 0.22);
  position: relative;
}

.ls-seal-hero-glow {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 170, 67, 0.18) 0%, rgba(215, 170, 67, 0) 70%);
  pointer-events: none;
}

.ls-seal-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: clamp(140px, 16vw, 220px) 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  max-width: 100%;
}

.ls-seal-ring {
  position: relative;
  flex-shrink: 0;
  width: clamp(140px, 16vw, 220px);
  height: clamp(140px, 16vw, 220px);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%,
    rgba(215, 170, 67, 0.22) 0%,
    rgba(255, 255, 255, 0.06) 45%,
    rgba(255, 255, 255, 0.02) 100%);
  border: 2px solid rgba(215, 170, 67, 0.38);
  box-shadow:
    0 0 0 6px rgba(215, 170, 67, 0.08),
    0 0 0 12px rgba(215, 170, 67, 0.04),
    0 24px 48px rgba(0, 0, 0, 0.36);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.ls-seal-ring-shimmer {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(215, 170, 67, 0) 0%,
    rgba(215, 170, 67, 0.55) 25%,
    rgba(215, 170, 67, 0) 50%,
    rgba(215, 170, 67, 0.3) 75%,
    rgba(215, 170, 67, 0) 100%
  );
  animation: lsRingRotate 8s linear infinite;
  pointer-events: none;
  mask: radial-gradient(circle, transparent 88%, black 88%);
  -webkit-mask: radial-gradient(circle, transparent 88%, black 88%);
}

@keyframes lsRingRotate {
  to { transform: rotate(360deg); }
}

.ls-seal-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.3));
}

.ls-seal-eyebrow {
  margin: 0 0 8px;
  color: rgba(215, 170, 67, 0.9);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ls-seal-headline {
  margin: 0 0 14px;
  color: #fffaf4;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.1;
}

.ls-seal-body {
  margin: 0 0 22px;
  color: rgba(255, 241, 231, 0.82);
  font-size: 0.95rem;
  line-height: 1.78;
  max-width: 54ch;
}

.ls-color-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ls-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ls-chip--maroon {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 241, 231, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.ls-chip--gold {
  background: rgba(215, 170, 67, 0.18);
  color: #f6d37b;
  border: 1px solid rgba(215, 170, 67, 0.3);
}

.ls-chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ls-chip--maroon .ls-chip-dot { background: rgba(255, 241, 231, 0.7); }
.ls-chip--gold .ls-chip-dot { background: #f6d37b; }

.ls-block-header {
  display: grid;
  gap: 8px;
  max-width: 100%;
  margin: clamp(12px, 1.6vw, 20px) 0 clamp(8px, 1.2vw, 14px);
}

.ls-block-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--about-maroon);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ls-block-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.ls-block-title {
  margin: 0;
  color: var(--about-ink);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.18;
}

.ls-meanings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-bottom: clamp(10px, 1.4vw, 16px);
}

.ls-meaning-card {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 2.4vw, 28px);
  border-radius: 24px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(247, 239, 232, 0.96) 100%);
  border: 1px solid rgba(127, 17, 19, 0.1);
  box-shadow: 0 18px 32px rgba(79, 9, 12, 0.07);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.ls-meaning-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px rgba(79, 9, 12, 0.12);
}

.ls-meaning-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    rgba(215, 170, 67, 0.95) 0%,
    rgba(127, 17, 19, 0.9) 100%);
}

.ls-meaning-card-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
}

.ls-meaning-index {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(127, 17, 19, 0.96) 0%, rgba(79, 9, 12, 0.98) 100%);
  color: rgba(255, 241, 231, 0.9);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.ls-meaning-title {
  margin: 0;
  color: var(--about-ink);
  font-size: 1.08rem;
  line-height: 1.22;
}

.ls-meaning-body {
  margin: 0;
  color: var(--about-muted);
  font-size: 0.9rem;
  line-height: 1.74;
}

.ls-reference-card {
  padding: clamp(18px, 2.4vw, 28px);
  border-radius: 24px;
  background: linear-gradient(135deg,
    rgba(255, 249, 242, 0.98) 0%,
    rgba(247, 239, 232, 0.96) 55%,
    rgba(215, 170, 67, 0.1) 100%);
  border: 1px solid rgba(127, 17, 19, 0.1);
  box-shadow: 0 18px 32px rgba(79, 9, 12, 0.07);
  display: grid;
  gap: 0;
  max-width: 100%;
  margin-bottom: clamp(10px, 1.4vw, 16px);
}

.ls-ref-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(127, 17, 19, 0.08);
}

.ls-ref-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ls-ref-row:first-child { padding-top: 0; }

.ls-ref-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border-radius: 999px;
  background: rgba(127, 17, 19, 0.07);
  color: var(--about-maroon);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.ls-ref-text {
  color: var(--about-ink);
  font-size: 0.93rem;
  line-height: 1.7;
  padding-top: 4px;
}

.ls-colors-duo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.ls-color-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(127, 17, 19, 0.1);
  box-shadow: 0 18px 32px rgba(79, 9, 12, 0.08);
}

.ls-color-card-swatch {
  position: relative;
  height: 100px;
  overflow: hidden;
}

.ls-color-card--maroon .ls-color-card-swatch {
  background: linear-gradient(135deg, #a11d23 0%, #7f1113 50%, #4f090c 100%);
}

.ls-color-card--gold .ls-color-card-swatch {
  background: linear-gradient(135deg, #f3c45a 0%, #d7aa43 50%, #b8882a 100%);
}

.ls-color-swatch-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.04) 0px,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px,
    transparent 12px
  );
}

.ls-color-card-body {
  padding: clamp(16px, 2vw, 22px);
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(247, 239, 232, 0.96) 100%);
}

.ls-color-name {
  margin: 0 0 4px;
  color: var(--about-ink);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.1;
}

.ls-color-hex {
  margin: 0 0 2px;
  color: var(--about-maroon);
  font-size: 0.8rem;
  font-weight: 700;
  font-family: monospace;
  letter-spacing: 0.06em;
}

.ls-color-pantone {
  margin: 0 0 10px;
  color: var(--about-muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.ls-color-meaning {
  margin: 0;
  color: var(--about-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.ls-meaning-card-accent {
  display: none;
}

/* ============================================================
   DARK MODE — logo & symbols
   ============================================================ */
body.pup-dark-mode .ls-meaning-card,
body.pup-dark-mode .ls-reference-card {
  background: linear-gradient(180deg, rgba(18, 4, 5, 0.99) 0%, rgba(12, 2, 3, 0.99) 100%);
  border-color: rgba(160, 40, 40, 0.14);
}

body.pup-dark-mode .ls-meaning-title,
body.pup-dark-mode .ls-color-name,
body.pup-dark-mode .ls-ref-text,
body.pup-dark-mode .ls-block-title {
  color: #f5e8e8;
}

body.pup-dark-mode .ls-meaning-body,
body.pup-dark-mode .ls-color-meaning,
body.pup-dark-mode .ls-color-pantone {
  color: #c8a8a8;
}

body.pup-dark-mode .ls-color-card-body {
  background: linear-gradient(180deg, rgba(18, 4, 5, 0.99) 0%, rgba(12, 2, 3, 0.99) 100%);
}

body.pup-dark-mode .ls-block-kicker { color: #e08080; }
body.pup-dark-mode .ls-block-kicker::before { background: rgba(160, 40, 40, 0.9); }

body.pup-dark-mode .ls-ref-num,
body.pup-dark-mode .ls-ref-row { border-bottom-color: rgba(160, 40, 40, 0.08); }

body.pup-dark-mode .ls-ref-num {
  background: rgba(160, 40, 40, 0.12);
  color: #e08080;
}

body.pup-dark-mode .ls-color-hex { color: #e08080; }

body.pup-dark-mode .ls-color-card {
  border-color: rgba(160, 40, 40, 0.14);
}

/* ============================================================
   RESPONSIVE — logo & symbols
   ============================================================ */
@media (max-width: 1024px) {
  .ls-seal-hero-inner {
    grid-template-columns: clamp(120px, 14vw, 180px) 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .ls-seal-hero {
    padding: 28px 20px;
  }

  .ls-seal-hero-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 20px;
  }

  .ls-seal-ring {
    width: 140px;
    height: 140px;
  }

  .ls-color-chips { justify-content: center; }
  .ls-seal-body { max-width: none; }
  .ls-seal-headline { font-size: clamp(1.4rem, 4vw, 1.8rem); }

  .ls-meanings-grid,
  .ls-colors-duo {
    grid-template-columns: 1fr;
  }

  .ls-reference-card { max-width: 100%; }
}

@media (max-width: 480px) {
  .ls-seal-hero {
    padding: 22px 16px;
    border-radius: 20px;
  }

  .ls-seal-ring {
    width: 110px;
    height: 110px;
  }

  .ls-seal-headline { font-size: 1.2rem; }
  .ls-seal-body { font-size: 0.88rem; line-height: 1.65; }

  .ls-color-card-swatch { height: 72px; }

  .ls-meaning-card {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .ls-ref-row {
    grid-template-columns: 40px 1fr;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ls-seal-ring-shimmer { animation: none; }
  .ls-meaning-card:hover { transform: none; }
}


/* ============================================================
   HYMN — hymn-* components
   ============================================================ */

.ls-symbols-shell {
  display: grid;
  gap: clamp(18px, 2.4vw, 30px);
}

.ls-symbols-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(28px, 4vw, 54px);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(244, 205, 93, 0.22), transparent 32%),
    linear-gradient(135deg, #4f090c 0%, #7f1113 52%, #240507 100%);
  border: 1px solid rgba(215, 170, 67, 0.18);
  box-shadow: 0 30px 60px rgba(79, 9, 12, 0.2);
}

.ls-symbols-title {
  margin: 0;
  color: #fff9f3;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
}

.ls-symbols-hero .section-tag {
  color: #fff5ea;
}

.ls-symbols-hero .section-tag::before {
  background: currentColor;
}

.ls-symbols-summary {
  margin: 14px 0 0;
  color: rgba(255, 244, 233, 0.8);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 60ch;
}

.ls-symbols-lead {
  margin: 16px 0 0;
  color: rgba(255, 244, 233, 0.92);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 62ch;
}

.ls-symbols-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.ls-symbols-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 244, 233, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff5ea;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ls-symbols-visual {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
}

.ls-symbols-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.ls-symbols-orbit--one {
  width: min(100%, 320px);
  aspect-ratio: 1;
}

.ls-symbols-orbit--two {
  width: min(82%, 250px);
  aspect-ratio: 1;
  border-color: rgba(244, 205, 93, 0.35);
}

.ls-symbols-seal-frame {
  position: relative;
  z-index: 1;
  width: min(72vw, 240px);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 18px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.05) 60%, rgba(255, 255, 255, 0.02) 100%);
  border: 2px solid rgba(244, 205, 93, 0.42);
  box-shadow:
    0 0 0 10px rgba(244, 205, 93, 0.08),
    0 28px 60px rgba(12, 2, 3, 0.38);
}

.ls-symbols-seal {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.34));
}

.ls-symbols-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
}

.ls-symbol-card {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 2.4vw, 26px);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.98) 0%, rgba(247, 239, 232, 0.95) 100%);
  border: 1px solid rgba(127, 17, 19, 0.1);
  box-shadow: 0 18px 32px rgba(79, 9, 12, 0.07);
}

.ls-symbol-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #d7aa43 0%, #7f1113 100%);
}

.ls-symbol-card-top {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.ls-symbol-card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7f1113 0%, #4f090c 100%);
  color: #fff8f1;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.ls-symbol-card-title {
  margin: 0;
  color: var(--about-ink);
  font-size: 1.08rem;
  line-height: 1.2;
}

.ls-symbol-card-body {
  margin: 0;
  color: var(--about-muted);
  font-size: 0.93rem;
  line-height: 1.74;
}

.ls-symbols-panel {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(127, 17, 19, 0.1);
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.98) 0%, rgba(246, 236, 228, 0.96) 100%);
  box-shadow: 0 20px 36px rgba(79, 9, 12, 0.08);
}

.ls-symbols-panel-head {
  padding: clamp(20px, 2.4vw, 28px) clamp(20px, 2.4vw, 28px) 0;
}

.ls-symbols-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--about-maroon);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ls-symbols-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.ls-symbols-panel-title {
  margin: 10px 0 0;
  color: var(--about-ink);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.2;
}

.ls-symbols-table {
  padding: clamp(18px, 2.4vw, 28px);
  overflow-x: auto;
}

.ls-symbols-table-head div,
.ls-symbols-row {
  display: grid;
  grid-template-columns: 1.05fr 1.35fr 0.8fr 1.25fr;
  gap: 16px;
  min-width: 760px;
}

.ls-symbols-table-head {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(127, 17, 19, 0.12);
}

.ls-symbols-table-head span {
  color: var(--about-maroon);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ls-symbols-table-body {
  display: grid;
}

.ls-symbols-row {
  padding: 16px 0;
  border-bottom: 1px solid rgba(127, 17, 19, 0.08);
}

.ls-symbols-row:last-child {
  border-bottom: none;
}

.ls-symbols-row span {
  color: var(--about-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.ls-symbols-row .ls-symbols-cell-title {
  color: var(--about-ink);
  font-weight: 700;
}

.ls-symbols-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ls-symbols-note {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 250, 245, 0.92);
  border: 1px solid rgba(127, 17, 19, 0.08);
}

.ls-symbols-note-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(127, 17, 19, 0.08);
  color: var(--about-maroon);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.ls-symbols-note p {
  margin: 0;
  color: var(--about-ink);
  font-size: 0.92rem;
  line-height: 1.72;
}

.ls-symbols-colors {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ls-symbols-color-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(127, 17, 19, 0.1);
  box-shadow: 0 18px 32px rgba(79, 9, 12, 0.08);
  background: #fffdfa;
}

.ls-symbols-color-swatch {
  height: 92px;
}

.ls-symbols-color-card--gold .ls-symbols-color-swatch {
  background: linear-gradient(135deg, #f5ca65 0%, #d7aa43 50%, #ba8d2c 100%);
}

.ls-symbols-color-card--maroon .ls-symbols-color-swatch {
  background: linear-gradient(135deg, #a61d23 0%, #7f1113 52%, #47080b 100%);
}

.ls-symbols-color-card--white .ls-symbols-color-swatch {
  background: linear-gradient(135deg, #ffffff 0%, #f6f1eb 100%);
  border-bottom: 1px solid rgba(127, 17, 19, 0.08);
}

.ls-symbols-color-copy {
  padding: 18px 18px 20px;
}

.ls-symbols-color-copy h3 {
  margin: 0 0 8px;
  color: var(--about-ink);
  font-size: 1.04rem;
  line-height: 1.2;
}

.ls-symbols-color-copy p {
  margin: 0;
  color: var(--about-muted);
  font-size: 0.9rem;
  line-height: 1.72;
}

body.pup-dark-mode .ls-symbol-card,
body.pup-dark-mode .ls-symbols-panel,
body.pup-dark-mode .ls-symbols-note,
body.pup-dark-mode .ls-symbols-color-card {
  background: linear-gradient(180deg, rgba(18, 4, 5, 0.99) 0%, rgba(12, 2, 3, 0.99) 100%);
  border-color: rgba(160, 40, 40, 0.14);
}

body.pup-dark-mode .ls-symbol-card-title,
body.pup-dark-mode .ls-symbols-panel-title,
body.pup-dark-mode .ls-symbols-row .ls-symbols-cell-title,
body.pup-dark-mode .ls-symbols-note p,
body.pup-dark-mode .ls-symbols-color-copy h3 {
  color: #f5e8e8;
}

body.pup-dark-mode .ls-symbol-card-body,
body.pup-dark-mode .ls-symbols-row span,
body.pup-dark-mode .ls-symbols-color-copy p {
  color: #c8a8a8;
}

body.pup-dark-mode .ls-symbols-table-head,
body.pup-dark-mode .ls-symbols-row,
body.pup-dark-mode .ls-symbols-color-card--white .ls-symbols-color-swatch {
  border-color: rgba(160, 40, 40, 0.12);
}

body.pup-dark-mode .ls-symbols-kicker,
body.pup-dark-mode .ls-symbols-table-head span,
body.pup-dark-mode .ls-symbols-note-num {
  color: #e08080;
}

body.pup-dark-mode .ls-symbols-note-num {
  background: rgba(160, 40, 40, 0.12);
}

@media (max-width: 1024px) {
  .ls-symbols-hero,
  .ls-symbols-colors,
  .ls-symbols-notes {
    grid-template-columns: 1fr;
  }

  .ls-symbols-grid {
    grid-template-columns: 1fr;
  }

  .ls-symbols-table {
    padding-bottom: 12px;
  }
}

@media (max-width: 768px) {
  .ls-symbols-hero {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .ls-symbols-visual {
    min-height: 240px;
  }

  .ls-symbols-seal-frame {
    width: min(72vw, 200px);
  }

  .ls-symbols-pills {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .ls-symbol-card,
  .ls-symbols-table,
  .ls-symbols-panel-head,
  .ls-symbols-note,
  .ls-symbols-color-copy {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ls-symbols-title {
    font-size: 1.7rem;
  }

  .ls-symbols-summary,
  .ls-symbols-lead,
  .ls-symbol-card-body,
  .ls-symbols-row span,
  .ls-symbols-note p,
  .ls-symbols-color-copy p {
    font-size: 0.88rem;
  }
}

.hymn-layout {
  width: 100%;
  display: grid;
  gap: clamp(18px, 2.4vw, 28px);
}

.hymn-page-header {
  display: grid;
  gap: 8px;
  margin-bottom: 0;
}

.hymn-page-title {
  margin: 0;
  color: var(--about-ink);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.hymn-page-attribution {
  margin: 0;
  color: var(--about-muted);
  font-size: 0.88rem;
  font-style: italic;
  letter-spacing: 0.02em;
}

.hymn-hero {
  width: 100%;
  overflow: hidden;
  border-radius: 28px;
  padding: clamp(32px, 4vw, 56px) clamp(28px, 4vw, 52px);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  background: linear-gradient(145deg,
    rgba(127, 17, 19, 0.97) 0%,
    rgba(79, 9, 12, 0.99) 55%,
    rgba(40, 4, 6, 0.99) 100%);
  border: 1px solid rgba(215, 170, 67, 0.18);
  box-shadow: 0 32px 64px rgba(79, 9, 12, 0.22);
}

.hymn-hero-ornament {
  flex-shrink: 0;
  width: clamp(90px, 10vw, 128px);
  height: clamp(90px, 10vw, 128px);
  color: rgba(215, 170, 67, 0.85);
  animation: hymn-float 6s ease-in-out infinite;
}

@keyframes hymn-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hymn-hero-ornament svg {
  width: 100%;
  height: 100%;
}

.hymn-title-tag {
  margin: 0 0 6px;
  color: rgba(215, 170, 67, 0.9);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hymn-tagline {
  margin: 0 0 12px;
  color: #fffaf4;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.15;
}

.hymn-hero-desc {
  margin: 0 0 22px;
  color: rgba(255, 241, 231, 0.8);
  font-size: 0.93rem;
  line-height: 1.78;
  max-width: 52ch;
}

.hymn-listen-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f3c45a 0%, #d7aa43 100%);
  color: #2d1606;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 24px rgba(215, 170, 67, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.hymn-listen-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(215, 170, 67, 0.36);
}

.hymn-listen-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(45, 22, 6, 0.18);
}

.hymn-listen-icon svg {
  width: 14px;
  height: 14px;
}

.hymn-lyrics-block {
  width: 100%;
  margin: 0;
  padding: clamp(24px, 3vw, 40px);
  box-sizing: border-box;
  border-radius: 28px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(247, 239, 232, 0.95) 100%);
  border: 1px solid rgba(127, 17, 19, 0.1);
  box-shadow: 0 18px 36px rgba(79, 9, 12, 0.07);
}

.hymn-lyrics-header {
  display: grid;
  gap: 8px;
  margin-bottom: clamp(20px, 2.4vw, 28px);
  padding-bottom: clamp(14px, 1.8vw, 20px);
  border-bottom: 1px solid rgba(127, 17, 19, 0.1);
}

.hymn-lyrics-body {
  display: grid;
  gap: clamp(22px, 2.8vw, 32px);
}

.hymn-stanza {
  display: grid;
  gap: 4px;
}

.hymn-stanza--chorus {
  padding: clamp(16px, 2vw, 22px);
  border-radius: 18px;
  background: linear-gradient(135deg,
    rgba(127, 17, 19, 0.05) 0%,
    rgba(215, 170, 67, 0.06) 100%);
  border: 1px solid rgba(127, 17, 19, 0.1);
}

.hymn-stanza-label {
  margin: 0 0 10px;
  color: var(--about-maroon);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hymn-line {
  margin: 0;
  color: var(--about-ink);
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.hymn-line--refrain {
  margin-top: 4px;
  color: var(--about-maroon);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.hymn-line--end {
  color: var(--about-maroon);
  font-weight: 800;
  font-style: italic;
}

.hymn-listen-btn {
  color: #2d1606;
}

.hymn-listen-btn:hover {
  color: #2d1606;
}

body.pup-dark-mode .hymn-listen-btn,
body.pup-dark-mode .hymn-listen-btn:hover,
body.pup-dark-mode .hymn-listen-btn * {
  color: #2d1606 !important;
}

/* ============================================================
   DARK MODE — hymn
   ============================================================ */
body.pup-dark-mode .hymn-lyrics-block {
  background: linear-gradient(180deg, rgba(18, 4, 5, 0.99) 0%, rgba(12, 2, 3, 0.99) 100%);
  border-color: rgba(160, 40, 40, 0.14);
}

body.pup-dark-mode .hymn-page-title,
body.pup-dark-mode .hymn-line {
  color: #f5e8e8;
}

body.pup-dark-mode .hymn-page-attribution,
body.pup-dark-mode .hymn-hero-desc {
  color: #c8a8a8;
}

body.pup-dark-mode .hymn-stanza-label,
body.pup-dark-mode .hymn-line--refrain,
body.pup-dark-mode .hymn-line--end {
  color: #e08080;
}

body.pup-dark-mode .hymn-stanza--chorus {
  background: linear-gradient(135deg,
    rgba(160, 40, 40, 0.08) 0%,
    rgba(215, 170, 67, 0.05) 100%);
  border-color: rgba(160, 40, 40, 0.14);
}

body.pup-dark-mode .hymn-lyrics-header {
  border-bottom-color: rgba(160, 40, 40, 0.1);
}

body.pup-dark-mode .hymn-listen-btn,
body.pup-dark-mode .hymn-listen-btn * {
  color: #000000 !important;
}

/* ============================================================
   RESPONSIVE — hymn
   ============================================================ */
@media (max-width: 768px) {
  .hymn-hero {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 20px;
    padding: 28px 20px;
  }

  .hymn-hero-desc { max-width: none; }
  .hymn-listen-btn { align-self: center; }

  .hymn-lyrics-block,
  .hymn-page-header {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hymn-page-title { font-size: clamp(1.5rem, 6vw, 1.9rem); }

  .hymn-hero {
    padding: 22px 16px;
    border-radius: 20px;
  }

  .hymn-hero-ornament {
    width: 72px;
    height: 72px;
  }

  .hymn-tagline { font-size: 1.1rem; }
  .hymn-hero-desc { font-size: 0.88rem; line-height: 1.65; }

  .hymn-lyrics-block {
    padding: 18px 14px;
    border-radius: 18px;
  }

  .hymn-line { font-size: 0.9rem; line-height: 1.75; }
  .hymn-meaning-item { font-size: 0.88rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hymn-hero-ornament { animation: none; }
}

/* ============================================================
   MAPS — map-* components
   ============================================================ */

/* ── Hero Header ── */
.map-hero-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(127,17,19,0.97) 0%, rgba(79,9,12,0.99) 100%);
  border: 1px solid rgba(215,170,67,0.2);
  margin-bottom: 0;
}

.map-hero-eyebrow {
  color: rgba(215,170,67,0.9);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.map-hero-title {
  color: #fffaf4;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 6px;
}

.map-hero-address {
  color: rgba(255,241,231,0.72);
  font-size: 0.84rem;
  line-height: 1.5;
  margin: 0;
}

.map-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.map-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.map-chip--gold {
  background: rgba(243,196,90,0.18);
  color: #f3c45a;
  border: 1px solid rgba(243,196,90,0.28);
}

.map-chip--light {
  background: rgba(255,255,255,0.1);
  color: rgba(255,241,231,0.88);
  border: 1px solid rgba(255,255,255,0.14);
}

.map-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f3c45a, #d7aa43);
  color: #2d1606;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.map-hero-cta:hover {
  transform: translateY(-2px);
  color: #000000;
}

/* ── Body Layout ── */
.map-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 20px;
  align-items: start;
}

/* ── Iframe Wrapper ── */
.map-iframe-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(127,17,19,0.14);
  box-shadow: 0 20px 40px rgba(79,9,12,0.14);
  background: #e0dbd5;
}

.map-iframe-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  background: linear-gradient(90deg, rgba(127,17,19,0.98), rgba(79,9,12,0.99));
}

.map-iframe-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,241,231,0.82);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.map-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f3c45a;
  flex-shrink: 0;
  animation: map-dot-pulse 2s ease-in-out infinite;
}

@keyframes map-dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.map-iframe-tabs {
  display: flex;
  gap: 4px;
}

.map-tab {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  cursor: pointer;
  color: rgba(255,241,231,0.6);
  background: transparent;
  border: none;
  transition: background 0.18s, color 0.18s;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: inherit;
}

.map-tab.active {
  background: rgba(255,255,255,0.12);
  color: #fffaf4;
}

.map-iframe-panel {
  position: relative;
  height: 420px;
}

.map-iframe-panel iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-pane-hidden {
  display: none;
}

/* ── Directions Footer ── */
.map-dir-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 22px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,239,232,0.96) 100%);
  border: 1px solid rgba(127,17,19,0.12);
}

.map-dir-text {
  font-size: 0.82rem;
  color: var(--about-muted);
  line-height: 1.4;
}

.map-dir-text strong {
  color: var(--about-ink);
  font-weight: 700;
}

.map-dir-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.map-dir-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease;
  font-family: inherit;
}

.map-dir-btn:hover {
  transform: translateY(-2px);
}

.map-dir-btn--primary {
  background: linear-gradient(135deg, rgba(127,17,19,0.97), rgba(79,9,12,0.99));
  color: #fffaf4;
}

.map-dir-btn--gold {
  background: linear-gradient(135deg, #f3c45a, #d7aa43);
  color: #2d1606;
}

.map-dir-btn--gold:hover {
  color: #000000;
}

/* ── Sidebar ── */
.map-sidebar {
  display: grid;
  gap: 14px;
}

/* ── Info Card ── */
.map-info-card,
.map-transport-card {
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,239,232,0.96) 100%);
  border: 1px solid rgba(127,17,19,0.12);
  box-shadow: 0 10px 22px rgba(79,9,12,0.08);
}

.map-info-kicker {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--about-maroon);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.map-info-kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.map-info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(127,17,19,0.07);
  font-size: 0.82rem;
}

.map-info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.map-info-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
  background: rgba(127,17,19,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-info-label {
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--about-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.map-info-val {
  color: var(--about-ink);
  font-weight: 600;
  line-height: 1.4;
}

/* ── Transport Card ── */
.map-transport-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.map-transport-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(127,17,19,0.07);
}

.map-transport-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.map-t-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(127,17,19,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-t-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--about-ink);
}

.map-t-sub {
  font-size: 0.72rem;
  color: var(--about-muted);
}

.map-t-badge {
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 800;
  background: rgba(127,17,19,0.08);
  color: var(--about-maroon);
  white-space: nowrap;
}

/* ── Tips Card ── */
.map-tips-card2 {
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(127,17,19,0.97) 0%, rgba(79,9,12,0.99) 100%);
  border: 1px solid rgba(215,170,67,0.16);
  box-shadow: 0 14px 28px rgba(79,9,12,0.18);
}

.map-tips-kicker {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(215,170,67,0.88);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.map-tips-kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.map-tip-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,241,231,0.1);
  font-size: 0.8rem;
  color: rgba(255,241,231,0.84);
  line-height: 1.5;
}

.map-tip-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.map-tip-bull {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background: rgba(243,196,90,0.16);
  border: 1px solid rgba(243,196,90,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-tip-bull::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f3c45a;
}

/* ============================================================
   DARK MODE — maps
   ============================================================ */
body.pup-dark-mode .map-info-card,
body.pup-dark-mode .map-transport-card {
  background: linear-gradient(180deg, rgba(18,4,5,0.99) 0%, rgba(12,2,3,0.99) 100%);
  border-color: rgba(160,40,40,0.14);
}

body.pup-dark-mode .map-info-val,
body.pup-dark-mode .map-t-name { color: #f5e8e8; }

body.pup-dark-mode .map-info-label,
body.pup-dark-mode .map-t-sub { color: #c8a8a8; }

body.pup-dark-mode .map-info-row { border-bottom-color: rgba(160,40,40,0.08); }
body.pup-dark-mode .map-transport-row { border-bottom-color: rgba(160,40,40,0.08); }

body.pup-dark-mode .map-info-icon,
body.pup-dark-mode .map-t-icon { background: rgba(160,40,40,0.12); }

body.pup-dark-mode .map-t-badge { background: rgba(160,40,40,0.12); color: #e08080; }
body.pup-dark-mode .map-info-kicker { color: #e08080; }

body.pup-dark-mode .map-dir-footer {
  background: linear-gradient(180deg, rgba(18,4,5,0.99) 0%, rgba(12,2,3,0.99) 100%);
  border-color: rgba(160,40,40,0.14);
}

body.pup-dark-mode .map-dir-text { color: #c8a8a8; }
body.pup-dark-mode .map-dir-text strong { color: #f5e8e8; }

body.pup-dark-mode .map-hero-cta,
body.pup-dark-mode .map-dir-btn--gold { color: #2d1606 !important; }

body.pup-dark-mode .map-hero-cta:hover,
body.pup-dark-mode .map-dir-btn--gold:hover { color: #000000 !important; }

/* ============================================================
   RESPONSIVE — maps
   ============================================================ */
@media (max-width: 900px) {
  .map-body { grid-template-columns: 1fr; }
  .map-hero-header { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 600px) {
  .map-iframe-panel { height: 280px; }
  .map-hero-title { font-size: 1.2rem; }
  .map-dir-footer { flex-direction: column; align-items: flex-start; }
  .map-hero-header { padding: 18px; border-radius: 18px; }
}

/* ============================================================
   CAMPUS OFFICIALS — officials-* components
   ============================================================ */

.officials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 280px));
  gap: clamp(18px, 2.4vw, 28px);
  justify-content: center;
}

.official-card {
  position: relative;
  min-height: 360px;
  perspective: 1000px;
  -webkit-perspective: 1000px;
  border-radius: 26px;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
  cursor: pointer;
  transition: transform 0.28s ease;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}

.official-card-inner {
  position: relative;
  width: 100%;
  height: 360px;
  transition: box-shadow 0.32s ease;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform: rotateY(0deg) translateZ(0);
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(127,17,19,0.98) 0%, rgba(79,9,12,0.99) 100%);
  box-shadow: 0 18px 36px rgba(79, 9, 12, 0.16);
  will-change: transform;
}

.official-card:hover {
  transform: translateY(-6px) scale(1.01);
}

.official-card:hover .official-card-inner,
.official-card:focus-visible .official-card-inner {
  box-shadow: 0 28px 48px rgba(79, 9, 12, 0.22);
}

.official-card:focus-visible {
  outline: 3px solid rgba(243, 196, 90, 0.45);
  outline-offset: 4px;
}

.official-face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: 26px;
  overflow: hidden;
  transform-style: flat;
  -webkit-transform-style: flat;
}

.official-face--front {
  background:
    radial-gradient(circle at top right, rgba(243, 196, 90, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(127,17,19,0.98) 0%, rgba(79,9,12,0.99) 100%);
  border: 1px solid rgba(215,170,67,0.18);
}

.official-face--back {
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,239,232,0.94) 100%);
  border: 1px solid rgba(127,17,19,0.12);
}

.official-portrait,
.official-back-layout {
  width: 100%;
  height: 100%;
}

.official-portrait {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(127,17,19,0.98) 0%, rgba(79,9,12,0.99) 100%);
  border: none;
}

.official-portrait-img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  display: block;
  margin: 0;
  filter: none;
}

.official-portrait-img--placeholder {
  opacity: 1;
  object-fit: contain;
  padding: 28px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.98) 0%, rgba(255, 251, 247, 0.96) 58%, rgba(245, 232, 220, 0.9) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.88),
    0 0 34px rgba(255, 255, 255, 0.85),
    0 0 64px rgba(255, 241, 228, 0.62);
  filter: drop-shadow(0 0 24px rgba(255, 255, 255, 0.92));
}

.official-front-copy {
  position: absolute;
  inset: auto 0 0 0;
  min-height: 78px;
  padding: 18px 22px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #971518;
}

.official-front-name {
  margin: 0;
  color: #fffaf4;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  overflow-wrap: anywhere;
  text-shadow: none;
  max-width: 16ch;
}

.official-info {
  display: grid;
  gap: 12px;
  width: 100%;
  align-content: center;
}

.official-back-layout {
  width: 100%;
  height: 100%;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.official-back-portrait {
  width: 136px;
  height: 136px;
  border-radius: 999px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(127,17,19,0.08) 0%, rgba(79,9,12,0.04) 100%);
  border: 1px solid rgba(127,17,19,0.1);
  box-shadow: 0 10px 22px rgba(79,9,12,0.08);
}

.official-back-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.official-back-img--placeholder {
  object-fit: contain;
  padding: 18px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.98) 0%, rgba(255, 251, 247, 0.96) 58%, rgba(245, 232, 220, 0.9) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.9),
    0 0 24px rgba(255, 255, 255, 0.82),
    0 0 44px rgba(255, 241, 228, 0.58);
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.88));
}

.official-name {
  margin: 0;
  color: var(--about-ink);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.22;
  white-space: normal;
  overflow-wrap: anywhere;
}

.official-role {
  margin: 0;
  color: var(--about-muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.45;
  white-space: normal;
  overflow-wrap: anywhere;
}

.official-description {
  margin: 0;
  color: var(--about-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  white-space: normal;
}

/* ============================================================
   DARK MODE — campus officials
   ============================================================ */
body.pup-dark-mode .official-face--back {
  background: linear-gradient(180deg, rgba(18,4,5,0.98) 0%, rgba(12,2,3,0.99) 100%);
  border-color: rgba(160,40,40,0.14);
  box-shadow: 0 10px 24px rgba(0,0,0,0.4);
}

body.pup-dark-mode .official-face--front {
  background: linear-gradient(135deg, rgba(55,8,10,0.98) 0%, rgba(35,4,6,0.99) 100%);
  border-color: rgba(215,170,67,0.18);
}

body.pup-dark-mode .official-front-copy {
  background: linear-gradient(180deg, rgba(5, 1, 1, 0) 0%, rgba(5, 1, 1, 0.78) 58%, rgba(5, 1, 1, 0.94) 100%);
}

body.pup-dark-mode .official-name { color: #f5e8e8; }
body.pup-dark-mode .official-role { color: #c8a8a8; }
body.pup-dark-mode .official-description { color: #c8a8a8; }

/* ============================================================
   RESPONSIVE — campus officials
   ============================================================ */
@media (max-width: 480px) {
  .official-card {
    min-height: 320px;
  }

  .official-card-inner,
  .official-face,
  .official-portrait,
  .official-portrait-placeholder {
    min-height: 320px;
  }

  .official-card-inner {
    height: 320px;
  }

  .official-name { font-size: 0.96rem; }
  .official-role { font-size: 0.78rem; }
  .official-description { font-size: 0.84rem; }
}

@media (prefers-reduced-motion: reduce) {
  .official-card-inner {
    transition: none;
  }

  .official-card:hover {
    transform: none;
  }

  .official-card:hover .official-card-inner,
  .official-card:focus-visible .official-card-inner {
    box-shadow: 0 18px 36px rgba(79, 9, 12, 0.16);
  }

  .official-card.is-flipped .official-card-inner {
    transform: rotateY(180deg);
  }

  .official-portrait::after {
    transition: none;
    transform: none;
  }
}

.about-sections .hero-shell {
  display: none;
}

/* ============================================================
   ABOUT DETAIL PAGE NORMALIZATION
   Keep every About subsection on the same shell rhythm as overview.
   ============================================================ */
.about-shell > .about-sections {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 var(--about-page-gutter) clamp(28px, 3vw, 40px);
  justify-self: stretch;
  justify-items: stretch;
  align-self: start;
  gap: clamp(16px, 2vw, 24px);
}

.about-sections > .history-story,
.about-sections > .about-section-card {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  justify-self: stretch;
}

.about-sections > .history-story {
  padding: 0;
}

.about-sections > .about-section-card {
  padding: clamp(18px, 2.5vw, 28px);
}

.about-sections .history-story-inner,
.about-sections .history-timeline-container,
.about-sections .history-timeline-shell,
.about-sections .about-detail-body {
  width: 100%;
  max-width: none;
}

.about-sections .history-timeline-container,
.about-sections .about-section-card {
  border-radius: 28px;
}

.about-sections .history-timeline-container {
  padding: clamp(18px, 2.5vw, 28px);
}

.about-sections .history-timeline-shell {
  gap: clamp(34px, 3.4vw, 48px);
}

.about-sections .history-timeline-head {
  position: relative;
  z-index: 2;
}

.about-sections .history-timeline-grid {
  margin-top: 0;
}

@media (max-width: 768px) {
  .about-shell > .about-sections {
    padding: 0 var(--about-page-gutter) 24px;
    gap: 16px;
  }

  .about-sections > .about-section-card,
  .about-sections .history-timeline-container {
    padding: 18px;
    border-radius: 22px;
  }

  .about-sections .history-timeline-shell {
    gap: 26px;
  }
}

@media (max-width: 480px) {
  .about-shell > .about-sections {
    padding-bottom: 20px;
  }

  .about-sections > .about-section-card,
  .about-sections .history-timeline-container {
    padding: 14px;
    border-radius: 18px;
  }

  .about-sections .history-timeline-shell {
    gap: 22px;
  }
}

/* ============================================================
   STRATEGIC DEVELOPMENT PLAN — sdp-* components
   ============================================================ */

.sdp-page-header {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 24px;
  padding: clamp(28px, 3vw, 40px) clamp(24px, 3.5vw, 48px);
  margin-bottom: clamp(12px, 1.6vw, 20px);
  background: linear-gradient(135deg,
    rgba(127, 17, 19, 0.97) 0%,
    rgba(79, 9, 12, 0.99) 55%,
    rgba(45, 5, 8, 0.99) 100%);
  border: 1px solid rgba(215, 170, 67, 0.18);
  box-shadow: 0 24px 48px rgba(79, 9, 12, 0.2);
}

.sdp-page-header.cms-preview-editable {
  overflow: visible;
}

.sdp-page-header.cms-preview-editable > [data-cms-boundary] {
  display: block;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: inherit;
}

.sdp-page-header.cms-preview-editable > [data-cms-boundary]::after {
  inset: 0;
  border-radius: inherit;
}

.sdp-page-header-glow {
  position: absolute;
  top: -60px;
  right: -40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 170, 67, 0.14) 0%, rgba(215, 170, 67, 0) 70%);
  pointer-events: none;
}

.sdp-page-header-inner {
  position: relative;
  z-index: 2;
}

.sdp-page-header-copy {
  display: grid;
  gap: 12px;
  max-width: 72ch;
}

.sdp-page-header-eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(215, 170, 67, 0.9);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.sdp-page-header-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
}

.sdp-page-title {
  margin: 0;
  color: #fffaf4;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  line-height: 1.05;
  font-weight: 800;
}

.sdp-page-subtitle {
  margin: 0;
  color: rgba(255, 241, 231, 0.8);
  font-size: 0.93rem;
  line-height: 1.76;
}

.sdp-block-header {
  display: grid;
  gap: 8px;
  margin: clamp(12px, 1.6vw, 20px) 0 clamp(8px, 1.2vw, 14px);
}

.sdp-priorities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  grid-auto-rows: 1fr;
  gap: clamp(16px, 2vw, 24px);
  margin-bottom: clamp(10px, 1.4vw, 16px);
}

.sdp-priority-card {
  position: relative;
  overflow: hidden;
  min-height: 236px;
  height: 100%;
  padding: clamp(22px, 2.6vw, 32px);
  border-radius: 24px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(247, 239, 232, 0.96) 100%);
  border: 1px solid rgba(127, 17, 19, 0.1);
  box-shadow: 0 18px 32px rgba(79, 9, 12, 0.07);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  align-content: start;
  align-self: stretch;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.sdp-priority-card.cms-preview-editable-card {
  cursor: pointer;
}

.sdp-priority-card.cms-preview-editable-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(242, 201, 76, 0.95);
  border-radius: inherit;
  pointer-events: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sdp-priority-card.cms-preview-editable-card:hover::after,
.sdp-priority-card.cms-preview-editable-card:focus-within::after {
  border-color: rgba(255, 220, 92, 1);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.24),
    0 0 0 4px rgba(242, 201, 76, 0.12);
}

.sdp-priority-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px rgba(79, 9, 12, 0.12);
}

.sdp-priority-card--add {
  place-items: center;
  text-align: center;
  border: 2px dashed rgba(242, 201, 76, 0.95);
  background: linear-gradient(180deg, rgba(255, 252, 249, 0.98) 0%, rgba(250, 243, 238, 0.96) 100%);
  cursor: pointer;
}

.sdp-priority-card--add::after {
  display: none;
}

.sdp-priority-add-inner {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.sdp-priority-add-plus {
  color: var(--about-maroon);
  font-size: 4.6rem;
  line-height: 0.9;
  font-weight: 300;
}

.sdp-priority-add-label {
  margin: 0;
  color: var(--about-maroon);
  font-size: 1.12rem;
  font-weight: 800;
}

.sdp-priority-card-accent {
  display: none;
}

.sdp-priority-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.sdp-priority-index {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg,
    rgba(127, 17, 19, 0.96) 0%,
    rgba(79, 9, 12, 0.98) 100%);
  color: rgba(255, 241, 231, 0.9);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 18px rgba(79, 9, 12, 0.18);
}

.sdp-priority-title {
  margin: 0;
  padding-top: 8px;
  color: var(--about-ink);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.22;
  font-weight: 800;
}

.sdp-priority-body {
  margin: 0;
  align-self: start;
  color: var(--about-muted);
  font-size: 0.9rem;
  line-height: 1.74;
}

.sdp-principles-band {
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg,
    rgba(127, 17, 19, 0.97) 0%,
    rgba(79, 9, 12, 0.99) 55%,
    rgba(45, 5, 8, 0.99) 100%);
  box-shadow: 0 22px 40px rgba(79, 9, 12, 0.18);
  border: 1px solid rgba(215, 170, 67, 0.18);
}

.sdp-principles-inner {
  display: grid;
  gap: 0;
}

.sdp-principle-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(255, 241, 231, 0.1);
}

.sdp-principle-row:last-child {
  border-bottom: none;
}

.sdp-principle-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border-radius: 999px;
  background: rgba(243, 196, 90, 0.16);
  color: #f6d37b;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.sdp-principle-text {
  color: rgba(255, 241, 231, 0.88);
  font-size: 0.93rem;
  line-height: 1.72;
  padding-top: 5px;
}

/* ============================================================
   DARK MODE — strategic development plan
   ============================================================ */
body.pup-dark-mode .sdp-page-header {
  background: linear-gradient(135deg,
    rgba(55, 8, 10, 0.99) 0%,
    rgba(35, 4, 6, 0.99) 55%,
    rgba(18, 2, 3, 0.99) 100%);
  border-color: rgba(215, 170, 67, 0.14);
}

body.pup-dark-mode .sdp-page-title {
  color: #fffaf4;
}

body.pup-dark-mode .sdp-page-subtitle {
  color: rgba(255, 241, 231, 0.72);
}

body.pup-dark-mode .sdp-priority-card {
  background: linear-gradient(180deg,
    rgba(18, 4, 5, 0.99) 0%,
    rgba(12, 2, 3, 0.99) 100%);
  border-color: rgba(160, 40, 40, 0.14);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.5);
}

body.pup-dark-mode .sdp-priority-card.cms-preview-editable-card::after {
  border-color: rgba(242, 201, 76, 0.9);
}

body.pup-dark-mode .sdp-priority-card--add {
  border-color: rgba(242, 201, 76, 0.9);
}

body.pup-dark-mode .sdp-priority-add-plus,
body.pup-dark-mode .sdp-priority-add-label {
  color: #f0b2b2;
}

body.pup-dark-mode .sdp-priority-title {
  color: #f5e8e8;
}

body.pup-dark-mode .sdp-priority-body {
  color: #c8a8a8;
}

body.pup-dark-mode .sdp-principles-band {
  background: linear-gradient(135deg,
    rgba(40, 5, 7, 0.99) 0%,
    rgba(25, 3, 5, 0.99) 55%,
    rgba(15, 2, 3, 0.99) 100%);
  border-color: rgba(215, 170, 67, 0.14);
}

body.pup-dark-mode .sdp-principle-row {
  border-bottom-color: rgba(255, 241, 231, 0.06);
}

/* ============================================================
   RESPONSIVE — strategic development plan
   ============================================================ */
@media (max-width: 768px) {
  .sdp-page-header {
    border-radius: 18px;
    padding: 22px 18px;
  }

  .sdp-priorities-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .sdp-priority-card {
    padding: 20px 18px;
    border-radius: 20px;
  }

  .sdp-principle-row {
    padding: 14px 18px;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .sdp-page-header {
    padding: 18px 14px;
  }

  .sdp-page-title {
    font-size: clamp(1.4rem, 5.5vw, 1.75rem);
  }

  .sdp-priority-card {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .sdp-priority-index {
    min-width: 34px;
    min-height: 34px;
    font-size: 0.66rem;
  }

  .sdp-priority-title {
    font-size: 0.96rem;
    padding-top: 6px;
  }

  .sdp-priority-body {
    font-size: 0.86rem;
    line-height: 1.65;
  }

  .sdp-principle-row {
    grid-template-columns: 44px 1fr;
    padding: 12px 14px;
    gap: 10px;
  }

  .sdp-principle-text {
    font-size: 0.88rem;
  }

  .sdp-principles-band {
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sdp-priority-card:hover {
    transform: none;
  }
}

/* ============================================================
   CONTACT / GET IN TOUCH
   ============================================================ */

.dp-contact-wrap {
  width: 100%;
  padding: 0 var(--about-page-gutter, 24px) 56px;
  box-sizing: border-box;
}

.contact-info-card {
  max-width: 960px;
  margin: 32px auto 0;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 253, 250, 0.97) 0%,
    rgba(247, 239, 232, 0.93) 100%
  );
  border: 1px solid rgba(127, 17, 19, 0.12);
  box-shadow: 0 22px 48px rgba(79, 9, 12, 0.1);
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
}

.dp-contact-photo-panel {
  background: linear-gradient(
    180deg,
    var(--about-maroon-light) 0%,
    var(--about-maroon)       48%,
    var(--about-maroon-deep)  100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 24px;
  gap: 16px;
  text-align: center;
}

.dp-contact-logo-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: visible;
  border: 0;
  box-shadow: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dp-contact-logo-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(243, 196, 90, 0.42) 0%, rgba(243, 196, 90, 0.2) 42%, rgba(243, 196, 90, 0) 74%);
  filter: blur(10px);
  opacity: 0.9;
  animation: dp-contact-seal-glow 4.6s ease-in-out infinite;
  pointer-events: none;
}

.dp-contact-logo-img {
  position: relative;
  z-index: 1;
  width: 104px;
  height: 104px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 12px rgba(255, 224, 130, 0.38)) drop-shadow(0 14px 24px rgba(18, 3, 4, 0.32));
  animation: dp-contact-crest-float 3.8s ease-in-out infinite;
}

@keyframes dp-contact-crest-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes dp-contact-seal-glow {
  0%,
  100% {
    opacity: 0.72;
    transform: translate(-50%, -50%) scale(0.96);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

.dp-contact-branch-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dp-contact-branch-name {
  margin: 0;
  color: #fffaf4;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.dp-contact-branch-sub {
  margin: 0;
  color: rgba(255, 241, 231, 0.7);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dp-contact-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #f3c45a, var(--about-gold));
  border-radius: 999px;
  opacity: 0.8;
}

.dp-contact-address {
  margin: 0;
  color: rgba(255, 241, 231, 0.72);
  font-size: 0.8rem;
  line-height: 1.6;
  max-width: 200px;
}

.dp-contact-details-panel {
  padding: 36px 36px 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.dp-contact-intro {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dp-contact-intro .section-tag {
  margin-bottom: 8px;
}

.dp-contact-heading {
  margin: 0 0 6px;
  color: var(--about-ink);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.15;
}

.dp-contact-subtext {
  margin: 0;
  color: var(--about-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.dp-contact-rows {
  display: grid;
  gap: 12px;
}

.dp-contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
}

.dp-contact-row--maroon {
  background: rgba(127, 17, 19, 0.05);
  border: 1px solid rgba(127, 17, 19, 0.1);
}

.dp-contact-row--gold {
  background: rgba(215, 170, 67, 0.08);
  border: 1px solid rgba(215, 170, 67, 0.22);
}

.dp-contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dp-contact-icon--maroon {
  background: linear-gradient(135deg, var(--about-maroon-light) 0%, var(--about-maroon) 100%);
  box-shadow: 0 4px 12px rgba(79, 9, 12, 0.22);
}

.dp-contact-icon--gold {
  background: linear-gradient(135deg, #f3c45a 0%, var(--about-gold) 100%);
  box-shadow: 0 4px 12px rgba(18, 3, 4, 0.18);
}

.dp-contact-row-label {
  display: block;
  color: var(--about-maroon);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.dp-contact-row-value {
  display: flex;
  align-items: center;
  color: var(--about-ink);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  min-height: 28px;
}

.dp-contact-row-value:hover {
  color: var(--about-maroon);
  text-decoration: underline;
}

.dp-contact-cta {
  width: fit-content;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .contact-info-card {
    grid-template-columns: 240px 1fr;
  }

  .dp-contact-logo-wrap {
    width: 100px;
    height: 100px;
  }

  .dp-contact-logo-wrap::before {
    width: 128px;
    height: 128px;
  }

  .dp-contact-logo-img {
    width: 88px;
    height: 88px;
  }
}

@media (max-width: 768px) {
  .dp-contact-wrap {
    padding: 0 var(--about-page-gutter) 40px;
  }

  .contact-info-card {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .dp-contact-photo-panel {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 24px 20px;
    gap: 12px;
    text-align: left;
  }

  .dp-contact-address {
    width: 100%;
    text-align: center;
    max-width: none;
  }

  .dp-contact-details-panel {
    padding: 22px 20px;
    gap: 16px;
  }

  .dp-contact-rows { gap: 10px; }

  .dp-contact-row {
    padding: 12px 14px;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .contact-info-card { border-radius: 16px; }

  .dp-contact-photo-panel { padding: 18px var(--about-page-gutter); }

  .dp-contact-details-panel {
    padding: 18px var(--about-page-gutter);
    gap: 14px;
  }

  .dp-contact-heading { font-size: 1.2rem; }

  .dp-contact-logo-wrap { width: 84px; height: 84px; }
  .dp-contact-logo-wrap::before { width: 112px; height: 112px; }
  .dp-contact-logo-img { width: 76px; height: 76px; }

  .dp-contact-row { padding: 10px 12px; gap: 10px; }
  .dp-contact-icon { width: 32px; height: 32px; }
  .dp-contact-row-value { font-size: 0.88rem; }

  .dp-contact-cta { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .dp-contact-logo-wrap::before,
  .dp-contact-logo-img {
    animation: none;
  }
}

/* ── Dark mode ── */
body.pup-dark-mode .contact-info-card {
  background: linear-gradient(180deg, rgba(26, 10, 12, 0.98) 0%, rgba(18, 8, 10, 0.96) 100%);
  border-color: rgba(200, 80, 80, 0.14);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.5);
}

body.pup-dark-mode .dp-contact-photo-panel {
  background: linear-gradient(160deg, #3d0c10 0%, #2a0608 55%, #1e0405 100%);
}

body.pup-dark-mode .dp-contact-logo-wrap {
  background: transparent;
  border-color: transparent;
}

body.pup-dark-mode .dp-contact-branch-name { color: #f5e8e8; }
body.pup-dark-mode .dp-contact-branch-sub  { color: #c8a8a8; }
body.pup-dark-mode .dp-contact-divider     { background: rgba(215, 170, 67, 0.35); }
body.pup-dark-mode .dp-contact-address     { color: #c8a8a8; }
body.pup-dark-mode .dp-contact-heading     { color: #f5e8e8; }
body.pup-dark-mode .dp-contact-subtext     { color: #c8a8a8; }
body.pup-dark-mode .dp-contact-row-label   { color: #e08080; }
body.pup-dark-mode .dp-contact-row-value   { color: #f5e8e8; }
body.pup-dark-mode .dp-contact-row-value:hover { color: #e08080; }

body.pup-dark-mode .dp-contact-row--maroon {
  background: rgba(200, 80, 80, 0.08);
  border-color: rgba(200, 80, 80, 0.14);
}

body.pup-dark-mode .dp-contact-row--gold {
  background: rgba(215, 170, 67, 0.06);
  border-color: rgba(215, 170, 67, 0.18);
}

.dp-contact-cta {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--about-maroon-light) 0%, var(--about-maroon) 100%);
  color: #fffaf4 !important;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  box-shadow: 0 6px 18px rgba(79, 9, 12, 0.22);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
}

.dp-contact-cta:hover {
  background: linear-gradient(135deg, var(--about-maroon) 0%, var(--about-maroon-deep) 100%);
  box-shadow: 0 10px 24px rgba(79, 9, 12, 0.3);
  transform: translateY(-1px);
  color: #fffaf4 !important;
  text-decoration: none;
}

@media (max-width: 480px) {
  .dp-contact-cta {
    width: 100%;
    justify-content: center;
  }
}

body.pup-dark-mode .dp-contact-cta {
  color: #ffffff !important;
  background: linear-gradient(135deg, #5a0a0c 0%, #3d0608 100%);
}

body.pup-dark-mode .dp-contact-cta:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #6b0c0f 0%, #4a0709 100%);
}
