/* ==========================================================================
   CFI Model School — 2026 redesign
   Theme colours kept from the existing site/logo: orange, sky-blue, gold, cream.
   ========================================================================== */
:root {
  --orange: #F26522;
  --orange-600: #DC5412;
  --orange-100: #FFE9DC;
  --blue: #1C7BB0;
  --blue-400: #419ADD;
  --blue-100: #E3F1FB;
  --navy: #0D2F4A;
  --navy-800: #0A2438;
  --gold: #F0CB66;
  --gold-600: #D9A93A;
  --cream: #FBF7ED;
  --ink: #1D2733;
  --muted: #5E6B78;
  --line: #E7E3D8;
  --white: #FFFFFF;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 14px rgba(13, 47, 74, .07);
  --shadow: 0 14px 40px rgba(13, 47, 74, .10);
  --shadow-lg: 0 26px 60px rgba(13, 47, 74, .16);
  --ease: cubic-bezier(.22, .8, .24, 1);
  --ease-back: cubic-bezier(.34, 1.56, .64, 1);
  --font-head: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Mulish', 'Segoe UI', Arial, sans-serif;
  --header-h: 84px;
}

/* ---------- base ---------- */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--ink); background: var(--white); font-size: 16px; line-height: 1.7; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); color: var(--navy); line-height: 1.25; font-weight: 700; }
a { color: var(--blue); transition: color .3s var(--ease); }
a:hover { color: var(--orange); text-decoration: none; }
img { max-width: 100%; height: auto; }
::selection { background: var(--orange); color: #fff; }
button { font-family: inherit; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.skip-link { position: absolute; left: -999px; top: 8px; z-index: 10000; background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { left: 12px; color: #fff; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.section { position: relative; padding: 96px 0; overflow: hidden; }
@media (max-width: 767px) { .section { padding: 64px 0; } }

/* ---------- buttons ---------- */
.btn-brand, .btn-outline-brand, .btn-light-brand, .btn-outline-light-brand {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 28px; border-radius: 50px; font-family: var(--font-head); font-weight: 600; font-size: 15px;
  letter-spacing: .2px; border: 2px solid transparent; cursor: pointer; overflow: hidden; isolation: isolate; white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), color .35s, background .35s, border-color .35s;
}
.btn-brand { background: var(--orange); color: #fff; box-shadow: 0 10px 24px rgba(242, 101, 34, .32); }
.btn-brand::before { content: ""; position: absolute; inset: 0; background: var(--navy); transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease); z-index: -1; border-radius: inherit; }
.btn-brand:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 16px 30px rgba(13, 47, 74, .28); }
.btn-brand:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-brand i { transition: transform .35s var(--ease); }
.btn-brand:hover i.fa-arrow-right, .btn-brand:hover i.fa-paper-plane { transform: translateX(4px); }
.btn-outline-brand { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn-outline-brand:hover { background: var(--orange); color: #fff; transform: translateY(-3px); }
.btn-light-brand { background: #fff; color: var(--orange); box-shadow: 0 10px 24px rgba(0, 0, 0, .12); }
.btn-light-brand:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }
.btn-outline-light-brand { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .7); }
.btn-outline-light-brand:hover { background: #fff; color: var(--orange); transform: translateY(-3px); }
.btn-sm { padding: 9px 20px; font-size: 14px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-block { display: flex; width: 100%; }
.ripple { position: absolute; border-radius: 50%; background: rgba(255, 255, 255, .45); transform: scale(0); animation: ripple .7s linear; pointer-events: none; }
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

.link-arrow { font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--orange); display: inline-flex; align-items: center; gap: 8px; }
.link-arrow i { transition: transform .35s var(--ease); }
.link-arrow:hover i { transform: translateX(6px); }

/* ---------- section headings ---------- */
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 600; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; border-radius: 2px; }
.text-center .eyebrow::after { content: ""; width: 28px; height: 2px; background: currentColor; border-radius: 2px; }
.section-title { font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; margin-bottom: 18px; position: relative; }
.section-head { margin-bottom: 48px; }
.lead-text { font-size: 18px; color: var(--muted); }
.script { font-family: 'Satisfy', cursive; }

/* ---------- preloader & scroll progress ---------- */
#preloader { position: fixed; inset: 0; z-index: 9999; background: var(--cream); display: grid; place-items: center; transition: opacity .6s var(--ease), visibility .6s; }
#preloader.done { opacity: 0; visibility: hidden; }
.preloader-inner { position: relative; width: 130px; height: 130px; display: grid; place-items: center; }
.preloader-inner img { animation: pulse-logo 1.4s var(--ease) infinite; }
.preloader-ring { position: absolute; inset: 0; border-radius: 50%; border: 4px solid rgba(242, 101, 34, .15); border-top-color: var(--orange); border-right-color: var(--blue-400); animation: spin 1s linear infinite; }
@keyframes pulse-logo { 0%, 100% { transform: scale(.92); } 50% { transform: scale(1.04); } }
@keyframes spin { to { transform: rotate(360deg); } }
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 1100; pointer-events: none; }
.scroll-progress span { display: block; height: 100%; width: 100%; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg, var(--orange), var(--gold), var(--blue-400)); }

/* ---------- top bar ---------- */
.topbar { background: var(--navy); color: rgba(255, 255, 255, .82); font-size: 13.5px; }
.topbar .container { min-height: 42px; gap: 12px; }
.topbar-info { list-style: none; margin: 0; padding: 0; display: flex; gap: 22px; }
.topbar-info li { display: inline-flex; align-items: center; gap: 8px; }
.topbar-info i { color: var(--gold); }
.topbar a { color: rgba(255, 255, 255, .85); }
.topbar a:hover { color: var(--gold); }
.topbar-right { display: flex; align-items: center; gap: 6px; }
.topbar-link { display: inline-flex; align-items: center; gap: 7px; padding: 5px 15px; border-radius: 20px; background: var(--orange); color: #fff !important; font-family: var(--font-head); font-weight: 600; font-size: 12.5px; letter-spacing: .2px; box-shadow: 0 4px 12px rgba(242, 101, 34, .35); transition: background .3s, color .3s, transform .3s var(--ease); }
.topbar-link + .topbar-link { background: var(--blue-400); box-shadow: 0 4px 12px rgba(65, 154, 221, .35); }
.topbar-link:hover { background: var(--gold) !important; color: var(--navy) !important; transform: translateY(-1px); }
.topbar-link i { font-size: 12px; }
.topbar-social { width: 30px; height: 30px; display: inline-grid; place-items: center; border-radius: 50%; transition: background .3s, transform .3s var(--ease-back); }
.topbar-social:hover { background: var(--orange); color: #fff !important; transform: translateY(-2px) rotate(8deg); }
@media (max-width: 575px) { .topbar-info { display: none; } .topbar .container { justify-content: center !important; } .topbar-link { padding: 5px 12px; font-size: 12px; } .topbar-social { display: none; } }

/* ---------- header / navigation ---------- */
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255, 255, 255, .96); border-bottom: 1px solid rgba(13, 47, 74, .06); transition: box-shadow .4s var(--ease), background .4s; }
.site-header .container { height: var(--header-h); transition: height .4s var(--ease); }
.site-header.scrolled { background: rgba(255, 255, 255, .86); -webkit-backdrop-filter: saturate(180%) blur(14px); backdrop-filter: saturate(180%) blur(14px); box-shadow: 0 10px 30px rgba(13, 47, 74, .10); }
.site-header.scrolled .container { height: 68px; }
.site-header.hide-up { transform: translateY(-100%); }
.site-header { transition: transform .45s var(--ease), box-shadow .4s, background .4s; }
.brand { flex: none; }
.brand img { height: 54px; width: auto; transition: height .4s var(--ease); }
.site-header .container, .topbar .container { max-width: 1400px; }
.site-header.scrolled .brand img { height: 46px; }
@media (max-width: 575px) { .brand img { height: 42px; } .site-header.scrolled .brand img { height: 38px; } :root { --header-h: 70px; } }

.main-nav > ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 2px; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a { display: flex; align-items: center; gap: 5px; padding: 10px 9px; font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--navy); border-radius: 10px; position: relative; white-space: nowrap; }
.main-nav > ul > li > a::after { content: ""; position: absolute; left: 9px; right: 9px; bottom: 4px; height: 2px; border-radius: 2px; background: var(--orange); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
.main-nav > ul > li:hover > a, .main-nav > ul > li.active > a { color: var(--orange); }
.main-nav > ul > li:hover > a::after, .main-nav > ul > li.active > a::after { transform: scaleX(1); transform-origin: left; }
.main-nav .fa-angle-down { transition: transform .35s var(--ease); }
.main-nav li:hover .fa-angle-down { transform: rotate(180deg); }
.sub-menu { list-style: none; margin: 0; padding: 10px; position: absolute; top: calc(100% + 10px); left: 0; min-width: 230px; background: #fff; border-radius: 14px; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(12px) scale(.98); transform-origin: top left; transition: all .35s var(--ease); border-top: 3px solid var(--orange); }
.sub-menu::before { content: ""; position: absolute; top: -13px; left: 0; right: 0; height: 13px; }
.has-sub:hover > .sub-menu, .has-sub:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.sub-menu a { display: block; padding: 9px 14px; border-radius: 9px; color: var(--ink); font-size: 14.5px; font-weight: 600; transition: all .3s var(--ease); }
.sub-menu a:hover { background: var(--orange-100); color: var(--orange); padding-left: 20px; }
.header-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; border: 0; background: var(--orange-100); padding: 12px 11px; cursor: pointer; flex-direction: column; justify-content: space-between; }
.nav-toggle span { display: block; height: 2.5px; border-radius: 3px; background: var(--orange); transition: transform .4s var(--ease), width .4s var(--ease); }
.nav-toggle span:nth-child(2) { width: 70%; }
.nav-toggle:hover span:nth-child(2) { width: 100%; }
@media (max-width: 1439px) { .header-actions .btn-brand { display: none !important; } }
@media (max-width: 1279px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
}

/* mobile off-canvas */
.mobile-nav { position: fixed; inset: 0; z-index: 2000; visibility: hidden; }
.mobile-nav::before { content: ""; position: absolute; inset: 0; background: rgba(10, 36, 56, .55); opacity: 0; transition: opacity .4s var(--ease); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.mobile-nav-panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(360px, 88vw); background: #fff; transform: translateX(100%); transition: transform .5s var(--ease); display: flex; flex-direction: column; overflow-y: auto; }
.mobile-nav.open { visibility: visible; }
.mobile-nav.open::before { opacity: 1; }
.mobile-nav.open .mobile-nav-panel { transform: none; }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid var(--line); gap: 10px; }
.mobile-nav-head img { height: 40px; width: auto; }
.mobile-nav-close { width: 42px; height: 42px; flex: none; border: 0; border-radius: 50%; background: var(--orange-100); color: var(--orange); font-size: 18px; transition: transform .4s var(--ease); }
.mobile-nav-close:hover { transform: rotate(90deg); }
.mobile-menu { list-style: none; margin: 0; padding: 12px 10px; flex: 1; }
.mobile-menu > li { opacity: 0; transform: translateX(30px); transition: opacity .4s var(--ease), transform .4s var(--ease); }
.mobile-nav.open .mobile-menu > li { opacity: 1; transform: none; }
.mobile-menu a, .mobile-sub-toggle { display: flex; width: 100%; justify-content: space-between; align-items: center; padding: 13px 14px; border-radius: 12px; font-family: var(--font-head); font-weight: 600; font-size: 16px; color: var(--navy); background: none; border: 0; text-align: left; }
.mobile-menu a:hover, .mobile-sub-toggle:hover { background: var(--cream); color: var(--orange); }
.mobile-menu ul { list-style: none; padding: 0 0 0 14px; margin: 0; max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.mobile-menu li.open > ul { max-height: 600px; }
.mobile-menu ul a { font-size: 15px; font-weight: 500; }
.mobile-sub-toggle i { transition: transform .35s var(--ease); }
.mobile-menu li.open .mobile-sub-toggle i { transform: rotate(180deg); }
.mobile-nav-foot { padding: 18px; border-top: 1px solid var(--line); }
.mobile-call { display: flex; justify-content: center; gap: 8px; align-items: center; margin-top: 12px; font-weight: 700; color: var(--navy); }

/* ---------- reveal animations (driven by site.js) ---------- */
[data-anim] { opacity: 0; transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0ms); will-change: opacity, transform; }
[data-anim="fade-up"] { transform: translateY(46px); }
[data-anim="fade-down"] { transform: translateY(-46px); }
[data-anim="fade-left"] { transform: translateX(60px); }
[data-anim="fade-right"] { transform: translateX(-60px); }
[data-anim="zoom-in"] { transform: scale(.86); }
[data-anim="flip-up"] { transform: perspective(900px) rotateX(24deg) translateY(40px); transform-origin: bottom; }
[data-anim].in { opacity: 1; transform: none; }
.no-js [data-anim] { opacity: 1; transform: none; }
@media (max-width: 767px) { [data-anim="fade-left"], [data-anim="fade-right"] { transform: translateY(40px); } }

.split-reveal .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; }
.split-reveal .w > span { display: inline-block; transform: translateY(110%); animation: word-up .9s var(--ease) forwards; animation-delay: calc(var(--i) * 80ms + 150ms); }
@keyframes word-up { to { transform: none; } }

