/* ============================================
   KABIGURU SHIKHSAYATAN — Eurydice Design System
   Inspired by eurydice.webflow.io
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

/* ── CSS Variables ── */
:root {
  --bg:         #F6F4EE;   /* warm cream canvas */
  --bg-alt:     #F0EEE6;   /* muted warm sand */
  --bg-dark:    #152422;   /* deep forest black */
  --teal:       #018A75;   /* emerald teal CTA */
  --gold:       #F6BE56;   /* mustard gold highlight */
  --text:       #152422;   /* primary text */
  --text-muted: rgba(21,36,34,0.65);
  --border:     #DBD7C8;   /* warm sandstone border */
  --white:      #FFFFFF;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --shadow-sm:  0 2px 8px rgba(21,36,34,0.07);
  --shadow-md:  0 8px 32px rgba(21,36,34,0.10);
  --shadow-lg:  0 20px 60px rgba(21,36,34,0.12);
  --trans:      all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Josefin Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--teal); color: #fff; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'DM Serif Display', serif;
  color: var(--text);
  line-height: 1.15;
  font-weight: 400; /* DM Serif looks best at normal weight */
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

p { color: var(--text-muted); line-height: 1.75; }

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

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

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--teal); }

/* ── Layout utilities ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--trans);
  text-decoration: none;
  white-space: nowrap;
}

.btn-dark {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.btn-dark:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(1,138,117,0.25);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-outline:hover {
  background: var(--text);
  color: var(--bg);
  transform: translateY(-2px);
}

.btn-teal {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.btn-teal:hover {
  background: #016a5a;
  border-color: #016a5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(1,138,117,0.3);
}

.btn-gold {
  background: var(--gold);
  color: var(--text);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #e8ab3a;
  border-color: #e8ab3a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(246,190,86,0.35);
}

/* ── Tags / Eyebrow labels ── */
.tag {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-block;
  margin-bottom: 16px;
}
.tag-gold { color: var(--gold); }
.tag-muted { color: var(--text-muted); }

/* ── Divider line ── */
.divider {
  width: 48px;
  height: 2px;
  background: var(--teal);
  margin: 20px 0 28px 0;
}
.divider-gold { background: var(--gold); }
.divider-center { margin-left: auto; margin-right: auto; }

/* ── Scroll Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.93);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--trans);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card-alt {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--trans);
}
.card-alt:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* ── Image zoom on hover ── */
.img-wrap { overflow: hidden; }
.img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.img-wrap:hover img { transform: scale(1.05); }

/* ── Form elements ── */
.field {
  width: 100%;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  transition: var(--trans);
  outline: none;
}
.field::placeholder { color: rgba(21,36,34,0.4); }
.field:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(1,138,117,0.12);
}

/* ── Navbar ── */
#main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246,244,238,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--trans);
}
#main-nav.scrolled {
  background: rgba(246,244,238,0.99);
  box-shadow: 0 4px 24px rgba(21,36,34,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img { height: 48px; width: auto; object-fit: contain; }
.nav-logo-text .logo-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.2;
}
.nav-logo-text .logo-sub {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}
.nav-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  position: relative;
  transition: color 0.25s;
  white-space: nowrap;
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 4px;
}
.nav-links a span {
  display: inline !important;
  white-space: nowrap !important;
}
.nav-links a svg {
  display: inline-block !important;
  flex-shrink: 0 !important;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1.5px;
  background: var(--teal);
  transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--teal);
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: -16px;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: var(--trans);
  z-index: 50;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
  color: var(--text) !important;
}
.nav-dropdown-menu a::after { display: none !important; }
.nav-dropdown-menu a:hover { background: var(--bg-alt); color: var(--teal) !important; }

/* Mobile Menu */
#mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--text);
}
#mobile-menu {
  display: none;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
}
#mobile-menu a {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
#mobile-menu a:last-child { border-bottom: none; }
#mobile-menu a:hover { color: var(--teal); }

@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none !important; }
  #mobile-menu-btn { display: block; }
}
@media (max-width: 1024px) {
  #mobile-menu.open { display: block; }
}

/* ── Hero Section ── */
.hero {
  min-height: calc(100vh - 130px);
  max-height: 650px;
  display: flex;
  align-items: center;
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.hero-images-wrap {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto !important;
    max-height: none !important;
    padding: 40px 0 !important;
  }
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .hero-images-wrap {
    height: 320px !important;
    margin-top: 10px !important;
  }
  .hero-stat-card {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .hero-images-wrap {
    height: 260px !important;
  }
}

.hero-tag {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-tag::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1.5px;
  background: var(--teal);
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 28px;
}

.hero p.hero-lead {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.hero-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Floating stat card on hero image */
.hero-stat-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  box-shadow: var(--shadow-md);
}
.hero-stat-card.bottom-left  { bottom: 28px; left: -20px; }
.hero-stat-card.top-right    { top: 28px; right: -20px; }
.hero-stat-card .stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--text);
  line-height: 1;
}
.hero-stat-card .stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── Features strip ── */
.features-strip {
  background: var(--bg-dark);
  padding: 60px 0;
}
.features-strip .feat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}
@media (max-width: 900px) {
  .features-strip .feat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .features-strip .feat-grid { grid-template-columns: 1fr; }
}

