/* =========================================================
   St. Rose Catholic School
   Static stylesheet — rose-pink theme
   ========================================================= */

:root {
  --rosewood-50: #fff1f2;
  --rosewood-100: #ffe4e6;
  --rosewood-200: #fecdd3;
  --rosewood-300: #fda4af;
  --rosewood-400: #fb7185;
  --rosewood-500: #f43f5e;
  --rosewood-600: #e11d48;
  --rosewood-700: #be123c;
  --rosewood-800: #9f1239;
  --rosewood-900: #881337;
  --rosewood-950: #4c0519;

  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;

  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-400: #34d399;
  --emerald-600: #059669;
  --emerald-800: #065f46;
  --emerald-900: #064e3b;
  --emerald-950: #022c22;

  --amber-100: #fef3c7;
  --amber-600: #d97706;

  --white: #ffffff;
  --black: #000000;

  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-3xl: 1.5rem;
  --radius-full: 9999px;

  --container: 80rem;
  --header-h: 5rem;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--slate-800);
  background: var(--slate-50);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

::selection {
  background: var(--rosewood-200);
  color: var(--rosewood-900);
}

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ---------- Icons ---------- */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
}

.icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-sm { width: 0.875rem; height: 0.875rem; }
.icon-md { width: 1rem; height: 1rem; }
.icon-lg { width: 2.5rem; height: 2.5rem; }
.icon-xl { width: 2rem; height: 2rem; }

.icon-fill svg {
  fill: currentColor;
  stroke: currentColor;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.hidden { display: none !important; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ---------- Typography ---------- */
.font-serif { font-family: var(--font-serif); }
.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rosewood-600);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 900;
  color: var(--rosewood-950);
  font-size: 1.875rem;
  line-height: 1.15;
}

.section-lead {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--slate-600);
  line-height: 1.7;
}

@media (min-width: 640px) {
  .section-title { font-size: 3rem; }
  .section-lead { font-size: 1.125rem; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-xl);
  font-weight: 700;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--rosewood-600);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover { background: var(--rosewood-700); }

.btn-primary:disabled {
  background: var(--rosewood-400);
  cursor: not-allowed;
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.2); }

.btn-white {
  background: var(--white);
  color: var(--rosewood-950);
}

.btn-white:hover { background: var(--rosewood-50); }

.btn-outline {
  border: 1px solid var(--rosewood-200);
  color: var(--rosewood-800);
}

.btn-outline:hover { background: var(--rosewood-50); }

.btn-outline-slate {
  border: 1px solid var(--slate-200);
  color: var(--slate-600);
}

.btn-outline-slate:hover { background: var(--slate-50); }

.spin {
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slide-down {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slide-left {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-pulse { animation: pulse 2s ease-in-out infinite; }
.animate-bounce { animation: bounce 1.2s ease-in-out infinite; }
.animate-fade-in { animation: fade-in 0.25s ease; }
.animate-slide-down { animation: slide-down 0.25s ease; }
.animate-slide-left { animation: slide-left 0.3s ease; }

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 1.25rem 0;
  background: transparent;
  transition: all 0.3s ease;
}

.navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  padding: 0.75rem 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.brand-mark {
  padding: 0.625rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  backdrop-filter: blur(6px);
  transition: 0.3s;
}

.brand:hover .brand-mark {
  background: var(--white);
  color: var(--rosewood-700);
}

.navbar.is-scrolled .brand-mark {
  background: var(--rosewood-100);
  color: var(--rosewood-700);
}

.brand-name {
  display: block;
  font-family: var(--font-serif);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 1.125rem;
  color: var(--white);
  transition: color 0.2s;
}

.brand-sub {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: -2px;
  color: var(--rosewood-100);
  transition: color 0.2s;
}

.navbar.is-scrolled .brand-name { color: var(--rosewood-950); }
.navbar.is-scrolled .brand-sub { color: var(--rosewood-600); }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  position: relative;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.25rem 0;
  color: var(--white);
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.is-active { color: var(--rosewood-400); }

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--rosewood-500);
  transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.is-active::after { width: 100%; }

.navbar.is-scrolled .nav-link { color: var(--slate-700); }
.navbar.is-scrolled .nav-link:hover,
.navbar.is-scrolled .nav-link.is-active { color: var(--rosewood-500); }

.nav-cta {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.nav-portal {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  transition: 0.2s;
}

.nav-portal:hover { background: rgba(255, 255, 255, 0.1); }

.navbar.is-scrolled .nav-portal { color: var(--rosewood-700); }
.navbar.is-scrolled .nav-portal:hover { background: var(--rosewood-50); }

.nav-tour {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 700;
  background: var(--rosewood-600);
  color: var(--white);
  box-shadow: var(--shadow-md);
  transition: 0.2s;
}

.nav-tour:hover {
  background: var(--rosewood-700);
  transform: scale(1.02);
}

.nav-mobile-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-btn {
  padding: 0.5rem;
  border-radius: var(--radius-xl);
  color: var(--white);
  transition: 0.2s;
}

.icon-btn:hover { background: rgba(255, 255, 255, 0.1); }

.navbar.is-scrolled .icon-btn { color: var(--slate-700); }
.navbar.is-scrolled .icon-btn:hover { background: var(--slate-100); }
.navbar.is-scrolled .icon-btn.portal-icon { color: var(--rosewood-700); }

.mobile-drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--slate-100);
  box-shadow: var(--shadow-xl);
  padding: 1.5rem 1rem;
}

.mobile-drawer.is-open { display: block; }

.mobile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.mobile-grid a {
  padding: 0.75rem;
  text-align: center;
  border-radius: var(--radius-xl);
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  color: var(--slate-700);
  font-weight: 700;
  font-size: 0.875rem;
  transition: 0.2s;
}

