/* =============================================
   LIQUID-STYLE CSS — RCP (Rayya Citra Persada)
   Monochrome · liquid.id inspired design system
   ============================================= */

/* ---------- SMOOTH SCROLL WRAPPER ---------- */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* ---------- CUSTOM CURSOR — disabled ---------- */
#rcp-cursor, #rcp-cursor-follower { display: none !important; }

/* ---------- HEADER SCROLL BEHAVIOUR ---------- */
#header-sticky {
  transition: transform .4s cubic-bezier(.23,1,.32,1),
              background .35s ease,
              box-shadow .35s ease;
  will-change: transform;
}
#header-sticky.header-hidden { transform: translateY(-100%); }
#header-sticky.header-scrolled {
  background: rgba(239,239,239,0.97) !important;
  box-shadow: 0 5px 5px rgba(0,0,0,0.06);
}

/* ---------- MARQUEE TICKER ---------- */
.rcp-marquee-section {
  overflow: hidden;
  background: #000;
  padding: 13px 0;
  border-top: none;
  border-bottom: none;
}
.rcp-marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  white-space: nowrap;
  animation: rcp-marquee 32s linear infinite;
  will-change: transform;
}
.rcp-marquee-section:hover .rcp-marquee-track { animation-play-state: paused; }
.rcp-marquee-inner {
  display: flex;
  align-items: center;
  gap: 56px;
  flex-shrink: 0;
  padding-right: 56px;
}
.rcp-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.65);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .08em;
  text-transform: lowercase;
}
.rcp-marquee-item svg { opacity: .4; flex-shrink: 0; }
@keyframes rcp-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- SPLIT TEXT CLIP ---------- */
.rcp-word-wrap { overflow: hidden; display: inline-block; }
.rcp-word { display: inline-block; will-change: transform, opacity; }

/* ---------- REVEAL WRAPPERS ---------- */
[data-rcp-reveal] { overflow: hidden; }
[data-rcp-reveal] > * { will-change: transform, opacity; }

/* ---------- FADE UP (generic) ---------- */
.rcp-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: none;
}

/* ---------- LINE DRAW ---------- */
.rcp-line-draw {
  width: 0; height: 1px;
  background: #000;
  transition: width .6s cubic-bezier(.23,1,.32,1);
}

/* ---------- HOVER IMAGE SCALE ---------- */
.rcp-img-hover { overflow: hidden; }
.rcp-img-hover img {
  transition: transform .7s cubic-bezier(.23,1,.32,1);
  will-change: transform;
}
.rcp-img-hover:hover img { transform: scale(1.07); }

/* ---------- PARALLAX IMAGE WRAP ---------- */
.rcp-parallax-wrap { overflow: hidden; }
.rcp-parallax-img { will-change: transform; transform: scale(1.15); }

/* ---------- STAGGER CARDS ---------- */
.rcp-stagger-item { opacity: 0; transform: translateY(50px); }

/* ---------- NAV LINK UNDERLINE ---------- */
.tlx-nav-link { position: relative; white-space: nowrap; }
.tlx-nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 16px; right: 16px;
  height: 1px;
  background: #000;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .3s ease .08s;
}
.tlx-nav-link:hover::after,
.tlx-nav-item.tlx-nav-active .tlx-nav-link::after { transform: scaleX(1); }

/* ---------- BACK TO TOP ---------- */
.scroll-top { transition: transform .3s ease, opacity .3s ease, background .3s ease; }
.scroll-top:hover { transform: translateY(-4px); }

/* ---------- PAGE TRANSITION OVERLAY ---------- */
#rcp-page-overlay {
  position: fixed; inset: 0;
  background: #000;
  z-index: 999997;
  transform: translateY(100%);
  pointer-events: none;
}

/* ---------- COUNTER ITEMS ---------- */
.rcp-counter-number { font-variant-numeric: tabular-nums; }

