  :root {
    --saffron: #E8722A;
    --saffron-light: #F5924A;
    --saffron-pale: #FDF0E8;
    --brown: #7A4A28;
    --brown-dark: #5C3418;
    --ivory: #FAF6F0;
    --cream: #F5EFE6;
    --beige: #EDE4D8;
    --charcoal: #2D2016;
    --text-warm: #4A3020;
    --sage: #7A9B76;
    --sage-light: #A8C5A4;
    --gold: #C9963A;
    --gold-light: #E8C070;
    --white: #FFFFFF;
    --shadow-warm: 0 8px 40px rgba(120, 70, 30, 0.12);
    --shadow-card: 0 4px 24px rgba(120, 70, 30, 0.09);
    --radius: 20px;
    --radius-lg: 32px;
    /* ===================================
       Compatibility Variables
    =================================== */
    --sf: var(--saffron);
    --sfl: var(--saffron-light);
    --sfp: var(--saffron-pale);
    --br: var(--brown);
    --brd: var(--brown-dark);
    --iv: var(--ivory);
    --cr: var(--cream);
    --be: var(--beige);
    --ch: var(--charcoal);
    --tw: var(--text-warm);
    --gd: var(--gold);
    --gdl: var(--gold-light);
    --sg: var(--sage);
    --sgl: var(--sage-light);
    --wh: var(--white);
    --sw: var(--shadow-warm);
    --sc: var(--shadow-card);
    /* Stronger hover shadow */
    --sh: 0 12px 40px rgba(120, 70, 30, .18);
    --r: var(--radius);
    --rl: var(--radius-lg);
    --tr: all .3s ease;
    /* Light saffron background */
    --sfm: rgba(232, 114, 42, .08);
  }

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

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Poppins', sans-serif;
    background: var(--ivory);
    color: var(--charcoal);
    overflow-x: hidden;
  }

  h1,
  h2,
  h3,
  h4,
  .serif {
    font-family: 'Cormorant Garamond', serif;
  }

  /* ─── SCROLL REVEAL ─── */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
  }

  .reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
  }

  /* ─── NAVBAR ─── */
  .navbar-vedika {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    background: rgba(250, 246, 240, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(232, 114, 42, 0.12);
    transition: all 0.3s ease;
  }

  .navbar-vedika.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 24px rgba(120, 70, 30, 0.1);
  }

  .nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }

  .nav-logo-circle {
    width: 72px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
  }

  .nav-logo-circle svg {
    width: 28px;
    height: 28px;
    fill: white;
  }

  .nav-brand-text {
    line-height: 1;
  }

  .nav-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--saffron);
    display: block;
  }

  .nav-brand-sub {
    font-size: 0.6rem;
    font-weight: 400;
    color: var(--brown);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
  }

  .nav-link-item {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-warm);
    text-decoration: none;
    letter-spacing: 0.04em;
    padding: 6px 14px;
    transition: color 0.2s;
    position: relative;
  }

  .nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 1.5px;
    background: var(--saffron);
    transform: scaleX(0);
    transition: transform 0.3s;
  }

  .nav-link-item:hover {
    color: var(--saffron);
  }

  .nav-link-item:hover::after {
    transform: scaleX(1);
  }

  .nav-cta {
    background: var(--saffron);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 9px 22px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
  }

  .nav-cta:hover {
    background: var(--brown);
    color: white;
    transform: translateY(-1px);
  }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }

  .hamburger span {
    width: 24px;
    height: 2px;
    background: var(--saffron);
    border-radius: 2px;
    transition: all 0.3s;
  }

  /* HERO */
  .page-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-top: 72px;
  }

  .phi {
    position: absolute;
    inset: 0;
  }

  .phi img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: hz 10s ease forwards;
  }

  @keyframes hz {
    to {
      transform: scale(1);
    }
  }

  .pho {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 24, 8, .78) 0%, rgba(120, 70, 30, .5) 55%, rgba(232, 114, 42, .13) 100%);
  }

  .hring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .07);
    pointer-events: none;
  }

  .hr1 {
    width: 540px;
    height: 540px;
    top: -220px;
    right: -110px;
  }

  .hr2 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: 90px;
  }

  .hsh {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sf), var(--gd), var(--sf));
  }

  .phc {
    position: relative;
    z-index: 2;
    width: 100%;
  }

  .htag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: 6px 18px;
    margin-bottom: 18px;
    font-size: .7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .9);
    letter-spacing: .12em;
    text-transform: uppercase;
    animation: fu .8s .15s both;
  }

  .page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5.2vw, 4.7rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.07;
    margin-bottom: 16px;
    animation: fu .8s .3s both;
  }

  .page-hero h1 em {
    font-style: italic;
    color: var(--gdl);
  }

  .page-hero p {
    font-size: .98rem;
    color: rgba(255, 255, 255, .76);
    line-height: 1.8;
    max-width: 540px;
    animation: fu .8s .45s both;
  }

  @keyframes fu {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: none;
    }
  }


  /* BREADCRUMB */
  .bc {
    background: var(--wh);
    border-bottom: 1px solid rgba(232, 114, 42, .1);
    padding: 14px 0;
  }

  .bc .breadcrumb {
    margin: 0;
    font-size: .76rem;
    align-items: center;
  }

  .bc .breadcrumb-item a {
    color: var(--sf);
    font-weight: 500;
  }

  .breadcrumb-item+.breadcrumb-item::before {
    color: var(--sf);
    content: "›";
    font-size: 1rem;
  }



  /* ─── SECTION COMMONS ─── */
  section {
    padding: 90px 0;
  }

  .section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 10px;
    display: block;
  }

  .section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .section-sub {
    font-size: 0.9rem;
    color: var(--text-warm);
    line-height: 1.8;
    max-width: 540px;
  }

  .ornament {
    width: 48px;
    height: 3px;
    background: var(--saffron);
    border-radius: 2px;
    margin-bottom: 24px;
  }

  /* STICKY ANCHOR MENU */
  .anchor-nav {
    position: sticky;
    top: 72px;
    z-index: 900;
    background: rgba(250, 246, 240, .97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(232, 114, 42, .14);
    box-shadow: 0 4px 20px rgba(120, 70, 30, .06);
  }

  .anchor-scroll {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding: 14px 0;
    scrollbar-width: none;
  }

  .anchor-scroll::-webkit-scrollbar {
    display: none;
  }

  .anchor-link {
    flex-shrink: 0;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: .76rem;
    font-weight: 600;
    color: var(--tw);
    border: 1.5px solid transparent;
    white-space: nowrap;
    transition: var(--tr);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;

    text-decoration: none;

  }

  .anchor-link:hover {
    background: var(--sfp);
    color: var(--sf);
  }

  .anchor-link.active {
    background: var(--sf);
    color: #fff;
    box-shadow: 0 4px 16px rgba(232, 114, 42, .3);
  }

  .anchor-link i {
    font-size: .72rem;
  }

  @media(max-width:767px) {
    .anchor-nav {
      top: 96px;
    }
  }


  /* ─── FACILITIES SNAPSHOT ─── */
  .facilities-section {
    background: var(--ivory);
  }

  .facility-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
  }

  .facility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(120, 70, 30, 0.16);
  }

  .facility-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
  }

  .facility-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .facility-card:hover .facility-card-img img {
    transform: scale(1.06);
  }

  .facility-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 24, 8, 0.5), transparent 60%);
  }

  .facility-card-body {
    padding: 20px 22px;
  }

  .facility-card-body h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
  }

  .facility-card-body p {
    font-size: 0.78rem;
    color: var(--text-warm);
    line-height: 1.6;
    margin: 0;
  }

  .facility-tag {
    display: inline-block;
    background: var(--saffron-pale);
    color: var(--saffron);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
  }


  /* ═════ 3.5 COMMON AREAS ═════ */
  .common-section {
    background: var(--cr);
  }

  .common-card {
    background: var(--wh);
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--sc);
    transition: var(--tr);
    height: 100%;
  }

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

  .common-img {
    height: 200px;
    overflow: hidden;
    position: relative;
  }

  .common-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
  }

  .common-card:hover .common-img img {
    transform: scale(1.07);
  }

  .common-body {
    padding: 20px 22px 22px;
  }

  .common-body h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.18rem;
    font-weight: 600;
    color: var(--ch);
    margin-bottom: 6px;
  }

  .common-body p {
    font-size: .78rem;
    color: var(--tw);
    line-height: 1.65;
    margin: 0;
  }

  /* ═════ 3.6 SAFETY ═════ */
  .safety-section {
    background: var(--ch);
    position: relative;
    overflow: hidden;
  }

  .safety-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 30%, rgba(232, 114, 42, .1) 0%, transparent 60%);
  }

  .safety-section .sl_ {
    color: var(--gdl);
  }

  .safety-section .sh_ {
    color: #fff;
  }

  .safety-section .sh_ em {
    color: var(--gdl);
  }

  .safety-section .ss_ {
    color: rgba(255, 255, 255, .55);
  }

  .safety-section .orn {
    background: var(--gd);
  }

  .safety-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r);
    padding: 28px 24px;
    height: 100%;
    backdrop-filter: blur(8px);
    transition: var(--tr);
  }

  .safety-card:hover {
    background: rgba(255, 255, 255, .09);
    transform: translateY(-6px);
  }

  .safety-ico {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(232, 114, 42, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }

  .safety-ico i {
    color: var(--gdl);
    font-size: 1.2rem;
  }

  .safety-card h5 {
    font-family: 'Cormorant Garamond', serif;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .safety-card p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .55);
    margin: 0;
    line-height: 1.65;
  }

  /* ═════ 3.8 WELLNESS TABLE ═════ */
  .wellness-section {
    background: var(--iv);
  }

  .wfreq-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
  }

  .wfreq-table tr {
    background: var(--wh);
    box-shadow: var(--sc);
  }

  .wfreq-table td {
    padding: 18px 24px;
    font-size: .85rem;
    color: var(--tw);
    vertical-align: middle;
  }

  .wfreq-table tr td:first-child {
    width: 75%;
    border-radius: 14px 0 0 14px;
    color: var(--ch);
  }

  .wfreq-table tr td:last-child {
    width: 25%;
    border-radius: 0 14px 14px 0;
    text-align: right;
  }

  .wellness-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .wellness-content {
    min-width: 0;
    flex: 1;
    padding-top: 9px;
  }

  .wellness-sub-activities {
    margin: 8px 0 0;
  }

  .wellness-title {
    font-weight: 600;
    color: var(--ch);
    line-height: 1.4;
  }

  .wfreq-ico {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--sfp);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .wfreq-ico i {
    color: var(--sf);
    font-size: .85rem;
  }

  .wellness-sub-activities {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
  }

  .wellness-sub-activities li {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 7px;
    color: var(--tw);
    font-size: .8rem;
    font-weight: 500;
    line-height: 1.4;
  }

  .wellness-sub-activities li:last-child {
    margin-bottom: 0;
  }

  .wellness-sub-activities li i {
    width: 13px;
    flex-shrink: 0;
    color: var(--sf);
    font-size: .7rem;
  }

  .wellness-frequency {
    white-space: nowrap;
  }

  .wfreq-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: .7rem;
    font-weight: 600;
    background: var(--sgp);
    color: var(--sg);
  }

  @media (max-width: 575.98px) {
    .wfreq-table td {
      padding: 16px 14px;
    }

    .wfreq-table tr td:first-child {
      width: 68%;
    }

    .wfreq-table tr td:last-child {
      width: 32%;
    }

    .wellness-item {
      gap: 9px;
    }

    .wfreq-ico {
      width: 34px;
      height: 34px;
    }

    .wellness-content {
      padding-top: 6px;
    }

    .wellness-title {
      font-size: .8rem;
    }

    .wellness-sub-activities {
      margin-top: 8px;
    }

    .wellness-sub-activities li {
      gap: 7px;
      margin-bottom: 5px;
      font-size: .74rem;
    }

    .wfreq-badge {
      padding: 5px 9px;
      font-size: .62rem;
    }
  }




  /* ─── VISIT CTA ─── */
  .visit-cta-section {
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 100px 0;
  }

  .visit-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(232, 114, 42, 0.15) 0%, transparent 70%);
  }

  .visit-cta-section .section-heading {
    color: white;
  }

  .visit-cta-section .section-sub {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 auto;
  }

  .visit-cta-section .section-label {
    color: var(--gold-light);
  }

  .visit-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 36px;
  }

  .btn-wa {
    background: #25D366;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  }

  .btn-wa:hover {
    background: #20b957;
    color: white;
    transform: translateY(-2px);
  }

  .btn-call {
    background: transparent;
    color: white;
    padding: 13px 28px;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: all 0.3s;
  }

  .btn-call:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.08);
    color: white;
  }




  /* ─── RESPONSIVE ─── */
  @media (max-width: 991px) {
    .hero-float-card {
      right: 10px;
    }

    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.big {
      grid-column: span 2;
    }
  }

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

    .hero-image-side {
      margin-top: 32px;
      padding-top: 0;
    }

    .hero-img-wrap img {
      height: 380px;
    }

    .hero-float-card {
      display: none;
    }

    .gallery-grid {
      grid-template-columns: 1fr 1fr;
    }

    .gallery-item.big {
      grid-column: span 2;
    }

    .gallery-item.big img {
      min-height: 240px;
    }

    .donation-inner {
      padding: 36px 24px;
    }

    .footer-bottom {
      flex-direction: column;
      gap: 12px;
      text-align: center;
    }

    .hamburger {
      display: flex;
    }

    .nav-links-desktop {
      display: none !important;
    }

    
  }