:root {
      --primary: #1c8f43;
      --primary-dark: #0f6f31;
      --secondary: #00606a;
      --dark: #17251d;
      --text: #5d665f;
      --light: #f5f8f4;
      --white: #ffffff;
      --border: #e5ece5;
      --shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
      --radius: 22px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Inter", Arial, sans-serif;
      background: var(--white);
      color: var(--text);
      line-height: 1.7;
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
    }

    .nchr-container {
      width: min(1180px, 92%);
      margin: auto;
    }

    .nchr-section {
      padding: 90px 0;
    }

    .nchr-section-light {
      background: var(--light);
    }

    .nchr-kicker {
      color: var(--primary);
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 12px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .nchr-title {
      font-family: "Playfair Display", serif;
      color: var(--dark);
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.15;
      margin-bottom: 18px;
      font-weight: 800;
    }

    .nchr-text {
      font-size: 15.5px;
      color: var(--text);
      margin-bottom: 18px;
    }

    .nchr-line {
      width: 56px;
      height: 3px;
      background: var(--primary);
      border-radius: 30px;
      margin: 0 0 28px;
    }

    .nchr-center {
      text-align: center;
      max-width: 860px;
      margin: 0 auto 48px;
    }

    .nchr-center .nchr-line {
      margin-left: auto;
      margin-right: auto;
    }

    .nchr-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: var(--primary);
      color: var(--white);
      padding: 14px 28px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: 0.3s ease;
      border: 1px solid transparent;
      cursor: pointer;
    }

    .nchr-btn:hover {
      background: var(--primary-dark);
      transform: translateY(-3px);
      box-shadow: 0 12px 28px rgba(28, 143, 67, 0.28);
    }

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

    .nchr-btn-white:hover {
      background: var(--dark);
      color: var(--white);
    }

    /* HERO */
    .nchr-hero {
      position: relative;
      min-height: 680px;
      background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.30)),
        url("../../images/hero_sec.png") center/cover no-repeat;
      display: flex;
      align-items: center;
      color: var(--white);
      overflow: hidden;
    }

    .nchr-hero::after {
      content: "";
      position: absolute;
      width: 520px;
      height: 520px;
      border-radius: 50%;
      background: rgba(28, 143, 67, 0.22);
      right: -180px;
      bottom: -200px;
      filter: blur(2px);
    }

    .nchr-hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 110px 0 190px;
    }

    .nchr-hero-subtitle {
      color: #dff4e5;
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 18px;
    }

    .nchr-hero-title {
      font-family: "Playfair Display", serif;
      font-size: clamp(42px, 6vw, 72px);
      line-height: 1.05;
      color: var(--white);
      font-weight: 800;
      margin-bottom: 24px;
    }

    .nchr-hero-text {
      max-width: 720px;
      color: #f4f4f4;
      font-size: 16px;
      margin-bottom: 34px;
    }

    .nchr-hero-text span {
      color: #9ff0b7;
      font-weight: 800;
    }

    .nchr-hero-actions {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .nchr-play-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--white);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
      cursor: pointer;
    }

    .nchr-play-icon {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: var(--white);
      color: var(--primary);
      display: grid;
      place-items: center;
      box-shadow: 0 12px 30px rgba(255, 255, 255, 0.22);
    }

    .nchr-play-icon::before {
      content: "";
      border-left: 13px solid var(--primary);
      border-top: 9px solid transparent;
      border-bottom: 9px solid transparent;
      margin-left: 4px;
    }

    /* INFO CARDS */
    .nchr-info-wrap {
      position: relative;
      z-index: 5;
      margin-top: -115px;
      padding-bottom: 35px;
    }

    .nchr-info-grid {
      max-width: 980px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .nchr-info-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 42px 34px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(28, 143, 67, 0.12);
      text-align: center;
      transition: 0.3s ease;
    }

    .nchr-info-card:hover {
      transform: translateY(-8px);
    }

    .nchr-info-icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: rgba(28, 143, 67, 0.12);
      color: var(--primary);
      display: grid;
      place-items: center;
      font-size: 28px;
      margin: 0 auto 22px;
    }

    .nchr-info-card h3 {
      font-family: "Playfair Display", serif;
      color: var(--dark);
      font-size: 24px;
      margin-bottom: 14px;
      line-height: 1.25;
    }

    .nchr-info-card p {
      font-size: 15px;
      color: var(--text);
    }

    /* ABOUT */
    .nchr-about-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 70px;
      align-items: center;
    }

    .nchr-about-image {
      position: relative;
    }

    .nchr-about-image-main {
      width: 100%;
      height: 500px;
      object-fit: cover;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .nchr-certificate {
      position: absolute;
      left: -26px;
      bottom: -38px;
      width: 170px;
      background: var(--white);
      border-radius: 14px;
      padding: 8px;
      box-shadow: var(--shadow);
    }

    .nchr-experience {
      position: absolute;
      right: -24px;
      bottom: 32px;
      background: var(--white);
      border-radius: 18px;
      padding: 22px 26px;
      box-shadow: var(--shadow);
      min-width: 190px;
    }

    .nchr-experience strong {
      font-size: 46px;
      color: var(--primary);
      line-height: 1;
    }

    .nchr-experience span {
      color: var(--dark);
      display: block;
      font-weight: 800;
      margin-top: 4px;
    }

    .nchr-highlight {
      color: var(--primary);
      font-weight: 800;
    }

    .nchr-about-actions {
      display: flex;
      align-items: center;
      gap: 24px;
      margin-top: 30px;
      flex-wrap: wrap;
    }

    .nchr-call-box {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .nchr-call-icon {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(28, 143, 67, 0.12);
      color: var(--primary);
      font-size: 22px;
    }

    .nchr-call-box h4 {
      color: var(--dark);
      font-size: 17px;
      margin-bottom: 2px;
    }

    .nchr-call-box a {
      color: var(--text);
      font-weight: 700;
    }

    /* RETREATS */
    .nchr-retreat-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .nchr-retreat-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.07);
      border: 1px solid var(--border);
      transition: 0.3s ease;
    }

    .nchr-retreat-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow);
    }

    .nchr-retreat-img {
      height: 235px;
      overflow: hidden;
    }

    .nchr-retreat-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.5s ease;
    }

    .nchr-retreat-card:hover img {
      transform: scale(1.08);
    }

    .nchr-retreat-content {
      padding: 28px;
    }

    .nchr-retreat-content h3 {
      font-family: "Playfair Display", serif;
      color: var(--dark);
      font-size: 25px;
      margin-bottom: 12px;
    }

    .nchr-retreat-content p {
      font-size: 15px;
      margin-bottom: 22px;
    }

    .nchr-read-more {
      color: var(--primary);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .nchr-read-more:hover {
      color: var(--secondary);
    }

    /* BANNER */
    .nchr-banner {
      position: relative;
      padding: 115px 0;
      background:
        linear-gradient(90deg, rgba(0,0,0,0.68), rgba(0,0,0,0.30)),
        url("../../images/home8.png") center/cover no-repeat;
      color: var(--white);
    }

    .nchr-banner-content {
      max-width: 690px;
    }

    .nchr-banner h2 {
      font-family: "Playfair Display", serif;
      color: var(--white);
      font-size: clamp(32px, 4vw, 54px);
      line-height: 1.14;
      margin-bottom: 18px;
    }

    .nchr-banner p {
      color: #f4f4f4;
      margin-bottom: 28px;
    }

    /* WHY / CAMPUS */
    .nchr-grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: center;
    }

    .nchr-image-box img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .nchr-list,
    .nchr-feature-list {
      list-style: none;
      margin-top: 22px;
    }

    .nchr-list li,
    .nchr-feature-list li {
      position: relative;
      padding-left: 28px;
      margin-bottom: 10px;
      font-size: 15px;
      color: var(--text);
    }

    .nchr-list li::before,
    .nchr-feature-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 1px;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: rgba(28, 143, 67, 0.12);
      color: var(--primary);
      display: grid;
      place-items: center;
      font-size: 11px;
      font-weight: 900;
    }

    .nchr-feature-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 3px 20px;
    }

    .nchr-stats {
      margin-top: 22px;
      background: var(--white);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .nchr-stat {
      text-align: center;
      padding: 28px 18px;
      border-right: 1px solid var(--border);
    }

    .nchr-stat:last-child {
      border-right: none;
    }

    .nchr-stat-icon {
      color: var(--primary);
      font-size: 30px;
      margin-bottom: 6px;
    }

    .nchr-stat h3 {
      font-size: 32px;
      color: var(--primary);
      margin-bottom: 4px;
      font-weight: 900;
    }

    .nchr-stat p {
      color: var(--dark);
      font-size: 13px;
      font-weight: 700;
    }

    /* AMENITIES */
    .nchr-amenity-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 16px;
    }

    .nchr-amenity {
      background: var(--white);
      border-radius: 18px;
      min-height: 130px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      padding: 18px 12px;
      text-align: center;
      transition: 0.3s ease;
    }

    .nchr-amenity:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.08);
      border-color: rgba(28, 143, 67, 0.25);
    }

    .nchr-amenity span {
      font-size: 30px;
      margin-bottom: 8px;
    }

    .nchr-amenity p {
      color: var(--dark);
      font-weight: 800;
      font-size: 13px;
      line-height: 1.35;
    }

    /* SERVICES */
    .nchr-service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .nchr-service-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 30px;
      border: 1px solid var(--border);
      box-shadow: 0 10px 25px rgba(0,0,0,0.05);
      transition: 0.3s ease;
    }

    .nchr-service-card:hover {
      transform: translateY(-7px);
      box-shadow: var(--shadow);
    }

    .nchr-service-icon {
      width: 62px;
      height: 62px;
      border-radius: 18px;
      background: rgba(28, 143, 67, 0.12);
      color: var(--primary);
      display: grid;
      place-items: center;
      font-size: 30px;
      margin-bottom: 20px;
    }

    .nchr-service-card h3 {
      font-family: "Playfair Display", serif;
      font-size: 25px;
      color: var(--dark);
      margin-bottom: 12px;
    }

    .nchr-service-card p {
      font-size: 15px;
      margin-bottom: 20px;
    }

    /* CTA */
    .nchr-final-cta {
      position: relative;
      padding: 95px 0;
      text-align: center;
      color: var(--white);
      background:
        linear-gradient(rgba(0, 70, 25, 0.78), rgba(0, 70, 25, 0.78)),
        url("../../images/home10.png") center/cover no-repeat;
      overflow: hidden;
    }

    .nchr-final-cta::before,
    .nchr-final-cta::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
    }

    .nchr-final-cta::before {
      width: 260px;
      height: 260px;
      left: -90px;
      top: -90px;
    }

    .nchr-final-cta::after {
      width: 330px;
      height: 330px;
      right: -120px;
      bottom: -150px;
    }

    .nchr-final-cta-content {
      position: relative;
      z-index: 2;
      max-width: 820px;
      margin: auto;
    }

    .nchr-final-cta h2 {
      font-family: "Playfair Display", serif;
      color: var(--white);
      font-size: clamp(32px, 4vw, 52px);
      margin-bottom: 16px;
    }

    .nchr-final-cta p {
      color: #f2f2f2;
      margin-bottom: 28px;
    }

    /* VIDEO POPUP */
    .nchr-video-popup {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.86);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 99999;
      padding: 20px;
    }

    .nchr-video-popup.active {
      display: flex;
    }

    .nchr-video-box {
      width: 100%;
      max-width: 860px;
      position: relative;
    }

    .nchr-video-box iframe {
      width: 100%;
      height: 480px;
      border: none;
      border-radius: 16px;
    }

    .nchr-close-video {
      position: absolute;
      right: 0;
      top: -48px;
      color: var(--white);
      font-size: 38px;
      cursor: pointer;
      line-height: 1;
    }

    /* ANIMATION */
    .fade-up {
      opacity: 0;
      transform: translateY(36px);
      transition: 0.8s ease;
    }

    .fade-up.show {
      opacity: 1;
      transform: translateY(0);
    }

    /* RESPONSIVE */
    @media (max-width: 1100px) {
      .nchr-retreat-grid,
      .nchr-service-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .nchr-amenity-grid {
        grid-template-columns: repeat(4, 1fr);
      }

      .nchr-about-grid,
      .nchr-grid-2 {
        gap: 45px;
      }
    }

    @media (max-width: 991px) {
      .nchr-section {
        padding: 70px 0;
      }

      .nchr-hero {
        min-height: auto;
      }

      .nchr-hero-content {
        padding: 90px 0 165px;
      }

      .nchr-about-grid,
      .nchr-grid-2 {
        grid-template-columns: 1fr;
      }

      .nchr-about-image-main,
      .nchr-image-box img {
        height: 420px;
      }

      .nchr-info-grid {
        width: 92%;
      }

      .nchr-amenity-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 767px) {
      .nchr-section {
        padding: 58px 0;
      }

      .nchr-hero-content {
        padding: 70px 0 140px;
      }

      .nchr-hero-subtitle {
        font-size: 16px;
      }

      .nchr-hero-text {
        font-size: 15px;
      }

      .nchr-info-wrap {
        margin-top: -90px;
      }

      .nchr-info-grid {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .nchr-info-card {
        padding: 32px 24px;
      }

      .nchr-certificate {
        width: 130px;
        left: 14px;
        bottom: -34px;
      }

      .nchr-experience {
        right: 14px;
        bottom: 18px;
        padding: 16px 18px;
        min-width: 150px;
      }

      .nchr-experience strong {
        font-size: 34px;
      }

      .nchr-about-actions {
        align-items: flex-start;
        flex-direction: column;
      }

      .nchr-retreat-grid,
      .nchr-service-grid {
        grid-template-columns: 1fr;
      }

      .nchr-feature-list {
        grid-template-columns: 1fr;
      }

      .nchr-stats {
        grid-template-columns: 1fr;
      }

      .nchr-stat {
        border-right: none;
        border-bottom: 1px solid var(--border);
      }

      .nchr-stat:last-child {
        border-bottom: none;
      }

      .nchr-amenity-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }

      .nchr-banner {
        padding: 80px 0;
      }

      .nchr-video-box iframe {
        height: 280px;
      }
    }

    @media (max-width: 520px) {
      .nchr-container {
        width: min(100% - 28px, 1180px);
      }

      .nchr-hero-title {
        font-size: 38px;
      }

      .nchr-hero-actions {
        align-items: flex-start;
        flex-direction: column;
      }

      .nchr-about-image-main,
      .nchr-image-box img {
        height: 300px;
      }

      .nchr-retreat-img {
        height: 210px;
      }

      .nchr-amenity {
        min-height: 118px;
        border-radius: 14px;
      }

      .nchr-service-card,
      .nchr-retreat-content {
        padding: 24px;
      }

      .nchr-final-cta {
        padding: 75px 0;
      }
    }