/* decorative moving blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(8px); opacity: .5; pointer-events: none; z-index: 0; animation: blob-move 18s ease-in-out infinite alternate; }
.blob-1 { width: 320px; height: 320px; background: var(--orange-100); top: -80px; right: -100px; }
.blob-2 { width: 220px; height: 220px; background: var(--blue-100); bottom: -60px; left: -80px; animation-delay: -6s; }
.blob-3 { width: 380px; height: 380px; background: rgba(240, 203, 102, .25); top: 10%; left: -140px; }
@keyframes blob-move { 0% { transform: translate(0, 0) scale(1); border-radius: 50% 42% 55% 45%; } 50% { transform: translate(30px, 40px) scale(1.08); border-radius: 40% 58% 45% 55%; } 100% { transform: translate(-20px, 10px) scale(.95); border-radius: 55% 45% 40% 60%; } }
.section > .container { position: relative; z-index: 1; }
.float-y { animation: float-y 5s ease-in-out infinite; }
@keyframes float-y { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.spin-slow { animation: spin 14s linear infinite; }

/* ---------- HERO (clear photos, no overlay) ---------- */
.hero { position: relative; background: var(--navy); }
.hero-slide { position: relative; aspect-ratio: 1350 / 482; max-height: calc(100vh - 120px); min-height: 220px; overflow: hidden; }
/* each new slide slowly zooms from 108% down to 100% over the slide duration, so it ends at full sharpness */
.hero-slide > img { width: 100%; height: 100%; object-fit: cover; display: block; image-rendering: -webkit-optimize-contrast; transform-origin: center; }
.hero .owl-item.active .hero-slide > img { animation: slide-zoom 5.5s cubic-bezier(.33, 0, .25, 1) both; will-change: transform; }
@keyframes slide-zoom { from { transform: scale(1.08); } to { transform: scale(1); } }
@media (max-width: 767px) { .hero-slide { aspect-ratio: 16 / 10; } }
.hero-caption { position: absolute; left: 6%; bottom: 12%; max-width: 520px; padding: 22px 26px; background: rgba(255, 255, 255, .88); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-radius: var(--radius); box-shadow: var(--shadow-lg); border-left: 5px solid var(--orange); opacity: 0; transform: translateY(30px); }
.hero .owl-item.active .hero-caption { animation: cap-in .9s var(--ease) .45s forwards; }
@keyframes cap-in { to { opacity: 1; transform: none; } }
.hero-caption h2 { font-size: clamp(20px, 2.6vw, 34px); margin: 0 0 8px; }
.hero-caption p { margin: 0 0 14px; color: var(--muted); }
@media (max-width: 575px) { .hero-caption { left: 12px; right: 12px; bottom: 12px; padding: 14px 16px; } .hero-caption p { display: none; } }
.hero .owl-nav { position: absolute; inset: 50% 0 auto; display: flex; justify-content: space-between; padding: 0 18px; pointer-events: none; transform: translateY(-50%); }
.hero .owl-nav .owl-prev, .hero .owl-nav .owl-next { pointer-events: auto; position: static; display: grid; place-items: center; cursor: pointer; border: 0 !important; width: 52px; height: 52px; border-radius: 50% !important; background: rgba(255, 255, 255, .85) !important; color: var(--navy) !important; font-size: 22px !important; box-shadow: var(--shadow); opacity: 0; transition: all .4s var(--ease) !important; margin: 0 !important; }
.hero .owl-nav .owl-prev { transform: translateX(-20px); }
.hero .owl-nav .owl-next { transform: translateX(20px); }
.hero:hover .owl-nav [class*=owl-] { opacity: 1; transform: none; }
.hero .owl-nav [class*=owl-]:hover { background: var(--orange) !important; color: #fff !important; }
.hero .owl-dots { position: absolute; bottom: 18px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; }
.hero .owl-dots .owl-dot span { display: block; width: 10px; height: 10px; border-radius: 10px; background: rgba(255, 255, 255, .7); box-shadow: 0 1px 4px rgba(0, 0, 0, .3); transition: all .45s var(--ease); margin: 0; }
.hero .owl-dots .owl-dot.active span { width: 34px; background: var(--orange); }
.hero-progress { position: absolute; left: 0; bottom: 0; right: 0; height: 4px; z-index: 5; background: rgba(255, 255, 255, .25); }
.hero-progress span { display: block; height: 100%; width: 100%; transform: scaleX(0); transform-origin: left; background: var(--orange); }
.hero-progress span.run { animation: progress 6s linear forwards; }
@keyframes progress { to { transform: scaleX(1); } }
@media (max-width: 767px) { .hero .owl-nav { display: none; } }

/* ---------- announcement ticker ---------- */
.ticker { display: flex; align-items: stretch; background: var(--cream); border-bottom: 1px solid var(--line); position: relative; z-index: 3; }
.ticker-label { flex: none; display: flex; align-items: center; gap: 10px; padding: 0 22px; background: var(--orange); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 14px; position: relative; }
.ticker-label::after { content: ""; position: absolute; right: -14px; top: 0; bottom: 0; width: 28px; background: var(--orange); clip-path: polygon(0 0, 50% 0, 100% 50%, 50% 100%, 0 100%); }
.ticker-label i { animation: wiggle 2.4s ease-in-out infinite; }
@keyframes wiggle { 0%, 60%, 100% { transform: rotate(0); } 70% { transform: rotate(-16deg); } 80% { transform: rotate(14deg); } 90% { transform: rotate(-8deg); } }
.ticker-track { flex: 1; overflow: hidden; padding: 14px 0 14px 30px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 40px, #000 calc(100% - 40px), transparent); mask-image: linear-gradient(90deg, transparent, #000 40px, #000 calc(100% - 40px), transparent); }
.ticker-move { display: inline-flex; gap: 48px; white-space: nowrap; animation: ticker 40s linear infinite; }
.ticker:hover .ticker-move { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }
.ticker-item { color: var(--navy); font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 10px; }
.ticker-date { font-size: 12px; font-weight: 700; color: var(--orange); background: #fff; border: 1px solid var(--orange-100); padding: 2px 10px; border-radius: 20px; }
@media (max-width: 575px) { .ticker-label span { display: none; } .ticker-label { padding: 0 16px; } }

/* ---------- highlights ---------- */
.highlights-section { position: relative; z-index: 4; padding: 50px 0 10px; background: linear-gradient(var(--cream), #fff); }
.highlight-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 22px; }
@media (max-width: 575px) {
  .highlight-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .highlight-card { padding: 20px 10px 16px; }
  .highlight-icon { width: 62px; height: 62px; border-radius: 20px; margin-bottom: 10px; }
  .highlight-icon img { width: 36px; height: 36px; }
  .highlight-title { font-size: 15px; }
  .highlight-arrow { display: none; }
  .highlights-section { padding-top: 30px; }
}
.highlight-card { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 32px 18px 26px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; color: var(--navy); transform-style: preserve-3d; transition: box-shadow .45s var(--ease), transform .2s linear; }
.highlight-card::before { content: ""; position: absolute; inset: auto 0 0; height: 0; background: var(--hc); transition: height .5s var(--ease); z-index: 0; }
.highlight-card:hover::before { height: 100%; }
.highlight-card > * { position: relative; z-index: 1; }
.highlight-card.c1 { --hc: var(--orange); }
.highlight-card.c2 { --hc: var(--blue); }
.highlight-card.c3 { --hc: var(--gold-600); }
.highlight-card.c4 { --hc: var(--navy); }
.highlight-icon { width: 84px; height: 84px; border-radius: 26px; display: grid; place-items: center; background: var(--hc); margin-bottom: 16px; box-shadow: 0 12px 24px rgba(0, 0, 0, .14); transition: transform .6s var(--ease-back), border-radius .6s, background .4s; }
.highlight-icon img { width: 48px; height: 48px; object-fit: contain; }
.highlight-icon .fa { color: #fff; font-size: 30px; }
.highlight-card:hover .highlight-icon { transform: rotate(-8deg) scale(1.08); border-radius: 50%; background: rgba(255, 255, 255, .2); }
.highlight-title { font-family: var(--font-head); font-weight: 700; font-size: 17px; transition: color .4s; }
.highlight-text { font-size: 14px; color: var(--muted); margin-top: 4px; transition: color .4s; }
.highlight-arrow { margin-top: 12px; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--cream); color: var(--orange); transition: all .45s var(--ease); }
.highlight-card:hover .highlight-title, .highlight-card:hover .highlight-text { color: #fff; }
.highlight-card:hover .highlight-arrow { background: #fff; transform: translateX(6px); }
.highlight-card:hover { box-shadow: var(--shadow-lg); }
.highlight-card::after { content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .35), transparent); transform: skewX(-20deg); z-index: 2; transition: left .8s var(--ease); pointer-events: none; }
.highlight-card:hover::after { left: 140%; }

/* ---------- about ---------- */
.about-media { position: relative; padding: 0 30px 30px 0; }
.about-img { border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.about-img img { width: 100%; aspect-ratio: 4 / 3.2; object-fit: cover; transition: transform 1.2s var(--ease); }
.about-media:hover .about-img img { transform: scale(1.05); }
.about-badge { position: absolute; right: 0; bottom: 0; background: #fff; border-radius: 20px; padding: 14px 20px 14px 14px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-lg); font-family: var(--font-head); font-weight: 700; color: var(--navy); z-index: 2; }
.about-dots { position: absolute; top: -26px; left: -26px; width: 130px; height: 130px; background-image: radial-gradient(var(--orange) 2px, transparent 2.5px); background-size: 16px 16px; opacity: .35; z-index: -1; animation: float-y 7s ease-in-out infinite; }
.about-text { color: var(--muted); font-size: 16.5px; }
.about-tagline { font-family: 'Satisfy', cursive; font-size: 26px; color: var(--blue); margin: 10px 0 24px; }

/* ---------- stats ---------- */
.stats-section { background: var(--navy); color: #fff; padding: 70px 0; position: relative; overflow: hidden; }
.stats-section::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 255, 255, .08) 1.5px, transparent 2px); background-size: 22px 22px; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; position: relative; }
.stat { text-align: center; padding: 22px 10px; border-radius: var(--radius); background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .08); transition: transform .5s var(--ease), background .5s; }
.stat:hover { transform: translateY(-8px); background: rgba(255, 255, 255, .1); }
.stat img { margin-bottom: 10px; }
.stat-num { font-family: var(--font-head); font-weight: 800; font-size: 44px; color: var(--gold); line-height: 1.1; }
.stat-label { color: rgba(255, 255, 255, .8); font-weight: 600; }

/* ---------- features ---------- */
.features-section { background: var(--cream); }
.feature-card { display: block; height: 100%; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); color: var(--ink); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.feature-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); color: var(--ink); }
.feature-img { overflow: hidden; aspect-ratio: 16 / 10; }
.feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.feature-card:hover .feature-img img { transform: scale(1.1) rotate(1deg); }
.feature-body { padding: 26px; position: relative; }
.feature-num { position: absolute; right: 22px; top: 14px; font-family: var(--font-head); font-weight: 800; font-size: 44px; color: var(--orange-100); transition: color .5s; }
.feature-card:hover .feature-num { color: var(--orange); }
.feature-body h3 { font-size: 20px; margin-bottom: 10px; padding-right: 50px; }
.feature-body p { color: var(--muted); margin: 0; }

/* ---------- messages ---------- */
.message-card { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: center; background: #fff; border-radius: 28px; padding: 36px; box-shadow: var(--shadow); margin: 10px; }
.message-photo { aspect-ratio: 1; border-radius: 24px; overflow: hidden; background: var(--cream); display: grid; place-items: center; font-size: 80px; color: var(--gold); position: relative; }
.message-photo img { width: 100%; height: 100%; object-fit: cover; }
.message-quote { font-size: 40px; color: var(--orange-100); }
.message-body h3 { font-size: 24px; margin: 6px 0 12px; }
.message-body p { color: var(--muted); }
.message-author strong { display: block; font-family: var(--font-head); color: var(--navy); font-size: 17px; }
.message-author span { color: var(--orange); font-weight: 600; font-size: 14px; }
@media (max-width: 767px) { .message-card { grid-template-columns: 1fr; padding: 22px; gap: 20px; } .message-photo { max-width: 220px; } }

/* ---------- news & updates ---------- */
.updates-section { background: #fff; }
.news-card { height: 100%; display: flex; flex-direction: column; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.news-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.news-card-img { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--cream); }
.news-card-img > img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.news-card:hover .news-card-img > img { transform: scale(1.08); }
.img-placeholder { position: absolute; inset: 0; display: grid; place-items: center; background: repeating-linear-gradient(45deg, var(--cream), var(--cream) 14px, #F6EFDD 14px, #F6EFDD 28px); }
.img-placeholder img { width: 84px; height: 84px; opacity: .85; transition: transform .8s var(--ease); }
.news-card:hover .img-placeholder img, .album-card:hover .img-placeholder img { transform: rotate(-12deg) scale(1.1); }
.news-card-date { position: absolute; left: 16px; top: 16px; background: var(--orange); color: #fff; border-radius: 14px; padding: 8px 12px; text-align: center; font-size: 11px; font-weight: 700; line-height: 1.2; text-transform: uppercase; box-shadow: 0 8px 20px rgba(242, 101, 34, .35); }
.news-card-date strong { display: block; font-size: 22px; font-family: var(--font-head); }
.news-card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.news-card-body h3 { font-size: 18px; margin-bottom: 10px; }
.news-card-body h3 a { color: var(--navy); background: linear-gradient(var(--orange), var(--orange)) no-repeat left bottom / 0 2px; transition: background-size .5s var(--ease), color .3s; }
.news-card-body h3 a:hover { color: var(--orange); background-size: 100% 2px; }
.news-card-body p { color: var(--muted); font-size: 15px; }
.news-card-body .link-arrow { margin-top: auto; }

.side-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; border: 1px solid var(--line); }
.side-card-head { background: var(--navy); color: #fff; padding: 16px 22px; font-family: var(--font-head); font-weight: 600; display: flex; align-items: center; gap: 10px; }
.side-card-head.alt { background: var(--orange); }
.side-card-head i { color: var(--gold); }
.side-card-head.alt i { color: #fff; }
.side-card-link { display: flex; justify-content: space-between; align-items: center; padding: 14px 22px; border-top: 1px solid var(--line); font-weight: 700; font-family: var(--font-head); font-size: 14px; }
.side-empty { padding: 20px 22px; margin: 0; color: var(--muted); }
.event-list { list-style: none; margin: 0; padding: 8px 12px; }
.event-list li { display: flex; gap: 14px; align-items: center; padding: 12px 10px; border-radius: 12px; transition: background .3s, transform .3s var(--ease); }
.event-list li:hover { background: var(--cream); transform: translateX(4px); }
.event-date { flex: none; width: 56px; height: 60px; border-radius: 14px; background: var(--blue-100); color: var(--blue); display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; text-transform: uppercase; line-height: 1.1; }
.event-date strong { font-family: var(--font-head); font-size: 22px; }
.event-title { font-weight: 700; color: var(--navy); line-height: 1.35; }
.event-title a { color: var(--navy); }
.event-title a:hover { color: var(--orange); }
.event-title small { display: block; font-weight: 500; color: var(--muted); margin-top: 2px; }
.notice-scroll { max-height: 260px; overflow: hidden; position: relative; }
.notice-list { list-style: none; margin: 0; padding: 6px 18px; }
.notice-scroll.auto .notice-list { animation: notice-up var(--dur, 20s) linear infinite; }
.notice-scroll.auto:hover .notice-list { animation-play-state: paused; }
@keyframes notice-up { to { transform: translateY(-50%); } }
.notice-list li { padding: 12px 4px; border-bottom: 1px dashed var(--line); }
.notice-list a, .notice-list span:not(.notice-date) { color: var(--navy); font-weight: 600; }
.notice-list a:hover { color: var(--orange); }
.notice-date { display: block; font-size: 12px; font-weight: 700; color: var(--orange); }
.empty-state { text-align: center; padding: 50px 20px; border: 2px dashed var(--line); border-radius: var(--radius); color: var(--muted); }
.empty-state i { font-size: 44px; color: var(--gold); margin-bottom: 10px; }

/* ---------- achievements ---------- */
.achieve-section { background: var(--cream); }
.achieve-card { height: 100%; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .5s var(--ease), box-shadow .5s; }
.achieve-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.achieve-img { aspect-ratio: 16 / 10; overflow: hidden; }
.achieve-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.achieve-card:hover .achieve-img img { transform: scale(1.08); }
.achieve-body { padding: 22px; }
.achieve-date { font-size: 13px; font-weight: 700; color: var(--orange); }
.achieve-body h3 { font-size: 19px; margin: 6px 0 8px; }
.achieve-body p { color: var(--muted); margin: 0; }

/* ---------- gallery mosaic ---------- */
.gallery-section { background: #fff; }
.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 16px; }
.mosaic-item { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--cream); display: block; }
.mosaic-item.m1 { grid-column: span 2; grid-row: span 2; }
.mosaic-item.m4, .mosaic-item.m5, .mosaic-item.m6 { grid-column: span 2; }
.mosaic { grid-auto-flow: dense; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.mosaic-item:hover img { transform: scale(1.1); }
.mosaic-cap { position: absolute; left: 12px; right: 12px; bottom: 12px; background: rgba(255, 255, 255, .92); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border-radius: 12px; padding: 10px 14px; transform: translateY(calc(100% + 14px)); transition: transform .5s var(--ease); }
.mosaic-item:hover .mosaic-cap, .mosaic-item:focus .mosaic-cap { transform: none; }
.mosaic-cap strong { display: block; color: var(--navy); font-family: var(--font-head); font-size: 15px; }
.mosaic-cap small { color: var(--orange); font-weight: 700; }
@media (max-width: 991px) { .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; } .mosaic-item.m4, .mosaic-item.m5, .mosaic-item.m6 { grid-column: span 1; } }
@media (max-width: 575px) { .mosaic { grid-auto-rows: 140px; gap: 10px; } .mosaic-cap { transform: none; padding: 6px 10px; } .mosaic-cap strong { font-size: 13px; } .mosaic-cap small { display: none; } }

/* ---------- videos ---------- */
.video-card { position: relative; display: block; width: 100%; border: 0; padding: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 16 / 9; background: #000; cursor: pointer; }
.video-card img { width: 100%; height: 100%; object-fit: cover; opacity: .9; transition: transform 1s var(--ease), opacity .4s; }
.video-card:hover img { transform: scale(1.06); opacity: 1; }
.video-play { position: absolute; left: 50%; top: 50%; width: 70px; height: 70px; margin: -35px 0 0 -35px; border-radius: 50%; background: var(--orange); color: #fff; display: grid; place-items: center; font-size: 24px; padding-left: 4px; }
.video-play::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--orange); animation: ping 1.8s var(--ease) infinite; }
@keyframes ping { from { transform: scale(1); opacity: .9; } to { transform: scale(1.8); opacity: 0; } }
.video-title { position: absolute; left: 0; right: 0; bottom: 0; padding: 12px 16px; background: rgba(13, 47, 74, .78); color: #fff; font-weight: 700; text-align: left; font-size: 15px; }

/* ---------- quotes ---------- */
.quotes-section { padding: 70px 0; background: var(--orange); color: #fff; text-align: center; position: relative; overflow: hidden; }
.quote { margin: 0 auto; max-width: 820px; }
.quote i { font-size: 36px; opacity: .45; }
.quote p { font-family: 'Satisfy', cursive; font-size: clamp(22px, 3vw, 34px); line-height: 1.5; margin: 10px 0 0; }

/* ---------- enquiry section & forms ---------- */
.enquiry-section { background: linear-gradient(180deg, #fff, var(--cream)); }
.contact-mini { list-style: none; padding: 0; margin: 24px 0 28px; }
.contact-mini li { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; font-weight: 700; color: var(--navy); }
.contact-mini i { width: 42px; height: 42px; flex: none; border-radius: 12px; display: grid; place-items: center; background: var(--orange-100); color: var(--orange); font-size: 18px; }
.contact-mini a { color: var(--navy); }
.contact-mini a:hover { color: var(--orange); }
.form-card { background: #fff; border-radius: 26px; padding: 34px; box-shadow: var(--shadow-lg); position: relative; border-top: 5px solid var(--orange); }
.form-card-title { font-size: 24px; margin-bottom: 20px; }
@media (max-width: 575px) { .form-card { padding: 22px 16px; } }
.enquiry-form .form-row { margin: 0 -8px; }
.enquiry-form .form-row > [class*="col"] { padding: 0 8px; }
.field { position: relative; margin-bottom: 16px; }
.field input, .field select, .field textarea { width: 100%; border: 1.5px solid var(--line); background: #FCFBF8; border-radius: 14px; padding: 22px 16px 8px; font-size: 15.5px; color: var(--ink); transition: border-color .3s, box-shadow .3s, background .3s; -webkit-appearance: none; appearance: none; font-family: var(--font-body); }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23F26522' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--orange); background: #fff; box-shadow: 0 0 0 4px rgba(242, 101, 34, .12); }
.field label { position: absolute; left: 17px; top: 15px; color: var(--muted); font-size: 15px; pointer-events: none; transition: all .25s var(--ease); background: transparent; }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field select + label { top: 5px; font-size: 11.5px; font-weight: 700; color: var(--orange); letter-spacing: .3px; text-transform: uppercase; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #D93025; animation: shake .45s; }
@keyframes shake { 20%, 60% { transform: translateX(-6px); } 40%, 80% { transform: translateX(6px); } }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.captcha-row { display: flex; gap: 12px; align-items: stretch; margin-bottom: 16px; }
.captcha-box { position: relative; flex: none; display: flex; align-items: center; background: var(--cream); border: 1.5px dashed var(--gold-600); border-radius: 14px; padding: 2px 44px 2px 4px; min-height: 58px; }
.captcha-img { display: block; border-radius: 10px; width: 150px; height: 50px; background: #f3efe4; }
.captcha-refresh { position: absolute; right: 4px; top: 50%; margin-top: -18px; width: 36px; height: 36px; border-radius: 50%; border: 0; background: #fff; color: var(--orange); box-shadow: var(--shadow-sm); transition: transform .5s var(--ease); }
.captcha-refresh:hover { transform: rotate(180deg); }
.captcha-refresh.spin i { animation: spin .6s linear; }
.captcha-row .field input { height: 100%; text-transform: uppercase; letter-spacing: 3px; font-weight: 700; }
@media (max-width: 420px) { .captcha-row { flex-direction: column; } .captcha-box { align-self: flex-start; } }
.form-alert { display: none; padding: 12px 16px; border-radius: 12px; margin-bottom: 14px; font-weight: 600; font-size: 15px; }
.form-alert.show { display: block; animation: cap-in .5s var(--ease) forwards; opacity: 0; transform: translateY(8px); }
.form-alert.ok { background: #E6F6EC; color: #16723A; border: 1px solid #BFE6CD; }
.form-alert.err { background: #FDECEA; color: #B3261E; border: 1px solid #F5C6C2; }
.form-note { font-size: 13px; color: var(--muted); text-align: center; margin: 12px 0 0; }
.enquiry-form button[type=submit].loading { pointer-events: none; opacity: .8; }
.enquiry-form button[type=submit].loading i { animation: spin 1s linear infinite; }
.enquiry-form button[type=submit].loading i::before { content: "\f110"; }
.form-success { text-align: center; padding: 30px 10px; }
.form-success .tick { width: 90px; height: 90px; margin: 0 auto 18px; border-radius: 50%; background: #E6F6EC; display: grid; place-items: center; }
.form-success .tick svg { width: 50px; height: 50px; stroke: #16A34A; stroke-width: 5; fill: none; stroke-dasharray: 60; stroke-dashoffset: 60; animation: draw .7s .2s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ---------- enquiry modal & popup ---------- */
.enq-modal, .site-popup { position: fixed; inset: 0; z-index: 3000; display: grid; place-items: center; padding: 16px; visibility: hidden; }
.enq-modal-backdrop, .site-popup-backdrop { position: absolute; inset: 0; background: rgba(10, 36, 56, .6); opacity: 0; transition: opacity .4s var(--ease); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.enq-modal-dialog, .site-popup-dialog { position: relative; width: 100%; max-width: 640px; max-height: calc(100vh - 32px); overflow-y: auto; background: #fff; border-radius: 26px; padding: 34px; box-shadow: var(--shadow-lg); transform: translateY(40px) scale(.96); opacity: 0; transition: all .5s var(--ease); }
.enq-modal.open, .site-popup.open { visibility: visible; }
.enq-modal.open .enq-modal-backdrop, .site-popup.open .site-popup-backdrop { opacity: 1; }
.enq-modal.open .enq-modal-dialog, .site-popup.open .site-popup-dialog { transform: none; opacity: 1; }
.enq-modal-close, .site-popup-close { position: absolute; right: 16px; top: 16px; width: 40px; height: 40px; border-radius: 50%; border: 0; background: var(--orange-100); color: var(--orange); z-index: 2; transition: transform .4s var(--ease), background .3s; }
.enq-modal-close:hover, .site-popup-close:hover { transform: rotate(90deg); background: var(--orange); color: #fff; }
.enq-modal-head h2 { font-size: 26px; margin-bottom: 20px; padding-right: 40px; }
.site-popup-dialog { max-width: 560px; padding: 0; }
.site-popup-title { background: var(--orange); color: #fff; margin: 0; padding: 18px 60px 18px 24px; font-size: 20px; }
.site-popup-body { padding: 18px; }
.site-popup-body img { display: block; margin: 0 auto; border-radius: 12px; }
.site-popup-close { background: rgba(255, 255, 255, .9); }
@media (max-width: 575px) { .enq-modal-dialog { padding: 24px 16px; } }
body.modal-lock { overflow: hidden; }

/* ---------- floating buttons ---------- */
.float-actions { position: fixed; right: 18px; bottom: 18px; z-index: 1500; display: flex; flex-direction: column; gap: 12px; align-items: center; }
.float-btn { width: 52px; height: 52px; border-radius: 50%; border: 0; display: grid; place-items: center; font-size: 22px; color: #fff; box-shadow: 0 10px 24px rgba(0, 0, 0, .2); position: relative; transition: transform .4s var(--ease-back); }
.float-btn:hover { transform: scale(1.1); color: #fff; }
.float-wa { background: #25D366; }
.float-wa::after, .float-enq::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid currentColor; animation: ping 2s var(--ease) infinite; }
.float-wa::after { color: #25D366; }
.float-enq { background: var(--orange); }
.float-enq::after { color: var(--orange); }
.back-top { background: var(--navy); font-size: 18px; opacity: 0; transform: translateY(20px) scale(.8); pointer-events: none; }
.back-top.show { opacity: 1; transform: none; pointer-events: auto; }
.back-top svg { position: absolute; inset: -4px; width: 60px; height: 60px; transform: rotate(-90deg); }
.back-top circle { fill: none; stroke: var(--gold); stroke-width: 3; stroke-dasharray: 126; stroke-dashoffset: var(--p, 126); stroke-linecap: round; }
@media (max-width: 575px) { .float-actions { right: 12px; bottom: 12px; } .float-btn { width: 46px; height: 46px; font-size: 19px; } .back-top svg { width: 54px; height: 54px; } }

/* ---------- footer ---------- */
.site-footer { position: relative; background: var(--navy-800); color: rgba(255, 255, 255, .75); margin-top: 110px; }
.footer-wave { position: absolute; top: -79px; left: 0; right: 0; height: 80px; overflow: hidden; line-height: 0; }
.footer-wave svg { width: 100%; height: 100%; }
.footer-wave path { fill: var(--navy-800); }
.footer-cta { position: relative; top: -60px; margin-bottom: -20px; }
.footer-cta-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; background: var(--orange); border-radius: 26px; padding: 34px 40px; box-shadow: 0 20px 50px rgba(242, 101, 34, .35); position: relative; overflow: hidden; }
.footer-cta-inner::before { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; border: 40px solid rgba(255, 255, 255, .08); right: -80px; top: -140px; animation: spin 30s linear infinite; }
.footer-cta-inner h2 { color: #fff; font-size: clamp(22px, 2.6vw, 30px); margin: 0 0 4px; }
.footer-cta-inner p { color: rgba(255, 255, 255, .9); margin: 0; }
.footer-cta-btns { display: flex; flex-wrap: wrap; gap: 12px; position: relative; }
@media (max-width: 575px) { .footer-cta-inner { padding: 26px 20px; } }
.footer-main { padding-bottom: 40px; }
.footer-col { margin-bottom: 30px; }
.footer-logo img { width: 80px; height: 80px; background: #fff; border-radius: 50%; padding: 4px; transition: transform .8s var(--ease); }
.footer-logo:hover img { transform: rotate(360deg); }
.footer-title-name { color: #fff; font-size: 18px; margin: 14px 0 6px; }
.footer-tag { font-family: 'Satisfy', cursive; color: var(--gold); font-size: 20px; }
.site-footer h4 { color: #fff; font-size: 18px; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.site-footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px; border-radius: 3px; background: var(--orange); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255, 255, 255, .75); display: inline-flex; align-items: center; gap: 8px; transition: all .35s var(--ease); }
.footer-links a::before { content: "\f105"; font-family: FontAwesome; color: var(--orange); transition: transform .35s var(--ease); }
.footer-links a:hover { color: #fff; transform: translateX(6px); }
.footer-contact { list-style: none; padding: 0; margin: 0 0 18px; }
.footer-contact li { display: flex; gap: 14px; margin-bottom: 14px; }
.footer-contact i { width: 36px; height: 36px; flex: none; border-radius: 10px; display: grid; place-items: center; background: rgba(255, 255, 255, .08); color: var(--gold); }
.footer-contact a { color: rgba(255, 255, 255, .85); }
.footer-contact a:hover, .footer-directions:hover { color: var(--gold); }
.footer-directions { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 700; padding: 10px 18px; border: 1.5px solid rgba(255, 255, 255, .25); border-radius: 30px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, .08); color: #fff; transition: all .4s var(--ease-back); }
.footer-social a:hover { background: var(--orange); transform: translateY(-4px) rotate(8deg); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .08); padding: 18px 0; font-size: 14px; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--gold); }
@media (max-width: 575px) { .footer-bottom .container { justify-content: center !important; text-align: center; gap: 4px; } }

/* ---------- inner pages ---------- */
.page-banner { position: relative; padding: 70px 0 64px; background: var(--navy); overflow: hidden; color: #fff; }
.page-banner::before { content: ""; position: absolute; inset: 0; background: url('../../images/logo.png') no-repeat right 6% center / 260px; opacity: .06; animation: spin 60s linear infinite; transform-origin: 88% 50%; }
.page-banner .container { position: relative; z-index: 2; }
.page-banner-title { color: #fff; font-size: clamp(28px, 4vw, 48px); font-weight: 800; margin-bottom: 14px; }
.pb-shape { position: absolute; border-radius: 50%; z-index: 1; }
.pb-shape.s1 { width: 260px; height: 260px; background: var(--orange); opacity: .9; left: -90px; bottom: -150px; animation: float-y 7s ease-in-out infinite; }
.pb-shape.s2 { width: 90px; height: 90px; background: var(--gold); right: 22%; top: -40px; animation: float-y 5s ease-in-out infinite reverse; }
.pb-shape.s3 { width: 18px; height: 18px; background: var(--blue-400); right: 12%; bottom: 30px; animation: float-y 4s ease-in-out infinite; }
.pb-dots { position: absolute; left: 30%; top: 20px; width: 120px; height: 80px; background-image: radial-gradient(rgba(255, 255, 255, .35) 1.5px, transparent 2px); background-size: 14px 14px; z-index: 1; }
.crumbs { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 8px 18px; margin: 0; background: rgba(255, 255, 255, .1); border-radius: 30px; width: fit-content; font-size: 14px; font-weight: 600; }
.crumbs li + li::before { content: "\f105"; font-family: FontAwesome; margin-right: 8px; color: var(--gold); }
.crumbs a { color: rgba(255, 255, 255, .8); }
.crumbs a:hover { color: var(--gold); }
.crumbs li[aria-current] { color: #fff; max-width: 60vw; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.page-body { padding-top: 70px; }
.content-card { background: #fff; border-radius: 24px; padding: 40px; box-shadow: var(--shadow); border: 1px solid var(--line); }
@media (max-width: 575px) { .content-card { padding: 22px 16px; } }
.content-hero-img { margin: -10px -10px 26px; border-radius: 18px; overflow: hidden; }
.content-hero-img img { width: 100%; display: block; }
.page-section-content { margin-top: 36px; padding-top: 30px; border-top: 1px dashed var(--line); }
.page-section-content h2 { font-size: 26px; }
.sticky-side { position: sticky; top: 100px; }
.side-menu { background: #fff; border-radius: 22px; box-shadow: var(--shadow); overflow: hidden; border: 1px solid var(--line); }
.side-menu h2 { background: var(--orange); color: #fff; font-size: 19px; margin: 0; padding: 18px 22px; }
.side-menu ul { list-style: none; margin: 0; padding: 10px; }
.side-menu a { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; border-radius: 12px; color: var(--navy); font-weight: 700; transition: all .35s var(--ease); }
.side-menu a:hover, .side-menu li.active a { background: var(--cream); color: var(--orange); padding-left: 20px; }
.side-cta { margin-top: 24px; background: var(--navy); color: #fff; border-radius: 22px; padding: 30px 26px; text-align: center; position: relative; overflow: hidden; }
.side-cta::after { content: ""; position: absolute; width: 160px; height: 160px; border-radius: 50%; background: var(--orange); opacity: .25; right: -60px; top: -60px; animation: float-y 6s ease-in-out infinite; }
.side-cta > i { font-size: 40px; color: var(--gold); }
.side-cta h3 { color: #fff; font-size: 22px; margin: 10px 0 6px; }
.side-cta p { color: rgba(255, 255, 255, .8); }

/* typography for text written in the CMS editor */
.cms-content { overflow-wrap: break-word; }
.cms-content h1, .cms-content h2, .cms-content h3 { margin: 1.2em 0 .6em; }
.cms-content h1 { font-size: 30px; } .cms-content h2 { font-size: 25px; } .cms-content h3 { font-size: 21px; }
.cms-content > :first-child { margin-top: 0; }
.cms-content p { margin-bottom: 1em; }
.cms-content img { border-radius: 12px; height: auto !important; }
.cms-content table { width: 100% !important; max-width: 100%; border-collapse: collapse; margin: 1em auto; font-size: 15px; display: table; }
.table-scroll { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1em 0; border-radius: 12px; box-shadow: var(--shadow-sm); }
.table-scroll > table { margin: 0; }
.cms-content table td, .cms-content table th { border: 1px solid var(--line); padding: 10px 12px; }
.cms-content table tr:nth-child(even) { background: #FCFAF4; }
.cms-content table th, .cms-content table tr:first-child td { background: var(--navy); color: #fff; font-weight: 700; }
.cms-content ul li::marker { color: var(--orange); }
.cms-content a { font-weight: 700; }
/* Every PDF link written in the CMS becomes the same download button (with or without the btn class) */
.cms-content a[href$=".pdf" i], .cms-content a.btn-warning { display: inline-flex; align-items: center; gap: 8px; background: #FFC107; color: #212529 !important; border: 0; padding: 8px 16px 8px 10px; border-radius: 30px; font-family: var(--font-head); font-size: 14px; font-weight: 600; line-height: 1.3; white-space: nowrap; text-decoration: none; box-shadow: 0 6px 14px rgba(255, 193, 7, .35); transition: transform .3s var(--ease), box-shadow .3s, background .3s; }
.cms-content a[href$=".pdf" i]::before, .cms-content a.btn-warning::before { content: "\f019"; font-family: FontAwesome; width: 26px; height: 26px; border-radius: 50%; background: rgba(255, 255, 255, .55); display: inline-grid; place-items: center; font-size: 13px; transition: transform .35s var(--ease); }
.cms-content a[href$=".pdf" i]:hover, .cms-content a.btn-warning:hover { background: #FFB300; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(255, 179, 0, .4); }
.cms-content a[href$=".pdf" i]:hover::before, .cms-content a.btn-warning:hover::before { transform: translateY(2px); }
.cms-content iframe { max-width: 100%; border-radius: 12px; }
.cms-content blockquote { border-left: 4px solid var(--orange); background: var(--cream); padding: 16px 20px; border-radius: 0 12px 12px 0; }

/* news detail */
.news-meta { color: var(--orange); font-weight: 700; font-size: 14px; margin-bottom: 8px; }
.news-detail-title { font-size: clamp(24px, 3vw, 34px); margin-bottom: 18px; }
.news-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0; }
.share-row { display: flex; align-items: center; gap: 10px; padding-top: 20px; border-top: 1px solid var(--line); font-weight: 700; color: var(--navy); }
.share-row a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; color: #fff; transition: transform .35s var(--ease-back); }
.share-row a:hover { transform: translateY(-4px); color: #fff; }
.s-wa { background: #25D366; } .s-fb { background: #1877F2; } .s-tw { background: #111; }
.recent-list { list-style: none; margin: 0; padding: 8px 12px; }
.recent-list a { display: flex; gap: 12px; align-items: center; padding: 10px; border-radius: 12px; transition: background .3s; }
.recent-list a:hover { background: var(--cream); }
.recent-thumb { width: 64px; height: 64px; flex: none; border-radius: 12px; overflow: hidden; background: var(--cream); display: grid; place-items: center; }
.recent-thumb img { width: 100%; height: 100%; object-fit: cover; }
.recent-thumb img.ph { width: 40px; height: 40px; }
.recent-list strong { display: block; color: var(--navy); font-size: 14.5px; line-height: 1.35; }
.recent-list small { color: var(--muted); }
.pager { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.pager a { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); font-weight: 700; color: var(--navy); }
.pager a.active, .pager a:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

/* gallery */
.album-card { display: block; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform .5s var(--ease), box-shadow .5s; }
.album-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.album-img { display: block; position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream); }
.album-img > img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.album-card:hover .album-img > img { transform: scale(1.1); }
.album-count { position: absolute; right: 14px; top: 14px; background: rgba(255, 255, 255, .92); color: var(--navy); font-weight: 700; font-size: 13px; padding: 5px 12px; border-radius: 20px; }
.album-body { display: block; padding: 18px 20px; }
.album-body strong { display: block; color: var(--navy); font-family: var(--font-head); font-size: 17px; }
.album-body small { color: var(--orange); font-weight: 700; }
.album-head { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.photo-grid { columns: 4 240px; column-gap: 14px; }
.photo-item { position: relative; display: block; margin-bottom: 14px; border-radius: 14px; overflow: hidden; break-inside: avoid; background: var(--cream); }
.photo-item img { width: 100%; display: block; transition: transform .9s var(--ease); }
.photo-item:hover img { transform: scale(1.08); }
.photo-zoom { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(13, 47, 74, .35); color: #fff; font-size: 30px; opacity: 0; transition: opacity .4s; }
.photo-zoom i { transform: scale(.5); transition: transform .45s var(--ease-back); }
.photo-item:hover .photo-zoom { opacity: 1; }
.photo-item:hover .photo-zoom i { transform: none; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 4000; background: rgba(6, 20, 32, .94); display: flex; align-items: center; justify-content: center; visibility: hidden; opacity: 0; transition: opacity .4s var(--ease), visibility .4s; }
.lightbox.open { visibility: visible; opacity: 1; }
.lb-stage { margin: 0; max-width: 92vw; max-height: 86vh; text-align: center; }
.lb-stage img { max-width: 92vw; max-height: 80vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0, 0, 0, .5); transition: opacity .3s, transform .45s var(--ease); }
.lb-stage img.swap { opacity: 0; transform: scale(.94); }
.lb-stage figcaption { color: rgba(255, 255, 255, .85); margin-top: 12px; font-weight: 600; }
.lb-close, .lb-prev, .lb-next { position: absolute; border: 0; background: rgba(255, 255, 255, .1); color: #fff; width: 52px; height: 52px; border-radius: 50%; font-size: 24px; transition: background .3s, transform .3s; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--orange); }
.lb-close { top: 18px; right: 18px; }
.lb-prev { left: 18px; top: 50%; margin-top: -26px; }
.lb-next { right: 18px; top: 50%; margin-top: -26px; }
.lb-count { position: absolute; top: 28px; left: 24px; color: rgba(255, 255, 255, .7); font-weight: 700; }
@media (max-width: 575px) { .lb-prev, .lb-next { top: auto; bottom: 20px; margin: 0; } }

/* calendar */
.cal-card { background: #fff; border-radius: 24px; box-shadow: var(--shadow); padding: 24px; border: 1px solid var(--line); }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.cal-head h2 { margin: 0; font-size: 24px; }
.cal-nav { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--orange-100); color: var(--orange); font-size: 22px; transition: all .35s var(--ease); }
.cal-nav:hover { background: var(--orange); color: #fff; transform: scale(1.1); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-dow { text-align: center; font-weight: 800; font-size: 12.5px; color: var(--muted); text-transform: uppercase; padding: 8px 0; }
.cal-cell { min-height: 92px; border-radius: 12px; background: #FCFBF8; border: 1px solid var(--line); padding: 6px; overflow: hidden; animation: cell-in .5s var(--ease) both; animation-delay: calc(var(--i, 0) * 15ms); }
@keyframes cell-in { from { opacity: 0; transform: scale(.85); } }
.cal-cell.empty { background: transparent; border: 0; }
.cal-cell.sunday .cal-day { color: #C0392B; }
.cal-day { font-weight: 800; font-family: var(--font-head); color: var(--navy); }
.cal-cell.today { border: 2px solid var(--orange); background: var(--orange-100); }
.cal-cell.has-event { background: var(--blue-100); }
.cal-ev { display: block; margin-top: 4px; font-size: 11.5px; line-height: 1.3; background: var(--blue); color: #fff; border-radius: 6px; padding: 3px 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 600; }
@media (max-width: 575px) { .cal-card { padding: 14px 10px; } .cal-cell { min-height: 54px; padding: 4px; } .cal-ev { font-size: 0; height: 6px; padding: 0; border-radius: 3px; } .cal-dow { font-size: 10.5px; } }

/* newsletter */
.issue-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 34px; }
.issue-tabs a { padding: 10px 20px; border-radius: 30px; background: #fff; border: 1.5px solid var(--line); font-weight: 700; color: var(--navy); transition: all .35s var(--ease); }
.issue-tabs a.active, .issue-tabs a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.newsletter-pages { max-width: 860px; margin: 0 auto; display: grid; gap: 20px; }
.newsletter-pages img { width: 100%; border-radius: 12px; box-shadow: var(--shadow); }

/* contact */
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.contact-card { display: block; text-align: center; background: #fff; border-radius: 22px; padding: 32px 22px; box-shadow: var(--shadow); border: 1px solid var(--line); color: var(--ink); transition: transform .5s var(--ease), box-shadow .5s; }
.contact-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); color: var(--ink); }
.cc-icon { width: 70px; height: 70px; margin: 0 auto 16px; border-radius: 22px; display: grid; place-items: center; background: var(--orange); color: #fff; font-size: 28px; transition: transform .6s var(--ease-back), border-radius .6s; box-shadow: 0 12px 24px rgba(242, 101, 34, .3); }
.contact-card:hover .cc-icon { transform: rotate(-10deg) scale(1.08); border-radius: 50%; }
.contact-card h3 { font-size: 19px; }
.contact-card p { color: var(--muted); margin: 0; }
.map-section { position: relative; margin-top: 30px; }
.map-frame { height: 480px; filter: saturate(1.05); }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-card-wrap { position: relative; }
.map-card { position: relative; margin-top: -90px; background: #fff; border-radius: 22px; box-shadow: var(--shadow-lg); padding: 22px 26px; display: flex; flex-wrap: wrap; align-items: center; gap: 18px; max-width: 760px; }
.map-pin { width: 56px; height: 56px; flex: none; border-radius: 50%; display: grid; place-items: center; background: var(--orange); color: #fff; font-size: 24px; animation: float-y 3s ease-in-out infinite; }
.map-card h3 { font-size: 18px; margin: 0; }
.map-card p { margin: 0; color: var(--muted); font-size: 14.5px; }
.map-card > div { flex: 1; min-width: 200px; }
@media (max-width: 575px) { .map-frame { height: 340px; } .map-card { margin: -60px 0 0; padding: 18px; } }

/* 404 */
.notfound { padding: 110px 0; }
.nf-code { display: flex; justify-content: center; align-items: center; gap: 14px; margin-bottom: 20px; }
.nf-code span { font-family: var(--font-head); font-weight: 800; font-size: clamp(90px, 16vw, 170px); color: var(--orange); line-height: 1; }
.nf-code img { width: clamp(90px, 14vw, 140px); height: auto; }
.notfound .btn-outline-brand { margin-left: 8px; }

/* tilt helper */
.tilt { will-change: transform; }

/* respect "reduce motion" */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  [data-anim] { opacity: 1; transform: none; }
  .ticker-move { animation: none; }
}

/* ---------- Owl Carousel core (was bundled in the old weaver.css) ---------- */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;cursor:hand;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
.owl-theme .owl-dots, .owl-theme .owl-nav { text-align: center; } .owl-theme .owl-dots .owl-dot span { width: 10px; height: 10px; margin: 5px 5px; background: #D6D6D6; display: block; border-radius: 30px; transition: all .4s; } .owl-theme .owl-dots .owl-dot.active span { background: var(--orange); width: 28px; } .owl-carousel button.owl-dot { border: 0; background: none; padding: 0; }

/* ==========================================================================
   Extra motion layer
   ========================================================================== */

/* floating particles (generated by site.js inside [data-particles]) */
.particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.particle { position: absolute; bottom: -40px; border-radius: 50%; opacity: 0; animation: particle-rise linear infinite; }
.particle.ring { background: transparent !important; border: 2px solid currentColor; }
.particle.plus { border-radius: 0; background: transparent !important; }
.particle.plus::before, .particle.plus::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; }
.particle.plus::before { left: 42%; top: 0; width: 16%; height: 100%; }
.particle.plus::after { top: 42%; left: 0; height: 16%; width: 100%; }
@keyframes particle-rise {
  0% { transform: translate3d(0, 0, 0) rotate(0deg); opacity: 0; }
  10% { opacity: var(--o, .5); }
  50% { transform: translate3d(var(--dx, 30px), calc(var(--h, 600px) * -.5), 0) rotate(180deg); }
  90% { opacity: var(--o, .5); }
  100% { transform: translate3d(calc(var(--dx, 30px) * -1), calc(var(--h, 600px) * -1 - 60px), 0) rotate(360deg); opacity: 0; }
}
.page-banner .particles { z-index: 1; }

/* image reveal: a coloured curtain wipes away when the image scrolls into view */
.img-reveal { position: relative; overflow: hidden; }
.img-reveal::after { content: ""; position: absolute; inset: 0; background: var(--orange); transform: scaleX(1); transform-origin: right; transition: transform 1.1s cubic-bezier(.77, 0, .18, 1); z-index: 3; pointer-events: none; }
.img-reveal > img, .img-reveal > .img-placeholder { transform: scale(1.25); transition: transform 1.6s var(--ease); }
.img-reveal.revealed::after { transform: scaleX(0); }
.img-reveal.revealed > img, .img-reveal.revealed > .img-placeholder { transform: scale(1); }
.news-card:hover .img-reveal.revealed > img, .album-card:hover .img-reveal.revealed > img, .mosaic-item.revealed:hover img { transform: scale(1.1); transition-duration: 1s; }
.mosaic-item.img-reveal:nth-child(3n+2)::after { background: var(--blue); }
.mosaic-item.img-reveal:nth-child(3n)::after { background: var(--gold); }
.about-img.img-reveal::after { background: var(--blue); }

/* headings: words rise one by one when the heading scrolls into view */
.words-reveal .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .12em; margin-bottom: -.12em; }
.words-reveal .w > span { display: inline-block; transform: translateY(110%) rotate(5deg); transform-origin: left bottom; transition: transform .9s var(--ease); transition-delay: calc(var(--i) * 70ms + 150ms); }
.words-reveal.in .w > span { transform: none; }

/* section titles get a drawn underline */
.section-title::after { content: ""; display: block; width: 0; height: 4px; margin-top: 12px; border-radius: 4px; background: linear-gradient(90deg, var(--orange), var(--gold)); transition: width 1s var(--ease) .6s; }
.text-center .section-title::after, .section-head.text-center .section-title::after { margin-left: auto; margin-right: auto; }
.section-title.in::after { width: 70px; }
.section-head.d-flex .section-title::after { display: none; }

/* moving text band */
.marquee-band { background: var(--navy); padding: 22px 0; overflow: hidden; transform: rotate(-1.6deg) scale(1.03); margin: 30px 0 40px; box-shadow: 0 20px 40px rgba(13, 47, 74, .18); position: relative; z-index: 2; border-top: 6px solid var(--orange); }
.marquee-row { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee-band:hover .marquee-row { animation-play-state: paused; }
.marquee-set { display: flex; align-items: center; gap: 34px; padding-right: 34px; }
.marquee-set span { font-family: var(--font-head); font-weight: 800; font-size: clamp(22px, 3vw, 38px); color: #fff; white-space: nowrap; text-transform: uppercase; letter-spacing: 1px; }
.marquee-set span.outline { color: transparent; -webkit-text-stroke: 1.5px var(--gold); }
.marquee-set i { color: var(--orange); font-size: 22px; animation: spin 6s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (max-width: 575px) { .marquee-band { padding: 14px 0; margin: 20px 0 30px; } .marquee-set { gap: 20px; padding-right: 20px; } .marquee-set i { font-size: 15px; } }

/* moving waves */
.banner-waves { position: absolute; left: 0; right: 0; bottom: -1px; height: 46px; overflow: hidden; z-index: 2; pointer-events: none; }
.banner-waves .wave { position: absolute; bottom: 0; left: 0; width: 200%; height: 100%; }
.banner-waves .w1 path { fill: #fff; }
.banner-waves .w2 path { fill: rgba(255, 255, 255, .35); }
.banner-waves .w1 { animation: wave-move 14s linear infinite; }
.banner-waves .w2 { animation: wave-move 9s linear infinite reverse; bottom: 6px; }
@keyframes wave-move { to { transform: translateX(-50%); } }
.page-banner { padding-bottom: 96px; }
.footer-wave { overflow: hidden; }
.footer-wave .fw { position: absolute; bottom: 0; left: 0; width: 200% !important; height: 100%; }
.footer-wave .fw1 { animation: wave-move 18s linear infinite; }
.footer-wave .fw2 { animation: wave-move 12s linear infinite reverse; opacity: .45; }
.footer-wave .fw2 path { fill: var(--orange); }

/* highlight icons bob and pulse */
.highlight-card.in .highlight-icon { animation: bob 3.2s ease-in-out infinite; animation-delay: var(--d, 0ms); }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.highlight-icon::after { content: ""; position: absolute; inset: -6px; border-radius: 30px; border: 2px solid var(--hc); opacity: 0; animation: icon-pulse 2.6s var(--ease) infinite; animation-delay: var(--d, 0ms); }
.highlight-icon { position: relative; }
@keyframes icon-pulse { 0% { transform: scale(.9); opacity: .7; } 100% { transform: scale(1.35); opacity: 0; } }
.highlight-card:hover .highlight-icon { animation: none; }

/* drifting decoration */
.about-dots { animation: drift 9s ease-in-out infinite; }
@keyframes drift { 0%, 100% { transform: translate(0, 0) rotate(0); } 33% { transform: translate(12px, -10px) rotate(6deg); } 66% { transform: translate(-8px, 8px) rotate(-4deg); } }

/* custom cursor (desktop with a mouse only) */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998; border-radius: 50%; opacity: 0; transition: opacity .3s, width .35s var(--ease), height .35s var(--ease), margin .35s var(--ease), background .35s, border-color .35s; }
.cursor-dot { width: 8px; height: 8px; margin: -4px 0 0 -4px; background: var(--orange); }
.cursor-ring { width: 38px; height: 38px; margin: -19px 0 0 -19px; border: 2px solid rgba(242, 101, 34, .55); }
.has-cursor .cursor-dot, .has-cursor .cursor-ring { opacity: 1; }
.cursor-ring.hover { width: 64px; height: 64px; margin: -32px 0 0 -32px; background: rgba(242, 101, 34, .12); border-color: var(--orange); }
.cursor-dot.hover { background: var(--gold); }

@media (prefers-reduced-motion: reduce) {
  .particles, .cursor-dot, .cursor-ring { display: none; }
  .img-reveal::after { display: none; }
  .img-reveal > img, .img-reveal > .img-placeholder { transform: none; }
  .words-reveal .w > span { transform: none; }
  .marquee-row, .banner-waves .wave, .footer-wave .fw { animation: none; }
}

/* never allow sideways scrolling from tilted/animated elements (clip keeps the sticky header working) */
html, body { overflow-x: clip; }

/* ==========================================================================
   Hero collage slide (first slide) — angled photo tiles from the gallery
   ========================================================================== */
.collage-slide { background: #fff; }
.collage-slide .cl { position: absolute; overflow: hidden; background: var(--cream); }
.collage-slide .cl img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; display: block; }
/* tile boxes (as % of the slide) and their angled shapes */
.collage-slide .cl1 { left: 0;      top: 0;   width: 44%;   height: 49%;  clip-path: polygon(0 0, 100% 0, 90.9% 100%, 0 100%); }
.collage-slide .cl2 { left: 0;      top: 51%; width: 39.8%; height: 49%;  clip-path: polygon(0 0, 100% 0, 89.9% 100%, 0 100%); }
.collage-slide .cl3 { left: 40.6%;  top: 0;   width: 32.4%; height: 49%;  clip-path: polygon(12.3% 0, 100% 0, 100% 100%, 0 100%); }
.collage-slide .cl4 { left: 36.4%;  top: 51%; width: 19.1%; height: 49%;  clip-path: polygon(20.9% 0, 100% 0, 81.7% 100%, 0 100%); }
.collage-slide .cl5 { left: 52.6%;  top: 51%; width: 20.4%; height: 49%;  clip-path: polygon(17.2% 0, 100% 0, 86.3% 100%, 0 100%); }
.collage-slide .cl6 { left: 70.8%;  top: 0;   width: 29.2%; height: 100%; clip-path: polygon(9.6% 0, 100% 0, 100% 100%, 0 100%); }

/* entrance: tiles fly in from different sides */
.hero .owl-item.active .collage-slide .cl { animation: cl-in 1.1s cubic-bezier(.2, .8, .2, 1) both; }
.hero .owl-item.active .collage-slide .cl img { animation: cl-zoom 6s ease-out both; }
.hero .owl-item.active .collage-slide .cl1 { --fx: -60px; --fy: -40px; animation-delay: .05s; }
.hero .owl-item.active .collage-slide .cl2 { --fx: -60px; --fy: 40px;  animation-delay: .2s; }
.hero .owl-item.active .collage-slide .cl3 { --fx: 0;     --fy: -70px; animation-delay: .35s; }
.hero .owl-item.active .collage-slide .cl4 { --fx: 0;     --fy: 70px;  animation-delay: .5s; }
.hero .owl-item.active .collage-slide .cl5 { --fx: 30px;  --fy: 70px;  animation-delay: .6s; }
.hero .owl-item.active .collage-slide .cl6 { --fx: 70px;  --fy: 0;     animation-delay: .3s; }
@keyframes cl-in { from { opacity: 0; transform: translate(var(--fx, 0), var(--fy, 0)) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes cl-zoom { from { transform: scale(1.12); } to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .hero .owl-item.active .collage-slide .cl, .hero .owl-item.active .collage-slide .cl img { animation: none; }
}