/* ---------- SECTION BADGE ---------- */
.rcp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.12);
  color: #000;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 16px;
}

/* ---------- HORIZONTAL SCROLL HINT ---------- */
@keyframes rcp-bounce-x {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(6px); }
}

/* ---------- FOOTER REVEAL ---------- */
.tv-footer-wrap { position: relative; overflow: hidden; }

/* =============================================
   STICKY NAVBAR
   ============================================= */
#header-sticky {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 9990;
  transition: background .35s ease, box-shadow .35s ease, transform .4s cubic-bezier(.23,1,.32,1);
}
#header-sticky.header-scrolled {
  background: rgba(239,239,239,0.97) !important;
  box-shadow: 0 5px 5px rgba(0,0,0,0.06) !important;
}
#header-sticky.header-hidden { transform: translateY(0) !important; }

/* =============================================
   PILL / OUTLINE BUTTONS
   ============================================= */
.tv-btn-primary,
.tlx-header-cta,
.rcp-btn-oval {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  border-radius: 100px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 300 !important;
  letter-spacing: .04em !important;
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .2s ease !important;
  overflow: hidden !important;
  text-decoration: none !important;
}
.tv-btn-primary:hover,
.tlx-header-cta:hover,
.rcp-btn-oval:hover { transform: translateY(-2px) !important; }

/* Outline button (neutral) */
.rcp-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #000;
  border-radius: 100px;
  padding: 11px 30px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: .04em;
  text-transform: lowercase;
  color: #000;
  text-decoration: none;
  background: transparent;
  transition: background .3s, color .3s, transform .2s;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.rcp-btn-outline:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

/* Circle button */
.rcp-btn-circle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 130px; height: 130px;
  border-radius: 50%;
  border: 1px solid #000;
  font-size: 14px; font-weight: 300;
  letter-spacing: .04em; text-transform: lowercase;
  color: #000;
  text-align: center; text-decoration: none; line-height: 1.4;
  background: transparent;
  transition: background .3s, color .3s, transform .3s;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer; padding: 16px;
}
.rcp-btn-circle:hover { background: #000; color: #fff; transform: scale(1.06); }

/* Slider arrow buttons */
.rcp-slider-btn {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.25);
  background: transparent;
  color: #000;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
  flex-shrink: 0;
}
.rcp-slider-btn:hover { background: #000; border-color: #000; color: #fff; }
.rcp-slider-btn svg { pointer-events: none; }

/* =============================================
   FEATURED WORKS SLIDER — liquid.id style
   ============================================= */
.rcp-featured-section {
  background: #efefef;
  padding: 64px 0 0;
}
.rcp-featured-title {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #000;
  margin: 0 0 40px;
  line-height: 1.15;
}

/* Slider row: [btn] [swiper] [btn] */
.rcp-featured-slider-row {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1315px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Swiper flex fill */
.rcp-featured-swiper {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.rcp-featured-swiper .swiper-slide {
  /* no fixed height — driven by .rcp-fw-img padding-bottom ratio */
}

/* Slide box — whole slide is a link */
.rcp-fw-box {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Image: aspect-ratio via padding-bottom (same ratio as liquid.id) */
.rcp-fw-img {
  width: 100%;
  padding-bottom: 61.4179%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 22px;
  background: #ddd;
}
.rcp-fw-img-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s cubic-bezier(.23,1,.32,1), filter .35s ease;
  display: block;
  will-change: transform;
}
.rcp-fw-box:hover .rcp-fw-img-el { transform: scale(1.15) !important; filter: brightness(.82) !important; }

/* Text below image */
.rcp-fw-txt {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 10px;
  padding: 0 2px;
}
.rcp-fw-tag {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .08em;
  text-transform: lowercase;
  color: #a4a4a4;
}
.rcp-fw-sep { color: rgba(0,0,0,0.2); font-weight: 300; font-size: 11px; }
.rcp-fw-date {
  font-size: 11px;
  font-weight: 300;
  color: #a4a4a4;
  letter-spacing: .02em;
}
.rcp-fw-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 300;
  color: #000;
  letter-spacing: 0.02em;
  margin: 8px 0 0;
  line-height: 1.35;
  width: 100%;
  transition: color .2s;
}
.rcp-fw-box:hover .rcp-fw-title { color: rgba(0,0,0,0.55); }

/* Footer row: counter + "lihat semua" */
.rcp-featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 56px;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: 32px;
}
.rcp-see-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 300;
  color: #000;
  letter-spacing: .06em;
  text-transform: lowercase;
  text-decoration: none;
  position: relative;
}
.rcp-see-more-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 22px;
  height: 1px;
  background: #000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.rcp-see-more-link:hover::after { transform: scaleX(1); }
