:root {
  --bg: #0f0b0d;
  --bg-alt: #1a1417;
  --primary: #f6adb6;
  --primary-hover: #e79ca6;
  --secondary: #d88d98;
  --soft-pink: #fbe3e7;
  --heading-light: #fdf8f9;
  --text-light: #e9dde0;
  --text-muted: #b8aeb1;
  --text-dark: #2b2326;
  --text-dark-soft: #4e4347;
  --border-soft: rgba(246, 173, 182, 0.22);
  --border-strong: rgba(246, 173, 182, 0.45);
  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.22);
  --shadow-card: 0 16px 40px rgba(0, 0, 0, 0.18);
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 1.75rem;
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg);
  color: var(--text-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-hover);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0;
}

.section-pad {
  padding: 6rem 0;
}

.section-dark {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  color: var(--text-light);
}

.section-light {
  background-color: var(--soft-pink);
  color: var(--text-dark);
}

.section-accent {
  background: linear-gradient(180deg, #f8c7ce 0%, var(--soft-pink) 100%);
  color: var(--text-dark);
}

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 1000;
}

.site-footer {
  background-color: #0a0708;
  color: var(--text-muted);
  border-top: 1px solid var(--border-soft);
}

.navbar {
  background: transparent;
}

.navbar-brand.brand-mark {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--heading-light);
}

.navbar-brand.brand-mark:hover {
  color: var(--primary);
}

.nav-link {
  color: var(--text-light);
  font-weight: 500;
  transition: color var(--transition);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--primary);
}

.eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.text-dark-brand {
  color: #8b4d59;
}

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-title {
  color: var(--heading-light);
  max-width: 12ch;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 42rem;
}

.hero-card,
.image-placeholder-card,
.feature-card,
.programme-card,
.contact-card,
.contact-form {
  border-radius: var(--radius-lg);
}

.hero-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  padding: 2rem;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-logo,
.image-placeholder-card {
  background: rgba(246, 173, 182, 0.08);
  border: 1px dashed var(--border-strong);
  color: var(--text-muted);
}

.placeholder-logo {
  width: 100%;
  min-height: 340px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder-card {
  min-height: 420px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.section-heading-wrap {
  max-width: 760px;
}

.section-title {
  color: var(--heading-light);
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.section-title-dark {
  color: var(--text-dark);
}

.section-copy {
  margin-top: 1.25rem;
  font-size: 1.05rem;
  color: var(--text-light);
}

.text-dark-soft {
  color: var(--text-dark-soft);
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.22);
}

.feature-title {
  color: var(--heading-light);
  font-size: 1.45rem;
  margin-bottom: 0.8rem;
}

.programme-card {
  background: #fff7f8;
  color: var(--text-dark);
  border: 1px solid rgba(139, 77, 89, 0.14);
  box-shadow: 0 16px 36px rgba(46, 31, 35, 0.12);
  padding: 2rem;
  height: 100%;
}

.programme-badge {
  display: inline-block;
  background-color: rgba(246, 173, 182, 0.25);
  color: #7d4250;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.programme-title {
  color: var(--text-dark);
  font-size: 1.8rem;
  margin-top: 1rem;
}

.programme-text {
  margin-top: 1rem;
  color: var(--text-dark-soft);
}

.programme-list {
  padding-left: 1.15rem;
  margin: 1.25rem 0 0;
  color: var(--text-dark-soft);
}

.programme-list li + li {
  margin-top: 0.55rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-soft);
  padding: 1.5rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-soft);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.form-label {
  color: var(--heading-light);
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.form-control {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(246, 173, 182, 0.18);
  color: var(--heading-light);
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
}

.form-control::placeholder {
  color: rgba(233, 221, 224, 0.65);
}

.form-control:focus {
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--heading-light);
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(246, 173, 182, 0.18);
}

.btn {
  border-radius: 999px;
  font-weight: 700;
  padding: 0.9rem 1.5rem;
  transition: all var(--transition);
}

.btn-brand {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--bg);
}

.btn-brand:hover,
.btn-brand:focus {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  color: var(--bg);
  transform: translateY(-1px);
}

.btn-outline-brand {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--bg);
}

.btn-dark-brand {
  background-color: var(--bg);
  border-color: var(--bg);
  color: var(--heading-light);
}

.btn-dark-brand:hover,
.btn-dark-brand:focus {
  background-color: #22181c;
  border-color: #22181c;
  color: var(--heading-light);
}

.btn-outline-dark-brand {
  background-color: transparent;
  border: 1px solid #8b4d59;
  color: #8b4d59;
}

.btn-outline-dark-brand:hover,
.btn-outline-dark-brand:focus {
  background-color: #8b4d59;
  border-color: #8b4d59;
  color: #fff;
}

.min-vh-100 {
  min-height: 100vh;
}

.testimonials-section .section-heading-wrap {
  max-width: 820px;
}

.testimonial-card.polished-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.testimonial-card.polished-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.24);
}

.testimonial-topline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.testimonial-stars {
  display: inline-flex;
  gap: 0.2rem;
  color: var(--primary);
  font-size: 1rem;
  line-height: 1;
}

.testimonial-label {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(246, 173, 182, 0.1);
  border: 1px solid rgba(246, 173, 182, 0.22);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.testimonial-quote-mark {
  font-family: "Playfair Display", serif;
  font-size: 4.2rem;
  line-height: 0.85;
  color: var(--primary);
  opacity: 0.95;
  margin-bottom: 1rem;
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.testimonial-lead {
  font-size: 1.05rem;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.testimonial-toggle {
  min-width: 136px;
  padding-left: 1.1rem;
  padding-right: 1.1rem;
}

.testimonial-toggle[aria-expanded="true"] {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--bg);
}

@media (max-width: 575.98px) {
  .testimonial-card.polished-card {
    padding: 1.5rem;
  }

  .testimonial-quote-mark {
    font-size: 3.4rem;
  }

  .testimonial-lead {
    font-size: 1rem;
  }
}

.hero-image-wrap {
  width: 100%;
  min-height: 340px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
}

.about-trust-line {
  font-size: 0.98rem;
  font-weight: 600;
  color: #8b4d59;
}

.contact-trust-line {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.01em;
}

.alert-success,
.alert-danger {
  border-radius: 1rem;
  border: 1px solid var(--border-soft);
}

.alert-success {
  background: rgba(80, 180, 120, 0.12);
  color: var(--heading-light);
}

.alert-danger {
  background: rgba(220, 80, 100, 0.12);
  color: var(--heading-light);
}

@media (max-width: 991.98px) {
  .site-header {
    position: static;
    background: rgba(15, 11, 13, 0.96);
    border-bottom: 1px solid var(--border-soft);
  }

  .hero-title {
    max-width: none;
  }

  .section-pad {
    padding: 4.5rem 0;
  }

  .hero-card {
    min-height: 320px;
  }
}

@media (max-width: 575.98px) {
  .section-pad {
    padding: 4rem 0;
  }

  .hero-subtitle,
  .section-copy {
    font-size: 1rem;
  }

  .programme-card,
  .contact-form,
  .feature-card,
  .hero-card {
    padding: 1.5rem;
  }
}