
    :root {
      --red-950: #470100;
      --red-900: #650301;
      --red-800: #850603;
      --red-700: #a40b06;
      --red-600: #bd1209;
      --gold-500: #f1bd4d;
      --gold-400: #ffd66d;
      --gold-300: #ffe39a;
      --cream-100: #fff5db;
      --cream-200: #f7e5bd;
      --cream-300: #ecc785;
      --brown-800: #4c1808;
      --brown-700: #6d260c;
      --shadow: 0 22px 60px rgba(38, 0, 0, .42);
      --max: 1470px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: #fff8e6;
      background:
        radial-gradient(circle at 52% 8%, rgba(255, 169, 41, .28), transparent 28rem),
        linear-gradient(180deg, rgba(107, 4, 1, .96), rgba(121, 5, 3, .98) 42%, rgba(80, 2, 0, 1)),
        url("assets/bg-pattern.svg") repeat;
      font-family: Arial, Helvetica, sans-serif;
      min-width: 320px;
    }

    .site-header::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 30px;
      background: url("assets/top-border.svg") repeat-x top left / auto 30px;
      pointer-events: none;
      z-index: 80;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

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

    button,
    input,
    select {
      font: inherit;
    }

    .page {
      position: relative;
      z-index: 1;
      overflow: hidden;
    }

    .container {
      width: min(var(--max), calc(100% - 42px));
      margin-inline: auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 70;
      background:
        radial-gradient(circle at 12% 10%, rgba(211, 50, 16, .45), transparent 30%),
        linear-gradient(90deg, #750401, #8e0502 48%, #640301);
      box-shadow: 0 12px 30px rgba(31, 0, 0, .3);
    }

    .nav-wrap {
      min-height: 130px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 28px;
      padding-block: 24px 18px;
    }

    .brand {
      display: inline-grid;
      grid-template-columns: 78px auto;
      align-items: center;
      gap: 12px;
      min-width: max-content;
    }

    .brand img {
      width: 78px;
      height: 78px;
    }

    .brand-name {
      display: block;
      color: var(--gold-400);
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(1.9rem, 2.6vw, 2.75rem);
      font-weight: 700;
      line-height: 1;
    }

    .brand-tagline {
      display: block;
      margin-top: 8px;
      color: #fff7e8;
      font-size: .82rem;
      font-weight: 800;
      letter-spacing: .04em;
      text-transform: uppercase;
    }

    .nav {
      justify-self: center;
    }

    .nav ul {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(14px, 2.1vw, 34px);
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .nav a {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 42px;
      color: #fffaf0;
      font-size: .89rem;
      font-weight: 800;
      letter-spacing: .03em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .nav a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 4px;
      height: 2px;
      transform: scaleX(0);
      transform-origin: left;
      background: var(--gold-500);
      transition: transform .2s ease;
    }

    .nav a:hover::after,
    .nav a.is-active::after {
      transform: scaleX(1);
    }

    .nav a.is-active {
      color: var(--gold-400);
    }

    .mobile-book-item {
      display: none;
    }

    .nav .mobile-book-link {
      color: #5b1305;
    }

    .nav .mobile-book-link::after {
      display: none;
    }

    .gold-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 54px;
      padding: 0 28px;
      border: 0;
      border-radius: 4px;
      color: #5b1305;
      background: #f6ebc7;
      box-shadow: none;
      font-weight: 900;
      letter-spacing: .02em;
      text-transform: uppercase;
      white-space: nowrap;
      cursor: pointer;
    }

    .gold-btn:hover {
      filter: brightness(1.06);
      transform: translateY(-1px);
    }

    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border: 1px solid rgba(255, 211, 106, .7);
      border-radius: 4px;
      color: var(--gold-400);
      background: rgba(73, 2, 0, .35);
      cursor: pointer;
    }

    .menu-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      margin: 5px auto;
      background: currentColor;
    }

    .hero {
      position: relative;
      border-bottom: 4px solid rgba(234, 168, 62, .85);
      background:
        radial-gradient(circle at 60% 36%, rgba(252, 159, 30, .35), transparent 25rem),
        radial-gradient(circle at 15% 18%, rgba(255, 61, 34, .22), transparent 20rem);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(310px, .86fr) minmax(390px, 1fr) minmax(300px, 350px);
      align-items: center;
      gap: clamp(20px, 3vw, 44px);
      min-height: 590px;
      padding-block: 36px 24px;
    }

    .hero-copy {
      align-self: center;
      padding-block: 20px;
    }

    .hero h1 {
      margin: 0;
      color: #fff5db;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(3rem, 4.6vw, 5.2rem);
      line-height: 1.05;
      font-weight: 800;
      text-wrap: balance;
      text-shadow: 0 5px 14px rgba(34, 0, 0, .35);
    }

    .hero h1 span {
      color: var(--gold-400);
    }

    .title-rule {
      width: min(420px, 100%);
      height: 22px;
      margin: 20px 0 14px;
      background: url("assets/section-flourish.svg") no-repeat left center / 260px auto;
      opacity: .94;
    }

    .hero-sub {
      margin: 0 0 20px;
      color: #fff8eb;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(1.2rem, 1.75vw, 1.7rem);
      line-height: 1.35;
    }

    .outline-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 54px;
      padding: 0 30px;
      border: 2px solid #e6ac39;
      border-radius: 999px;
      color: var(--gold-400);
      background: rgba(124, 4, 2, .55);
      box-shadow: inset 0 0 0 1px rgba(255, 218, 122, .14);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 1.25rem;
      font-weight: 800;
      text-align: center;
    }

    .hero-mini-services {
      display: grid;
      grid-template-columns: repeat(4, minmax(78px, 1fr));
      gap: 18px;
      max-width: 500px;
      margin-top: 32px;
    }

    .mini-service {
      display: grid;
      justify-items: center;
      gap: 9px;
      color: #fff8ea;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 1rem;
      line-height: 1.15;
      text-align: center;
    }

    .mini-service img {
      width: 70px;
      height: 70px;
    }

    .hero-art {
      position: relative;
      min-width: 0;
    }

    .hero-art::before {
      content: "";
      position: absolute;
      inset: 11% 4% 3%;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 183, 47, .38), transparent 62%);
      filter: blur(8px);
    }

    .hero-art img {
      position: relative;
      z-index: 1;
      width: min(760px, 100%);
      margin-inline: auto;
      filter: drop-shadow(0 18px 26px rgba(30, 0, 0, .44));
    }

    .booking-card {
      position: relative;
      align-self: center;
      padding: 25px 24px 20px;
      color: var(--brown-800);
      background:
        linear-gradient(135deg, transparent 16px, var(--cream-100) 0) top left,
        linear-gradient(225deg, transparent 16px, var(--cream-100) 0) top right,
        linear-gradient(45deg, transparent 16px, var(--cream-100) 0) bottom left,
        linear-gradient(315deg, transparent 16px, var(--cream-100) 0) bottom right;
      background-size: 51% 51%;
      background-repeat: no-repeat;
      border: 0;
      box-shadow: var(--shadow);
    }

    .booking-card h2 {
      margin: 0;
      color: #a40d06;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 1.85rem;
      line-height: 1.03;
      text-align: center;
    }

    .booking-card .small-flourish {
      width: 118px;
      height: 17px;
      margin: 13px auto 14px;
      background: url("assets/section-flourish.svg") no-repeat center / 118px auto;
      opacity: .72;
    }

    .field {
      position: relative;
      margin-bottom: 11px;
    }

    .field svg {
      position: absolute;
      left: 13px;
      top: 50%;
      width: 17px;
      height: 17px;
      transform: translateY(-50%);
      color: #a45c24;
      pointer-events: none;
    }

    .field input,
    .field select {
      width: 100%;
      min-height: 44px;
      padding: 0 12px 0 40px;
      border: 1px solid #c99055;
      border-radius: 6px;
      color: #75451d;
      background: #fff2d4;
      outline: none;
    }

    .field input:focus,
    .field select:focus {
      border-color: #a40d06;
      box-shadow: 0 0 0 3px rgba(164, 13, 6, .12);
    }

    .book-now {
      width: 100%;
      min-height: 54px;
      margin-top: 4px;
      border: 0;
      border-radius: 7px;
      color: #fff8e4;
      background: linear-gradient(180deg, #be160d, #870603);
      box-shadow: 0 8px 0 rgba(86, 3, 1, .28), inset 0 0 0 1px rgba(255, 209, 102, .35);
      font-weight: 900;
      letter-spacing: .03em;
      text-transform: uppercase;
      cursor: pointer;
    }

    .book-now:hover {
      filter: brightness(1.08);
    }

    .privacy {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin: 18px 0 0;
      color: #7d4c22;
      font-size: .82rem;
      font-weight: 700;
    }

    .form-status {
      min-height: 19px;
      margin: 10px 0 0;
      color: #8a0a05;
      font-size: .84rem;
      font-weight: 800;
      text-align: center;
    }

    .premium {
      position: relative;
      z-index: 2;
      margin-top: -1px;
      color: #3e1407;
      background:
        linear-gradient(180deg, rgba(255, 246, 223, .96), rgba(251, 232, 188, .96)),
        url("assets/bg-pattern.svg") repeat;
      border-top: 4px solid #d59c3f;
      border-bottom: 1px solid #d89f41;
      border-radius: clamp(26px, 5vw, 70px) clamp(26px, 5vw, 70px) 0 0;
      box-shadow: 0 -7px 0 rgba(255, 224, 135, .45);
      padding: 21px 0 24px;
    }

    .section-heading {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin: 0 auto 14px;
      color: #a40d06;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(1.85rem, 2.4vw, 2.5rem);
      line-height: 1.1;
      text-align: center;
    }

    .section-heading::before,
    .section-heading::after {
      content: "";
      width: 100px;
      height: 22px;
      background: url("assets/section-flourish.svg") no-repeat center / 150px auto;
      opacity: .8;
    }

    .section-heading::after {
      transform: scaleX(-1);
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(135px, 1fr));
      gap: 14px;
    }

    .service-card {
      min-height: 228px;
      padding: 20px 14px 17px;
      border: 1px solid #dfae62;
      border-radius: 8px;
      background: linear-gradient(180deg, rgba(255, 247, 226, .88), rgba(255, 238, 195, .82));
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .45);
      text-align: center;
    }

    .service-card img {
      width: 82px;
      height: 82px;
      margin: 0 auto 10px;
      filter: drop-shadow(0 8px 10px rgba(90, 22, 4, .18));
    }

    .service-card h3 {
      margin: 0 0 8px;
      color: #4b1708;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 1.08rem;
      line-height: 1.12;
    }

    .service-card p {
      margin: 0;
      color: #4f2d18;
      font-family: Georgia, "Times New Roman", serif;
      font-size: .94rem;
      line-height: 1.3;
    }

    .why {
      padding: 24px 0 20px;
      border-bottom: 1px solid rgba(239, 184, 73, .55);
      background:
        radial-gradient(circle at 50% 0, rgba(224, 41, 18, .35), transparent 32rem),
        rgba(103, 4, 1, .65);
    }

    /* Gallery section - sits between .premium (cream) and .why (dark red) */
    .gallery {
      position: relative;
      color: #3e1407;
      padding: 22px 0 26px;
      background:
        linear-gradient(180deg, rgba(255, 246, 223, .96), rgba(251, 232, 188, .96)),
        url("assets/bg-pattern.svg") repeat;
      border-bottom: 1px solid rgba(216, 159, 65, .55);
    }

    .gallery .section-heading {
      color: #a40d06;
      margin-bottom: 18px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .gallery-item {
      position: relative;
      display: block;
      overflow: hidden;
      aspect-ratio: 4 / 3;
      border-radius: 14px;
      border: 1px solid #d59c3f;
      background: #fff5db;
      box-shadow:
        0 10px 22px rgba(90, 22, 4, .18),
        inset 0 0 0 1px rgba(255, 255, 255, .55);
      transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .55s ease, filter .35s ease;
    }

    .gallery-item:hover,
    .gallery-item:focus-visible {
      transform: translateY(-4px);
      box-shadow:
        0 18px 36px rgba(90, 22, 4, .28),
        inset 0 0 0 1px rgba(255, 255, 255, .7);
      filter: brightness(1.03);
    }

    .gallery-item:hover img,
    .gallery-item:focus-visible img {
      transform: scale(1.06);
    }

    .why .section-heading {
      color: var(--gold-400);
      margin-bottom: 18px;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(145px, 1fr));
      gap: 16px;
      align-items: start;
    }

    .why-item {
      display: grid;
      grid-template-columns: 64px 1fr;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .why-item img {
      width: 64px;
      height: 64px;
    }

    .why-item span {
      color: #fff7e6;
      font-size: .92rem;
      font-weight: 800;
      line-height: 1.2;
    }

    .stats {
      padding: 17px 0 16px;
    }

    .stats-frame {
      position: relative;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      padding: 28px 28px;
      border: 2px solid #e0aa43;
      background: linear-gradient(90deg, rgba(161, 9, 5, .9), rgba(189, 19, 10, .75), rgba(146, 7, 4, .9));
      box-shadow: inset 0 0 0 1px rgba(255, 213, 102, .35);
    }

    .stat {
      min-width: 0;
      padding: 0 14px;
      border-right: 1px solid rgba(255, 213, 102, .65);
      text-align: center;
    }

    .stat:last-child {
      border-right: 0;
    }

    .stat strong {
      display: block;
      color: var(--gold-400);
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(2.2rem, 3.2vw, 3.6rem);
      line-height: 1;
    }

    .stat span {
      display: block;
      margin-top: 11px;
      color: #fff7e8;
      font-size: 1rem;
      line-height: 1.2;
    }

    .reviews-section {
      position: relative;
      padding: 4px 0 28px;
      background:
        radial-gradient(circle at 53% 2%, rgba(255, 175, 50, .18), transparent 24rem),
        rgba(120, 5, 2, .58);
    }

    .reviews-section .section-heading {
      color: var(--gold-400);
      margin-bottom: 14px;
    }

    .rating-pill {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      width: min(635px, 100%);
      min-height: 50px;
      margin: 0 auto 22px;
      padding: 8px 24px;
      border: 2px solid #d29a3d;
      border-radius: 999px;
      color: #4b1708;
      background: #fff4d9;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .65), 0 10px 22px rgba(33, 0, 0, .18);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 1.25rem;
      font-weight: 800;
      text-align: center;
    }

    .stars {
      color: #de7a09;
      letter-spacing: .14em;
      white-space: nowrap;
    }

    .review-wrap {
      position: relative;
    }

    .review-track {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      align-items: stretch;
    }

    .review-card {
      display: grid;
      grid-template-columns: 112px 1fr;
      gap: 18px;
      min-height: 205px;
      padding: 25px 24px;
      color: #3f170a;
      background: var(--cream-100);
      border: 1px solid #d9a14a;
      border-radius: 16px;
      box-shadow:
        0 14px 30px rgba(86, 22, 4, .14),
        inset 0 1px 0 rgba(255, 255, 255, .55);
    }

    .review-card img {
      width: 104px;
      height: 104px;
      border-radius: 50%;
      box-shadow: 0 10px 18px rgba(86, 22, 4, .22);
    }

    .review-card blockquote {
      margin: 0 0 8px;
      color: #432012;
      font-family: Georgia, "Times New Roman", serif;
      font-size: .96rem;
      line-height: 1.35;
    }

    .review-stars {
      color: #e58a12;
      letter-spacing: .12em;
      font-size: .98rem;
    }

    .review-card h3 {
      margin: 8px 0 1px;
      color: #5b1808;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 1.02rem;
    }

    .review-card p {
      margin: 0;
      color: #452414;
      font-size: .92rem;
    }

    /* Hidden review cards that haven't been "Load More"d yet */
    .review-card.is-collapsed {
      display: none;
    }

    /* Load More button wrapper + button */
    .review-more-wrap {
      display: flex;
      justify-content: center;
      margin-top: 22px;
    }

    .review-more-wrap[hidden] {
      display: none;
    }

    .review-load-more {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 48px;
      padding: 0 26px;
      color: #4c1808;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 1.02rem;
      font-weight: 700;
      letter-spacing: .2px;
      background: linear-gradient(135deg, #ffd66d, #f1bd4d);
      border: 1px solid #c98b2a;
      border-radius: 999px;
      cursor: pointer;
      box-shadow:
        0 12px 26px rgba(20, 0, 0, .45),
        inset 0 1px 0 rgba(255, 255, 255, .55);
      transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
    }

    .review-load-more:hover,
    .review-load-more:focus-visible {
      transform: translateY(-2px);
      filter: brightness(1.05);
      box-shadow:
        0 16px 32px rgba(20, 0, 0, .55),
        inset 0 1px 0 rgba(255, 255, 255, .65);
    }

    .review-load-more:active {
      transform: translateY(0);
      filter: brightness(.98);
    }

    .review-load-more:hover svg {
      transform: translateY(2px);
    }

    .slider-arrow {
      position: absolute;
      top: 50%;
      width: 44px;
      height: 44px;
      border: 1px solid #dfa83e;
      border-radius: 50%;
      color: var(--gold-400);
      background: rgba(132, 4, 2, .78);
      transform: translateY(-50%);
      cursor: pointer;
    }

    .slider-arrow:hover {
      background: rgba(170, 12, 6, .9);
    }

    .slider-arrow.prev {
      left: -18px;
    }

    .slider-arrow.next {
      right: -18px;
    }

    .cta-band {
      padding: 0 0 42px;
    }

    .cta-frame {
      position: relative;
      display: grid;
      grid-template-columns: 250px 1fr 390px;
      align-items: center;
      gap: 34px;
      min-height: 250px;
      padding: 28px 35px;
      border: 2px solid #dca33f;
      color: #fff7e5;
      background:
        url("assets/corner-ornament.svg") no-repeat left top / 150px auto,
        url("assets/corner-ornament.svg") no-repeat right top / 150px auto,
        linear-gradient(90deg, rgba(151, 8, 4, .92), rgba(185, 16, 8, .88), rgba(112, 4, 1, .92));
      box-shadow: inset 0 0 0 1px rgba(255, 219, 124, .25);
    }

    .cta-frame::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: 0;
      width: 210px;
      height: 210px;
      background: url("assets/corner-ornament.svg") no-repeat center / contain;
      transform: rotate(180deg);
      opacity: .8;
      pointer-events: none;
    }

    .prayer {
      width: min(210px, 100%);
      margin-inline: auto;
      filter: drop-shadow(0 16px 25px rgba(24, 0, 0, .4));
    }

    .cta-copy h2 {
      margin: 0 0 14px;
      color: var(--gold-400);
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(2rem, 3vw, 3rem);
      line-height: 1.1;
    }

    .cta-copy p {
      max-width: 650px;
      margin: 0 0 22px;
      color: #fff7e5;
      font-size: 1.07rem;
      line-height: 1.55;
    }

    .cta-list {
      display: grid;
      gap: 16px;
      margin: 0;
      padding: 0 0 0 34px;
      border-left: 2px solid rgba(255, 221, 130, .75);
      list-style: none;
      font-size: 1rem;
      font-weight: 700;
      z-index: 1;
    }

    .cta-list li {
      display: grid;
      grid-template-columns: 30px 1fr;
      align-items: center;
      gap: 10px;
    }

    .cta-list .round {
      display: grid;
      place-items: center;
      width: 30px;
      height: 30px;
      border: 2px solid #efbd4f;
      border-radius: 50%;
      color: var(--gold-400);
      font-size: .84rem;
    }

    .whatsapp-float {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 60;
      display: grid;
      place-items: center;
      width: 72px;
      height: 72px;
      padding: 0;
      border-radius: 50%;
      color: #fff;
      background: #17bf5f;
      box-shadow: 0 18px 38px rgba(0, 0, 0, .28);
      font-weight: 900;
      line-height: 1.12;
    }

    .whatsapp-float img {
      width: 44px;
      height: 44px;
    }

    .call-float {
      position: fixed;
      right: 24px;
      bottom: 112px;
      z-index: 60;
      display: grid;
      place-items: center;
      width: 72px;
      height: 72px;
      padding: 0;
      border-radius: 50%;
      color: #fff;
      background: #0b63d1;
      box-shadow: 0 18px 38px rgba(0, 0, 0, .28);
    }

    .call-float svg {
      width: 40px;
      height: 40px;
      transition: transform .3s ease;
    }

    .footer {
      padding: 18px 0 26px;
      border-top: 1px solid rgba(234, 174, 64, .45);
      color: rgba(255, 246, 224, .82);
      text-align: center;
      font-size: .9rem;
    }

    /* ===== Shared Site Footer ===== */
    .site-footer {
      position: relative;
      margin-top: 36px;
      padding: 56px 0 0;
      color: #fff5db;
      background:
        radial-gradient(circle at 18% 0%, rgba(252, 159, 30, .22), transparent 38%),
        linear-gradient(180deg, #6a0302 0%, #4a0101 100%);
      border-top: 3px solid rgba(234, 168, 62, .85);
    }

    .site-footer::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 28px;
      background: url("assets/top-border.svg") repeat-x top left / auto 28px;
      transform: translateY(-28px);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
      gap: 36px;
      padding-bottom: 36px;
    }

    .footer-col h4 {
      margin: 0 0 16px;
      color: var(--gold-400);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 1.15rem;
      font-weight: 800;
      letter-spacing: .03em;
      text-transform: uppercase;
      position: relative;
      padding-bottom: 10px;
    }

    .footer-col h4::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 42px;
      height: 2px;
      background: var(--gold-500);
    }

    .footer-col ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 10px;
    }

    .footer-col a {
      color: rgba(255, 246, 224, .82);
      font-size: .96rem;
      transition: color .2s ease, padding-left .2s ease;
    }

    .footer-col a:hover {
      color: var(--gold-400);
      padding-left: 4px;
    }

    .footer-brand .brand {
      display: inline-grid;
      grid-template-columns: 60px auto;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }

    .footer-brand .brand img {
      width: 60px;
      height: 60px;
    }

    .footer-brand .brand-name {
      color: var(--gold-400);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 1.55rem;
      font-weight: 700;
    }

    .footer-brand .brand-tagline {
      display: block;
      margin-top: 4px;
      color: #fff7e8;
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .04em;
      text-transform: uppercase;
    }

    .footer-about {
      margin: 0;
      max-width: 360px;
      color: rgba(255, 246, 224, .78);
      font-size: .94rem;
      line-height: 1.55;
    }

    .footer-contact li {
      display: grid;
      grid-template-columns: 24px 1fr;
      align-items: center;
      gap: 10px;
      color: rgba(255, 246, 224, .82);
      font-size: .95rem;
    }

    .footer-contact .ico {
      display: grid;
      place-items: center;
      width: 26px;
      height: 26px;
      border: 1.5px solid var(--gold-500);
      border-radius: 50%;
      color: var(--gold-400);
      font-size: .82rem;
    }

    .footer-cta {
      margin-top: 16px;
    }

    .footer-cta .gold-btn {
      min-height: 46px;
      padding: 0 22px;
      font-size: 1rem;
      color: #5b1305;
      background: #ffd66d;
      border: 1px solid #c98b2a;
      box-shadow: 0 8px 18px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .5);
    }

    .footer-cta .gold-btn:hover,
    .footer-cta .gold-btn:focus-visible {
      background: #ffe39a;
      color: #5b1305;
    }

    .footer-bar {
      padding: 16px 0;
      border-top: 1px solid rgba(234, 174, 64, .35);
      background: rgba(0, 0, 0, .18);
      font-size: .86rem;
    }

    .footer-bar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      color: rgba(255, 246, 224, .72);
    }

    .footer-legal {
      display: flex;
      gap: 18px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .footer-legal a {
      color: rgba(255, 246, 224, .78);
      transition: color .2s ease;
    }

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

    @media (max-width: 980px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
      }
    }

    @media (max-width: 560px) {
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 26px;
      }

      .footer-bar-inner {
        justify-content: center;
        text-align: center;
      }

      .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
      }
    }

    /* ===== Generic page content blocks (About / Contact / Products / Terms) ===== */
    .page-hero {
      position: relative;
      padding: 90px 0 36px;
      text-align: center;
      border-bottom: 3px solid rgba(234, 168, 62, .55);
      background:
        radial-gradient(circle at 50% 0%, rgba(252, 159, 30, .28), transparent 40%),
        linear-gradient(180deg, rgba(107, 4, 1, .96), rgba(80, 2, 0, .98));
    }

    .page-hero h1 {
      margin: 0;
      color: #fff5db;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(2.1rem, 4.6vw, 3.4rem);
      font-weight: 800;
      text-shadow: 0 4px 14px rgba(0, 0, 0, .35);
    }

    .page-hero h1 span { color: var(--gold-400); }

    .page-hero p {
      max-width: 760px;
      margin: 14px auto 0;
      color: rgba(255, 246, 224, .88);
      font-size: 1.05rem;
      line-height: 1.55;
    }

    .page-section {
      padding: 56px 0;
    }

    .page-card {
      padding: 26px 24px;
      border: 1px solid rgba(234, 174, 64, .35);
      border-radius: 14px;
      background: rgba(0, 0, 0, .18);
      box-shadow: 0 14px 36px rgba(20, 0, 0, .28);
    }

    .page-card h3 {
      margin: 0 0 10px;
      color: var(--gold-400);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 1.2rem;
    }

    .page-card p {
      margin: 0;
      color: rgba(255, 246, 224, .86);
      font-size: .98rem;
      line-height: 1.6;
    }

    .info-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .info-grid .page-card { text-align: left; }

    @media (max-width: 760px) {
      .info-grid { grid-template-columns: 1fr; }
    }

    /* Mobile-only hero image strip shown right after the navbar */
    .mobile-hero {
      display: none;
      position: relative;
      padding: 14px 0 6px;
      text-align: center;
      animation: heroBreath 6s ease-in-out infinite;
      will-change: transform;
    }

    .mobile-hero img {
      position: relative;
      z-index: 1;
      width: min(560px, 100%);
      max-height: 460px;
      object-fit: contain;
      margin-inline: auto;
      filter: drop-shadow(0 18px 28px rgba(30, 0, 0, .55));
    }

    /* Spinning dashed zodiac halo behind the mobile hero image */
    .mobile-hero::after {
      content: "";
      position: absolute;
      inset: 4% 6% -2%;
      z-index: 0;
      border-radius: 50%;
      border: 1px dashed rgba(255, 213, 102, .32);
      animation: spin 90s linear infinite;
      pointer-events: none;
    }

    @keyframes heroBreath {
      0%, 100% { transform: translateY(0); }
      50%      { transform: translateY(-8px); }
    }

    @media (max-width: 760px) {
      .mobile-hero { display: block; }
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }

    .product-card {
      display: grid;
      grid-template-rows: auto 1fr auto;
      gap: 12px;
      padding: 22px 20px;
      text-align: center;
      border: 1px solid rgba(234, 174, 64, .4);
      border-radius: 16px;
      background:
        linear-gradient(180deg, rgba(255, 215, 130, .08), rgba(0, 0, 0, .2)),
        rgba(74, 1, 1, .55);
      box-shadow: 0 18px 36px rgba(20, 0, 0, .32);
    }

    .product-card .picon {
      width: 64px;
      height: 64px;
      margin: 0 auto;
      border-radius: 50%;
      background: #960905;
      border: 2px solid #f0c24f;
      display: grid;
      place-items: center;
      color: #ffd466;
      font-size: 1.8rem;
    }

    .product-card h3 {
      margin: 0;
      color: var(--gold-400);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 1.18rem;
    }

    .product-card p {
      margin: 0;
      color: rgba(255, 246, 224, .84);
      font-size: .94rem;
      line-height: 1.55;
    }

    .product-card .price {
      display: inline-block;
      color: #fff7da;
      font-weight: 800;
      font-size: 1.05rem;
      margin-top: 4px;
    }

    .product-card .gold-btn {
      min-height: 40px;
      padding: 0 18px;
      font-size: .92rem;
    }

    @media (max-width: 900px) {
      .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 520px) {
      .product-grid { grid-template-columns: 1fr; }
    }

    .legal-content {
      max-width: 880px;
      margin: 0 auto;
      padding: 48px 24px 36px;
      color: rgba(255, 246, 224, .9);
    }

    .legal-content h2 {
      margin: 28px 0 12px;
      color: var(--gold-400);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 1.35rem;
    }

    .legal-content h1 {
      margin: 0 0 8px;
      color: #fff5db;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(1.9rem, 4vw, 2.6rem);
    }

    .legal-content p,
    .legal-content li {
      font-size: .98rem;
      line-height: 1.7;
      color: rgba(255, 246, 224, .88);
    }

    .legal-content ul {
      padding-left: 22px;
    }

    /* ===== Animation layer ===== */

    /* Ambient twinkling starfield over the whole page */
    .starfield {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .starfield span {
      position: absolute;
      width: 2px;
      height: 2px;
      border-radius: 50%;
      background: #ffe6a8;
      opacity: 0;
      animation: twinkle var(--tw-dur, 4s) ease-in-out infinite;
      animation-delay: var(--tw-delay, 0s);
    }

    .starfield span.is-big {
      width: 3px;
      height: 3px;
      box-shadow: 0 0 6px rgba(255, 213, 102, .9);
    }

    @keyframes twinkle {
      0%, 100% { opacity: 0; transform: scale(.6); }
      50% { opacity: var(--tw-peak, .9); transform: scale(1); }
    }

    /* Slowly rotating zodiac halo behind the hero art */
    .hero-art::after {
      content: "";
      position: absolute;
      inset: -8% -2% -12%;
      z-index: 0;
      border-radius: 50%;
      border: 1px dashed rgba(255, 213, 102, .28);
      animation: spin 90s linear infinite;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* The zodiac wheel inside the hero SVG slowly spins */
    .hero-art img {
      animation: floaty 7s ease-in-out infinite;
    }

    @keyframes floaty {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-14px); }
    }

    /* Gold shimmer sweep across the hero headline */
    .hero h1 span {
      background: linear-gradient(100deg, var(--gold-400) 30%, #fff7da 50%, var(--gold-400) 70%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: shimmer 4.5s linear infinite;
    }

    @keyframes shimmer {
      to { background-position: 200% center; }
    }

    /* Scroll-reveal entrances (gated by .reveal-on on <html>) */
    .reveal-on [data-reveal] {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s cubic-bezier(.22, .61, .36, 1),
                  transform .7s cubic-bezier(.22, .61, .36, 1);
      transition-delay: var(--reveal-delay, 0s);
      will-change: opacity, transform;
    }

    .reveal-on [data-reveal].is-visible {
      opacity: 1;
      transform: none;
    }

    /* Cards: lift on hover / focus / keyboard focus */
    .service-card,
    .review-card,
    .why-item,
    .mini-service,
    .stat {
      transition: transform .35s cubic-bezier(.22, .61, .36, 1),
                  box-shadow .35s ease,
                  filter .35s ease;
    }

    .service-card:hover,
    .review-card:hover,
    .why-item:hover,
    .stat:hover,
    .service-card:focus-within,
    .review-card:focus-within {
      transform: translateY(-6px);
      filter: brightness(1.03);
    }

    .service-card:hover {
      box-shadow: 0 26px 48px rgba(90, 22, 4, .22), inset 0 0 0 1px rgba(255, 255, 255, .6);
    }

    .mini-service:hover {
      transform: translateY(-4px) scale(1.04);
    }

    .mini-service img,
    .service-card img,
    .why-item img,
    .stat:hover strong {
      transition: transform .35s ease;
    }

    .service-card:hover img,
    .why-item:hover img,
    .mini-service:hover img {
      transform: scale(1.08) rotate(-3deg);
    }

    /* Icon pop on the stats numbers */
    .stat strong {
      display: inline-block;
    }

    /* Buttons: animated sheen sweep + active press */
    .gold-btn,
    .outline-btn,
    .book-now {
      position: relative;
      overflow: hidden;
      transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
    }

    .gold-btn::after,
    .book-now::after {
      content: "";
      position: absolute;
      top: 0;
      left: -120%;
      width: 60%;
      height: 100%;
      background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .55), transparent);
      transform: skewX(-18deg);
      pointer-events: none;
    }

    .gold-btn:hover::after,
    .book-now:hover::after {
      animation: sheen .9s ease;
    }

    @keyframes sheen {
      to { left: 130%; }
    }

    .gold-btn:active,
    .book-now:active,
    .outline-btn:active {
      transform: translateY(2px);
    }

    /* WhatsApp float: gentle pulse + icon wobble on hover */
    .whatsapp-float {
      animation: wp-pulse 2.6s ease-in-out infinite;
    }

    @keyframes wp-pulse {
      0%, 100% { box-shadow: 0 18px 38px rgba(0, 0, 0, .28), 0 0 0 0 rgba(23, 191, 95, .5); }
      50% { box-shadow: 0 18px 38px rgba(0, 0, 0, .28), 0 0 0 14px rgba(23, 191, 95, 0); }
    }

    .whatsapp-float img {
      transition: transform .3s ease;
    }

    .whatsapp-float:hover img {
      transform: rotate(12deg) scale(1.05);
    }

    .call-float {
      animation: call-pulse 2.7s ease-in-out infinite;
    }

    @keyframes call-pulse {
      0%, 100% { box-shadow: 0 18px 38px rgba(0, 0, 0, .28), 0 0 0 0 rgba(11, 99, 209, .45); }
      50% { box-shadow: 0 18px 38px rgba(0, 0, 0, .28), 0 0 0 14px rgba(11, 99, 209, 0); }
    }

    .call-float:hover svg {
      transform: rotate(-10deg) scale(1.05);
    }

    /* Brand logo: soft breathing glow */
    .brand img {
      transition: filter .4s ease, transform .4s ease;
    }

    .brand:hover img {
      transform: rotate(8deg) scale(1.04);
      filter: drop-shadow(0 0 10px rgba(255, 213, 102, .6));
    }

    /* Respect users who prefer less motion */
    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation: none !important;
        transition: none !important;
      }

      .reveal-on [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
      }

      html {
        scroll-behavior: auto;
      }
    }

    @media (max-width: 1320px) {
      .nav-wrap {
        grid-template-columns: auto auto auto;
      }

      .nav ul {
        gap: 16px;
      }

      .book-link {
        padding-inline: 20px;
      }

      .hero-grid {
        grid-template-columns: minmax(300px, .8fr) minmax(340px, 1fr) minmax(290px, 330px);
        gap: 20px;
      }

      .hero h1 {
        font-size: clamp(2.9rem, 4.4vw, 4.4rem);
      }

      .service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .why-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
      }
    }

    @media (max-width: 1320px) {
      .container {
        width: min(var(--max), calc(100% - 28px));
      }

      .nav-wrap {
        position: relative;
        min-height: 98px;
        grid-template-columns: 1fr auto auto;
        gap: 12px;
      }

      .brand {
        grid-template-columns: 60px auto;
      }

      .brand img {
        width: 60px;
        height: 60px;
      }

      .brand-name {
        font-size: 1.8rem;
      }

      .brand-tagline {
        font-size: .68rem;
      }

      .menu-toggle {
        display: block;
        position: relative;
        z-index: 85;
      }

      .nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: auto;
        z-index: 80;
        display: block;
        width: min(320px, calc(100vw - 28px));
        max-height: calc(100dvh - 112px);
        overflow-y: auto;
        padding: 14px 16px 130px;
        border: 1px solid rgba(241, 189, 77, .55);
        border-top: 0;
        background: linear-gradient(180deg, #790401, #5e0201);
        box-shadow: -18px 24px 40px rgba(35, 0, 0, .42);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(18px);
        transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
      }

      .nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
      }

      .nav ul {
        display: grid;
        grid-template-columns: 1fr;
        gap: 6px;
      }

      .nav a {
        width: 100%;
        min-height: 34px;
        font-size: .82rem;
        justify-content: flex-start;
        padding-inline: 0;
      }

      .mobile-book-item {
        display: block;
        margin-top: 10px;
      }

      .nav .mobile-book-link {
        justify-content: center;
        min-height: 42px;
        padding-inline: 14px;
      }

      .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(310px, .8fr);
        align-items: start;
        min-height: auto;
      }

      .hero-copy {
        grid-column: 1 / -1;
        text-align: center;
      }

      .title-rule {
        margin-inline: auto;
        background-position: center;
      }

      .hero-mini-services {
        margin-inline: auto;
      }

      .booking-card {
        align-self: center;
      }

      .stats-frame {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 24px;
      }

      .stat:nth-child(3) {
        border-right: 0;
      }

      .review-track {
        grid-template-columns: 1fr;
      }

      .review-card {
        width: min(650px, 100%);
        margin-inline: auto;
      }

      .slider-arrow {
        display: none;
      }

      .cta-frame {
        grid-template-columns: 170px 1fr;
      }

      .cta-list {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-left: 0;
        padding-left: 0;
      }
    }

    @media (max-width: 760px) {
      .site-header::before {
        height: 22px;
        background-size: auto 22px;
      }

      .container {
        width: min(var(--max), calc(100% - 20px));
      }

      .site-header {
        position: sticky;
      }

      .nav-wrap {
        padding-block: 18px 12px;
      }

      .brand {
        min-width: 0;
      }

      .brand-name {
        font-size: clamp(1.35rem, 7vw, 1.75rem);
      }

      .brand-tagline {
        display: none;
      }

      .book-link {
        display: none;
      }

      .hero-grid {
        grid-template-columns: 1fr;
        padding-block: 20px 18px;
      }

      .hero h1 {
        font-size: clamp(2.2rem, 11vw, 3.15rem);
      }

      .hero-sub {
        font-size: 1.08rem;
      }

      .outline-btn {
        width: min(100%, 370px);
        min-height: 50px;
        padding-inline: 18px;
        font-size: 1.08rem;
      }

      .hero-mini-services {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 330px;
      }

      .hero-art {
        display: none;
      }

      .booking-card {
        order: 3;
        width: min(410px, 100%);
        margin-inline: auto;
      }

      .premium {
        border-radius: 28px 28px 0 0;
        padding-top: 18px;
      }

      .section-heading {
        gap: 9px;
        font-size: 1.72rem;
      }

      .section-heading::before,
      .section-heading::after {
        width: 44px;
        background-size: 90px auto;
      }

      .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
      }

      .service-card {
        min-height: 210px;
        padding: 16px 9px;
      }

      .service-card img {
        width: 72px;
        height: 72px;
      }

      .service-card h3 {
        font-size: 1rem;
      }

      .service-card p {
        font-size: .86rem;
      }

      .why-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
      }

      .gallery-item {
        border-radius: 10px;
      }

      .why-item {
        grid-template-columns: 58px 1fr;
      }

      .why-item img {
        width: 58px;
        height: 58px;
      }

      .stats-frame {
        grid-template-columns: 1fr;
        padding: 20px 18px;
      }

      .stat,
      .stat:nth-child(3) {
        padding: 14px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 213, 102, .45);
      }

      .stat:first-child {
        padding-top: 0;
      }

      .stat:last-child {
        padding-bottom: 0;
        border-bottom: 0;
      }

      .rating-pill {
        display: grid;
        gap: 4px;
        border-radius: 16px;
        font-size: 1.02rem;
      }

      .review-card {
        grid-template-columns: 82px 1fr;
        gap: 14px;
        padding: 18px 15px;
      }

      .review-card img {
        width: 82px;
        height: 82px;
      }

      .cta-band {
        padding-bottom: 24px;
      }

      .cta-frame {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 25px 16px;
        text-align: center;
      }

      .prayer {
        width: 150px;
      }

      .cta-copy p {
        margin-inline: auto;
      }

      .cta-copy .gold-btn {
        width: min(100%, 360px);
        padding-inline: 14px;
      }

      .cta-list {
        grid-template-columns: 1fr;
        width: min(360px, 100%);
        margin-inline: auto;
        text-align: left;
      }

      .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 62px;
        height: 62px;
        padding: 0;
      }

      .whatsapp-float img {
        width: 38px;
        height: 38px;
      }

      .call-float {
        right: 14px;
        bottom: 92px;
        width: 62px;
        height: 62px;
        padding: 0;
      }

      .call-float svg {
        width: 36px;
        height: 36px;
      }
    }

    @media (max-width: 440px) {
      .brand img {
        width: 52px;
        height: 52px;
      }

      .menu-toggle {
        width: 42px;
        height: 42px;
      }

      .hero-mini-services {
        gap: 12px;
      }

      .mini-service img {
        width: 62px;
        height: 62px;
      }

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

      .review-card {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .review-card img {
        margin-inline: auto;
      }
    }
  
