:root {
  --cream: #fffaf2;
  --cream-dark: #f6e8d8;
  --sage: #a8d5ba;
  --sage-dark: #5f9c77;
  --terracotta: #ff8fa3;
  --butter: #ffd166;
  --brown: #3b2f2f;
  --muted: #716666;
  --white: #ffffff;


  --shadow-soft: 0 18px 50px rgba(63, 52, 43, 0.08);
  --shadow-card: 0 24px 65px rgba(63, 52, 43, 0.09);
  --radius-lg: 38px;
  --radius-md: 28px;
  --radius-pill: 999px;
}

/* BASE */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  background: var(--cream);
  color: var(--brown);
}

h1,
h2,
h3,
.logo-title,
.footer-brand {
  font-family: "Fraunces", serif;
}

p {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.8;
}

section {
  scroll-margin-top: 95px;
}

img {
  max-width: 100%;
}

/* NAVBAR */
.site-navbar {
  min-height: 86px;
  padding: 10px 0;
  background: rgba(250, 243, 232, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(63, 52, 43, 0.08);
  box-shadow: 0 8px 25px rgba(63, 52, 43, 0.04);
}

.navbar-brand {
  max-width: 180px;
}

.logo-text img {
  width: clamp(120px, 10vw, 165px);
  height: auto;
  display: block;
}

.logo-mark {
  width: 54px;
  height: 54px;
  border-radius: 50% 50% 42% 58%;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: "Fraunces", serif;
  font-size: 27px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(143, 175, 143, 0.35);
}

.logo-title {
  font-size: 25px;
  font-weight: 800;
  color: var(--brown);
  line-height: 1;
}

.logo-subtitle {
  font-size: 12px;
  color: var(--muted);
  font-weight: 800;
}

.navbar-nav {
  gap: 10px;
}

.site-navbar .nav-link {
  color: var(--brown);
  font-size: 17px;
  font-weight: 800;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
}

.site-navbar .nav-link:hover {
  background: #fff3d8;
  color: var(--terracotta);
}

.nav-cta,
.navbar-center-cta {
  background: var(--terracotta);
  color: var(--white) !important;
  border-radius: var(--radius-pill);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(217, 130, 91, 0.25);
}

.nav-cta {
  padding: 10px 22px !important;
}

.navbar-center-cta {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 26px;
}

.nav-cta:hover,
.navbar-center-cta:hover {
  background: var(--brown) !important;
  color: var(--white) !important;
}

/* HERO */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 145px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-section::before {
  width: 620px;
  height: 620px;
  background: rgba(244, 200, 106, 0.26);
  top: -230px;
  left: -210px;
}

.hero-section::after {
  width: 460px;
  height: 460px;
  background: rgba(143, 175, 143, 0.22);
  right: -160px;
  bottom: -180px;
}

.hero-content,
.photo-collage {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-label {
  display: inline-block;
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-content h1 {
  font-size: clamp(46px, 4vw, 82px);
  font-weight: 800;
  line-height: 0.98;
  color: var(--brown);
  margin-bottom: 24px;
}

.hero-content p {
  max-width: 570px;
  font-size: 20px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn-primary-custom,
.btn-outline-custom {
  border-radius: var(--radius-pill);
  font-weight: 900;
}

.btn-primary-custom {
  background: var(--terracotta);
  color: var(--white);
  border: 0;
  padding: 13px 30px;
}

.btn-primary-custom:hover {
  background: var(--sage);
  color: var(--white);
}

.btn-outline-custom {
  background: transparent;
  color: var(--brown);
  border: 2px solid var(--brown);
  padding: 11px 28px;
}

.btn-outline-custom:hover {
  background: var(--brown);
  color: var(--white);
}

/* HERO PHOTO COLLAGE */
.photo-collage {
  min-height: 620px;
}

.photo-main {
  width: 78%;
  height: 500px;
  object-fit: cover;
  border-radius: 42% 58% 46% 54%;
  box-shadow: 0 30px 80px rgba(63, 52, 43, 0.18);
  position: absolute;
  right: 20px;
  top: 60px;
}

.photo-small {
  position: absolute;
  width: 230px;
  height: 190px;
  object-fit: cover;
  border: 12px solid var(--cream);
  box-shadow: 0 20px 50px rgba(63, 52, 43, 0.16);
}

.photo-small-top {
  left: 10px;
  top: 20px;
  border-radius: 40px 40px 80px 40px;
}

.photo-small-bottom {
  left: 25px;
  bottom: 20px;
  border-radius: 80px 40px 40px 40px;
}

.shape {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
}

.shape-one {
  width: 180px;
  height: 180px;
  background: var(--butter);
  right: 10px;
  top: 10px;
}

.shape-two {
  width: 130px;
  height: 130px;
  background: var(--sage);
  left: 110px;
  bottom: 105px;
}

.floating-note {
  position: absolute;
  right: 20px;
  bottom: 25px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: 0 18px 45px rgba(63, 52, 43, 0.14);
}

.floating-note strong {
  display: block;
  color: var(--sage-dark);
  font-family: "Fraunces", serif;
  font-size: 27px;
}

.floating-note span {
  color: var(--muted);
  font-weight: 900;
}

/* SECTIONS */
.section {
  padding: 100px 0;
}

.section h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
}

.lead-text {
  font-size: 19px;
}

/* ABOUT */
.about-section,
.gallery-section {
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.trust-grid div {
  background: var(--cream);
  border: 1px solid rgba(63, 52, 43, 0.06);
  border-radius: 22px;
  padding: 16px 18px;
  color: var(--brown);
  font-weight: 900;
}

.video-card {
  position: relative;
  min-height: 430px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sage);
  box-shadow: 0 28px 70px rgba(63, 52, 43, 0.13);
}

.video-card iframe {
  width: 100%;
  height: 430px;
  border: 0;
}

.video-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background: var(--white);
  color: var(--terracotta);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-weight: 900;
}

/* PROGRAMS */
.programs-section,
.contact-section {
  background: var(--cream);
}

.program-timeline {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.program-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: stretch;
  background: var(--white);
  border: 1px solid rgba(63, 52, 43, 0.06);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.program-number {
  background: var(--sage);
  color: var(--white);
  font-family: "Fraunces", serif;
  font-size: 34px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.program-row:nth-child(even) .program-number {
  background: var(--terracotta);
}

.program-body {
  padding: 28px 32px;
}

.program-body h3 {
  font-weight: 800;
  color: var(--brown);
  margin-bottom: 8px;
}

.program-body p {
  margin-bottom: 0;
}

/* GALLERY */
.gallery-carousel {
  border-radius: 42px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(63, 52, 43, 0.13);
}

.rounded-gallery img {
  height: 560px;
  object-fit: cover;
}

.gallery-carousel .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--white);
  opacity: 0.75;
}

.gallery-carousel .carousel-indicators .active {
  width: 34px;
  border-radius: var(--radius-pill);
  background-color: var(--butter);
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(63, 52, 43, 0.4);
  border-radius: 50%;
  padding: 24px;
  background-size: 50%;
}

/* CONTACT */
.contact-card {
  height: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 42px;
  box-shadow: var(--shadow-card);
}

.form-control {
  border-radius: 18px;
  padding: 15px 18px;
  margin-bottom: 14px;
  border: 1px solid rgba(63, 52, 43, 0.14);
  font-weight: 800;
  background: #fffdf9;
}

.form-control:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 0.25rem rgba(143, 175, 143, 0.18);
}

.info-item {
  border-bottom: 1px solid rgba(63, 52, 43, 0.1);
  padding: 16px 0;
}

.info-item span {
  display: block;
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.info-item strong {
  color: var(--brown);
  font-size: 18px;
}

.map-wrapper {
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 28px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* FOOTER */
.footer {
  background: var(--brown);
  color: var(--cream);
  padding: 30px 0;
  font-weight: 800;
  text-align: center;
}

.footer-brand {
  color: var(--butter);
  font-size: 28px;
  font-weight: 800;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .navbar-collapse {
    padding-top: 18px;
  }

  .navbar-center-cta {
    position: static;
    transform: none;
    display: inline-flex;
    margin-top: 14px;
    padding: 10px 20px;
  }

  .hero-section {
    padding-top: 130px;
  }

  .photo-collage {
    min-height: 540px;
  }

  .photo-main {
    width: 78%;
    right: 0;
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 95px;
  }

  .navbar-brand {
    max-width: 140px;
  }

  .logo-text img {
    width: clamp(105px, 28vw, 125px);
  }

  .logo-subtitle {
    display: none;
  }

  .logo-title {
    font-size: 21px;
  }

  .site-navbar .nav-link {
    margin-left: 0;
  }

  .hero-section {
    min-height: auto;
    padding: 125px 0 70px;
  }

  .hero-content h1 {
    font-size: 44px;
  }

  .photo-collage {
    min-height: 430px;
  }

  .photo-main {
    width: 85%;
    height: 350px;
    top: 40px;
  }

  .photo-small {
    width: 160px;
    height: 130px;
    border-width: 8px;
  }

  .floating-note {
    right: 5px;
    bottom: 10px;
  }

  .section {
    padding: 75px 0;
  }

  .trust-grid,
  .program-row {
    grid-template-columns: 1fr;
  }

  .program-number {
    padding: 16px;
  }

  .rounded-gallery img {
    height: 360px;
  }

  .contact-card {
    padding: 28px;
  }
}
.program-info-banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 35px;
}

.program-info-banner span {
  background: var(--white);
  color: var(--brown);
  padding: 13px 20px;
  font-size: 20px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(63, 52, 43, 0.08);
}
.program-info-banner i {
  font-size: 20px;
  margin-right: 8px;
}

.floating-img {
  position: absolute;
  right: 20px;
  bottom: 25px;
  width: 210px;
  height: 150px;
  object-fit: cover;
  border: 12px solid var(--cream);
  border-radius: 38px;
  box-shadow: 0 20px 50px rgba(63, 52, 43, 0.16);
}
@media (max-width: 767px) {
  .floating-img {
    width: 150px;
    height: 110px;
    right: 5px;
    bottom: 10px;
    border-width: 8px;
  }
}
.video-card video {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}