.rcp-see-more-link svg { transition: transform .25s; }
.rcp-see-more-link:hover svg { transform: translateX(4px); }

@media (max-width: 767px) {
  .rcp-featured-slider-row { padding: 0 12px; gap: 10px; }
  .rcp-featured-footer { padding-bottom: 60px; }
}

/* =============================================
   SERVICE LIST
   ============================================= */
.rcp-service-section {
  background: #efefef;
  padding: 56px 0;
}
.rcp-service-label {
  font-size: 11px; font-weight: 300;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #a4a4a4;
  margin-bottom: 20px;
  display: block;
}
.rcp-service-title {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 300;
  letter-spacing: 0.03em;
  color: #000;
  margin: 0 0 24px;
  line-height: 1.2;
}
.rcp-service-desc {
  font-size: 15px;
  color: #a4a4a4;
  line-height: 1.8;
  font-weight: 300;
  max-width: 380px;
  margin-bottom: 40px;
}
.rcp-service-list {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.rcp-service-list li {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  cursor: pointer;
  transition: color .2s;
  position: relative;
}
.rcp-service-list li .svc-arrow {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .25s, transform .25s;
  flex-shrink: 0;
}
.rcp-service-list li.active .svc-arrow,
.rcp-service-list li:hover .svc-arrow { opacity: 1; transform: translateX(0); }
.rcp-service-list li .svc-name {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #a4a4a4;
  transition: color .25s;
  line-height: 1;
}
.rcp-service-list li.active .svc-name,
.rcp-service-list li:hover .svc-name {
  color: #000;
  font-size: clamp(20px, 2.2vw, 26px);
}

/* Image panel */
.rcp-service-image-wrap {
  position: sticky; top: 120px;
  border-radius: 12px; overflow: hidden;
  aspect-ratio: 4/3;
  background: #e0e0e0;
}
.rcp-service-img-item {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .5s cubic-bezier(.23,1,.32,1);
  pointer-events: none; /* prevent ghost clicks on stacked invisible images */
}
.rcp-service-img-item.active { opacity: 1; pointer-events: auto; }
.rcp-service-img-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s cubic-bezier(.23,1,.32,1), filter .35s ease; will-change: transform; }
/* Service image link / hover zoom */
.rcp-svc-img-link { display: block; width: 100%; height: 100%; position: relative; overflow: hidden; cursor: zoom-in; }
.rcp-svc-img-link:hover img { transform: scale(1.15) !important; filter: brightness(.82) !important; }
.rcp-svc-img-link .rcp-zoom-icon { top: 12px; right: 12px; }

/* =============================================
   PROCESS FLOW — Snake / Zigzag
   ============================================= */
.rcp-process-section {
  background: #efefef;
  padding: 56px 0 64px;
}
.rcp-process-header { text-align: center; margin-bottom: 80px; }
.rcp-process-eyebrow {
  font-size: 11px; font-weight: 300;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #a4a4a4;
  display: block; margin-bottom: 14px;
}
.rcp-process-header h2 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  letter-spacing: 0.03em;
  color: #000;
  margin: 0;
}