.mobile-grid a:hover {
  border-color: var(--rosewood-200);
  background: var(--rosewood-50);
  color: var(--rosewood-900);
}

.mobile-cta {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--slate-100);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-cta .btn {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .brand-name { font-size: 1.25rem; }
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-cta { display: flex; }
  .nav-mobile-actions { display: none; }
  .mobile-drawer { display: none !important; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--slate-950);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
  transition: opacity 1s ease, transform 1s ease;
}

.hero-slide.is-active {
  opacity: 0.6;
  transform: scale(1);
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-mask {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, #020617 0%, rgba(15, 23, 42, 0.8) 45%, transparent 100%),
    linear-gradient(to right, rgba(76, 5, 25, 0.4), transparent 50%, rgba(76, 5, 25, 0.2));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--white);
  padding: 4rem 0;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  background: rgba(244, 63, 94, 0.2);
  border: 1px solid rgba(253, 164, 175, 0.3);
  backdrop-filter: blur(10px);
  margin-bottom: 1.5rem;
  color: var(--rosewood-300);
}

.hero-pill span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rosewood-200);
}

.hero h1 {
  font-family: var(--font-serif);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.1;
  font-size: 2.25rem;
  max-width: 64rem;
  margin: 0 auto;
  text-shadow: 0 1px 2px rgb(0 0 0 / 0.1);
}

.grad-text {
  background: linear-gradient(90deg, var(--rosewood-300), var(--rosewood-200), #fda4af);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: var(--slate-200);
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.hero-actions .btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 0.875rem;
}

.hero-actions .btn-primary:hover { transform: scale(1.05); }
.hero-actions .btn-primary:active { transform: scale(0.95); }
.hero-actions .btn-ghost-light:hover { transform: scale(1.05); }

.hero-nav {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-nav-btn {
  padding: 0.375rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.hero-nav-btn:hover { background: rgba(255, 255, 255, 0.25); }

.hero-dots {
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.3s;
}

.hero-dot:hover { background: rgba(255, 255, 255, 0.6); }

.hero-dot.is-active {
  width: 2rem;
  background: var(--rosewood-400);
}

.hero-badges {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

.hero-badge:last-child { grid-column: span 2; }

.hero-badge-icon {
  padding: 0.75rem;
  border-radius: var(--radius-xl);
  background: rgba(244, 63, 94, 0.2);
  color: var(--rosewood-300);
  border: 1px solid rgba(251, 113, 133, 0.2);
  flex-shrink: 0;
}

.hero-badge p {
  text-align: left;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
}

.hero-badge small {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--slate-400);
}

.ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--rosewood-950);
  padding: 0.75rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(136, 19, 55, 0.5);
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--rosewood-200);
}

.ticker-track span {
  display: inline-block;
  padding: 0 2rem;
}

@media (min-width: 640px) {
  .hero h1 { font-size: 3rem; }
  .hero-sub { font-size: 1.25rem; }
  .hero-actions { flex-direction: row; }
  .hero-actions .btn { width: auto; }
}

@media (min-width: 768px) {
  .hero-badges { grid-template-columns: repeat(3, 1fr); }
  .hero-badge { justify-content: flex-start; }
  .hero-badge:last-child { grid-column: auto; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 4.5rem; }
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 48vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 8rem 0 4rem;
  color: var(--white);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(15, 23, 42, 0.92), rgba(76, 5, 25, 0.55)),
    url("../images/hdslde_2.jpg") center/cover no-repeat;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 2.25rem;
  line-height: 1.15;
}

.page-hero p {
  margin-top: 0.75rem;
  max-width: 40rem;
  color: var(--slate-200);
}

.page-hero .eyebrow { color: var(--rosewood-300); }

@media (min-width: 640px) {
  .page-hero h1 { font-size: 3.25rem; }
}

/* =========================================================
   STATS / ABOUT
   ========================================================= */
.section {
  position: relative;
  padding: 5rem 0;
}

.section-lg { padding: 6rem 0; }

.stats {
  background: rgba(255, 241, 242, 0.4);
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(64px);
}

.blob-tr {
  top: 0;
  right: 0;
  width: 20rem;
  height: 20rem;
  background: rgba(255, 228, 230, 0.3);
}

.blob-bl {
  bottom: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(254, 205, 211, 0.2);
}

.stats-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 4rem;
}

.stats-copy { max-width: 42rem; }

.badge-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mini-card {
  padding: 1.25rem;
  border-radius: var(--radius-2xl);
  background: var(--white);
  border: 1px solid var(--rosewood-100);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.mini-icon {
  padding: 0.75rem;
  background: var(--rosewood-100);
  color: var(--rosewood-700);
  border-radius: var(--radius-xl);
  flex-shrink: 0;
}

.mini-card h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--rosewood-950);
}

.mini-card p {
  font-size: 0.75rem;
  color: var(--slate-500);
  margin-top: 0.25rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.stat-card {
  position: relative;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-sm);
  transition: 0.3s;
}

.stat-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--rosewood-200);
}

.stat-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
  transition: 0.3s;
}

.stat-card:hover .stat-bar { background: var(--rosewood-600); }

.stat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.stat-value {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--rosewood-900);
  transition: color 0.2s;
}

.stat-card:hover .stat-value { color: var(--rosewood-600); }

.stat-icon {
  padding: 0.75rem;
  background: var(--rosewood-50);
  color: var(--rosewood-600);
  border-radius: var(--radius-xl);
  transition: 0.3s;
}

.stat-card:hover .stat-icon {
  background: var(--rosewood-600);
  color: var(--white);
}

.stat-card h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--rosewood-950);
  letter-spacing: 0.02em;
}

.stat-card p {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--slate-500);
  line-height: 1.6;
}

