:root {
  --bg: #F7F5F0;
  --surface: #FFFFFF;
  --primary: #0D5C63;
  --primary-light: #14A3A8;
  --accent: #FF8C42;
  --text: #1A1A1A;
  --text-muted: #6B7280;
  --border: #E5E2D9;
  --hero-overlay: rgba(13, 92, 99, 0.75);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* NAV */
.nav {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}
.nav-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.hero-image-wrap {
  position: relative;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-content {
  padding: 64px 60px 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: var(--primary);
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
  font-weight: 500;
}
.hero-headline {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
}
.hero-lede {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-pill {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  padding: 5px 14px;
  border-radius: 100px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.2);
}

/* SECTIONS */
.section-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-light);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 700;
}

/* PHILOSOPHY */
.philosophy {
  padding: 80px 24px;
  background: var(--surface);
}
.philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.philosophy-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 480px;
}
.philosophy-photo-wrap {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 440px;
}
.philosophy-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* PROGRAMS */
.programs {
  padding: 80px 24px;
  background: var(--bg);
}
.programs .section-heading {
  text-align: center;
  margin-bottom: 48px;
}
.programs .section-label {
  text-align: center;
}
.programs-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.program-card {
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.program-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.program-title {
  font-size: 1.1rem;
  color: var(--primary);
  padding: 20px 20px 8px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}
.program-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0 20px 20px;
  line-height: 1.6;
}

/* STATS */
.stats {
  background: var(--primary);
  padding: 56px 24px;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
}

/* TESTIMONIALS */
.testimonials {
  padding: 80px 24px;
  background: var(--surface);
}
.testimonials .section-heading {
  text-align: center;
  margin-bottom: 48px;
}
.testimonials .section-label {
  text-align: center;
}
.testimonials-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  font-size: 0.8rem;
  color: var(--primary-light);
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* PRICING */
.pricing {
  padding: 80px 24px;
  background: var(--bg);
}
.pricing .section-heading {
  text-align: center;
  margin-bottom: 48px;
}
.pricing .section-label {
  text-align: center;
}
.pricing-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid var(--border);
  position: relative;
  text-align: center;
}
.pricing-card-featured {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(13,92,99,0.25);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
}
.pricing-duration {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 8px;
}
.pricing-card-featured .pricing-duration {
  color: rgba(255,255,255,0.7);
}
.pricing-price {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-card-featured .pricing-price {
  color: #fff;
}
.pricing-tag {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-style: italic;
}
.pricing-card-featured .pricing-tag {
  color: rgba(255,255,255,0.65);
}
.pricing-features {
  list-style: none;
  text-align: left;
}
.pricing-features li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-card-featured .pricing-features li {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.15);
}
.pricing-note {
  max-width: 900px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* CLOSING */
.closing {
  background: var(--primary);
  padding: 80px 24px;
  text-align: center;
}
.closing-heading {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
}
.closing-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin: 0 auto 28px;
  line-height: 1.8;
}
.closing-cta {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* FOOTER */
.footer {
  background: #0A3D42;
  padding: 48px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
}
.footer-tagline {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 20px;
}
.footer-links span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.footer-polsiapowered {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image-wrap { height: 280px; }
  .hero-content { padding: 40px 24px; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 40px; }
  .philosophy-photo-wrap { max-height: 300px; }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { flex-wrap: wrap; gap: 32px; }
  .stat-divider { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card-featured { transform: none; }
}
@media (max-width: 600px) {
  .programs-grid { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 12px; }
}