/* Snake container */
.rcp-process-snake {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 80px;
  min-height: 600px;
  align-items: start;
}

/* Steps — staggered top offset creates zigzag */
.rcp-snake-step { opacity: 0; padding-right: 8px; }
.rcp-snake-step[data-step="1"] { padding-top: 0; }
.rcp-snake-step[data-step="2"] { padding-top: 110px; }
.rcp-snake-step[data-step="3"] { padding-top: 36px; }
.rcp-snake-step[data-step="4"] { padding-top: 260px; }
.rcp-snake-step[data-step="5"] { padding-top: 340px; }
.rcp-snake-step[data-step="6"] { padding-top: 255px; }

/* Number badge */
.rcp-snake-badge {
  width: 56px; height: 56px;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  background-image: url('../img/icons/number.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: border-color .3s, background-color .3s, box-shadow .3s;
}
.rcp-snake-badge span {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px; font-weight: 300;
  color: #000;
  letter-spacing: 0.02em;
  transition: color .3s;
}
.rcp-snake-step:hover .rcp-snake-badge {
  border-color: #000;
  box-shadow: 0 0 0 5px rgba(0,0,0,0.05);
}
.rcp-snake-step:hover .rcp-snake-badge span { color: #000; }

.rcp-snake-step h3 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #000;
  margin-bottom: 14px;
  line-height: 1.3;
}
.rcp-snake-step p {
  font-size: 14px;
  color: #a4a4a4;
  line-height: 1.75;
  font-weight: 300;
  max-width: 300px;
}

/* SVG arrows */
.rcp-snake-svg {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: visible; pointer-events: none;
}
.rcp-arrow-path {
  fill: none;
  stroke: #000;
  stroke-width: 1;
  stroke-linecap: round;
  opacity: 0.2;
}

/* Mobile */
@media (max-width: 768px) {
  .rcp-process-snake { grid-template-columns: 1fr; gap: 48px 0; min-height: unset; }
  .rcp-snake-step[data-step] { padding-top: 0 !important; }
  .rcp-snake-svg { display: none; }
  .rcp-service-image-wrap { position: static; margin-top: 32px; }
  .rcp-featured-slide-overlay { padding: 24px 20px 20px; }
}

/* ---------- GLOBAL IMAGE ZOOM + OVERLAY + MAGNIFIC POPUP OVERRIDES ---------- */

/* ── Featured works slider — stronger zoom + overlay ── */
.rcp-fw-img-el {
  transition: transform .4s cubic-bezier(.23,1,.32,1), filter .35s ease;
}
.rcp-fw-box:hover .rcp-fw-img-el {
  transform: scale(1.15);
  filter: brightness(.82);
}
/* dark vignette overlay on hover */
.rcp-fw-img::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  transition: background .45s ease;
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}
.rcp-fw-box:hover .rcp-fw-img::after { background: rgba(0,0,0,0.12); }