@media (min-width: 640px) {
  .badge-row { flex-direction: row; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-value { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .stats-head { grid-template-columns: 7fr 5fr; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* =========================================================
   FEATURES / PILLARS
   ========================================================= */
.features { background: var(--white); }

.center-intro {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.pillars-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.pillar-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pillar-btn {
  width: 100%;
  text-align: left;
  padding: 1.25rem;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 228, 230, 0.5);
  background: rgba(255, 241, 242, 0.5);
  color: var(--slate-700);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: 0.3s;
}

.pillar-btn:hover {
  background: var(--rosewood-50);
  border-color: var(--rosewood-200);
}

.pillar-btn.is-active {
  background: var(--rosewood-950);
  border-color: var(--rosewood-950);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.pillar-ico {
  padding: 0.75rem;
  border-radius: var(--radius-xl);
  flex-shrink: 0;
  background: var(--white);
  color: var(--rosewood-700);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--rosewood-100);
  transition: 0.2s;
}

.pillar-btn:hover .pillar-ico { transform: scale(1.05); }

.pillar-btn.is-active .pillar-ico {
  background: var(--rosewood-600);
  color: var(--white);
  border-color: transparent;
}

.pillar-btn h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--rosewood-950);
}

.pillar-btn.is-active h3 { color: var(--white); }

.pillar-btn p {
  font-size: 0.75rem;
  margin-top: 0.25rem;
  line-height: 1.4;
  color: var(--slate-500);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pillar-btn.is-active p { color: var(--rosewood-200); }

.chevron {
  margin-left: auto;
  margin-top: 0.5rem;
  color: var(--slate-400);
  flex-shrink: 0;
  transition: 0.2s;
}

.pillar-btn:hover .chevron { transform: translateX(4px); }

.pillar-btn.is-active .chevron {
  color: var(--rosewood-400);
  transform: rotate(90deg);
}

.pillar-panel {
  display: flex;
  flex-direction: column;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pillar-visual {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  background: var(--slate-800);
}

.pillar-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.pillar-visual:hover img { transform: scale(1.05); }

.pillar-visual-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(76, 5, 25, 0.9), rgba(76, 5, 25, 0.3), transparent);
}

.metric-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: var(--white);
}

.metric-badge strong {
  display: block;
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.metric-badge span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rosewood-200);
  margin-top: 0.25rem;
}

.pillar-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chip-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.chip-icon {
  padding: 0.375rem;
  background: var(--rosewood-100);
  color: var(--rosewood-800);
  border-radius: 0.5rem;
}

.chip-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--rosewood-800);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pillar-body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rosewood-950);
  line-height: 1.25;
}

.pillar-body > p,
.pillar-desc {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--slate-600);
  line-height: 1.7;
}

.highlight-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--slate-700);
}

.check-dot {
  padding: 2px;
  background: var(--rosewood-100);
  color: var(--rosewood-700);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar-foot {
  padding-top: 1.5rem;
  border-top: 1px solid var(--slate-100);
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.muted-note {
  font-size: 11px;
  color: var(--slate-400);
  font-style: italic;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--rosewood-700);
}

.text-link:hover { color: var(--rosewood-900); }

@media (min-width: 768px) {
  .pillar-panel { flex-direction: row; }
  .pillar-visual { width: 41.666%; min-height: auto; }
  .pillar-body { width: 58.333%; }
}

@media (min-width: 1024px) {
  .pillars-layout { grid-template-columns: 4fr 8fr; }
}

/* =========================================================
   CURRICULUM
   ========================================================= */
.curriculum {
  background: var(--slate-900);
  color: var(--white);
}

.curriculum .eyebrow { color: var(--rosewood-400); }
.curriculum .section-title { color: var(--white); }
.curriculum .section-lead { color: var(--slate-300); }

.curriculum-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 24rem;
  background: linear-gradient(to top, var(--slate-950), transparent);
  pointer-events: none;
}

.curriculum-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.program-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 1.5rem;
  padding: 1.5rem;
}

.program-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  background: rgba(15, 23, 42, 0.6);
  padding: 0.375rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--slate-800);
}

.program-tab {
  flex: 1;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-400);
  transition: 0.3s;
  text-transform: capitalize;
}

.program-tab:hover { color: var(--white); }

.program-tab.is-active {
  background: var(--rosewood-600);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.age-chip {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  background: rgba(244, 63, 94, 0.2);
  color: var(--rosewood-300);
  border: 1px solid rgba(244, 63, 94, 0.3);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.program-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 0.75rem;
}

.program-framework {
  font-size: 0.8125rem;
  color: var(--rosewood-300);
  font-weight: 700;
  margin-top: 0.25rem;
}

.program-desc {
  margin: 1.5rem 0;
  font-size: 0.8125rem;
  color: var(--slate-300);
  line-height: 1.7;
}

.subhead {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.subject-grid,
.hl-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.subject-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius-xl);
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid var(--slate-800);
  transition: 0.2s;
}

.subject-item:hover { border-color: var(--slate-700); }

.subject-ico {
  padding: 0.5rem;
  background: rgba(244, 63, 94, 0.1);
  color: var(--rosewood-400);
  border-radius: 0.5rem;
}

.subject-item span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--slate-200);
}

.hl-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.75rem;
  color: var(--slate-300);
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rosewood-500);
  flex-shrink: 0;
  margin-top: 0.375rem;
}

.program-foot {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(51, 65, 85, 0.4);
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
}

.program-foot .italic { color: var(--slate-400); font-style: italic; }
.program-foot strong { color: var(--rosewood-300); }

.ghost-link {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: var(--slate-800);
  color: var(--rosewood-300);
  font-weight: 700;
  border: 1px solid var(--slate-700);
}

.ghost-link:hover { background: var(--slate-700); }

