/* ============================================================
   ST. XAVIER'S — Design Tokens
   ============================================================ */
:root {
  --parchment: #FAF6EC;
  --cream: #F2E9D6;
  --cream-2: #EDE2CB;
  --ink: #13223F;
  --ink-soft: #4A5570;
  --navy: #1B3462;
  --navy-deep: #0C182F;
  --gold: #BE9433;
  --gold-2: #D9B961;
  --gold-deep: #9C7826;
  --crimson: #9C2B33;
  --muted: #5C5A54;
  --line: rgba(19, 34, 63, .13);
  --gold-line: rgba(190, 148, 51, .35);
  --white: #ffffff;

  --shadow-sm: 0 2px 10px rgba(12, 24, 47, .07);
  --shadow-md: 0 18px 46px -22px rgba(12, 24, 47, .34);
  --shadow-lg: 0 36px 80px -34px rgba(12, 24, 47, .5);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;

  --maxw: 1220px;
  --ease: cubic-bezier(.22, .61, .36, 1);

  --f-display: "Cormorant Garamond", Georgia, serif;
  --f-body: "Instrument Sans", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--f-body);
  color: var(--ink);
  line-height: 1.65;
  background: var(--parchment);
  background-image:
    radial-gradient(70% 55% at 100% 0%, rgba(190, 148, 51, .06), transparent 60%),
    radial-gradient(60% 50% at 0% 12%, rgba(27, 52, 98, .05), transparent 55%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none
}

ul {
  list-style: none
}

h1,
h2,
h3,
h4 {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: .005em;
  color: var(--ink)
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px
}

.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 26px
}

.section {
  padding: 100px 0
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.eyebrow::before,
.eyebrow.center::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold)
}

.section-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 56px
}

.section-head .eyebrow {
  margin-bottom: 14px
}

.section-head h2 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: .01em
}

.section-head h2 em {
  font-style: italic;
  color: var(--gold-deep)
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem
}

.rule {
  width: 64px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto;
  position: relative
}

.rule::before,
.rule::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold)
}

.rule::before {
  left: -12px
}

.rule::after {
  right: -12px
}

/* ============================================================
   Crest emblem (signature)
   ============================================================ */
.crest {
  display: inline-block;
  line-height: 0
}

.crest svg {
  display: block
}

.crest .rays {
  transform-origin: center;
  animation: shine 8s linear infinite
}

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

/* ============================================================
   Top bar
   ============================================================ */
.topbar {
  background: var(--navy-deep);
  color: #c8d2e6;
  font-size: .82rem;
  position: relative;
  z-index: 2
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
  gap: 18px;
  flex-wrap: wrap
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #c8d2e6;
  transition: color .2s
}

.topbar a:hover {
  color: var(--gold-2)
}

.tb-address {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #c8d2e6
}

.tb-left {
  display: flex;
  gap: 22px;
  flex-wrap: wrap
}

.tb-right {
  display: flex;
  gap: 18px;
  align-items: center
}

.topbar svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold-2);
  fill: none;
  stroke-width: 1.8
}

.tb-social {
  display: flex;
  gap: 12px
}

.tb-social a svg {
  stroke: #c8d2e6
}

.tb-social a:hover svg {
  stroke: var(--gold-2)
}

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  transition: box-shadow .3s
}

.nav-inner {
  display: flex;
  flex-direction: column;
  background: rgba(250, 246, 236, .82);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid var(--gold-line)
}

.nav.scrolled .nav-inner {
  box-shadow: var(--shadow-sm);
  background: rgba(250, 246, 236, .95)
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 22px;
  width: 100%
}

.header-bottom {
  border-top: 1px solid rgba(19, 34, 63, .06);
  width: 100%
}

.header-bottom .wrap {
  display: flex;
  align-items: center;
  height: 48px
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px
}

.brand .brand-logo {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain
}

.brand-txt strong {
  display: block;
  /* font-family: var(--f-display); */
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  color: var(--ink);
  letter-spacing: .01em
}

