/* ==========================================================================
   Destiny Deployment Center
   Warm · Hopeful · Premium — Navy · Gold · Soft Teal
   Luxury university campus × high-end resort
   ========================================================================== */

:root {
  --navy: #0b1f3a;
  --navy-deep: #071526;
  --navy-soft: #163356;
  --gold: #c9a227;
  --gold-light: #e0bf55;
  --gold-deep: #9a7a1a;
  --teal: #5ba8a0;
  --teal-soft: #7fc0b8;
  --teal-deep: #3d7f78;
  --cream: #f7f3eb;
  --cream-deep: #ebe4d6;
  --ivory: #fffcf7;
  --text: #1a2433;
  --text-soft: #4a5568;
  --text-muted: #6b7585;
  --white: #ffffff;
  --border: rgba(11, 31, 58, 0.1);
  --border-gold: rgba(201, 162, 39, 0.35);
  --shadow: 0 24px 60px rgba(11, 31, 58, 0.12);
  --shadow-soft: 0 12px 40px rgba(11, 31, 58, 0.08);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --container: 1180px;
  --header-h: 84px;
  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --section-y: clamp(5rem, 10vw, 7.5rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 2.75rem, var(--container));
  margin-inline: auto;
}

/* Type */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 1rem;
}

.eyebrow.light {
  color: var(--gold-light);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  color: var(--navy);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.85rem, 7vw, 5rem);
  font-weight: 500;
  color: var(--ivory);
}

h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}

h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.25rem);
  max-width: 16ch;
}

h2 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  margin-bottom: 0.65rem;
}

.lead {
  font-size: 1.12rem;
  color: var(--text-soft);
  margin-bottom: 1.15rem;
  font-weight: 400;
}

.rule {
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  border-radius: 2px;
  margin: 1.25rem 0 1.5rem;
}

.text-teal {
  color: var(--teal-deep);
}

.section {
  padding: var(--section-y) 0;
  position: relative;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem 3rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.section-lead {
  max-width: 32ch;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.85rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 50%, var(--gold-deep));
  color: var(--navy-deep);
  box-shadow: 0 10px 28px rgba(201, 162, 39, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(201, 162, 39, 0.4);
}

.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(201, 162, 39, 0.12);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--ivory);
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.25);
}

.btn-navy:hover {
  background: var(--navy-soft);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.btn .btn-loading {
  display: none;
}

.btn.is-loading .btn-text {
  display: none;
}

.btn.is-loading .btn-loading {
  display: inline;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease);
}

.site-header.scrolled {
  background: rgba(247, 243, 235, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-soft);
}

.site-header.scrolled .logo-name,
.site-header.scrolled .nav a:not(.nav-cta) {
  color: var(--navy);
}

.site-header.scrolled .logo-sub {
  color: var(--teal-deep);
}

.site-header.scrolled .nav a:not(.nav-cta) {
  color: var(--text-soft);
}

.site-header.scrolled .nav a:not(.nav-cta):hover {
  color: var(--navy);
}

.site-header.scrolled .menu-toggle span {
  background: var(--navy);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 4px 18px rgba(201, 162, 39, 0.28), 0 4px 16px rgba(11, 31, 58, 0.15);
  border: 2px solid rgba(201, 162, 39, 0.55);
  background: #fff;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: 0.02em;
  transition: color 0.3s var(--ease);
}

.logo-sub {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: color 0.3s var(--ease);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.85rem;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 252, 247, 0.82);
  transition: color 0.3s var(--ease);
}

.nav a:not(.nav-cta):hover {
  color: var(--gold-light);
}

.nav-cta {
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.18);
  border: 1px solid var(--border-gold);
  color: var(--gold-light) !important;
}

.site-header.scrolled .nav-cta {
  background: rgba(201, 162, 39, 0.12);
  color: var(--gold-deep) !important;
  border-color: var(--border-gold);
}

.nav-cta:hover {
  background: rgba(201, 162, 39, 0.28) !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ivory);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background 0.3s var(--ease);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-h) + 3rem) 0 0;
  overflow: hidden;
  background: var(--navy-deep);
}

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

.hero-video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 21, 38, 0.55) 0%, rgba(7, 21, 38, 0.25) 40%, rgba(7, 21, 38, 0.72) 75%, rgba(7, 21, 38, 0.94) 100%),
    linear-gradient(90deg, rgba(7, 21, 38, 0.55) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 740px;
  padding-bottom: 2.5rem;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-soft);
  margin-bottom: 1.25rem;
}

.hero h1 {
  margin-bottom: 1.35rem;
}

.hero-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.18rem);
  color: rgba(255, 252, 247, 0.82);
  font-weight: 300;
  max-width: 36rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, transparent, rgba(7, 21, 38, 0.5));
}

.hero-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-pills span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 252, 247, 0.75);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(91, 168, 160, 0.35);
  background: rgba(91, 168, 160, 0.1);
}

.scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 252, 247, 0.55);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

.scroll-hint i {
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s var(--ease) infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.5);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* Welcome */
.welcome-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  padding: 2.75rem 0;
  text-align: center;
}

.welcome-quote {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-style: italic;
  color: var(--ivory);
  max-width: 36ch;
  margin: 0 auto 0.75rem;
  line-height: 1.35;
}

.welcome-meta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* About */
.about {
  background: var(--ivory);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.about-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.about-visual:hover .about-frame img {
  transform: scale(1.03);
}

.about-badge {
  position: absolute;
  left: 1.25rem;
  bottom: -1.5rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--white);
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  max-width: calc(100% - 2.5rem);
}