.quiz-card {
  background: linear-gradient(to bottom right, var(--rosewood-950), var(--rosewood-900));
  border: 1px solid rgba(159, 18, 57, 0.6);
  border-radius: 1.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-xl);
}

.quiz-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--rosewood-300);
}

.quiz-head h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}

.quiz-intro {
  font-size: 0.75rem;
  color: var(--rosewood-200);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.field { margin-bottom: 1rem; }

.field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--rosewood-200);
  margin-bottom: 0.25rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--rosewood-800);
  border-radius: var(--radius-xl);
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  color: var(--white);
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  box-shadow: 0 0 0 2px var(--rosewood-400);
}

.field option { color: var(--slate-900); }

.quiz-submit {
  width: 100%;
  padding: 0.75rem;
  background: var(--rosewood-500);
  color: var(--white);
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.quiz-submit:hover { background: var(--rosewood-600); }

.quiz-result {
  background: rgba(15, 23, 42, 0.5);
  padding: 1.25rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--rosewood-800);
}

.quiz-result-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--rosewood-400);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.quiz-result p {
  font-size: 0.8125rem;
  color: var(--slate-100);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.quiz-lock {
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(159, 18, 57, 0.4);
  font-size: 10px;
  color: var(--rosewood-300);
}

@media (min-width: 640px) {
  .program-card,
  .quiz-card { padding: 2rem; }
  .program-tab { font-size: 0.875rem; }
  .subject-grid,
  .hl-grid { grid-template-columns: 1fr 1fr; }
  .program-foot { flex-direction: row; }
}

@media (min-width: 1024px) {
  .curriculum-grid { grid-template-columns: 8fr 4fr; }
}

/* =========================================================
   CAMPUS
   ========================================================= */
.campus { background: var(--white); }

.section-split {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 4rem;
  gap: 1rem;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  background: var(--rosewood-50);
  padding: 0.25rem;
  border-radius: var(--radius-xl);
  align-self: flex-start;
}

.filter-tab {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-600);
  transition: 0.3s;
}

.filter-tab:hover { color: var(--rosewood-800); }

.filter-tab.is-active {
  background: var(--rosewood-600);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.campus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.campus-card {
  position: relative;
  height: 380px;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: 0.3s;
}

.campus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.campus-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.campus-card:hover img { transform: scale(1.05); }

.campus-card-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(76, 5, 25, 0.9), rgba(76, 5, 25, 0.4), rgba(15, 23, 42, 0.1));
}

.zoom-hint {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  color: var(--white);
  opacity: 0;
  transition: 0.3s;
}

.campus-card:hover .zoom-hint { opacity: 1; }

.campus-card-body {
  position: absolute;
  inset: 0;
  padding: 1.5rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.cat-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.625rem;
}

.cat-ico {
  padding: 0.375rem;
  background: var(--rosewood-500);
  color: var(--white);
  border-radius: 0.5rem;
}

.cat-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rosewood-200);
}

.campus-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  transition: color 0.2s;
}

.campus-card:hover h3 { color: var(--rosewood-200); }

.campus-card p {
  font-size: 0.75rem;
  color: var(--slate-300);
  margin-top: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.click-hint {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1rem;
  font-size: 11px;
  font-weight: 600;
  color: var(--rosewood-300);
}

@media (min-width: 640px) {
  .campus-grid { grid-template-columns: 1fr 1fr; }
  .campus-card h3 { font-size: 1.5rem; }
  .campus-card-body { padding: 2rem; }
}

@media (min-width: 768px) {
  .section-split {
    flex-direction: row;
    align-items: flex-end;
  }
}

/* Campus lightbox */
.lightbox-hero {
  height: 220px;
  position: relative;
}

.lightbox-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-hero-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--rosewood-950), rgba(76, 5, 25, 0.2), transparent);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.4);
  color: var(--white);
  border-radius: 50%;
  backdrop-filter: blur(6px);
}

.lightbox-close:hover { background: rgba(0, 0, 0, 0.6); }

.lightbox-title {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  right: 1.5rem;
  color: var(--white);
}

.lightbox-title span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rosewood-300);
  background: rgba(76, 5, 25, 0.6);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid var(--rosewood-800);
}

.lightbox-title h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 0.375rem;
}

.lightbox-body { padding: 1.5rem 2rem; }

.lightbox-body > p {
  font-size: 0.8125rem;
  color: var(--slate-600);
  line-height: 1.7;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  border-top: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
  padding: 1.25rem 0;
  margin: 1.25rem 0;
  font-size: 0.75rem;
  color: var(--slate-700);
}

.spec-grid span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--slate-400);
}

.spec-grid strong {
  display: block;
  font-weight: 600;
  color: var(--rosewood-950);
  margin-top: 0.25rem;
}

.lightbox-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.lightbox-actions .btn {
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
}

@media (min-width: 640px) {
  .spec-grid { grid-template-columns: repeat(3, 1fr); }
  .lightbox-title h3 { font-size: 1.5rem; }
}

/* =========================================================
   FEE CALCULATOR
   ========================================================= */
.fees { background: rgba(255, 241, 242, 0.3); }

.fee-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.fee-form {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--rosewood-100);
  box-shadow: var(--shadow-sm);
}

.panel-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--slate-100);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  color: var(--rosewood-600);
}

.panel-head h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--rosewood-950);
}

.opt-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-700);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.opt-group { margin-bottom: 1.5rem; }

.opt-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.opt-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.opt-btn {
  padding: 0.875rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-200);
  text-align: left;
  color: var(--slate-600);
  transition: 0.2s;
}

.opt-btn.center { text-align: center; }

.opt-btn:hover { background: var(--slate-50); }