.brand-txt span {
  display: block;
  font-family: var(--f-body);
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-top: 4px
}

.menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 2px
}

.menu-item {
  position: relative
}

.menu-item>a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 9px 12px;
  border-radius: 8px;
  position: relative;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer
}

.menu-item>a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease)
}

.menu-item>a:hover,
.menu-item>a.active {
  color: var(--navy)
}

.menu-item>a:hover::after,
.menu-item>a.active::after {
  transform: scaleX(1)
}

.menu-item>a svg.chevron {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  stroke-width: 2;
  margin-left: 2px;
  transition: transform .25s var(--ease)
}

.menu-item:hover>a svg.chevron {
  transform: rotate(180deg)
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  border-radius: 12px;
  min-width: 190px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  z-index: 90;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.menu-item:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}

.dropdown-menu a {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 8px 12px;
  border-radius: 6px;
  white-space: nowrap;
  transition: all .2s;
  text-align: left;
}

.dropdown-menu a:hover {
  background: var(--cream);
  color: var(--navy);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: .9rem;
  border-radius: 100px;
  padding: 12px 24px;
  transition: transform .25s var(--ease), box-shadow .25s, background .25s, color .25s
}

.btn svg {
  width: 16px;
  height: 16px
}

.btn-gold {
  background: linear-gradient(150deg, var(--gold-2), var(--gold));
  color: var(--navy-deep);
  box-shadow: 0 12px 26px -12px rgba(190, 148, 51, .8)
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -14px rgba(190, 148, 51, 1)
}

.btn-navy {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-md)
}

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

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line)
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-deep)
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .4)
}

.btn-outline-light:hover {
  border-color: var(--gold-2);
  color: var(--gold-2)
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: var(--cream);
  place-items: center;
  border: 1px solid var(--line)
}

.burger svg {
  width: 22px;
  height: 22px;
  stroke: var(--ink);
  stroke-width: 2
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden
}

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

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-bg img.active {
  opacity: 1;
  animation: heroKenBurns 7s ease-out forwards;
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1.08);
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(9, 17, 38, .94) 0%, rgba(12, 24, 47, .82) 40%, rgba(12, 24, 47, .42) 100%)
}

.hero .wrap {
  position: relative;
  padding: 96px 26px 108px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  min-height: 620px
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(217, 185, 97, .4);
  padding: 8px 18px 8px 8px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 26px;
  backdrop-filter: blur(6px)
}

.hero-badge .rj {
  background: var(--gold);
  color: var(--navy-deep);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .9rem
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.8rem, 6.4vw, 5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: .01em
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-2)
}

.hero .motto {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: #e7ddc6;
  margin: 22px 0 8px;
  max-width: 520px;
  line-height: 1.5;
  border-left: 2px solid var(--gold);
  padding-left: 18px
}

.hero .motto small {
  display: block;
  font-family: var(--f-body);
  font-style: normal;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-top: 8px
}

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

/* Hero Slider Layout & Transitions */
.hero-left {
  display: flex;
  flex-direction: column;
  max-width: 800px;
}

.hero-copy-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: translateY(15px);
}

.hero-copy.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Slider Controls styling */
.hero-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}

.hero-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  display: grid;
  place-items: center;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
  transform: scale(1.06);
}

.hero-btn svg {
  width: 18px;
  height: 18px;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0;
  cursor: pointer;
  transition: width 0.3s var(--ease), background 0.3s;
}

.hero-dot.active {
  width: 24px;
  border-radius: 100px;
  background: var(--gold-2);
  border-color: var(--gold-2);
}


/* Notices ticker */
.ticker {
  background: var(--navy-deep);
  color: #e7ddc6;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  position: relative;
  z-index: 1
}

.ticker-label {
  background: var(--crimson);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  flex: none;
  position: relative
}

.ticker-label svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 2
}