.about-badge img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.about-badge strong {
  display: block;
  font-size: 0.92rem;
  color: var(--navy);
}

.about-badge span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.about-copy p:not(.lead):not(.eyebrow) {
  color: var(--text-soft);
  margin-bottom: 1.15rem;
}

.about-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.about-list li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  align-items: start;
}

.list-icon {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  padding-top: 0.15rem;
}

.about-list strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.about-list p {
  margin: 0 !important;
  font-size: 0.95rem;
}

/* Pathways */
.pathways {
  background: var(--cream);
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.pathway-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}

.pathway-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(91, 168, 160, 0.35);
}

.pathway-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(91, 168, 160, 0.18), rgba(201, 162, 39, 0.12));
  color: var(--teal-deep);
  font-size: 1rem;
  margin-bottom: 1.15rem;
}

.pathway-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Campus */
.campus {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: clamp(5rem, 12vw, 8rem) 0;
  overflow: hidden;
  color: var(--ivory);
}

.campus-bg {
  position: absolute;
  inset: 0;
}

.campus-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campus-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(7, 21, 38, 0.9) 0%,
    rgba(7, 21, 38, 0.72) 45%,
    rgba(11, 31, 58, 0.55) 100%
  );
}

.campus-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.campus h2 {
  color: var(--ivory);
  max-width: 18ch;
  margin-bottom: 1.25rem;
}

.campus-lead {
  color: rgba(255, 252, 247, 0.8);
  font-weight: 300;
  max-width: 38rem;
  margin-bottom: 2.25rem;
  line-height: 1.8;
}

.campus-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2.5rem;
}

.campus-feature {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.campus-feature strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gold-light);
}

.campus-feature span {
  font-size: 0.88rem;
  color: rgba(255, 252, 247, 0.65);
}

/* Programs */
.programs {
  background: var(--ivory);
}

.program-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.program-row {
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  gap: 1.5rem 2rem;
  align-items: center;
  padding: 1.85rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease), padding 0.3s var(--ease);
}

.program-row:hover {
  background: rgba(91, 168, 160, 0.04);
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  border-radius: var(--radius-sm);
}

.program-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
}

.program-body p {
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 48rem;
}

.program-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: flex-end;
}

.program-tags li {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-deep);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(91, 168, 160, 0.12);
  border: 1px solid rgba(91, 168, 160, 0.2);
}

/* Presence */
.presence {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}

.presence-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.presence-copy p:not(.eyebrow) {
  color: var(--text-soft);
  margin-bottom: 2rem;
  max-width: 40rem;
}

.presence-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2.75rem;
}

.p-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.p-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--navy);
  line-height: 1;
}

.p-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.presence-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.presence-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--teal), var(--gold));
}

.presence-card-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.presence-card-top img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-gold);
}

.presence-card-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.presence-card h3 {
  margin-bottom: 0.75rem;
}

.presence-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
}

/* Contact */
.contact {
  background: var(--ivory);
  padding-bottom: clamp(5rem, 10vw, 7rem);
}

.contact-shell {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 0;
  background: var(--white);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-intro {
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--ivory);
}

.contact-intro .eyebrow {
  color: var(--teal-soft);
}

.contact-intro h2 {
  color: var(--ivory);
  max-width: 12ch;
}

.contact-intro .rule {
  background: linear-gradient(90deg, var(--gold), var(--teal-soft));
}

.contact-intro > p {
  color: rgba(255, 252, 247, 0.78);
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-facts {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.contact-facts .fact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

.contact-facts a:hover {
  color: var(--gold-light);
}

.contact-form {
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--text);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(91, 168, 160, 0.18);
  background: var(--white);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-status {
  text-align: center;
  font-size: 0.92rem;
  min-height: 1.4em;
}

.form-status.success {
  color: var(--teal-deep);
}

.form-status.error {
  color: #b54a4a;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 252, 247, 0.7);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-brand .logo-name {
  color: var(--ivory);
}

.footer-brand .logo-sub {
  color: var(--gold-light);
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.95rem;
  max-width: 28ch;
  font-weight: 300;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  padding-top: 0.5rem;
}

.footer-links a {
  font-size: 0.92rem;
  color: rgba(255, 252, 247, 0.65);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-copy {
  text-align: right;
  padding-top: 0.5rem;
}

.footer-copy p {
  font-size: 0.82rem;
  margin-bottom: 0.35rem;
}

.footer-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem !important;
  color: var(--teal-soft) !important;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 1024px) {
  .pathway-grid {
    grid-template-columns: 1fr 1fr;
  }

  .program-row {
    grid-template-columns: 3rem 1fr;
  }

  .program-tags {
    grid-column: 2;
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .about-grid,
  .presence-grid,
  .contact-shell,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-copy {
    text-align: left;
  }

  .about-badge {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 1rem;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    background: rgba(7, 21, 38, 0.97);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--ivory) !important;
  }

  .nav-cta {
    font-family: var(--font-body) !important;
    font-size: 0.9rem !important;
    margin-top: 0.5rem;
  }

  .pathway-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .scroll-hint {
    display: none;
  }

  .site-header:not(.scrolled) .logo-name {
    color: var(--ivory);
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .logo-text {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .scroll-hint i {
    animation: none;
  }

  .hero-video {
    display: none;
  }

  .hero-media {
    background: url("../assets/hero-still.jpg") center / cover no-repeat;
  }
}