.opt-btn.is-active {
  border-color: var(--rosewood-600);
  background: rgba(255, 241, 242, 0.5);
  color: var(--rosewood-950);
  box-shadow: 0 0 0 1px var(--rosewood-500);
}

.opt-btn strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
}

.opt-btn em {
  display: block;
  font-style: normal;
  font-size: 11px;
  color: var(--rosewood-600);
  font-weight: 600;
  margin-top: 0.25rem;
}

.check-opt {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-200);
  color: var(--slate-600);
  cursor: pointer;
  transition: 0.2s;
}

.check-opt:hover { background: var(--slate-50); }

.check-opt.is-active {
  border-color: var(--rosewood-500);
  background: rgba(255, 241, 242, 0.4);
  color: var(--rosewood-950);
}

.check-opt input {
  accent-color: var(--rosewood-600);
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.discount-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  gap: 0.5rem;
}

.discount-pill {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--rosewood-700);
  background: var(--rosewood-100);
  padding: 2px 8px;
  border-radius: 4px;
}

.select-plain {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  outline: none;
}

.select-plain:focus {
  box-shadow: 0 0 0 2px var(--rosewood-500);
  border-color: var(--rosewood-500);
}

.fee-receipt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--slate-900);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.receipt-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background: rgba(244, 63, 94, 0.1);
  border-radius: 50%;
  filter: blur(32px);
}

.fee-receipt .panel-head {
  border-color: var(--slate-800);
  color: var(--rosewood-400);
}

.fee-receipt .panel-head h3 { color: var(--white); }

.line-list {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--slate-300);
}

.line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.875rem;
}

.line strong { color: var(--white); font-weight: 600; }

.line.sub {
  border-top: 1px solid var(--slate-800);
  padding-top: 0.875rem;
  font-weight: 600;
  color: var(--slate-400);
}

.line.discount {
  color: var(--emerald-400);
  font-weight: 600;
  background: rgba(2, 44, 34, 0.4);
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(6, 78, 59, 0.3);
}

.term-total {
  border-top: 1px solid rgba(51, 65, 85, 0.6);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.term-total span {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 600;
}

.term-total strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--rosewood-300);
}

.annual-box {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem;
  background: rgba(76, 5, 25, 0.4);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(136, 19, 55, 0.4);
  margin-top: 0.75rem;
}

.annual-box small {
  display: block;
  font-size: 10px;
  color: var(--rosewood-200);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.annual-box em {
  display: block;
  font-style: normal;
  font-size: 0.75rem;
  color: var(--slate-400);
}

.annual-box strong {
  font-size: 1.125rem;
  font-weight: 700;
}

.includes {
  margin-top: 2rem;
  background: rgba(30, 41, 59, 0.4);
  padding: 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-800);
  font-size: 11px;
  color: var(--slate-400);
}

.includes p {
  font-weight: 700;
  color: var(--slate-300);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 9px;
  margin-bottom: 0.5rem;
}

.includes div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
  color: var(--rosewood-400);
}

.includes span { color: var(--slate-400); }

.receipt-actions {
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--slate-800);
}

.receipt-actions .btn {
  width: 100%;
  padding: 0.75rem;
  font-size: 0.75rem;
}

.tiny-help {
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
  font-size: 10px;
  color: var(--slate-400);
  margin-top: 0.75rem;
  line-height: 1.4;
}

@media (min-width: 640px) {
  .fee-form,
  .fee-receipt { padding: 2rem; }
}

@media (min-width: 1024px) {
  .fee-layout { grid-template-columns: 7fr 5fr; }
}

/* =========================================================
   FACULTY
   ========================================================= */
.faculty { background: rgba(255, 241, 242, 0.4); }

.filter-tabs.solid {
  background: var(--white);
  padding: 0.375rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--rosewood-100);
  box-shadow: var(--shadow-sm);
}

.filter-tabs.solid .filter-tab { border-radius: var(--radius-xl); }
.filter-tabs.solid .filter-tab:hover { background: var(--slate-50); }

.faculty-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.faculty-card {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: 0.3s;
}

.faculty-card:hover { box-shadow: var(--shadow-xl); }

.faculty-photo {
  height: 280px;
  position: relative;
  overflow: hidden;
  background: var(--slate-100);
}

.faculty-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s;
}

.faculty-card:hover img { transform: scale(1.05); }

.dept-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.625rem;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0.375rem;
  background: rgba(76, 5, 25, 0.8);
  color: var(--rosewood-200);
  border: 1px solid var(--rosewood-800);
  backdrop-filter: blur(6px);
}

.faculty-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.faculty-body h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--rosewood-950);
  line-height: 1.25;
  transition: color 0.2s;
}

.faculty-card:hover h3 { color: var(--rosewood-600); }

.faculty-role {
  font-size: 0.75rem;
  color: var(--rosewood-700);
  font-weight: 700;
  margin-top: 0.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.degree-box {
  display: flex;
  gap: 0.375rem;
  align-items: flex-start;
  margin-top: 1rem;
  background: rgba(255, 241, 242, 0.5);
  padding: 0.625rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 228, 230, 0.5);
  color: var(--rosewood-600);
}

.degree-box p {
  font-size: 10px;
  color: var(--slate-600);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.faculty-foot {
  padding-top: 1rem;
  border-top: 1px solid var(--slate-100);
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bio-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 11px;
  font-weight: 700;
  color: var(--rosewood-700);
}

.bio-btn:hover { color: var(--rosewood-900); }

.mail-btn {
  padding: 0.5rem;
  border-radius: 50%;
  color: var(--slate-400);
}

.mail-btn:hover {
  background: var(--rosewood-50);
  color: var(--rosewood-700);
}

.bio-strip {
  padding: 1rem;
  background: var(--slate-900);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bio-strip span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rosewood-300);
}

.bio-strip button {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-400);
}

.bio-strip button:hover { color: var(--white); }