/* Magnific Popup — monochrome liquid.id skin */
.mfp-bg  { background: #000 !important; opacity: .88 !important; z-index: 100000 !important; }
.mfp-wrap { cursor: auto; z-index: 100001 !important; }

/* mfp-zoom-in animation */
.mfp-zoom-in .mfp-content { opacity: 0; transform: scale(0.9); transition: opacity .25s ease, transform .3s cubic-bezier(.23,1,.32,1); }
.mfp-zoom-in.mfp-ready .mfp-content { opacity: 1; transform: scale(1); }
.mfp-zoom-in.mfp-removing .mfp-content { opacity: 0; transform: scale(0.9); transition: opacity .2s, transform .2s; }
.mfp-zoom-in.mfp-removing.mfp-bg { opacity: 0 !important; transition: opacity .25s; }

/* Close button */
button.mfp-close {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300; font-size: 32px;
  color: #fff; opacity: .7;
  transition: opacity .2s;
}
button.mfp-close:hover { opacity: 1; }

/* Arrow buttons */
.mfp-arrow { opacity: .7; transition: opacity .2s; }
.mfp-arrow:hover { opacity: 1; }
.mfp-arrow::before, .mfp-arrow::after { border-width: 2px; }
.mfp-arrow-left::before { border-right: none; }
.mfp-arrow-right::before { border-left: none; }

/* Caption */
.mfp-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,.75); padding: 8px 0 0;
  text-align: left;
}
.mfp-title strong { font-weight: 400; color: #fff; }
.mfp-title small { font-size: 11px; color: rgba(255,255,255,.5); margin-left: 8px; letter-spacing: .05em; text-transform: lowercase; }

/* Counter */
.mfp-counter { font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 300; color: rgba(255,255,255,.45); letter-spacing: .08em; }

/* ---------- DROPDOWN MENU — liquid.id style ---------- */
.tlx-has-dropdown { position: relative; }
.tlx-nav-arrow { font-size: 9px; margin-left: 5px; transition: transform .25s; vertical-align: middle; }
.tlx-has-dropdown:hover .tlx-nav-arrow { transform: rotate(180deg); }
.tlx-dropdown {
  list-style: none;
  /* padding-top acts as invisible bridge so mouse can travel from link → dropdown */
  padding: 14px 0 8px;
  margin: 0;
  position: absolute;
  top: 100%;           /* flush — no gap; bridge is inside via padding-top */
  left: 50%;
  min-width: 190px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  /* delay 350ms on hide so user has time to move mouse down into dropdown */
  transition: opacity .2s .35s, transform .2s .35s, visibility 0s .35s;
  transform: translateX(-50%) translateY(8px);
  z-index: 9999;
}
.tlx-has-dropdown:hover .tlx-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  /* no delay on show */
  transition: opacity .15s 0s, transform .2s 0s, visibility 0s 0s;
}
.tlx-dropdown li a {
  display: block;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 300;
  color: #555;
  text-decoration: none;
  white-space: nowrap;
  transition: color .15s, background .15s;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: .02em;
}
.tlx-dropdown li a:hover { color: #000; background: #f7f7f7; }
/* suppress underline animation for parent link */
.tlx-has-dropdown > .tlx-nav-link::after { display: none; }

/* Mobile dropdown — collapse */
@media (max-width: 991px) {
  .tlx-dropdown {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: #f5f5f5;
    border-radius: 6px;
    padding: 4px 0 4px 12px;
    margin-top: 4px;
  }
}

/* =============================================
   MOBILE TOGGLE BUTTON (hamburger)
   ============================================= */
.tlx-mobile-toggle {
  background: transparent;
  border: none;
  padding: 8px 6px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 40px;
  height: 40px;
}
.tlx-toggle-bar {
  display: block;
  height: 1.5px;
  background: #000;
  border-radius: 2px;
  transition: transform .32s cubic-bezier(.23,1,.32,1), opacity .2s, width .3s;
}
.tlx-toggle-bar:nth-child(1) { width: 22px; }
.tlx-toggle-bar:nth-child(2) { width: 16px; }
.tlx-toggle-bar:nth-child(3) { width: 22px; }
/* Animate to X when open */
.tlx-mobile-toggle.is-open .tlx-toggle-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 22px; }
.tlx-mobile-toggle.is-open .tlx-toggle-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.tlx-mobile-toggle.is-open .tlx-toggle-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 22px; }

/* =============================================
   OFFCANVAS — monochrome / liquid.id overrides
   ============================================= */
/* =============================================
   OFFCANVAS — flex layout with scroll wrapper
   ============================================= */
.tv-offcanvas-area .lq-canvas {
  background: #0f0f0f !important;
  padding: 0 !important;           /* padding handled by children */
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;     /* clip; scroll lives in .lq-canvas-body */
}