.ticker-label::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 0;
  bottom: 0;
  width: 14px;
  background: var(--crimson);
  clip-path: polygon(0 0, 100% 50%, 0 100%)
}

.ticker-view {
  overflow: hidden;
  flex: 1;
  display: flex;
  align-items: center
}

.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: tick 30s linear infinite;
  padding-left: 26px
}

.ticker:hover .ticker-track {
  animation-play-state: paused
}

.ticker-track a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 26px;
  font-size: .9rem;
  white-space: nowrap;
  color: #e7ddc6;
  transition: color .2s
}

.ticker-track a:hover {
  color: var(--gold-2)
}

.ticker-track a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex: none
}

@keyframes tick {
  to {
    transform: translateX(-50%)
  }
}

/* ============================================================
   News & Notices
   ============================================================ */
.news {
  background: var(--parchment)
}

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

.ncol {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s
}

.ncol:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md)
}

.ncol-head {
  background: linear-gradient(120deg, var(--navy), var(--navy-deep));
  color: #fff;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative
}

.ncol-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--gold)
}

.ncol-head svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-2);
  fill: none;
  stroke-width: 1.8
}

.ncol-head h3 {
  color: #fff;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: .06em;
  text-transform: uppercase
}

.ncol-body {
  padding: 10px 24px 22px;
  flex: 1
}

.nitem {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line)
}

.nitem:last-child {
  border-bottom: none
}

.ndate {
  flex: none;
  width: 52px;
  text-align: center;
  background: var(--cream);
  border-radius: 10px;
  padding: 8px 4px;
  border: 1px solid var(--gold-line)
}

.ndate b {
  display: block;
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1
}

.ndate span {
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700
}

.nbody h4 {
  font-family: var(--f-body);
  font-size: .96rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.35
}

.nbody a {
  font-size: .8rem;
  color: var(--crimson);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px
}

.nbody a svg {
  width: 13px;
  height: 13px;
  transition: transform .25s
}

.nbody a:hover svg {
  transform: translateX(3px)
}

.ncol-foot {
  padding: 16px 24px;
  border-top: 1px solid var(--line);
  text-align: center
}

.ncol-foot a {
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .06em;
  text-transform: uppercase
}

/* ============================================================
   Discover / Heritage
   ============================================================ */
.discover {
  background: linear-gradient(180deg, var(--cream), var(--parchment));
  position: relative;
  overflow: hidden
}

.discover .crest-watermark {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  opacity: .05;
  pointer-events: none
}

.discover .crest-watermark svg {
  width: 460px;
  height: 460px
}

.discover-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
  position: relative
}

.discover-photo {
  position: relative
}

.discover-photo .dp-main {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/4.6;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff
}

.discover-photo .dp-main img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.discover-photo .dp-jubilee {
  position: absolute;
  right: -24px;
  bottom: 34px;
  background: var(--crimson);
  color: #fff;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--gold-2)
}

.discover-photo .dp-jubilee b {
  font-family: var(--f-display);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: .9;
  color: var(--gold-2)
}

.discover-photo .dp-jubilee span {
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 4px
}

.discover-copy h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin: 14px 0 8px;
  line-height: 1.08
}

.discover-copy h2 em {
  font-style: italic;
  color: var(--gold-deep)
}

.discover-copy p {
  color: var(--ink-soft);
  margin-bottom: 16px
}

.discover-facts {
  display: flex;
  gap: 14px;
  margin: 26px 0 30px;
  flex-wrap: wrap
}

.dfact {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 20px;
  flex: 1;
  min-width: 140px
}

.dfact b {
  display: block;
  font-family: var(--f-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy)
}

.dfact span {
  font-size: .8rem;
  color: var(--ink-soft)
}

/* ============================================================
   Why Xavier's (pillars)
   ============================================================ */
.why {
  background: var(--parchment)
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.pillar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 28px;
  text-align: center;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
  position: relative;
  overflow: hidden
}

.pillar::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  transition: border-color .35s
}

.pillar:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md)
}