.bio-body { padding: 1.5rem 2rem; }

.bio-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.bio-profile img {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid var(--rosewood-600);
}

.bio-profile h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--rosewood-950);
}

.bio-profile p {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--rosewood-700);
  text-transform: uppercase;
}

.bio-block { margin-bottom: 1rem; }

.bio-block .lbl {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--slate-400);
  display: block;
  margin-bottom: 0.25rem;
}

.cred-box {
  font-size: 0.75rem;
  color: var(--slate-700);
  font-weight: 600;
  background: var(--rosewood-50);
  padding: 0.75rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--rosewood-100);
}

.bio-block p {
  font-size: 0.75rem;
  color: var(--slate-600);
  line-height: 1.65;
}

.note-box {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.875rem;
  border-radius: var(--radius-xl);
  margin-bottom: 0.75rem;
}

.note-box.green {
  background: var(--emerald-50);
  color: #022c22;
  border: 1px solid var(--emerald-100);
}

.note-box.slate {
  background: var(--slate-50);
  color: var(--slate-700);
  border: 1px solid var(--slate-200);
}

.note-box .lbl { color: var(--emerald-800); }
.note-box.slate .lbl { color: var(--slate-500); }

.note-box p {
  font-size: 0.75rem;
  line-height: 1.4;
  margin-top: 2px;
  font-weight: 500;
}

.note-box.slate p {
  font-weight: 700;
  color: var(--rosewood-950);
}

.bio-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.625rem;
  padding-top: 0.5rem;
}

.bio-actions .btn {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

@media (min-width: 640px) {
  .faculty-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .faculty-grid { grid-template-columns: repeat(4, 1fr); }
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials {
  background: var(--rosewood-950);
  color: var(--white);
  overflow: hidden;
}

.t-blob-l {
  position: absolute;
  top: 0;
  left: 0;
  width: 20rem;
  height: 20rem;
  background: rgba(159, 18, 57, 0.2);
  border-radius: 50%;
  filter: blur(64px);
}

.t-blob-r {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(190, 18, 60, 0.1);
  border-radius: 50%;
  filter: blur(64px);
}

.t-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}

.quote-icon {
  display: inline-flex;
  padding: 1rem;
  border-radius: 50%;
  background: rgba(225, 29, 72, 0.2);
  border: 1px solid rgba(244, 63, 94, 0.2);
  margin-bottom: 2rem;
  color: var(--rosewood-400);
}

.quote-icon .icon { transform: rotate(180deg); }

.t-wrap .eyebrow { color: var(--rosewood-300); font-size: 0.75rem; }
.t-wrap .section-title { color: var(--white); font-weight: 700; margin-bottom: 3rem; }

.t-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto 3rem;
  max-width: 24rem;
  background: rgba(15, 23, 42, 0.6);
  padding: 0.25rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(136, 19, 55, 0.4);
}

.t-tab {
  flex: 1;
  padding: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 0.5rem;
  color: var(--slate-400);
  transition: 0.3s;
}

.t-tab:hover { color: var(--white); }

.t-tab.is-active {
  background: var(--rosewood-600);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.t-card {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  max-width: 48rem;
  margin: 0 auto;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(136, 19, 55, 0.4);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(6px);
}

.stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  color: var(--rosewood-400);
  margin-bottom: 1.5rem;
}

.t-quote {
  font-size: 0.875rem;
  color: var(--slate-200);
  line-height: 1.7;
  font-family: var(--font-serif);
  font-style: italic;
  max-width: 42rem;
  margin: 0 auto;
}

.t-author {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.t-author img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(244, 63, 94, 0.5);
}

.t-author strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.t-author span {
  display: block;
  font-size: 0.75rem;
  color: var(--rosewood-300);
  font-weight: 500;
  margin-top: 2px;
}

.t-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.5rem;
  right: 0.5rem;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.t-arrows button {
  padding: 0.5rem;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(159, 18, 57, 0.5);
  color: var(--white);
  pointer-events: auto;
  transition: 0.2s;
}

.t-arrows button:hover {
  background: var(--rosewood-600);
  border-color: var(--rosewood-400);
}

@media (min-width: 640px) {
  .t-card { padding: 2.5rem; }
  .t-quote { font-size: 1.125rem; }
  .t-author {
    flex-direction: row;
    text-align: left;
  }
  .t-arrows { left: -4rem; right: -4rem; }
}

/* =========================================================
   CONTACT / INQUIRY
   ========================================================= */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.office-card {
  background: rgba(255, 241, 242, 0.5);
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 228, 230, 0.5);
}

.office-card h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--rosewood-950);
  margin-bottom: 1rem;
}

.office-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--slate-700);
  margin-bottom: 1rem;
}

.office-row .icon { color: var(--rosewood-600); margin-top: 2px; }

.office-row strong {
  display: block;
  font-weight: 700;
  color: var(--rosewood-950);
}

.office-row span {
  display: block;
  color: var(--slate-500);
  margin-top: 2px;
}

.faq-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--rosewood-950);
  margin: 1.5rem 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.faq-title .icon { color: var(--rosewood-600); }

.faq-item {
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  margin-bottom: 0.75rem;
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--rosewood-950);
}

.faq-q:hover { background: rgba(255, 241, 242, 0.5); }

.faq-q .icon {
  color: var(--slate-500);
  margin-left: 0.5rem;
  transition: 0.3s;
}

.faq-item.is-open .faq-q .icon {
  transform: rotate(180deg);
  color: var(--rosewood-600);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: max-height 0.3s ease;
}

.faq-item.is-open .faq-a {
  max-height: 200px;
  border-top: 1px solid var(--slate-50);
  padding: 1rem;
  background: rgba(248, 250, 252, 0.4);
  pointer-events: auto;
}