/* ── Canvas header: logo + close ── */
.lq-canvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.lq-canvas-logo-link img {
  max-height: 40px;
  width: auto;
  filter: brightness(0) invert(1) !important;
  opacity: .85;
  display: block;
}
/* Close button */
.lq-canvas-close {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  border-radius: 50% !important;
  width: 38px !important;
  height: 38px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: rgba(255,255,255,0.75) !important;
  cursor: pointer !important;
  flex-shrink: 0;
  transition: background .2s, border-color .2s, color .2s !important;
  padding: 0 !important;
}
.lq-canvas-close:hover {
  background: rgba(255,255,255,0.12) !important;
  border-color: rgba(255,255,255,0.5) !important;
  color: #fff !important;
}
.lq-canvas-close svg { pointer-events: none; }

/* ── Scrollable body ── */
.lq-canvas-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 8px 32px 36px;
}
/* Hide scrollbar visually but allow scroll */
.lq-canvas-body::-webkit-scrollbar { width: 0; background: transparent; }
.lq-canvas-body { scrollbar-width: none; }

/* ── Contact block ── */
.lq-canvas-contact {
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.lq-canvas-contact-label {
  font-size: 10px !important;
  font-weight: 300 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.28) !important;
  margin-bottom: 18px !important;
  font-family: 'DM Sans', sans-serif !important;
}
.lq-contact-rows { display: flex; flex-direction: column; gap: 0; margin-bottom: 24px; }
.lq-contact-row {
  display: flex !important;
  align-items: flex-start !important;
  gap: 14px !important;
  padding: 12px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.05) !important;
  text-decoration: none !important;
  transition: opacity .2s !important;
}
.lq-contact-row:last-child { border-bottom: none !important; }
.lq-contact-row:hover { opacity: .75 !important; }
.lq-contact-ico {
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: rgba(255,255,255,0.5) !important;
  font-size: 13px !important;
  flex-shrink: 0 !important;
  margin-top: 2px !important;
}
.lq-contact-val {
  font-size: 13px !important;
  font-weight: 300 !important;
  color: rgba(255,255,255,0.72) !important;
  line-height: 1.55 !important;
  font-family: 'DM Sans', sans-serif !important;
  word-break: break-word !important;
}
/* CTA button inside canvas */
.lq-canvas-cta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 10px 22px !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  border-radius: 100px !important;
  color: rgba(255,255,255,0.8) !important;
  font-size: 13px !important;
  font-weight: 300 !important;
  letter-spacing: .04em !important;
  text-transform: lowercase !important;
  text-decoration: none !important;
  font-family: 'DM Sans', sans-serif !important;
  transition: background .25s, color .25s, border-color .25s !important;
}
.lq-canvas-cta:hover {
  background: #fff !important;
  color: #000 !important;
  border-color: #fff !important;
}
.lq-canvas-cta svg { transition: transform .2s; }
.lq-canvas-cta:hover svg { transform: translateX(3px); }

/* Legacy classes still exist in DOM — suppress conflicts */
.lq-canvas .itoffcanvas__close-btn,
.lq-canvas .itoffcanvas__logo,
.lq-canvas .itoffcanvas__text,
.lq-canvas .itoffcanvas__info { display: none !important; }

.tv-info-wrapper { gap: 14px !important; margin-bottom: 16px !important; }

/* =============================================
   OFFCANVAS MOBILE NAV LIST
   ============================================= */
/* =============================================
   OFFCANVAS MOBILE NAV LIST
   Higher-specificity rules to override global * {color:#000}
   ============================================= */
