:root {
  --gold: #f5bf03;
  --dark: #0a0e14;
  --navy: #0f1f35;
  --text: #1a1f28;
  --muted: #5f6b7b;
  --line: #e6e9ef;
  --bg: #ffffff;
  --bg-soft: #f8f9fc;
  --radius: 12px;
  --shadow: 0 18px 40px rgba(10, 14, 20, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.12;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.01em;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.skip-link { position: absolute; left: -999px; }
.skip-link:focus {
  left: 10px;
  top: 10px;
  z-index: 1000;
  background: #111;
  color: #fff;
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
}

.container {
  width: min(1180px, calc(100% - 2.25rem));
  margin-inline: auto;
}

.section { padding: 6.2rem 0; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.74rem;
  font-weight: 700;
  color: #8a6a00;
  margin-bottom: 0.8rem;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(13, 20, 30, 0.08);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand img {
  width: min(210px, 44vw);
  height: auto;
}

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

.main-nav .nav-item {
  position: relative;
}

.main-nav a {
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #243042;
  border-radius: 8px;
  padding: 0.58rem 0.78rem;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}

.home .site-header {
  background: transparent;
  backdrop-filter: none;
}

.home .site-header:not(.scrolled) .main-nav a {
  color: #f4f7ff;
}

.submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 250px;
  background: rgba(9, 15, 27, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 0.35rem;
  display: none;
  z-index: 60;
}

.submenu a {
  display: block;
  white-space: nowrap;
  color: #e6ecfb;
  font-size: 0.69rem;
  padding: 0.52rem 0.55rem;
}

.site-header.scrolled .submenu {
  background: rgba(255, 255, 255, 0.98);
  border-color: #d9e1ee;
}

.site-header.scrolled .submenu a {
  color: #1f2d41;
}

.home .site-header:not(.scrolled) .submenu {
  background: rgba(9, 15, 27, 0.95);
  border-color: rgba(255, 255, 255, 0.14);
}

.home .site-header:not(.scrolled) .submenu a {
  color: #e6ecfb;
}

.has-submenu:hover .submenu {
  display: block;
}

.main-nav a:hover {
  opacity: 0.9;
  background: rgba(255, 255, 255, 0.12);
}

.site-header.scrolled .main-nav a:hover {
  background: rgba(36, 48, 66, 0.08);
}

.btn,
.main-nav .btn {
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0.68rem 1rem;
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover,
.main-nav .btn:hover {
  transform: translateY(-1px);
  opacity: 0.97;
}

.btn-gold,
.main-nav .btn-gold {
  background: linear-gradient(120deg, var(--gold), #ffd644);
  color: #2f2300;
  box-shadow: 0 10px 22px rgba(245, 191, 3, 0.28);
}

.btn-light {
  background: #fff;
  color: #151a22;
  border-color: #d8dde8;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1f2b3d;
  margin: 5px 0;
}

.home .site-header:not(.scrolled) .menu-toggle span {
  background: #fff;
}

.hero {
  min-height: 94vh;
  position: relative;
  display: grid;
  align-items: center;
  padding-top: 88px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
  background-image: var(--hero-image, url("assets/images/image4.jpeg"));
  transform: scale(1.03);
  transition: opacity 0.35s ease;
}

.hero.is-fading .hero-bg {
  opacity: 0.35;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 18, 31, 0.76), rgba(10, 18, 31, 0.5));
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 4rem 0;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 6rem);
  margin-bottom: 0.8rem;
}

.hero p {
  max-width: 750px;
  margin: 0 auto 1.8rem;
  color: #e5ebf8;
}

.page-hero {
  margin-top: 78px;
  min-height: 42vh;
  display: grid;
  align-items: end;
  background: linear-gradient(120deg, rgba(11, 27, 53, 0.92), rgba(13, 46, 92, 0.82)),
    url("assets/images/image3.jpeg") center/cover no-repeat;
  color: #fff;
}

.page-hero .inner {
  padding: 4.2rem 0 3rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: #dce5f4;
  max-width: 760px;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.25rem;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.45rem;
  background: #fff;
  box-shadow: 0 10px 28px rgba(14, 22, 35, 0.05);
}

.card h3 { font-size: 1.55rem; margin-bottom: 0.6rem; }
.card p { color: var(--muted); }

.about-left {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 460px;
  background: url("assets/images/image30.jpeg") center/cover no-repeat;
}

.about-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 20, 0.28), rgba(10, 14, 20, 0.58));
}

.about-left .badge {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 1;
  color: #fff;
}

.about-left .badge b {
  display: block;
  font-size: 4rem;
  line-height: 0.9;
  color: var(--gold);
}

.section-title {
  text-align: center;
  margin-bottom: 1.8rem;
}

.section-title h2 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  margin-bottom: 0.45rem;
}

.section-title p { color: var(--muted); }

.testimonial-clean-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-clean-grid .card {
  min-height: 190px;
}

.testimonial-clean-grid p {
  color: #4f5e73;
}

.testimonial-clean-grid h4 {
  margin-top: 0.85rem;
  color: #111a26;
  font-size: 1.05rem;
}

.diff-grid .card {
  position: relative;
  min-height: 220px;
}

