    :root {
      --navy: #16233F;
      --navy-2: #0F1930;
      --ink: #22262E;
      --ink-dim: #6B7280;
      --sapphire: #1E56A0;
      --gold: #C6A24B;
      --gold-deep: #A8822F;
      --bg: #FFFFFF;
      --bg-alt: #F5F6F8;
      --line: #E6E8EC;
      --serif: 'Cormorant Garamond', Georgia, serif;
      --sans: 'Manrope', system-ui, sans-serif;
    }

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

    html {
      scroll-behavior: smooth
    }

    body {
      background: var(--bg);
      color: var(--ink);
      font-family: var(--sans);
      font-weight: 400;
      line-height: 1.65;
      font-size: 15.5px
    }

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

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

    h1,
    h2,
    h3,
    h4,
    .serif {
      font-family: var(--serif);
      font-weight: 600;
      line-height: 1.15;
      color: var(--navy)
    }

    .wrap {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 24px
    }

    section {
      padding: 84px 0;
      position: relative
    }

    .sec-head {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 48px
    }

    .sec-head h2 {
      font-size: clamp(1.9rem, 3.6vw, 2.7rem);
      text-transform: uppercase;
      letter-spacing: .04em;
      margin-bottom: 10px
    }

    .sec-head p {
      color: var(--ink-dim)
    }

    .sec-head::after {
      content: "";
      display: block;
      width: 56px;
      height: 2px;
      background: var(--gold);
      margin: 20px auto 0
    }

    .btn {
      position: relative;
      overflow: hidden;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 32px;
      font-family: var(--sans);
      font-size: .74rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      font-weight: 700;
      cursor: pointer;
      transition: all .3s ease;
      background: var(--gold);
      color: #fff;
      border: 1px solid var(--gold)
    }

    .btn::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 50%;
      height: 100%;
      background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
      );
      transform: skewX(-25deg);
      pointer-events: none;
      transition: none;
    }

    .btn:hover::after {
      left: 150%;
      transition: left 0.8s ease-in-out;
    }

    .btn:hover {
      background: var(--gold-deep);
      border-color: var(--gold-deep);
      box-shadow: 0 10px 26px rgba(198, 162, 75, .35)
    }

    .btn.line {
      background: transparent;
      color: var(--navy);
      border-color: var(--navy)
    }

    .btn.line:hover {
      background: var(--navy);
      color: #fff;
      box-shadow: none
    }

    .btn.wa {
      background: #1FA855;
      border-color: #1FA855
    }

    .btn.wa:hover {
      background: #178A45;
      border-color: #178A45
    }

    .rv {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .rv.in {
      opacity: 1;
      transform: none
    }

    /* Target category cards and items to fade and scale in */
    .cat.rv, .jcat.rv, .prod.rv, .svc.rv, .post.rv, .ig.rv {
      opacity: 0;
      transform: scale(0.96) translateY(20px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .cat.rv.in, .jcat.rv.in, .prod.rv.in, .svc.rv.in, .post.rv.in, .ig.rv.in {
      opacity: 1;
      transform: scale(1) translateY(0);
    }

    /* Split layout: picture slides from left, text from right */
    .split .pic.rv {
      opacity: 0;
      transform: translateX(-40px);
      transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .split .pic.rv.in {
      opacity: 1;
      transform: translateX(0);
    }

    .split .txt.rv {
      opacity: 0;
      transform: translateX(40px);
      transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .split .txt.rv.in {
      opacity: 1;
      transform: translateX(0);
    }

    /* Reverse split layout: text slides from left, picture from right */
    .split.rev .txt.rv {
      opacity: 0;
      transform: translateX(-40px);
      transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .split.rev .txt.rv.in {
      opacity: 1;
      transform: translateX(0);
    }

    .split.rev .pic.rv {
      opacity: 0;
      transform: translateX(40px);
      transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .split.rev .pic.rv.in {
      opacity: 1;
      transform: translateX(0);
    }

    .ripple-ink {
      position: absolute;
      border-radius: 50%;
      transform: scale(0);
      pointer-events: none;
      background: radial-gradient(circle, rgba(255, 255, 255, .6) 0%, rgba(255, 255, 255, .25) 45%, transparent 70%);
      animation: ripple .7s ease-out forwards
    }

    .card-ripple .ripple-ink {
      background: radial-gradient(circle, rgba(30, 86, 160, .22) 0%, rgba(30, 86, 160, .1) 45%, transparent 70%)
    }

    @keyframes ripple {
      to {
        transform: scale(2.6);
        opacity: 0
      }
    }

    :focus-visible {
      outline: 2px solid var(--sapphire);
      outline-offset: 3px
    }

    @media (prefers-reduced-motion:reduce) {
      html {
        scroll-behavior: auto
      }

      .rv {
        opacity: 1;
        transform: none;
        transition: none
      }

      * {
        animation: none !important;
        transition: none !important
      }
    }

    /* ---------- TOP BAR ---------- */
    .topbar {
      background: var(--navy-2);
      color: rgba(255, 255, 255, .75);
      font-size: .72rem;
      letter-spacing: .1em
    }

    .topbar .wrap {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 38px;
      gap: 20px
    }

    .topbar a {
      color: rgba(255, 255, 255, .75)
    }

    .topbar a:hover {
      color: var(--gold)
    }

    .topbar .r {
      display: flex;
      gap: 22px
    }

    @media(max-width:700px) {
      .topbar .l {
        display: none
      }

      .topbar .wrap {
        justify-content: center
      }
    }

    /* ---------- HEADER ---------- */
    header.site {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(22, 35, 63, 0.05);
      box-shadow: 0 2px 18px rgba(22, 35, 63, .05);
      transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

    header.site.scrolled {
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 10px 30px rgba(22, 35, 63, 0.08);
      border-color: rgba(22, 35, 63, 0.02);
    }

    .head-in {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 24px;
      height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: var(--serif);
      font-size: 1.55rem;
      letter-spacing: .05em;
      color: var(--navy);
      font-weight: 700;
      white-space: nowrap
    }

    .logo b {
      color: var(--gold);
      font-weight: 700
    }

    .logo svg {
      width: 30px;
      height: 30px;
      color: var(--gold)
    }

    .logo img {
      height: 64px;
      width: auto;
      object-fit: contain;
      transition: transform 0.3s ease
    }

    .logo:hover img {
      transform: scale(1.06)
    }

    .logo small {
      display: block;
      white-space: nowrap;
      font-family: var(--sans);
      font-size: .52rem;
      letter-spacing: .28em;
      color: var(--ink-dim);
      font-weight: 600;
      text-transform: uppercase;
      line-height: 1
    }

    .mainnav {
      display: flex;
      gap: 6px;
      align-items: center
    }

    .mainnav>div,
    .mainnav>a {
      position: relative
    }

    .mainnav a.top,
    .mainnav span.top {
      display: block;
      white-space: nowrap;
      padding: 28px 12px;
      font-size: .74rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--navy);
      cursor: pointer;
      transition: color .25s
    }

    .mainnav .top:hover {
      color: var(--gold)
    }

    .drop {
      position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: 0 18px 44px rgba(22, 35, 63, .14);
      min-width: 460px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding: 22px 26px;
      gap: 4px 30px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: .28s
    }

    .drop.single {
      min-width: 230px;
      grid-template-columns: 1fr
    }

    .mainnav div:hover .drop,
    .mainnav div:focus-within .drop {
      opacity: 1;
      visibility: visible;
      transform: none
    }

    .drop h5 {
      grid-column: 1/-1;
      font-family: var(--sans);
      font-size: .66rem;
      letter-spacing: .24em;
      text-transform: uppercase;
      color: var(--gold-deep);
      margin: 8px 0 6px;
      font-weight: 800
    }

    .drop h5:first-child {
      margin-top: 0
    }

    .drop a {
      font-size: .82rem;
      padding: 7px 0;
      color: var(--ink);
      display: flex;
      align-items: center;
      gap: 9px;
      font-weight: 500
    }

    .drop a::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 2px;
      transform: rotate(45deg);
      background: var(--dot, var(--gold));
      flex: none
    }

    .drop a:hover {
      color: var(--sapphire)
    }

    .head-cta {
      display: flex;
      align-items: center;
      gap: 14px
    }

    .burger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      flex-direction: column;
      gap: 5px;
      padding: 6px
    }

    .burger span {
      width: 26px;
      height: 2px;
      background: var(--navy);
      transition: .3s
    }

    @media(max-width:1080px) {
      .mainnav {
        display: none
      }

      header.site.open .mainnav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--line);
        padding: 14px 24px 26px;
        max-height: calc(100vh - 80px);
        overflow: auto
      }

      .mainnav a.top,
      .mainnav span.top {
        padding: 13px 0;
        border-bottom: 1px solid var(--line)
      }

      .drop {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        min-width: 0;
        padding: 4px 0 12px 14px;
        display: grid
      }

      .burger {
        display: flex
      }

      .head-cta .btn {
        display: none
      }
    }

    @media(max-width:600px) {
      .head-in {
        height: 64px;
        padding: 0 16px;
      }
      .logo {
        font-size: 1.3rem;
        gap: 8px;
      }
      .logo img {
        height: 48px;
      }
      .logo small {
        font-size: .48rem;
        letter-spacing: .2em;
      }
      .topbar .r {
        gap: 14px;
        font-size: .75rem;
      }
    }

    /* ---------- HERO SLIDER ---------- */
    .slider {
      position: relative;
      height: min(78vh, 660px);
      min-height: 480px;
      overflow: hidden;
      background: var(--navy)
    }

    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1.1s ease
    }

    .slide.on {
      opacity: 1
    }

    .slide .bg {
      position: absolute;
      inset: 0;
      background-position: center;
      background-size: cover;
      transform: scale(1.05);
      transition: transform 7s linear
    }

    .slide.on .bg {
      transform: scale(1.14)
    }

    .slide::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(95deg, rgba(15, 25, 48, .82) 0%, rgba(15, 25, 48, .55) 45%, rgba(15, 25, 48, .15) 100%)
    }

    .slide-txt {
      position: relative;
      z-index: 2;
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 24px;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start
    }

    .slide-txt .kick {
      font-size: .72rem;
      letter-spacing: .34em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 700;
      margin-bottom: 18px
    }

    .slide-txt h1,
    .slide-txt h2 {
      color: #fff;
      font-size: clamp(2.4rem, 5.6vw, 4.3rem);
      max-width: 16ch;
      margin-bottom: 16px;
      font-weight: 600
    }

    .slide-txt h1 em,
    .slide-txt h2 em {
      font-style: italic;
      color: var(--gold)
    }

    .slide-txt p {
      color: rgba(255, 255, 255, .82);
      max-width: 480px;
      margin-bottom: 34px
    }

    .slide-txt>* {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .slide.on .slide-txt>* {
      opacity: 1;
      transform: none
    }

    .slide.on .slide-txt>*:nth-child(2) {
      transition-delay: .15s
    }

    .slide.on .slide-txt>*:nth-child(3) {
      transition-delay: .3s
    }

    .slide.on .slide-txt>*:nth-child(4) {
      transition-delay: .45s
    }

    .sl-nav {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 5;
      display: flex;
      gap: 10px
    }

    .sl-nav button {
      width: 38px;
      height: 3px;
      border: none;
      background: rgba(255, 255, 255, .35);
      cursor: pointer;
      transition: .3s
    }

    .sl-nav button.on {
      background: var(--gold)
    }

    .sl-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 5;
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, .3);
      color: #fff;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1.1rem;
      transition: .3s;
      backdrop-filter: blur(4px)
    }

    .sl-arrow:hover {
      background: var(--gold);
      border-color: var(--gold)
    }

    .sl-arrow.prev {
      left: 22px
    }

    .sl-arrow.next {
      right: 22px
    }

    @media(max-width:700px) {
      .sl-arrow {
        display: none
      }
    }

    @media(max-width:600px) {
      .slider {
        min-height: 420px;
        height: 65vh;
      }
      .slide-txt {
        padding: 0 16px;
      }
      .slide-txt h1,
      .slide-txt h2 {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
        max-width: 100%;
      }
      .slide-txt p {
        font-size: 0.9rem;
        margin-bottom: 24px;
      }
    }

    /* ---------- TRUST BADGES ---------- */
    .trust {
      background: #fff;
      border-bottom: 1px solid var(--line);
      padding: 0
    }

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

    .t-badge {
      display: flex;
      gap: 16px;
      align-items: center;
      padding: 30px 26px;
      border-right: 1px solid var(--line)
    }

    .t-badge:last-child {
      border-right: none
    }

    .t-badge .ic {
      width: 52px;
      height: 52px;
      flex: none;
      border-radius: 50%;
      background: linear-gradient(140deg, var(--gold), var(--gold-deep));
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff
    }

    .t-badge .ic svg {
      width: 24px;
      height: 24px
    }

    .t-badge h4 {
      font-family: var(--sans);
      font-size: .78rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--navy);
      font-weight: 800
    }

    .t-badge p {
      font-size: .78rem;
      color: var(--ink-dim)
    }

    @media(max-width:960px) {
      .trust-grid {
        grid-template-columns: 1fr 1fr
      }

      .t-badge:nth-child(2) {
        border-right: none
      }

      .t-badge {
        border-bottom: 1px solid var(--line)
      }
    }

    @media(max-width:540px) {
      .trust-grid {
        grid-template-columns: 1fr
      }

      .t-badge {
        border-right: none;
        padding: 18px 14px;
      }
      .t-badge .ic {
        width: 42px;
        height: 42px;
      }
    }

    /* ---------- CATEGORY CIRCLES ---------- */
    .cats {
      background: var(--bg-alt)
    }

    .cat-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 26px
    }

    .cat {
      background: #fff;
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(22, 35, 63, .05);
      display: flex;
      flex-direction: column;
      text-align: center;
      transition: transform .3s ease, box-shadow .3s ease;
    }

    .cat:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 25px rgba(22, 35, 63, .12);
    }

    .cat-img-box {
      width: 100%;
      aspect-ratio: 1/1;
      overflow: hidden;
    }

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

    .cat:hover .cat-img-box img {
      transform: scale(1.05);
    }

    .cat-info {
      background: #eae0cb;
      padding: 20px 15px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      flex-grow: 1;
    }

    .cat-info h3 {
      font-family: var(--serif);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 12px;
      text-transform: none;
      letter-spacing: normal;
    }

    .cat-link {
      font-family: var(--sans);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: var(--navy);
      text-transform: uppercase;
      text-decoration: underline;
      text-underline-offset: 4px;
      transition: color 0.3s ease;
    }

    .cat-link:hover {
      color: var(--gold-deep);
    }

    /* ---------- GOOGLE BADGE ---------- */
    .google-badge {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      border: 1px solid var(--line);
      border-radius: 6px;
      padding: 8px 16px;
      background: #fff;
      margin-top: 15px;
      margin-bottom: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .google-badge .g-logo {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .google-badge .g-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }

    .google-badge .g-title {
      font-family: var(--sans);
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      color: var(--ink-dim);
    }

    .google-badge .g-rating {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-top: 2px;
    }

    .google-badge .g-num {
      font-family: var(--sans);
      font-size: 0.95rem;
      font-weight: 800;
      color: var(--navy);
    }

    .google-badge .g-stars {
      color: #ffc107;
      font-size: 0.9rem;
      letter-spacing: -1px;
    }

    /* ---------- REVIEWS CAROUSEL ---------- */
    .reviews-section {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      margin-top: 40px;
      position: relative;
      width: 100%;
    }

    .reviews-carousel-wrapper {
      overflow: hidden;
      width: 100%;
      max-width: 1100px;
    }

    .reviews-carousel {
      display: flex;
      gap: 24px;
      transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      will-change: transform;
    }

    .review-card {
      flex: 0 0 calc((100% - 48px) / 3);
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 24px;
      box-shadow: 0 4px 15px rgba(22, 35, 63, 0.03);
      display: flex;
      flex-direction: column;
      text-align: left;
    }

    @media(max-width:960px) {
      .review-card {
        flex: 0 0 calc((100% - 24px) / 2);
      }
    }

    @media(max-width:640px) {
      .review-card {
        flex: 0 0 100%;
      }
    }

    .rc-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
      position: relative;
    }

    .rc-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--sans);
      font-size: 0.85rem;
      font-weight: 700;
      color: #fff;
    }

    .rc-avatar.tg {
      background: #4caf50;
    }

    .rc-avatar.jf {
      background: #2196f3;
    }

    .rc-avatar.dh {
      background: #ff9800;
    }

    .rc-user-info {
      display: flex;
      flex-direction: column;
      line-height: 1.3;
    }

    .rc-name {
      font-family: var(--sans);
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--navy);
    }

    .rc-date {
      font-family: var(--sans);
      font-size: 0.72rem;
      color: var(--ink-dim);
    }

    .rc-g-icon {
      margin-left: auto;
      align-self: flex-start;
    }

    .rc-stars-row {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
    }

    .rc-stars {
      color: #ffc107;
      font-size: 0.95rem;
      letter-spacing: -1px;
    }

    .rc-verified {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-family: var(--sans);
      font-size: 0.68rem;
      color: #4285F4;
      background: rgba(66, 133, 244, 0.08);
      padding: 2px 8px;
      border-radius: 20px;
      font-weight: 600;
    }

    .rc-verified svg {
      flex-shrink: 0;
    }

    .rc-text {
      font-family: var(--sans);
      font-size: 0.82rem;
      line-height: 1.55;
      color: var(--ink);
      margin-bottom: 14px;
      flex-grow: 1;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .rc-readmore {
      font-family: var(--sans);
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--ink-dim);
      text-decoration: underline;
      align-self: flex-start;
      transition: color 0.2s;
    }

    .rc-readmore:hover {
      color: var(--sapphire);
    }

    .carousel-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid var(--line);
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--navy);
      transition: all 0.3s;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      z-index: 5;
    }

    .carousel-btn:hover {
      background: var(--navy);
      color: #fff;
      border-color: var(--navy);
      box-shadow: 0 4px 12px rgba(22, 35, 63, 0.15);
    }

    .carousel-btn:disabled {
      opacity: 0.3;
      cursor: not-allowed;
      box-shadow: none;
    }

    @media(max-width:960px) {
      .cat-grid {
        grid-template-columns: repeat(3, 1fr)
      }
    }

    @media(max-width:560px) {
      .cat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
      }
      .cat:nth-child(5) {
        grid-column: span 2;
        max-width: 60%;
        margin: 0 auto;
      }
      .cat-info {
        padding: 14px 8px;
      }
      .cat-info h3 {
        font-size: 0.95rem;
        margin-bottom: 8px;
      }
    }

    /* ---------- SPLIT SECTIONS ---------- */
    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center
    }

    .split.rev .txt {
      order: -1
    }

    .split .pic {
      position: relative
    }

    .split .pic img {
      width: 100%;
      aspect-ratio: 5/4;
      object-fit: cover;
      box-shadow: 0 24px 60px rgba(22, 35, 63, .18)
    }

    .split .pic::after {
      content: "";
      position: absolute;
      inset: 18px -18px -18px 18px;
      border: 2px solid var(--gold);
      z-index: -1
    }

    .split .kick {
      font-size: .7rem;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--gold-deep);
      font-weight: 800;
      margin-bottom: 14px
    }

    .split h2 {
      font-size: clamp(1.8rem, 3.4vw, 2.6rem);
      text-transform: uppercase;
      letter-spacing: .03em;
      margin-bottom: 18px
    }

    .split p {
      color: var(--ink-dim);
      margin-bottom: 16px
    }

    .split .btn {
      margin-top: 14px;
      margin-right: 12px
    }

    @media(max-width:900px) {
      .split {
        grid-template-columns: 1fr;
        gap: 44px
      }

      .split.rev .txt {
        order: 0
      }
    }

    @media(max-width:560px) {
      .split {
        gap: 28px;
      }
      .split .pic::after {
        inset: 8px -8px -8px 8px;
      }
      .split h2 {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
      }
    }

    /* ---------- JEWELRY CATEGORY CARDS ---------- */
    .jcat-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px
    }

    .jcat {
      position: relative;
      overflow: hidden;
      aspect-ratio: 3/3.7;
      cursor: pointer;
      background: var(--navy)
    }

    .jcat img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .8s, opacity .5s
    }

    .jcat:hover img {
      transform: scale(1.08);
      opacity: .75
    }

    .jcat .lbl {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 60px 20px 22px;
      background: linear-gradient(0deg, rgba(15, 25, 48, .88), transparent);
      text-align: center
    }

    .jcat .lbl h3 {
      color: #fff;
      font-family: var(--sans);
      font-size: .86rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      font-weight: 800;
      margin-bottom: 6px
    }

    .jcat .lbl span {
      font-size: .68rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 700
    }

    @media(max-width:900px) {
      .jcat-grid {
        grid-template-columns: 1fr 1fr
      }
    }

    @media(max-width:560px) {
      .jcat-grid {
        gap: 12px;
      }
      .jcat .lbl {
        padding: 30px 10px 14px;
      }
      .jcat .lbl h3 {
        font-size: 0.75rem;
        letter-spacing: 0.12em;
      }
      .jcat .lbl span {
        font-size: 0.6rem;
      }
    }

    /* ---------- PRODUCT GRID ---------- */
    .prod-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px
    }

    .prod {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 6px;
      overflow: hidden;
      transition: box-shadow .3s ease, transform .3s ease;
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .prod:hover {
      box-shadow: 0 15px 35px rgba(22, 35, 63, .08);
      transform: translateY(-4px)
    }

    .prod .ph {
      position: relative;
      overflow: hidden;
      aspect-ratio: 1/1;
      background: #fbfbfb;
    }

    .prod .ph img,
    .prod .ph video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .6s ease;
    }

    .prod:hover .ph img.main,
    .prod:hover .ph video.main {
      transform: scale(1.05)
    }

    .prod .tag {
      position: absolute;
      top: 12px;
      left: 12px;
      background: var(--navy);
      color: #fff;
      font-size: .58rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 20px;
      z-index: 2
    }

    .prod .tag.gold {
      background: var(--gold)
    }

    .prod .heart {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 2;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid var(--line);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--ink-dim);
      transition: all .25s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .prod .heart:hover,
    .prod .heart.on {
      color: #D0364C;
      border-color: #D0364C;
      background: #fff;
      transform: scale(1.1);
    }

    .prod .info {
      padding: 22px 20px 24px;
      text-align: center;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      justify-content: space-between;
    }

    .prod .cat-lbl {
      font-size: .62rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold-deep);
      font-weight: 700;
      margin-bottom: 8px
    }

    .prod h3 {
      font-family: var(--sans);
      font-size: .88rem;
      letter-spacing: .02em;
      text-transform: none;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.45;
      margin-bottom: 16px;
      min-height: 2.9em;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .prod .act {
      margin-top: auto;
    }

    .prod .act a {
      display: inline-block;
      width: 100%;
      font-family: var(--sans);
      font-size: .72rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      font-weight: 800;
      color: var(--navy);
      border: 1px solid var(--navy);
      padding: 10px 24px;
      border-radius: 4px;
      transition: all .3s ease;
    }

    .prod .act a:hover {
      background: var(--navy);
      color: #fff;
      box-shadow: 0 4px 12px rgba(22, 35, 63, 0.15);
    }

    @media(max-width:1020px) {
      .prod-grid {
        grid-template-columns: repeat(2, 1fr)
      }
    }

    @media(max-width:520px) {
      .prod-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }
      .prod .info {
        padding: 12px 8px 14px;
      }
      .prod .cat-lbl {
        font-size: .56rem;
        margin-bottom: 4px;
      }
      .prod h3 {
        font-size: .78rem;
        margin-bottom: 10px;
        min-height: 2.8em;
      }
      .prod .act a {
        padding: 8px 6px;
        font-size: .62rem;
        letter-spacing: .05em;
      }
      .prod .tag {
        font-size: .5rem;
        padding: 3px 8px;
        top: 8px;
        left: 8px;
      }
      .prod .heart {
        top: 8px;
        right: 8px;
        width: 28px;
        height: 28px;
      }
    }

    .center-btn {
      text-align: center;
      margin-top: 44px
    }

    /* ---------- CEYLON BAND ---------- */
    .band {
      background: linear-gradient(120deg, var(--navy-2), #1B2E55);
      color: #fff;
      text-align: center;
      padding: 80px 24px;
      position: relative;
      overflow: hidden
    }

    .band::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(640px 280px at 50% -60px, rgba(198, 162, 75, .25), transparent 70%)
    }

    .band h2 {
      color: #fff;
      font-size: clamp(1.9rem, 3.6vw, 2.8rem);
      text-transform: uppercase;
      letter-spacing: .05em;
      margin-bottom: 16px;
      position: relative
    }

    .band p {
      max-width: 760px;
      margin: 0 auto 0;
      color: rgba(255, 255, 255, .78);
      position: relative
    }

    .band .stats {
      display: flex;
      justify-content: center;
      gap: 70px;
      flex-wrap: wrap;
      margin-top: 44px;
      position: relative
    }

    .band .num {
      font-family: var(--serif);
      font-size: 2.6rem;
      color: var(--gold);
      font-weight: 700
    }

    .band .lbl {
      font-size: .68rem;
      letter-spacing: .24em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .65);
      font-weight: 700
    }

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

    .svc {
      position: relative;
      overflow: hidden;
      aspect-ratio: 4/4.6;
      cursor: pointer
    }

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

    .svc:hover img {
      transform: scale(1.07)
    }

    .svc .ov {
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(15, 25, 48, .92) 8%, rgba(15, 25, 48, .25) 55%, transparent);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 28px;
      text-align: center
    }

    .svc h3 {
      color: #fff;
      font-family: var(--sans);
      font-size: .92rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      font-weight: 800;
      margin-bottom: 8px
    }

    .svc p {
      color: rgba(255, 255, 255, .75);
      font-size: .82rem;
      margin-bottom: 14px
    }

    .svc a {
      font-size: .66rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 800;
      border-bottom: 1px solid var(--gold);
      align-self: center;
      padding-bottom: 2px
    }

    @media(max-width:860px) {
      .svc-grid {
        grid-template-columns: 1fr
      }

      .svc {
        aspect-ratio: 16/9
      }
    }

    @media(max-width:560px) {
      .svc {
        padding: 24px 18px;
      }
      .post .body {
        padding: 16px;
      }
      .post h3 {
        font-size: 1.15rem;
      }
    }

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

    .post {
      background: #fff;
      border: 1px solid var(--line);
      transition: box-shadow .35s, transform .35s
    }

    .post:hover {
      box-shadow: 0 20px 44px rgba(22, 35, 63, .12);
      transform: translateY(-4px)
    }

    .post .ph {
      aspect-ratio: 16/10;
      overflow: hidden
    }

    .post .ph img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .7s
    }

    .post:hover .ph img {
      transform: scale(1.07)
    }

    .post .body {
      padding: 24px
    }

    .post .meta {
      font-size: .66rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold-deep);
      font-weight: 800;
      margin-bottom: 10px
    }

    .post h3 {
      font-size: 1.35rem;
      margin-bottom: 10px
    }

    .post p {
      font-size: .86rem;
      color: var(--ink-dim);
      margin-bottom: 14px
    }

    .post a.more {
      font-size: .68rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--sapphire);
      font-weight: 800
    }

    @media(max-width:860px) {
      .blog-grid {
        grid-template-columns: 1fr
      }
    }

    /* ---------- INSTAGRAM ---------- */
    .insta {
      background: var(--bg-alt)
    }

    .ig-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 10px
    }

    .ig {
      position: relative;
      aspect-ratio: 1/1;
      overflow: hidden;
      cursor: pointer
    }

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

    .ig::after {
      content: "♥";
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(15, 25, 48, .55);
      color: #fff;
      font-size: 1.4rem;
      opacity: 0;
      transition: .35s
    }

    .ig:hover::after {
      opacity: 1
    }

    .ig:hover img {
      transform: scale(1.1)
    }

    @media(max-width:760px) {
      .ig-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
      }
    }

    @media(max-width:520px) {
      .ig-grid {
        gap: 4px;
      }
    }

    /* ---------- CONTACT STRIP ---------- */
    .contact-strip {
      background: #fff
    }

    .cs-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 60px;
      align-items: start
    }

    .cs-grid form label {
      display: block;
      font-size: .66rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--ink-dim);
      margin: 18px 0 7px;
      font-weight: 800
    }

    .cs-grid input,
    .cs-grid textarea,
    .cs-grid select {
      width: 100%;
      background: var(--bg-alt);
      border: 1px solid var(--line);
      color: var(--ink);
      padding: 13px 15px;
      font-family: var(--sans);
      font-size: 1rem;
      transition: .3s
    }

    .cs-grid input:focus,
    .cs-grid textarea:focus,
    .cs-grid select:focus {
      outline: none;
      border-color: var(--sapphire);
      background: #fff;
      box-shadow: 0 0 0 3px rgba(30, 86, 160, .12)
    }

    .cs-grid form .btn {
      margin-top: 24px
    }

    .info-card {
      background: var(--navy);
      color: #fff;
      padding: 36px 32px
    }

    .info-card h3 {
      color: #fff;
      font-size: 1.6rem;
      margin-bottom: 22px
    }

    .iline {
      display: flex;
      gap: 14px;
      margin-bottom: 18px;
      font-size: .88rem;
      color: rgba(255, 255, 255, .85)
    }

    .iline .lbl {
      display: block;
      font-size: .62rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 800;
      margin-bottom: 2px
    }

    .iline .ic {
      color: var(--gold);
      flex: none;
      width: 18px
    }

    .hrs {
      border-top: 1px solid rgba(255, 255, 255, .16);
      margin-top: 22px;
      padding-top: 20px
    }

    .hrs div {
      display: flex;
      justify-content: space-between;
      font-size: .82rem;
      color: rgba(255, 255, 255, .75);
      padding: 4px 0
    }

    @media(max-width:880px) {
      .cs-grid {
        grid-template-columns: 1fr
      }
    }

    /* ---------- FOOTER ---------- */
    footer {
      background: var(--navy-2);
      color: rgba(255, 255, 255, .68);
      padding: 70px 0 0
    }

    .f-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr 1.4fr;
      gap: 44px;
      padding-bottom: 50px
    }

    .f-grid h4 {
      font-family: var(--sans);
      color: #fff;
      font-size: .74rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      font-weight: 800;
      margin-bottom: 20px
    }

    .f-grid ul {
      list-style: none
    }

    .f-grid li {
      margin-bottom: 10px;
      font-size: .85rem
    }

    .f-grid a:hover {
      color: var(--gold)
    }

    .f-brand .logo {
      color: #fff;
      margin-bottom: 14px
    }

    .f-brand p {
      font-size: .85rem;
      max-width: 280px
    }

    .f-store p {
      font-size: .84rem;
      margin-bottom: 14px;
      padding-left: 26px;
      position: relative
    }

    .f-store p::before {
      content: "◈";
      position: absolute;
      left: 0;
      color: var(--gold)
    }

    .news {
      display: flex;
      margin-top: 14px;
      border: 1px solid rgba(255, 255, 255, .2)
    }

    .news input {
      flex: 1;
      background: none;
      border: none;
      color: #fff;
      padding: 12px 14px;
      font-family: var(--sans);
      font-size: .85rem;
      min-width: 0
    }

    .news input::placeholder {
      color: rgba(255, 255, 255, .4)
    }

    .news input:focus {
      outline: none
    }

    .news button {
      position: relative;
      overflow: hidden;
      background: var(--gold);
      border: none;
      color: #fff;
      padding: 0 20px;
      font-size: .68rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      font-weight: 800;
      cursor: pointer
    }

    .f-bottom {
      border-top: 1px solid rgba(255, 255, 255, .1);
      padding: 22px 0;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 14px;
      font-size: .74rem;
      color: rgba(255, 255, 255, .4)
    }

    .f-bottom .pay {
      display: flex;
      gap: 8px
    }

    .f-bottom .pay span {
      border: 1px solid rgba(255, 255, 255, .2);
      padding: 3px 10px;
      border-radius: 3px;
      font-size: .64rem;
      letter-spacing: .08em;
      font-weight: 700;
      color: rgba(255, 255, 255, .6)
    }

    @media(max-width:880px) {
      .f-grid {
        grid-template-columns: 1fr 1fr
      }
    }

    @media(max-width:540px) {
      .f-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }
      .f-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .wa-float {
        right: 16px;
        bottom: 16px;
        width: 50px;
        height: 50px;
      }
      .wa-float svg {
        width: 26px;
        height: 26px;
      }
    }

    /* ---------- FLOATING WHATSAPP ---------- */
    .wa-float {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 150;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 12px 30px rgba(37, 211, 102, .4);
      transition: transform .3s;
      animation: wapulse 2.6s ease infinite
    }

    .wa-float:hover {
      transform: scale(1.1)
    }

    .wa-float svg {
      width: 30px;
      height: 30px;
      fill: #fff
    }

    @keyframes wapulse {

      0%,
      100% {
        box-shadow: 0 12px 30px rgba(37, 211, 102, .4), 0 0 0 0 rgba(37, 211, 102, .4)
      }

      60% {
        box-shadow: 0 12px 30px rgba(37, 211, 102, .4), 0 0 0 16px rgba(37, 211, 102, 0)