.pillar:hover::after {
  border-color: var(--gold-line)
}

.pillar .p-ico {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--navy);
  border: 1px solid var(--gold-line)
}

.pillar .p-ico svg {
  width: 34px;
  height: 34px
}

.pillar h3 {
  font-size: 1.4rem;
  margin-bottom: 10px
}

.pillar p {
  color: var(--ink-soft);
  font-size: .92rem
}

/* ============================================================
   Principal's desk
   ============================================================ */
.principal {
  background: var(--navy-deep);
  color: #dbe3f2;
  position: relative;
  overflow: hidden
}

.principal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 85% 20%, rgba(190, 148, 51, .16), transparent 60%)
}

.principal .wrap {
  position: relative
}

.principal-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 56px;
  align-items: center
}

.principal-photo {
  position: relative;
  max-width: 320px
}

.principal-photo .pp-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 1/1.15;
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(217, 185, 97, .3)
}

.principal-photo .pp-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.principal .eyebrow {
  color: var(--gold-2)
}

.principal .eyebrow::before {
  background: var(--gold-2)
}

.principal blockquote {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-style: italic;
  line-height: 1.4;
  color: #fff;
  margin: 16px 0 22px
}

.principal .quote-ico {
  color: var(--gold-2);
  font-family: var(--f-display);
  font-size: 3rem;
  line-height: 0;
  display: block;
  height: 22px
}

.principal p {
  color: #c1cbdf;
  margin-bottom: 14px;
  max-width: 600px
}

.principal-sign {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px
}

.principal-sign .line {
  width: 44px;
  height: 2px;
  background: var(--gold-2)
}

.principal-sign strong {
  font-family: var(--f-display);
  font-size: 1.3rem;
  color: #fff;
  display: block;
  font-weight: 700
}

.principal-sign span {
  font-size: .84rem;
  color: var(--gold-2);
  letter-spacing: .06em
}

/* ============================================================
   Recent events
   ============================================================ */
.events {
  background: linear-gradient(180deg, var(--parchment), var(--cream))
}

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

.ecard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s
}

.ecard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md)
}

.ecard-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--cream-2)
}

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

.ecard:hover .ecard-img img {
  transform: scale(1.07)
}

.ecard-date {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  padding: 8px 12px;
  text-align: center;
  border: 1px solid var(--gold-line)
}

.ecard-date b {
  display: block;
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-2)
}

.ecard-date span {
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase
}

.ecard-body {
  padding: 24px
}

.ecard-body h3 {
  font-size: 1.4rem;
  margin-bottom: 8px
}

.ecard-body p {
  color: var(--ink-soft);
  font-size: .9rem;
  margin-bottom: 14px
}

.ecard-body a {
  font-size: .85rem;
  font-weight: 700;
  color: var(--crimson);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  letter-spacing: .02em
}

.ecard-body a svg {
  width: 15px;
  height: 15px;
  transition: transform .25s
}

.ecard:hover .ecard-body a svg {
  transform: translateX(4px)
}

/* ============================================================
   Gallery
   ============================================================ */
.gallery {
  background: var(--parchment)
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 16px
}

.gitem {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cream-2);
  cursor: pointer;
  border: 1px solid var(--line)
}

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

.gitem:hover img {
  transform: scale(1.08)
}

.gitem::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(12, 24, 47, .7));
  opacity: 0;
  transition: opacity .35s
}

.gitem:hover::after {
  opacity: 1
}

.gitem .gcap {
  position: absolute;
  left: 18px;
  bottom: 14px;
  z-index: 2;
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  opacity: 0;
  transform: translateY(10px);
  transition: .35s
}

.gitem:hover .gcap {
  opacity: 1;
  transform: none
}

.g-wide {
  grid-column: span 2
}

.g-tall {
  grid-row: span 2
}

.g-big {
  grid-column: span 2;
  grid-row: span 2
}

/* ============================================================
   Stats band
   ============================================================ */