.diff-grid .card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.5rem;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: #e2e7f0;
}

.stats .card {
  text-align: center;
  min-height: 170px;
}

.stats h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.event-wrap {
  border-radius: 16px;
  overflow: hidden;
  background: #0f1f35;
  color: #fff;
}

.event-left {
  padding: 2rem;
  background: linear-gradient(145deg, rgba(7, 17, 29, 0.9), rgba(12, 34, 63, 0.82));
}

.event-left h2 { font-size: clamp(1.8rem, 4vw, 3.1rem); margin-bottom: 0.6rem; }
.event-left p { color: #d2dbee; }

.event-slider {
  position: relative;
  background: #fff;
  color: #1b2431;
  min-height: 360px;
}

.event-slide {
  display: none;
  height: 100%;
}

.event-slide.active {
  display: grid;
}

.event-slide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.event-copy {
  padding: 1rem;
}

.event-copy h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.event-copy p { color: #647082; }

.slider-dots {
  display: flex;
  gap: 0.45rem;
  justify-content: center;
  padding-bottom: 0.8rem;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #cad3e4;
  cursor: pointer;
}

.slider-dots button.active { background: var(--gold); }

.accordion details {
  border-top: 1px solid var(--line);
  padding: 0.8rem 0;
}

.accordion summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
}

.accordion summary::-webkit-details-marker { display: none; }
.accordion p { color: var(--muted); margin-top: 0.55rem; }

.program-tile {
  position: relative;
  min-height: 330px;
  border-radius: 14px;
  overflow: hidden;
  color: #fff;
}

.program-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 17, 29, 0.22), rgba(10, 17, 29, 0.68));
}

.program-tile .txt {
  position: absolute;
  z-index: 1;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
}

.program-tile h3 { font-size: clamp(2rem, 4vw, 3.1rem); }

.program-tile.tile-prelabeled::before {
  background: transparent;
}

.program-tile.tile-prelabeled .txt {
  display: none;
}

.program-tile.tile-prelabeled img {
  object-fit: contain;
  background: #0b0f16;
}

.testimonial-band {
  background: linear-gradient(130deg, rgba(11, 20, 36, 0.94), rgba(15, 41, 77, 0.9)),
    url("assets/images/image38.jpeg") center/cover no-repeat;
  color: #fff;
  border-radius: 16px;
  padding: 2rem;
}

.testimonial-band h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.quote {
  font-size: 1.05rem;
  color: #d8e2f6;
  max-width: 880px;
}

.quote b {
  color: #fff;
  display: block;
  margin-top: 0.8rem;
}

.cta-center { text-align: center; margin-top: 1.4rem; }

.site-footer {
  margin-top: 3rem;
  background: #000;
  color: #d2d9e8;
  padding-top: 3rem;
}

.site-footer h3 {
  color: #fff;
  margin-bottom: 0.65rem;
  font-size: 1.3rem;
}

.footer-logo {
  width: min(220px, 50vw);
  margin-bottom: 0.8rem;
}

.site-footer a { color: #d2d9e8; }
.site-footer a:hover { color: #fff; }
.footer-links a { display: block; margin-bottom: 0.38rem; }

.clean-shot {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #e6e9ef;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 1.4rem;
  padding: 1rem 0 1.5rem;
  font-size: 0.88rem;
  color: #9da8bf;
}

.form-grid {
  display: grid;
  gap: 0.7rem;
}

label { font-size: 0.86rem; color: #4f5e73; display: grid; gap: 0.28rem; }
input, textarea {
  width: 100%;
  border: 1px solid #d9dfeb;
  border-radius: 10px;
  padding: 0.75rem 0.82rem;
  font: inherit;
  background: #fff;
}

input:focus, textarea:focus {
  outline: 2px solid rgba(75, 131, 241, 0.3);
  border-color: transparent;
}

textarea { min-height: 140px; resize: vertical; }

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

  .main-nav {
    position: fixed;
    inset: 78px 1rem auto 1rem;
    background: rgba(11, 17, 29, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.7rem;
    display: grid;
    gap: 0.2rem;
    transform: translateY(-140%);
    transition: transform 0.24s ease;
  }

  .main-nav.open { transform: translateY(0); }
  .site-header.scrolled .main-nav { background: rgba(255, 255, 255, 0.97); border-color: #dce3ef; }

  .main-nav a { color: #eef3ff; }
  .site-header.scrolled .main-nav a { color: #223146; }
  .home .site-header:not(.scrolled) .main-nav a { color: #eef3ff; }

  .submenu {
    position: static;
    display: block;
    min-width: 0;
    background: transparent;
    border: 0;
    padding: 0 0 0 0.75rem;
  }

  .submenu a {
    font-size: 0.68rem;
    padding: 0.42rem 0.5rem;
    opacity: 0.88;
  }

  .hero { min-height: 82vh; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .testimonial-clean-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .section { padding: 4.3rem 0; }
  .hero h1 { font-size: clamp(2rem, 10vw, 3.1rem); }
  .hero p { font-size: 0.95rem; }
  .grid-4 { grid-template-columns: 1fr; }
  .clean-shot { height: 200px; }
  .testimonial-clean-grid { grid-template-columns: 1fr; }
}