.faq-a p {
  font-size: 0.75rem;
  color: var(--slate-600);
  line-height: 1.65;
}

.inquiry-panel {
  background: var(--white);
  border: 1px solid var(--rosewood-100);
  padding: 1.5rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.inquiry-panel h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--rosewood-950);
}

.form-hint {
  font-size: 0.75rem;
  color: var(--slate-500);
  margin: 0.25rem 0 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.form-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-700);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  outline: none;
  background: var(--white);
  resize: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  box-shadow: 0 0 0 2px var(--rosewood-500);
  border-color: var(--rosewood-500);
}

.span-2 { grid-column: 1 / -1; }

.inquiry-panel .btn {
  width: 100%;
  padding: 0.875rem;
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

.success-view {
  text-align: center;
  padding: 3rem 0;
}

.success-ico {
  width: 4rem;
  height: 4rem;
  background: var(--rosewood-100);
  color: var(--rosewood-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-sm);
}

.success-view h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rosewood-950);
}

.success-view p {
  font-size: 0.8125rem;
  color: var(--slate-600);
  max-width: 28rem;
  margin: 0.5rem auto 1.5rem;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .inquiry-panel { padding: 2rem; }
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 5fr 7fr; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--slate-950);
  color: var(--slate-300);
  border-top: 1px solid var(--rosewood-950);
}

.footer-ribbon {
  background: var(--rosewood-950);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.footer-ribbon-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(136, 19, 55, 0.4), transparent, rgba(136, 19, 55, 0.3));
}

.ribbon-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: center;
}

.ribbon-copy {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.ribbon-ico {
  padding: 0.75rem;
  border-radius: var(--radius-2xl);
  background: rgba(255, 255, 255, 0.1);
  color: var(--rosewood-300);
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.ribbon-copy h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--white);
}

.ribbon-copy p {
  font-size: 0.75rem;
  color: var(--rosewood-200);
  margin-top: 0.25rem;
  max-width: 32rem;
  line-height: 1.4;
}

.ribbon-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.ribbon-actions .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
}

