/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Nunito:wght@400;600;700&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --sok-bark: #3E2C1C;
  --sok-bark-light: #5A4233;
  --sok-moss: #4A6741;
  --sok-moss-light: #5E8253;
  --sok-rust: #C4632A;
  --sok-rust-light: #D4793F;
  --sok-cream: #FAF6F0;
  --sok-cream-dark: #F0EAE0;
  --sok-gold: #C9A84C;
  --sok-text: #2D2118;
  --sok-text-light: #6B5D52;
  --sok-white: #FFFFFF;
  --sok-shadow: 0 4px 20px rgba(62, 44, 28, 0.12);
  --sok-shadow-hover: 0 8px 30px rgba(62, 44, 28, 0.2);
  --sok-radius: 12px;
  --sok-transition: 0.3s ease;
}

/* ── GLOBAL STYLES ── */
.sok-section {
  font-family: 'Nunito', sans-serif;
  color: var(--sok-text);
  line-height: 1.7;
  box-sizing: border-box;
}

.sok-section h1,
.sok-section h2,
.sok-section h3,
.sok-section h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
  margin-top: 0;
}

.sok-section p {
  margin-top: 0;
}

/* ── SERVICES HERO ── */
.sok-services-hero {
  background: linear-gradient(
    135deg,
    var(--sok-bark) 0%,
    var(--sok-bark-light) 50%,
    var(--sok-moss) 100%
  );
  padding: 100px 20px 60px;
  text-align: center;
}

.sok-services-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--sok-cream);
  margin-bottom: 12px;
}

.sok-services-hero p {
  color: rgba(250, 246, 240, 0.85);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ── PROGRAM SECTIONS ── */
.sok-program-section {
  padding: 80px 20px;
}

.sok-program-section:nth-child(even) {
  background: var(--sok-cream-dark);
}

.sok-program-section:nth-child(odd) {
  background: var(--sok-white);
}

.sok-program-inner {
  max-width: 900px;
  margin: 0 auto;
}

.sok-program-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--sok-moss);
}

.sok-program-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--sok-bark);
  margin-bottom: 0;
}

.sok-price-tag {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--sok-rust);
  white-space: nowrap;
}

.sok-program-age {
  display: inline-block;
  background: var(--sok-moss);
  color: var(--sok-white);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.sok-program-description {
  font-size: 1.05rem;
  color: var(--sok-text);
  margin-bottom: 20px;
}

.sok-program-includes {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sok-program-includes li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--sok-text-light);
}

.sok-program-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sok-moss);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ── ADDITIONAL SERVICES ── */
.sok-additional-services {
  background: var(--sok-cream);
  padding: 80px 20px;
}

.sok-additional-services h2 {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--sok-bark);
  margin-bottom: 12px;
}

.sok-accent-line {
  width: 60px;
  height: 3px;
  background: var(--sok-rust);
  margin: 0 auto 40px;
  border-radius: 3px;
}

.sok-additional-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.sok-additional-card {
  background: var(--sok-white);
  border-radius: var(--sok-radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(62, 44, 28, 0.08);
  transition: all var(--sok-transition);
}

.sok-additional-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sok-shadow);
}

.sok-card-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
}

.sok-additional-card h3 {
  font-size: 1.2rem;
  color: var(--sok-bark);
  margin-bottom: 6px;
}

.sok-price {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  color: var(--sok-rust);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.sok-additional-card p,
.sok-boarding-note {
  font-size: 0.92rem;
  color: var(--sok-text-light);
  margin-bottom: 0;
}

.sok-boarding-note {
  font-style: italic;
  font-size: 0.88rem;
}

/* ── FOOTER ── */
.sok-footer {
  background: var(--sok-bark);
  padding: 48px 20px 24px;
  color: rgba(250, 246, 240, 0.6);
  font-size: 0.9rem;
}

.sok-footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.sok-footer h4 {
  color: var(--sok-cream);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.sok-footer a {
  color: rgba(250, 246, 240, 0.6);
  text-decoration: none;
  transition: color var(--sok-transition);
}

.sok-footer a:hover {
  color: var(--sok-gold);
}

.sok-footer-bottom {
  max-width: 900px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(250, 246, 240, 0.1);
  text-align: center;
  font-size: 0.82rem;
}

/* ── CTA BANNER ── */
.sok-cta-banner {
  background: linear-gradient(135deg, var(--sok-moss) 0%, var(--sok-moss-light) 100%);
  padding: 64px 20px;
  text-align: center;
}

.sok-cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--sok-cream);
  margin-bottom: 12px;
}

.sok-cta-banner p {
  color: rgba(250, 246, 240, 0.85);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 28px;
}

.sok-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--sok-transition);
  cursor: pointer;
  border: none;
  letter-spacing: 0.5px;
}

.sok-btn-primary {
  background: var(--sok-rust);
  color: var(--sok-white);
}

.sok-btn-primary:hover {
  background: var(--sok-rust-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 99, 42, 0.4);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .sok-program-header {
    flex-direction: column;
    text-align: center;
  }
  
  .sok-footer-inner {
    flex-direction: column;
    text-align: center;
  }
}