.tv-offcanvas-area .lq-mob-nav { list-style: none; padding: 0; margin: 16px 0 8px; border-top: none !important; }
.tv-offcanvas-area .lq-mob-item { border-bottom: 1px solid rgba(255,255,255,0.07) !important; }
.tv-offcanvas-area .lq-mob-link {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 15px 0 !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 18px !important;
  font-weight: 300 !important;
  color: rgba(255,255,255,0.82) !important;
  text-decoration: none !important;
  letter-spacing: .02em !important;
  transition: color .2s !important;
  background: transparent !important;
}
.tv-offcanvas-area .lq-mob-link:hover { color: #fff !important; }
.tv-offcanvas-area .lq-mob-arrow {
  font-size: 11px !important;
  color: rgba(255,255,255,0.35) !important;
  transition: transform .28s !important;
  flex-shrink: 0 !important;
}
.tv-offcanvas-area .lq-mob-item.lq-mob-open .lq-mob-arrow { transform: rotate(90deg) !important; }
/* Sub-menu */
.tv-offcanvas-area .lq-mob-sub {
  list-style: none !important;
  padding: 0 0 8px 12px !important;
  margin: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height .35s cubic-bezier(.23,1,.32,1) !important;
}
.tv-offcanvas-area .lq-mob-item.lq-mob-open .lq-mob-sub { max-height: 400px !important; }
.tv-offcanvas-area .lq-mob-sub li a {
  display: block !important;
  padding: 9px 0 !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  color: rgba(255,255,255,0.52) !important;
  text-decoration: none !important;
  font-family: 'DM Sans', sans-serif !important;
  letter-spacing: .02em !important;
  transition: color .2s !important;
  background: transparent !important;
}
.tv-offcanvas-area .lq-mob-sub li a:hover { color: rgba(255,255,255,0.92) !important; }

/* =============================================
   MOBILE RESPONSIVE — centering & layout fixes
   ============================================= */

/* --- Featured section --- */
@media (max-width: 767px) {
  .rcp-featured-section .rcp-featured-title {
    text-align: center;
  }
  .rcp-featured-footer {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

/* --- Service section --- */
@media (max-width: 991px) {
  /* Left column (col-lg-5) centers on mobile */
  .rcp-service-section .col-lg-5 {
    text-align: center;
  }
  .rcp-service-label {
    display: block;
  }
  .rcp-service-title {
    margin-left: auto;
    margin-right: auto;
  }
  .rcp-service-desc {
    margin-left: auto;
    margin-right: auto;
    max-width: 480px;
  }
  .rcp-service-list {
    text-align: left;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .rcp-service-image-wrap {
    position: static !important;
    max-width: 560px;
    margin: 0 auto;
    aspect-ratio: 16/10;
  }
}

/* --- Process section --- */
@media (max-width: 767px) {
  .rcp-process-section { padding: 48px 0 56px; }
  .rcp-process-header { margin-bottom: 48px; }
  .rcp-snake-step {
    text-align: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .rcp-snake-badge {
    margin-left: auto;
    margin-right: auto;
  }
  .rcp-snake-step h3 { margin-bottom: 8px; }
}

/* --- Portfolio highlight section (mobile-center via inline CSS already handles it) --- */
@media (max-width: 767px) {
  .rcp-portfolio-hl-section { padding: 52px 0; }
}

/* --- Featured works cards --- */
@media (max-width: 575px) {
  .rcp-fw-txt { padding: 14px 16px 16px; }
  .rcp-fw-title { font-size: 16px !important; }
}

/* --- General section spacing on mobile --- */
@media (max-width: 767px) {
  .rcp-service-section { padding: 48px 0; }
  .rcp-process-section { padding: 48px 0 52px; }
}

/* --- Header height compensation --- */
@media (max-width: 767px) {
  .tv-header-height { background: #efefef; }
}

/* --- Offcanvas size on small screens --- */
@media (max-width: 575px) {
  .tv-offcanvas-area .lq-canvas {
    width: 100% !important;
  }
  .lq-canvas-header { padding: 22px 24px 20px; }
  .lq-canvas-body   { padding: 8px 24px 32px; }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tv-offcanvas-area .lq-canvas { width: 360px !important; }
}