.feat-item { text-align: center; }
.feat-item .feat-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(246,244,238,0.08);
  border: 1px solid rgba(246,244,238,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  color: var(--gold);
  transition: var(--trans);
}
.feat-item:hover .feat-icon {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.feat-item h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  color: var(--bg);
  margin-bottom: 6px;
  font-weight: 400;
}
.feat-item p { font-size: 0.8rem; color: rgba(246,244,238,0.55); }

/* ── About / 2-col section ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

/* ── Program cards ── */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.program-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.program-card:hover::before { transform: scaleX(1); }

.program-card .pc-age {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.program-card h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.program-card p { font-size: 0.875rem; margin-bottom: 24px; }
.program-card .pc-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.program-card .pc-link:hover { gap: 12px; }

/* ── Testimonials ── */
.testimonial-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
}
.testimonial-card .quote-mark {
  font-family: 'DM Serif Display', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--teal);
  margin-bottom: 8px;
  opacity: 0.3;
}
.testimonial-card p {
  font-size: 1rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 28px;
}
.testimonial-card .author { display: flex; align-items: center; gap: 14px; }
.testimonial-card .author img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}
.testimonial-card .author-info .name {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  color: var(--text);
  font-weight: 400;
}
.testimonial-card .author-info .role {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── CTA dark section ── */
.cta-dark {
  background: var(--bg-dark);
  border-radius: var(--radius-xl);
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-dark h2 { color: var(--bg); }
.cta-dark p { color: rgba(246,244,238,0.65); max-width: 480px; margin: 20px auto 40px; }

/* Decorative circle in CTA */
.cta-dark::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(246,244,238,0.07);
  top: -100px; right: -100px;
}
.cta-dark::after {
  content: '';
  position: absolute;
  width: 250px; height: 250px;
  border-radius: 50%;
  border: 1px solid rgba(246,244,238,0.05);
  bottom: -60px; left: -60px;
}

/* ── Stats counter ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

.stat-block {
  text-align: center;
  padding: 48px 24px;
  border: 1px solid var(--border);
}
.stat-block .num {
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-block .label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Gallery grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.07); }

/* ── Blog cards ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: var(--trans);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.blog-card .blog-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card .blog-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-card .blog-body { padding: 28px; }
.blog-card .blog-date {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.blog-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card p { font-size: 0.85rem; margin-bottom: 20px; }
.blog-card .read-more {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.blog-card .read-more:hover { gap: 12px; }

/* ── Footer ── */
.site-footer {
  background: var(--bg-dark);
  color: rgba(246,244,238,0.7);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(246,244,238,0.1);
  margin-bottom: 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .brand-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--bg);
  margin-bottom: 12px;
  line-height: 1.2;
}
.footer-brand p { font-size: 0.875rem; line-height: 1.8; max-width: 280px; }
.footer-brand .social-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-brand .social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(246,244,238,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(246,244,238,0.6);
  transition: var(--trans);
  font-size: 0.875rem;
}
.footer-brand .social-row a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.footer-col h5 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bg);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(246,244,238,0.6);
  transition: color 0.25s;
  text-decoration: none;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; }

/* ── Page header (inner pages) ── */
.page-header {
  background: var(--bg-dark);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header .container {
  position: relative;
  z-index: 2;
}
.page-header::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(246,244,238,0.05);
  top: -200px; right: -100px;
}
.page-header {
  background: var(--bg-dark);
  padding: 120px 0 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.page-header h1 { color: var(--bg); margin-bottom: 16px; text-align: center; }
.page-header p { color: rgba(246,244,238,0.6); max-width: 540px; font-size: 1rem; text-align: center; margin-inline: auto; }
.page-header .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto 20px auto;
}
.page-header .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 24px auto;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.page-header .breadcrumb a { color: var(--gold); }
.page-header .breadcrumb span { color: rgba(246,244,238,0.4); }

/* ── Utility classes ── */
.text-teal  { color: var(--teal); }
.text-gold  { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--bg) !important; }
.bg-dark    { background: var(--bg-dark); }
.bg-alt     { background: var(--bg-alt); }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-4 { gap: 16px; }

.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }

/* ── Announcement bar ── */
.announcement-bar {
  background: var(--bg-dark);
  padding: 10px 0;
  text-align: center;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246,244,238,0.75);
}
.announcement-bar a { color: var(--gold); }
.announcement-bar a:hover { text-decoration: underline; }

/* ── Horizontal rule ── */
hr { border: none; border-top: 1px solid var(--border); margin: 60px 0; }

/* ── FAQ accordion ── */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-item summary {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--trans);
}
details[open] .faq-icon { background: var(--teal); border-color: var(--teal); color: #fff; transform: rotate(45deg); }
.faq-item p { padding-top: 16px; font-size: 0.9rem; line-height: 1.8; }

/* ── Contact form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info .contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
}
.contact-info .contact-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-info .contact-value {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  color: var(--text);
  font-weight: 400;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* ── Lightbox ── */
#lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(21,36,34,0.95);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(12px);
}
#lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius-md); }
#lightbox-close {
  position: absolute; top: 24px; right: 24px;
  background: rgba(246,244,238,0.1); border: 1px solid rgba(246,244,238,0.2);
  border-radius: 50%; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--bg); font-size: 1.2rem;
  transition: var(--trans);
}
#lightbox-close:hover { background: var(--teal); }

/* ── Number counter ── */
.counter { display: inline-block; }

/* ── Floating animation ── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.float-anim { animation: float 5s ease-in-out infinite; }

/* ── Responsive tweaks ── */
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .section { padding: 70px 0; }
  .cta-dark { padding: 50px 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
