/* ============================================================
   RESET + TOKENS
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans SC", system-ui, sans-serif;
  background: #faf8f5;
  color: #1a1510;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

:root {
  --gold: #c8a870;
  --gold-light: #e4d5b8;
  --gold-dark: #a88a5a;
  --bg: #faf8f5;
  --surface: #ffffff;
  --fg: #1a1510;
  --muted: #6b6560;
  --border: #e8e2da;
  --hero-overlay: rgba(26, 21, 16, 0.55);
  --font-serif: "Noto Serif SC", Georgia, serif;
  --font-sans: "Noto Sans SC", system-ui, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 8px;
  color: var(--fg);
}
.section-subtitle {
  font-size: 15px;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.04em;
  margin-bottom: 48px;
  font-weight: 300;
}
.section-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 12px;
}

/* ============================================================
   HEADER
   ============================================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--fg);
  line-height: 1.2;
}
.logo-text small {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--muted);
}
nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
nav a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--fg);
  border-radius: 6px;
  transition:
    background 0.2s,
    color 0.2s;
}
nav a:hover {
  background: rgba(200, 168, 112, 0.1);
  color: var(--gold-dark);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  color: var(--fg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("/unsplash-cross-1-sunset.jpg") center center / cover
    no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(26, 21, 16, 0.5) 0%,
    rgba(26, 21, 16, 0.4) 40%,
    rgba(26, 21, 16, 0.55) 70%,
    rgba(26, 21, 16, 0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 800px;
  padding: 120px 40px 80px;
}
.hero-badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 6px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-family: var(--font-sans);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 12px;
}
.hero-motto {
  font-size: clamp(18px, 2.5vw, 32px);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  font-family: var(--font-serif);
}
.hero-desc {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  margin: 0 auto 36px;
  letter-spacing: 0.03em;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.btn {
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary {
  background: var(--gold);
  color: #1a1510;
}
.btn-primary:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-1px);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 100px 0 80px;
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image-wrap {
  width: 100%;
  height: 420px;
  overflow: hidden;
  position: relative;
}
.about-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(200, 168, 112, 0.08) 0%,
    rgba(26, 21, 16, 0.15) 100%
  );
  pointer-events: none;
}
.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.about-image-wrap:hover .about-image {
  transform: scale(1.03);
}
.about-text h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  color: var(--fg);
}
.about-text p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 16px;
}

/* ============================================================
   PROGRAMS
   ============================================================ */
.programs {
  padding: 100px 0;
  background: var(--surface);
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.program-card {
  background: var(--bg);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  border: 1px solid var(--border);
  overflow: hidden;
}
.program-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}
.program-card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
  background: #1a1510;
  display: flex;
  align-items: center;
  justify-content: center;
}
.program-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.program-card:hover .program-card-image img {
  transform: scale(1.05);
}
.program-card-image .program-icon {
  position: absolute;
  z-index: 2;
  width: 48px;
  height: 48px;
  color: var(--gold);
  opacity: 0.9;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}
.program-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(26, 21, 16, 0.35) 0%,
    rgba(26, 21, 16, 0.55) 100%
  );
}
.program-card-body {
  padding: 28px 28px 32px;
}
.program-card h4 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.program-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 16px;
}
.program-card .tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--gold-dark);
  background: rgba(200, 168, 112, 0.1);
  padding: 4px 12px;
  font-weight: 500;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  padding: 100px 0;
  background: #f5f1eb;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  text-align: center;
  padding: 44px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.feature-num {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.feature-card h4 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}

/* ============================================================
   NEWS
   ============================================================ */
.news {
  padding: 100px 0;
  background: var(--surface);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  border: 1px solid var(--border);
  transition: transform 0.25s ease;
}
.news-card:hover {
  transform: translateY(-3px);
}
.news-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  background: #1a1510;
}
.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.news-card:hover .news-img img {
  transform: scale(1.05);
}
.news-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(26, 21, 16, 0.25) 100%
  );
  pointer-events: none;
}
.news-body {
  padding: 24px;
}
.news-date {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--gold-dark);
  margin-bottom: 8px;
  font-weight: 500;
}
.news-body h4 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.news-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  padding: 80px 0;
  background: #1a1510;
  text-align: center;
}
.cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #f5f0eb;
  margin-bottom: 12px;
}
.cta p {
  font-size: 15px;
  color: rgba(245, 240, 235, 0.5);
  margin-bottom: 32px;
  letter-spacing: 0.03em;
}
.cta .btn-primary {
  background: var(--gold);
  color: #1a1510;
  padding: 16px 48px;
  font-size: 15px;
}
.cta .btn-primary:hover {
  background: var(--gold-light);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #14120f;
  color: rgba(245, 240, 235, 0.6);
  padding: 60px 0 0;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #f5f0eb;
  margin-bottom: 6px;
}
.footer-brand small {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(245, 240, 235, 0.35);
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(245, 240, 235, 0.4);
  margin-top: 16px;
}
.footer-col h5 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.5);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(245, 240, 235, 0.45);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--gold);
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 24px;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(245, 240, 235, 0.3);
  letter-spacing: 0.03em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .programs-grid,
  .features-grid,
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .header-inner {
    height: 60px;
  }
  .nav-toggle {
    display: block;
  }
  nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 16px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform 0.3s ease;
  }
  nav.open {
    transform: translateY(0);
  }
  nav a {
    width: 100%;
    padding: 14px 16px;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
  }
  nav a:last-child {
    border-bottom: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-image-placeholder {
    height: 220px;
  }
  .programs-grid,
  .features-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 480px) {
  .hero-content {
    padding: 100px 20px 60px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
