/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: #000; color: #fff; font-family: 'Outfit', system-ui, sans-serif; -webkit-font-smoothing: antialiased; }
::selection { background: #fff; color: #000; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; color: inherit; font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
.label { font-family: 'Outfit', sans-serif; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 24px; }
.label.center { text-align: center; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 300; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 32px; text-align: center; }
.section-title-left { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 300; letter-spacing: -0.03em; margin-bottom: 48px; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: 'Outfit', sans-serif; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; padding: 16px 32px; transition: all 0.3s; }
.btn-white { background: #fff; color: #000; }
.btn-white:hover { background: #e5e5e5; }
.btn-outline { border: 1px solid rgba(255,255,255,0.4); color: #fff; }
.btn-outline:hover { background: #fff; color: #000; }

/* ===== NAVBAR ===== */
.navbar { position: sticky; top: 0; z-index: 50; background: rgba(0,0,0,0.9); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.1); }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo img { height: 28px; }
.nav-links { display: flex; gap: 40px; }
.nav-links a { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.mobile-toggle { display: none; color: #fff; }
.mobile-menu { display: none; padding: 24px; border-top: 1px solid rgba(255,255,255,0.1); flex-direction: column; gap: 20px; }
.mobile-menu a { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.mobile-menu a.active { color: #fff; }

/* ===== HERO ===== */
.hero { position: relative; height: 100vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, #000, rgba(0,0,0,0.5) 50%, transparent); }
.hero-content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 0 24px 80px; width: 100%; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 7vw, 5rem); font-weight: 300; letter-spacing: -0.04em; line-height: 0.95; margin-bottom: 16px; }
.hero-title em { font-style: italic; }
.hero-sub { font-size: 15px; color: rgba(255,255,255,0.6); font-weight: 300; max-width: 520px; line-height: 1.6; margin-bottom: 32px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* ===== MISSION ===== */
.mission { padding: 96px 24px; text-align: center; max-width: 800px; margin: 0 auto; }
.mission-text { font-size: 14px; color: rgba(255,255,255,0.4); font-weight: 300; line-height: 1.8; max-width: 640px; margin: 0 auto; }

/* ===== IMAGE GRID ===== */
.image-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.grid-item { position: relative; aspect-ratio: 1; overflow: hidden; }
.grid-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.grid-item:hover img { transform: scale(1.05); }
.grid-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.grid-overlay svg { color: #fff; }
.grid-overlay p { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; text-align: center; padding: 0 16px; }

/* ===== PROGRAMS ===== */
.programs { padding: 96px 24px; max-width: 1280px; margin: 0 auto; }
.tabs { display: flex; justify-content: center; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }
.tab { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; padding: 12px 24px; border: 1px solid rgba(255,255,255,0.2); transition: all 0.3s; }
.tab:hover { border-color: rgba(255,255,255,0.5); }
.tab.active { background: #fff; color: #000; border-color: #fff; }
.tab-content { display: none; }
.tab-content.active { display: block; }
.program-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.program-card { border: 1px solid rgba(255,255,255,0.1); padding: 32px; }
.program-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 20px; letter-spacing: -0.02em; margin-bottom: 12px; }
.program-card p { font-size: 14px; color: rgba(255,255,255,0.4); font-weight: 300; line-height: 1.6; }

/* ===== CAROUSEL ===== */
.featured { padding: 96px 24px; max-width: 1280px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.1); }
.carousel-wrapper { overflow: hidden; }
.carousel { display: flex; transition: transform 0.5s ease-in-out; }
.slide { min-width: 100%; flex-shrink: 0; }
.slide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.slide-img { aspect-ratio: 4/3; overflow: hidden; }
.slide-img img { width: 100%; height: 100%; object-fit: cover; }
.slide-text h3 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 300; letter-spacing: -0.02em; margin-bottom: 16px; }
.slide-text p { font-size: 14px; color: rgba(255,255,255,0.4); font-weight: 300; line-height: 1.7; }
.carousel-controls { display: flex; align-items: center; gap: 16px; margin-top: 32px; }
.carousel-btn { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.carousel-btn:hover { background: #fff; color: #000; }
.dots { display: flex; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); border: none; cursor: pointer; padding: 0; transition: background 0.3s; }
.dot.active { background: #fff; }

/* ===== SUSTAINABILITY ===== */
.sustainability { position: relative; height: 60vh; overflow: hidden; }
.sustainability-img { width: 100%; height: 100%; object-fit: cover; }
.sustainability-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center; }
.sustainability-content { max-width: 640px; text-align: center; padding: 0 24px; }
.sustainability-content svg { margin: 0 auto 24px; color: #fff; }
.sustainability-content h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 300; letter-spacing: -0.03em; margin-bottom: 16px; }
.sustainability-content p { font-size: 14px; color: rgba(255,255,255,0.6); font-weight: 300; line-height: 1.7; max-width: 520px; margin: 0 auto; }

/* ===== CTA ===== */
.cta { padding: 128px 24px; text-align: center; max-width: 800px; margin: 0 auto; }
.cta-text { font-size: 14px; color: rgba(255,255,255,0.45); font-weight: 300; margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ===== FOOTER ===== */
.footer { background: #000; border-top: 1px solid rgba(255,255,255,0.1); padding: 96px 24px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px; margin-bottom: 80px; }
.footer-logo { height: 32px; margin-bottom: 24px; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.45); font-weight: 300; line-height: 1.7; max-width: 280px; }
.footer-heading { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 24px; }
.footer-grid a { display: block; font-size: 14px; color: rgba(255,255,255,0.45); margin-bottom: 12px; transition: color 0.3s; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 11px; color: rgba(255,255,255,0.25); transition: color 0.3s; }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .mobile-menu.open { display: flex; }
  .image-grid { grid-template-columns: repeat(2, 1fr); }
  .slide-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { padding-bottom: 48px; }
  .nav-inner { padding: 0 16px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; justify-content: center; }
}