.stats {
  background: var(--navy-deep);
  color: #fff;
  position: relative;
  overflow: hidden
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 100% at 50% 0%, rgba(190, 148, 51, .16), transparent 60%)
}

.stats .wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.stat-box {
  text-align: center;
  padding: 16px;
  position: relative
}

.stat-box:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, .12)
}

.stat-box .s-ico {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: rgba(217, 185, 97, .16);
  color: var(--gold-2);
  display: grid;
  place-items: center
}

.stat-box .s-ico svg {
  width: 28px;
  height: 28px
}

.stat-box b {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--gold-2);
  line-height: 1
}

.stat-box span {
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #c1cbdf;
  font-weight: 600
}

/* ============================================================
   Testimonials
   ============================================================ */
.testi {
  background: linear-gradient(180deg, var(--cream), var(--parchment))
}

.testi-slider {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto
}

.testi-track {
  display: flex;
  transition: transform .6s var(--ease)
}

.testi-slide {
  min-width: 100%;
  flex: 0 0 100%;
  padding: 8px
}

.tcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 44px 48px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative
}

.tcard .tq {
  font-family: var(--f-display);
  font-size: 4rem;
  color: var(--gold-2);
  line-height: 0;
  height: 34px;
  display: block
}

.tcard p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 26px
}

.tcard .tperson {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px
}

.tcard .tavatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-line);
  flex: none
}

.tcard .tavatar img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.tcard .tmeta {
  text-align: left
}

.tcard .tmeta strong {
  display: block;
  font-family: var(--f-body);
  font-weight: 700;
  color: var(--navy)
}

.tcard .tmeta span {
  font-size: .82rem;
  color: var(--ink-soft)
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px
}

.testi-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--cream-2);
  border: 1px solid var(--gold-line);
  padding: 0;
  transition: width .3s var(--ease), background .3s
}

.testi-dots button.active {
  width: 30px;
  border-radius: 100px;
  background: var(--gold)
}

/* ============================================================
   CTA band
   ============================================================ */
.cta {
  padding: 0 0 100px
}

.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  padding: 70px 60px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep))
}

.cta-box::before {
  content: "";
  position: absolute;
  top: -90px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(190, 148, 51, .28), transparent 70%)
}

.cta-box::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -40px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(156, 43, 51, .3), transparent 70%)
}

.cta-box .c-in {
  position: relative;
  z-index: 2
}

.cta-box .eyebrow {
  color: var(--gold-2);
  justify-content: center
}

.cta-box .eyebrow::before {
  background: var(--gold-2)
}

.cta-box h2 {
  color: #fff;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  margin: 14px 0 12px
}

.cta-box p {
  color: #c8d2e6;
  font-size: 1.08rem;
  max-width: 560px;
  margin: 0 auto 30px
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--navy-deep);
  color: #a9b5cd;
  padding: 72px 0 0;
  position: relative;
  overflow: hidden
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--crimson), var(--gold))
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 52px
}

.footer .f-brand .brand-logo {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain
}

.footer .f-brand .fb-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px
}

.footer .f-brand .fb-top strong {
  font-family: var(--f-display);
  font-size: 1.3rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.1
}

.footer .f-brand .fb-top span {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-2);
  display: block;
  margin-top: 3px
}

.footer .f-brand>p {
  font-size: .9rem;
  line-height: 1.7;
  max-width: 330px;
  margin-bottom: 20px
}

.f-amdg {
  display: inline-block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: .95rem;
  color: var(--gold-2);
  border: 1px solid var(--gold-line);
  border-radius: 100px;
  padding: 5px 16px
}

.footer h4 {
  color: #fff;
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px
}

.footer .f-col a {
  display: block;
  font-size: .9rem;
  margin-bottom: 11px;
  transition: color .2s
}

.footer .f-col a:hover {
  color: var(--gold-2);
  padding-left: 4px
}

.f-contact li {
  display: flex;
  gap: 12px;
  font-size: .9rem;
  margin-bottom: 15px;
  line-height: 1.5
}