.footer-main {
  padding: 4rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.footer-brand p {
  font-size: 0.75rem;
  color: var(--slate-400);
  line-height: 1.7;
  max-width: 24rem;
  margin: 1.5rem 0;
}

.socials { display: flex; gap: 0.625rem; }

.socials button {
  padding: 0.5rem;
  background: var(--slate-900);
  border: 1px solid var(--slate-800);
  border-radius: 0.5rem;
  font-size: 0.75rem;
  text-transform: capitalize;
  color: var(--slate-400);
  transition: 0.2s;
}

.socials button:hover {
  background: var(--rosewood-900);
  color: var(--white);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-col li { margin-bottom: 0.625rem; }

.footer-col a,
.footer-col button {
  font-size: 0.75rem;
  color: var(--slate-400);
  text-align: left;
}

.footer-col a:hover,
.footer-col button:hover { color: var(--rosewood-400); }

.news-box {
  background: rgba(15, 23, 42, 0.4);
  padding: 1.25rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--slate-900);
}

.news-box h4 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.news-box > p {
  font-size: 11px;
  color: var(--slate-400);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.news-box input {
  width: 100%;
  background: var(--slate-950);
  border: 1px solid var(--slate-800);
  border-radius: var(--radius-xl);
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  color: var(--white);
  outline: none;
  margin-bottom: 0.5rem;
}

.news-box input:focus {
  box-shadow: 0 0 0 1px var(--rosewood-500);
  border-color: var(--rosewood-500);
}

.news-box .btn {
  width: 100%;
  padding: 0.5rem;
  font-size: 0.75rem;
}

.sub-ok {
  padding: 0.75rem;
  background: rgba(2, 44, 34, 0.4);
  color: var(--emerald-400);
  border: 1px solid rgba(6, 78, 59, 0.3);
  font-size: 0.75rem;
  border-radius: var(--radius-xl);
  font-weight: 500;
}

.legal-bits {
  margin-top: 1rem;
  font-size: 10px;
  color: var(--slate-500);
}

.legal-bits div {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 0.375rem;
}

.legal-bits .icon { color: var(--rosewood-500); width: 0.75rem; height: 0.75rem; }

.footer-legal {
  background: var(--slate-950);
  border-top: 1px solid var(--slate-900);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 11px;
  color: var(--slate-500);
}

.legal-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.legal-links { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.legal-links button:hover { color: var(--rosewood-400); }

.footer .brand-name { color: var(--white); }
.footer .brand-sub { color: var(--rosewood-400); }
.footer .brand-mark {
  background: var(--rosewood-900);
  color: var(--rosewood-300);
  border: 1px solid var(--rosewood-800);
}

@media (min-width: 640px) {
  .ribbon-actions { flex-direction: row; width: auto; }
  .legal-inner { flex-direction: row; }
}

@media (min-width: 768px) {
  .ribbon-inner {
    flex-direction: row;
    text-align: left;
  }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .footer-main { grid-template-columns: 4fr 2fr 2fr 4fr; }
}

/* =========================================================
   MODALS
   ========================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
}

.modal-overlay.is-open { display: flex; }

.modal {
  position: relative;
  width: 100%;
  max-width: 32rem;
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--rosewood-100);
  overflow: hidden;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-wide { max-width: 36rem; }

.modal-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--rosewood-400), var(--rosewood-600), var(--rosewood-800));
}

.modal-head {
  padding: 1.5rem 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-brand strong {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--rosewood-900);
  letter-spacing: 0.04em;
}

.modal-brand em {
  font-style: normal;
  padding: 2px 8px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  background: var(--rosewood-100);
  color: var(--rosewood-800);
}

.modal-x {
  padding: 0.375rem;
  border-radius: 50%;
  color: var(--slate-400);
}

.modal-x:hover {
  background: var(--rosewood-50);
  color: var(--rosewood-700);
}

.modal-body { padding: 1.5rem; }

.role-tabs {
  display: flex;
  background: var(--slate-100);
  padding: 0.25rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1.5rem;
}

.role-tab {
  flex: 1;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 0.5rem;
  text-transform: capitalize;
  color: var(--slate-500);
}

.role-tab:hover { color: var(--slate-800); }

.role-tab.is-active {
  background: var(--rosewood-600);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.modal-body h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--rosewood-950);
}

.modal-body .sub {
  font-size: 0.75rem;
  color: var(--slate-500);
  margin: 0.25rem 0 1rem;
}

.input-wrap { position: relative; margin-top: 0.25rem; }

.input-wrap .icon {
  position: absolute;
  left: 0.875rem;
  top: 0.75rem;
  color: var(--slate-400);
  width: 1rem;
  height: 1rem;
}

.input-wrap input {
  width: 100%;
  padding: 0.5rem 1rem 0.5rem 2.5rem;
  font-size: 0.875rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  outline: none;
}

.input-wrap input:focus {
  box-shadow: 0 0 0 2px var(--rosewood-500);
  border-color: var(--rosewood-500);
}

.pw-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.link-btn {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--rosewood-600);
}

.link-btn:hover { color: var(--rosewood-800); }

.modal .btn {
  width: 100%;
  padding: 0.625rem;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.fineprint {
  text-align: center;
  font-size: 11px;
  color: var(--slate-400);
  margin-top: 0.75rem;
}

.logged-view { text-align: center; }

.logged-ico {
  width: 4rem;
  height: 4rem;
  background: var(--rosewood-100);
  color: var(--rosewood-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.shortcut-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.shortcut {
  padding: 0.75rem;
  border-radius: var(--radius-xl);
  background: var(--rosewood-50);
  border: 1px solid var(--rosewood-100);
  text-align: center;
  cursor: pointer;
}

.shortcut:hover { border-color: var(--rosewood-300); }

.shortcut .icon {
  margin: 0 auto 0.25rem;
  color: var(--rosewood-600);
}

.shortcut span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--rosewood-900);
}

.tour-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.tour-type {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-200);
  color: var(--slate-600);
  cursor: pointer;
  font-size: 0.75rem;
}

.tour-type.is-active {
  border-color: var(--rosewood-500);
  background: rgba(255, 241, 242, 0.5);
  color: var(--rosewood-950);
  font-weight: 600;
}

.tour-type input { accent-color: var(--rosewood-600); }
.tour-type .icon { color: var(--rosewood-600); }

.tour-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.tour-form-grid .span-2 { grid-column: span 2; }

.tour-form-grid label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-700);
}

.tour-form-grid input,
.tour-form-grid select {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  outline: none;
  background: var(--white);
}

.tour-form-grid input:focus,
.tour-form-grid select:focus {
  box-shadow: 0 0 0 2px var(--rosewood-500);
  border-color: var(--rosewood-500);
}

.receipt-mini {
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: var(--rosewood-50);
  border: 1px solid rgba(255, 228, 230, 0.7);
  text-align: left;
  font-size: 0.75rem;
  color: var(--slate-700);
}

.receipt-mini div {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.375rem;
  margin-bottom: 0.375rem;
  border-bottom: 1px solid rgba(255, 228, 230, 0.5);
}

.receipt-mini div:last-child {
  border: none;
  margin: 0;
  padding: 0;
}

.receipt-mini span { font-weight: 600; color: var(--slate-500); }
.receipt-mini strong { color: var(--rosewood-950); }

/* =========================================================
   TOASTS
   ========================================================= */
.toast-stack {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 24rem;
  width: calc(100% - 2rem);
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid rgba(255, 228, 230, 0.8);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.toast-ico {
  padding: 0.25rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.toast.success .toast-ico { background: var(--emerald-100); color: var(--emerald-600); }
.toast.warning .toast-ico { background: var(--amber-100); color: var(--amber-600); }
.toast.info .toast-ico { background: var(--rosewood-100); color: var(--rosewood-700); }

.toast strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-800);
}

.toast p {
  font-size: 11px;
  color: var(--slate-600);
  margin-top: 0.25rem;
  line-height: 1.4;
}

.toast-x {
  padding: 0.25rem;
  border-radius: 50%;
  color: var(--slate-400);
  flex-shrink: 0;
}

.toast-x:hover {
  color: var(--slate-700);
  background: var(--slate-50);
}

/* =========================================================
   ABOUT extras
   ========================================================= */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.mission-card {
  background: var(--white);
  border: 1px solid var(--rosewood-100);
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.mission-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--rosewood-950);
  margin: 0.75rem 0 0.5rem;
}

.mission-card p {
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .mission-grid { grid-template-columns: repeat(3, 1fr); }
}

.map-frame {
  margin-top: 2.5rem;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--rosewood-100);
  height: 280px;
  background:
    linear-gradient(135deg, rgba(76, 5, 25, 0.08), rgba(244, 63, 94, 0.08)),
    repeating-linear-gradient(0deg, transparent, transparent 24px, rgba(136, 19, 55, 0.05) 25px),
    repeating-linear-gradient(90deg, transparent, transparent 24px, rgba(136, 19, 55, 0.05) 25px),
    #fff1f2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.map-pin-card {
  background: var(--white);
  border: 1px solid var(--rosewood-100);
  border-radius: var(--radius-2xl);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 22rem;
}

.map-pin-card strong {
  display: block;
  font-family: var(--font-serif);
  color: var(--rosewood-950);
  margin-bottom: 0.25rem;
}

.map-pin-card p {
  font-size: 0.75rem;
  color: var(--slate-500);
}