.f-contact svg {
  width: 17px;
  height: 17px;
  stroke: var(--gold-2);
  fill: none;
  stroke-width: 1.8;
  flex: none;
  margin-top: 3px
}

.f-hours {
  margin-top: 20px
}

.f-hours .fh-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: .85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.f-hours .fh-item span:last-child {
  color: var(--gold-2);
  font-weight: 600
}

.f-social {
  display: flex;
  gap: 12px;
  margin-top: 20px
}

.f-social a {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .06);
  display: grid;
  place-items: center;
  transition: background .25s, transform .25s
}

.f-social a:hover {
  background: var(--gold);
  transform: translateY(-3px)
}

.f-social a:hover svg {
  stroke: var(--navy-deep)
}

.f-social svg {
  width: 17px;
  height: 17px;
  stroke: #c8d2e6;
  fill: none;
  stroke-width: 1.7
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .09);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: .82rem
}

/* ============================================================
   Reveal + mobile nav
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease)
}

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

.mnav {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--parchment);
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto
}

.mnav.open {
  transform: translateX(0)
}

.mnav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px
}

.mnav-close {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: var(--cream);
  display: grid;
  place-items: center;
  border: 1px solid var(--line)
}

.mnav-close svg {
  width: 22px;
  height: 22px;
  stroke: var(--ink);
  stroke-width: 2
}

.mnav-menu {
  display: flex;
  flex-direction: column
}

.mnav-menu>a,
.mnav-trigger {
  font-family: var(--f-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  cursor: pointer
}

.mnav-trigger svg.chevron {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.5;
  transition: transform .3s var(--ease)
}

.mnav-item.open .mnav-trigger svg.chevron {
  transform: rotate(180deg)
}

.mnav-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
  display: flex;
  flex-direction: column;
  padding-left: 14px;
  background: rgba(19, 34, 63, .02);
  border-radius: 8px
}

.mnav-item.open .mnav-submenu {
  max-height: 240px;
  margin-top: 4px;
  margin-bottom: 8px;
  padding-block: 6px
}

.mnav-submenu a {
  font-family: var(--f-body);
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 8px 12px;
  border-bottom: none;
  display: block
}

.mnav-submenu a:hover {
  color: var(--navy)
}

.mnav .btn {
  margin-top: 22px;
  justify-content: center
}

/* ============================================================
   Responsive
   ============================================================ */
@media(max-width:1080px) {
  .menu {
    display: none
  }

  .header-bottom {
    display: none
  }

  .header-top {
    height: 72px
  }

  .burger {
    display: grid
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:920px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 72px 26px 84px;
    min-height: auto
  }

  .discover-grid,
  .principal-grid {
    grid-template-columns: 1fr;
    gap: 44px
  }

  .principal-photo {
    max-width: 260px;
    margin: 0 auto
  }

  .news-grid,
  .events-grid {
    grid-template-columns: 1fr
  }

  .stats .wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px
  }

  .stat-box:nth-child(2)::after {
    display: none
  }

  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px
  }

  .g-big {
    grid-column: span 2;
    grid-row: span 1
  }

  .section {
    padding: 76px 0
  }
}

@media(max-width:640px) {
  .wrap {
    padding-inline: 20px
  }

  .nav-cta .btn:not(.burger-wrap) {
    display: none
  }

  .why-grid,
  .gal-grid,
  .foot-grid {
    grid-template-columns: 1fr
  }

  .footer .f-brand {
    grid-column: auto
  }

  .tb-address,
  .tb-social {
    display: none !important;
  }

  .topbar .wrap,
  .tb-left {
    justify-content: center;
  }

  .stats .wrap {
    grid-template-columns: 1fr
  }

  .stat-box::after {
    display: none !important
  }

  .cta-box {
    padding: 50px 28px
  }

  .tcard {
    padding: 34px 26px
  }

  .foot-bottom {
    flex-direction: column;
    text-align: center
  }
}

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

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