/* ========= Header (BEM) ========= */
:root{
  --white:#FFF;
  --header-h: 64px;
  --header-bg: #ffffff;     /* translucent like screenshot */
  --header-bg-solid: rgba(12,12,12,0.9);
  --header-border: rgba(255,255,255,0.08);
  --brand-clr: #f4c04e;                 /* warm yellow for 'logo' */
  --hiw-bg: #f5f6f8;
  --hiw-ink: #2f2f2f;
  --hiw-muted: #6f7b87;
  --hiw-border: #dcdfe3;
  --hiw-accent: #e0c24f;        /* orange for numbers & ribbon */
  --hiw-radius: 8px;
  --link-clr: rgba(255,255,255,0.9);
  --link-clr-dim: #4A422E;
  --link-active: #ffffff;
  --about-bg: #f4f5f7;
  --about-title: #4a422e;
  --about-text: #5b6671;
  --about-muted: #7a8693;
  --about-accent: #e0c24f; /* matches earlier yellow */
  --about-radius: 12px;
  --srv-radius: 20px;
  --srv-shadow: 0 28px 60px rgba(0,0,0,.25);
  --brand-accent: var(--brand-accent, #e0c24f); /* fallback if not defined earlier */
  --q2-bg-top: #e0c24f;            /* soft mustard gradient */
  --q2-bg-btm: #4a422e;
;
  --q2-ink: #ffffff;
  --q2-muted: rgba(255,255,255,.9);
  --q2-accent: #e0c24f;
  --q2-card-bg: #fff;
  --q2-border: #e5e7eb;
  --q2-radius: 16px;
  --q2-shadow: 0 25px 60px rgba(0,0,0,.16);
  --accent: #e0c24f;   
  --wcu-accent: #e0c24f;;                 /* brand yellow */
  --wcu-ink: #2f2f2f;
  --wcu-muted: #6f7b87;
  --wcu-ico-bg: #847663;
  --office-bg: #f5f6f8;
  --office-ink: #2f2f2f;
  --office-muted: #6f7b87;
  --office-accent: #e0c24f;         /* brand yellow */
  --office-radius: 18px;
  --office-shadow: 0 24px 60px rgba(0,0,0,.15);
  --footer-bg: #2f3132;
  --footer-ink: rgba(255,255,255,.92);
  --footer-muted: rgba(255,255,255,.72);
  --footer-border: rgba(255,255,255,.12);
  --footer-accent: #e0c24f; /* brand yellow */
}

.site-header{
  height: var(--header-h);
}

.header{
  min-height: var(--header-h);
  background:#000;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px); */
  transition: background-color .2s ease, border-color .2s ease;
}

/* Solid background after scroll (optional, JS toggles .is-scrolled) */
.header.is-scrolled{
  background: #f7f7f7;
  border-bottom: 1px solid;
}

.header__brand{
  line-height: 1;
  padding: .35rem 0;
}

.header__logo-text{
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brand-clr);
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: .5px;
  text-shadow: 0 1px 0 rgba(0,0,0,.2);
  width: 40px;
  display: flex;
  align-items: center;
}
.logo-text{
  margin-left: 10px;
  font-size: 27px;
}

.header__logo-text img{width: 100%; }

/* Toggler */
.navbar-toggler{
  color:var(--white);
}
.is-scrolled .navbar-toggler{
  border: 0;
  padding: .25rem .5rem;
  color: var(--link-clr-dim);
}
.header__toggler:focus{ outline: 2px solid #fff; outline-offset: 2px; }

/* Nav */
.header__nav{
  gap: 1.75rem;  /* spacing similar to screenshot */
  align-items: center;
  padding: .35rem 0;
}
.header__nav-link{
  color: var(--white);
  font-weight: 500;
  padding: .25rem 0;
  position: relative;
}
.is-scrolled .header__nav-link{
  color: var(--link-clr-dim);
}
.header__nav-link:hover,
.header__nav-link:focus{
  color: var(--white);
}
.is-scrolled .header__nav-link:hover,
.is-scrolled .header__nav-link:focus{
  color: var(--io-dark);
}
.header__nav-link.active{
  color: var(--link-active) !important;
}
.header__nav-link::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-8px;
  margin:auto;
  height:2px; width:0;
  background:#fff;
  transition: width .2s ease;
}
.header__nav-link:hover::after,
.header__nav-link:focus::after,
.header__nav-link.active::after{
  width:100%;
}

/* Collapse panel on mobile */
@media (max-width: 991.98px){
  .navbar-collapse{
    background: var(--header-bg-solid);
    border-top: 1px solid var(--header-border);
    padding: .75rem 0;
    margin-top: .5rem;
  }
  .header__nav{
    gap: .25rem;
  }
  .header__nav-link{
    padding: .5rem 0;
  }
  .is-scrolled .header__nav-link {
    color: var(--white);
}
}

/* Push page content below fixed header (utility if needed) */
.main-has-fixed-header{
  padding-top: var(--header-h);
}

/* ===== Hero Banner ===== */
.hero{
  position: relative;
  min-height: calc(100vh - var(--header-h, 64px));
  overflow: hidden;
}

.hero__slider{ height: 100%; }

.hero__slide{
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--header-h, 64px));
  
}

.hero__overlay{
  position: absolute; inset: 0;
  background: rgba(0,0,0,.45);          /* darken like the screenshot */
  pointer-events: none;
}

.hero__content{
  position: relative;
  max-width: 860px;
  padding: 3rem 0;
  color: #fff;
}

.hero__title{
  margin: 0 0 1rem 0;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: clamp(2rem, 5.2vw, 3.00rem);    /* responsive big type */
}

.hero__line{ display: block; }

.hero__highlight{
  color:#f6e099;                         /* warm yellow */
}

.hero__text{
  max-width: 720px;
  margin: 0 0 2rem 0;
  color: rgba(255,255,255,.85);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

/* Button */
.hero__btn{
  font-weight: 700;
  padding: .60rem 1.35rem;
  border-radius: .5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  font-size: 16px;
}

/* Swiper pagination (bullets) */
.hero__pagination .swiper-pagination-bullet{
  background: rgba(255,255,255,.6);
  opacity: 1;
}
.hero__pagination .swiper-pagination-bullet-active{
  background: #fff;
}

/* Layered Animations */
[data-anim]{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

.animate-in{
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.hero__nav{
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1rem; pointer-events: none; z-index: 5;
}
.hero__arrow{
  pointer-events: auto;
  width: 44px; height: 44px; border: 0; border-radius: 999px;
  background: rgba(0,0,0,.45);
  display: grid; place-items: center; cursor: pointer;
  transition: transform .2s ease, background .2s ease;
  color: #fff;
}
.hero__arrow:hover{ transform: scale(1.05); background: rgba(0,0,0,.65); }
.hero__arrow i{ font-size: 22px; line-height: 1; }


/* Responsiveness */
@media (max-width: 575.98px){
  .hero__content{ padding: 2.25rem 0; }
  .hero__btn{ width: 100%; }
  .hero__arrow{ width: 38px; height: 38px; }
}
/* ===== Section head ===== */
.sec-head{ margin-bottom: 2.25rem; }
.sec-head__title{
  font-weight: 800;
  letter-spacing: .5px;
  color: #4a422e;
}
.sec-head__sub{
  color: #6c757d;
  max-width: 760px;
  margin: .5rem auto 0;
}
/* ===== How It's Work ===== */
.hiw{ background: var(--hiw-bg); padding: 4.5rem 0; }

.hiw .sec-head__title{ font-weight: 700; letter-spacing: .6px; }
.hiw .sec-head__sub{ color: var(--hiw-muted); }

.single-working-process-style2 {
	position: relative;
	display: block;
	max-width: 370px;
	min-width: 370px;
	width: 100%;
	margin: 0 auto;
	background: #ffffff;
}

.single-working-process-style2 .top-box {
	position: relative;
	display: block;
	padding: 30px 40px 20px;
	z-index: 2;
}

.single-working-process-style2 .top-box:before {
	position: absolute;
	top: 11px;
	right: 0;
	width: 370px;
	height: 113px;
	background: url(https://st.ourhtmldemo.com/new/Crystalo/images/pattern/working-process-item-bg.png);
	content: "";
	z-index: -1;
	opacity: 1;
	transition: all 300ms ease 100ms;
}

.single-working-process-style2:hover .top-box:before {
	opacity: 0;
	transition: all 900ms ease 500ms;
}

.single-working-process-style2 .top-box:after {
	position: absolute;
	top: 0px;
	left: 0;
	width: 370px;
	height: 99px;
	background: url(../images/working-process-item-hover-bg.png);
	content: "";
	z-index: -1;
	transition: all 900ms ease 100ms;
	transform-style: preserve-3d;
	transform: perspective(1200px) rotateX(-90deg) translateZ(-45px);
	opacity: 0;
}

.single-working-process-style2:hover .top-box:after {
	opacity: 1;
	transform: perspective(1200px) rotateX(0deg) translateZ(0px);
	transition: all 900ms ease 300ms;
}

.single-working-process-style2 .top-box .count {
	position: relative;
	display: block;
	float: left;
}

.single-working-process-style2 .top-box .count h1 {
	color: #847663;
	font-size: 60px;
	line-height: 46px;
	font-weight: 500;
	font-family: 'Rubik', sans-serif;
	transition: all 700ms ease 500ms;
}

.single-working-process-style2:hover .top-box .count h1 {
	color: #ffffff;
}

.single-working-process-style2 .top-box .icon {
	position: relative;
	display: block;
	float: right;
  font-size: 40px;
  color: #CCC;
}

.single-working-process-style2 .top-box .icon span:before {
	color: #d0d0d0;
	font-size: 70px;
	line-height: 70px;
}

.single-working-process-style2 .inner {
	position: relative;
	display: block;
	overflow: hidden;
	padding: 35px 40px 52px;
	width: 100%;
}

.single-working-process-style2 .inner h3 {
	color: #27282c;
	font-weight: 600;
	margin: 0 0 18px;
}

.single-working-process-style2 .inner p {
	margin: 0;
}

/*! CSS Used from: https://st.ourhtmldemo.com/new/Crystalo/css/responsive.css */
@media only screen and (max-width: 767px) {
	.single-working-process-style2 {
		max-width: 330px;
		min-width: 330px;
	}

	.single-working-process-style2 .top-box:after {
		width: 330px;
	}
}

/* ===== Categories slider ===== */
:root{
  --brand-accent: #e0c24f;             /* soft yellow for bullets */
  --card-radius: 12px;
  --card-shadow: 0 18px 40px rgba(0,0,0,.18);
}

.categories{ padding: 4.5rem 0 3.5rem; background: var(--white); }

.cat__slider{ padding: .25rem 0 2.25rem; }   /* space for bullets */

.swiper-slide{ height: auto; } /* allow card's height */
.cat-card{
  position: relative;
  display: block;
  width: 100%;
  border-radius: var(--card-radius);
  overflow: hidden;
  /*box-shadow: var(--card-shadow);*/
  isolation: isolate;
  background: #000;
  aspect-ratio: 16/9;                      /* visually similar to screenshot */
  transform: translateZ(0);                /* smooth */
  transition: transform .25s ease, box-shadow .25s ease;
}
.cat-card:hover{ transform: translateY(-6px); }

/* background image via CSS var for easy swapping */
.cat-card__bg{
  position: absolute; inset: 0;
  background: center / cover no-repeat var(--bg, none);
  filter: brightness(.9);
  transition: transform .35s ease, filter .35s ease;
  background-size: cover !important;
}
.cat-card:hover .cat-card__bg{
  transform: scale(1.03);
  filter: brightness(.95);
}

/* subtle overlay like in the mock: bottom gradient + thin inner border */
.cat-card__overlay{
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 55%, rgba(0,0,0,0) 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  pointer-events: none;
}

.cat-card__content{
  position: absolute;
  left: 24px; right: 24px; bottom: 22px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.45);
}
.cat-card__title{
  margin: 0 0 .35rem 0;
  font-weight: 700;
  font-size: clamp(1.125rem, 1.8vw, 1.5rem);
}
.cat-card__desc{
  margin: 0;
  font-size: clamp(.95rem, 1.4vw, 1.05rem);
  color: rgba(255,255,255,.9);
}

/* bullets */
.cat__pagination .swiper-pagination-bullet{
  width: 10px; height: 10px;
  background: #d7d7d7; opacity: 1;
  margin: 0 6px !important;
}
.cat__pagination .swiper-pagination-bullet-active{
  background: var(--brand-accent);
}

/* breakpoints for 1/2/3 visible cards */
#catSwiper .swiper-wrapper{ align-items: stretch; } /* equal heights */

@media (min-width: 576px){
  #catSwiper{ padding-left: .25rem; padding-right: .25rem; }
}
.about{background: var(--about-bg);}

.about__panel{
  background: var(--about-bg);
  border-radius: var(--about-radius);
  padding: 2rem 1.5rem;
}
@media (min-width: 992px){
  .about__panel{ padding: 2.5rem 2rem; }
}

.about__title{
  margin: 0 0 1rem 0;
  color: var(--about-title);
  font-weight: 700; /* per your rule */
  letter-spacing: .4px;
  font-size: clamp(1.75rem, 3.2vw, 2.375rem);
}

.about__lead{
  margin: 0 0 1rem 0;
  color: var(--about-text);
  line-height: 1.8;
  font-size: clamp(1rem, 1.4vw, 1.0625rem);
}

.about__stats{ margin-top: .5rem; }

.about__stat{ display: grid; gap: .25rem; }
.about__num{
  color: var(--about-accent);
  font-weight: 700;                 /* bold numbers */
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.1;
}
.about__label{
  color: var(--about-muted);
  font-size: .98rem;
}

/* Image block */
.about__media{
  border-radius:0;
  overflow: hidden;
  background: #000;
  box-shadow: 0 28px 60px -24px rgba(0,0,0,.45);
}
.about__img{
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.02) saturate(1.03);
}
/* ===== Services v2 (Grid + Gear Icons) ===== */

.services-v2{ padding: 4.75rem 0 3.75rem; background: var(--white); }

/* Category sub-heading (e.g. "RENOVATION SERVICES") */
.srv2-cat-title{
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0 0 2rem 0;
  color: #4a422e;
}
.srv2-cat-title__highlight{
  color: var(--brand-clr);
}

/* Two-column grid */
.srv2-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3.5rem;
  margin-bottom: 2.5rem;
}

/* Single service item */
.srv2-item__header{
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: .75rem;
}

/* Service icon */
.srv2-icon{
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #847663;
  border-radius: 50%;
}
.srv2-icon i{
  font-size: 1.6rem;
  color: #fff;
}

/* Service title */
.srv2-item__title{
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.45rem;
  color: #4A422E;
  line-height: 1.3;
}
.srv2-item__title a{
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.srv2-item__title a:hover{
  color: var(--brand-clr);
}

/* Description */
.srv2-item__desc{
  margin: 0;
  color: #5b6671;
  font-size: .97rem;
  line-height: 1.75;
  padding-left: 72px; /* aligns under title (56px icon + 16px gap) */
}

/* Responsive */
@media (max-width: 767.98px){
  .srv2-grid{
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .srv2-item__desc{
    padding-left: 0;
  }
}
/* ===== Get a Quote (Split) ===== */

.q2{
  background: linear-gradient(180deg, var(--q2-bg-top), #523b01);
  padding: 4.75rem 0;
}

.q2__intro{ color: var(--q2-ink); max-width: 560px; }
.q2__title{
  font-weight: 700; /* bold rule */
  letter-spacing: .6px;
  margin: 0 0 .6rem;
}
.q2__rule{
  display: inline-block;
  width: 100px; height: 6px; border-radius: 3px;
  background: #fff; opacity: .85; margin-bottom: 1rem;
}
.q2__lead{
  color: var(--q2-muted);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}
.q2__list{
  list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem;
  color: var(--q2-muted);
}
.q2__item{ display: flex; gap: .7rem; align-items: flex-start; }
.q2__item i{ color: #fff; background: rgba(255,255,255,.18); border-radius: 50%; width: 22px; height: 22px; display: grid; place-items: center; font-size: 14px; }

/* Card / Form */
.q2__card{
  background: var(--q2-card-bg);
  border: 1px solid var(--q2-border);
  border-radius: var(--q2-radius);
  padding: 1.25rem;
  box-shadow: var(--q2-shadow);
}
@media (min-width: 1200px){
  .q2__card{ padding: 1.5rem; }
}

.q2__control{
  height: 48px;
  border-radius: 12px;
  border: 1px solid var(--q2-border);
  background: #fff;
}
.q2__control::placeholder{ color: #a7b0bb; }
.q2__control:focus{
  border-color: var(--q2-accent);
  box-shadow: 0 0 0 .25rem rgba(224,194,79,.25);
}
.q2__textarea{ height: auto; padding-top: .9rem; padding-bottom: .9rem; }
.q2__help{ display: block; margin-top: .35rem; color: #7a8693; }

.q2__btn{
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: .95rem 1.25rem;
  font-weight: 700; /* bold rule */
  color: #FFF;
  background: #847663;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}
.q2__btn:hover{ filter: brightness(.98); }

.wcu{ padding: 4.75rem 0 4rem;background: var(--white); }

.wcu .sec-head__title{
  font-weight: 700;                      /* rule: bold = 700 */
  letter-spacing: .6px;
}
.wcu .sec-head__sub{
  color: var(--wcu-muted);
  max-width: 920px;
  margin-left: auto; margin-right: auto;
}

.wcu__item{
  text-align: center;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
}

.wcu__icon{ margin-bottom: 1rem; }
.wcu__ico-wrap{
  display: inline-grid;
  place-items: center;
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--wcu-ico-bg);
  box-shadow: inset 0 0 0 1px rgba(224,194,79,.14);
  transition: transform .2s ease;
}
.wcu__ico-wrap i{
  font-size: 28px;
  color: var(--white);
  line-height: 1;
}
.wcu__item:hover .wcu__ico-wrap{ transform: translateY(-3px); }

.wcu__title{
  margin: .25rem 0 .4rem;
  color: var(--wcu-ink);
  font-weight: 700;                      /* rule */
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}
.wcu__text{
  color: var(--wcu-muted);
  line-height: 1.7;
  margin: 0;
  font-size: .98rem;
}

/* ===== FAQ ===== */
:root{
  --faq-bg: #f5f6f8;
  --faq-card: #ffffff;
  --faq-muted: #6f7b87;
  --faq-border: #e8ebef;
  --faq-radius: 16px;
}

.faq{ background: var(--faq-bg); padding: 4.25rem 0; }
.faq .sec-head__title{ font-weight: 700; letter-spacing: .6px; }
.faq .sec-head__sub{ color: var(--faq-muted); }

.faq__accordion{ max-width: 980px; margin: 0 auto; }
.faq__item{
  background: var(--faq-card);
  border: 1px solid var(--faq-border);
  border-radius: var(--faq-radius);
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
  overflow: hidden;
  margin-bottom: .85rem;
}

/* Button */
.faq__question{
  background: var(--faq-card);
  color: #2f2f2f;
  font-weight: 700;               /* bold rule */
  padding: 1rem 1.25rem;
  border: 0;
  box-shadow: none !important;
  border-radius: var(--faq-radius);
}
.faq__question:focus{ outline: 0; box-shadow: 0 0 0 .25rem rgba(224,194,79,.25) !important; }

/* Remove Bootstrap default arrow */
.faq__question::after{ display: none; }

/* Our chevron */
.faq__chev{
  margin-left: auto;
  font-size: 22px;
  transition: transform .25s ease, opacity .25s ease;
  opacity: .8;
}
.faq__question:not(.collapsed) .faq__chev{ transform: rotate(180deg); opacity: 1; }

/* Body */
.faq__answer{
  color: var(--faq-muted);
  line-height: 1.8;
  padding: 1.1rem 1.25rem ;
}




/* ===== CTA Banner ===== */

.cta{
  position: relative;
  background: center / cover no-repeat var(--cta-bg, #000);
  isolation: isolate;
  min-height: 340px;
  padding: 72px 0;
}
@media (min-width: 992px){
  .cta{ min-height: 380px; padding: 88px 0; }
}

.cta__overlay{
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 280px at 50% 20%, rgba(0,0,0,.2) 0%, rgba(0,0,0,.5) 60%, rgba(0,0,0,.65) 100%),
    linear-gradient(to bottom, rgba(0,0,0,.45), rgba(0,0,0,.55));
  pointer-events: none;
}

.cta__content{
  position: relative;
  color: #fff;
  max-width: 980px;
  margin-left: auto; margin-right: auto;
}

.cta__title{
  margin: 0 0 .75rem 0;
  font-weight: 700;                       /* bold rule */
  letter-spacing: .6px;
  text-transform: uppercase;
  font-size: clamp(1.75rem, 4.8vw, 3rem);
}

.cta__sub{
  color: rgba(255,255,255,.9);
  margin: 0 0 1.5rem 0;
  font-size: clamp(1rem, 1.6vw, 1.125rem);
}

.cta__actions{
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cta__btn{
  font-weight: 700;                        /* bold rule */
  border-radius: .8rem;
  padding: .9rem 1.4rem;
  min-width: 240px;
  box-shadow: 0 12px 28px rgba(0,0,0,.2);
}

.cta__btn--primary{
  background-color: var(--pf-gold);
  border: none;
  color: #1f1f1f;
}
.cta__btn--primary:hover{ filter: brightness(.98); }

.cta__btn--ghost{
  border: 2px solid rgba(255,255,255,.85);
  color: #fff;
  background: transparent;
}
.cta__btn--ghost:hover{
  background: rgba(255,255,255,.08);
}
/* ===== Our Office ===== */
.office{ background: var(--office-bg); padding: 4.5rem 0; }

.office__title{
  margin: 0 0 1.25rem;
  color: #4a422e;
  font-weight: 700;                 /* bold rule */
  letter-spacing: .4px;
}

.office__list{ list-style: none; padding: 0; margin: 0 0 1.25rem; display: grid; gap: 1rem 0; }
.office__item{ display: grid; grid-template-columns: 40px 1fr; gap: .9rem; align-items: start; }

.office__ico{
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--pf-gold);
  display: grid; place-items: center;
}
.office__ico i{ color: var(--white); font-size: 20px; line-height: 1; }

.office__label{
  font-weight: 700;                 /* bold rule */
  color: var(--office-ink);
  margin-bottom: .2rem;
}
.office__text{
  color: var(--office-muted);
  margin: 0;
  line-height: 1.75;
}

/* Badges */
.office__badges{ display: flex; gap: 1.25rem; flex-wrap: wrap; margin-top: .5rem; }
.office__badge{ display: inline-flex; align-items: center; gap: .5rem; color: #3a3a3a; }
.office__badge i{ color: var(--pf-gold); font-size: 20px; }
.office__badge-title{ font-weight: 700; }   /* bold rule */

/* Image */
.office__media{
  border-radius: var(--office-radius);
  overflow: hidden;
  box-shadow: var(--office-shadow);
  background: #000;
}
.office__img{ width: 100%; height: auto; display: block; }
/* ===== Footer ===== */
.footer{
  background: var(--footer-bg);
  color: var(--footer-muted);
  padding: 3.5rem 0 2rem;
}
.footer a{ color: var(--footer-muted); text-decoration: none; }
.footer a:hover{ color: var(--footer-ink); }

.footer__logo{
  display: inline-block;
  font-size: 1.75rem;
  font-weight: 700; /* bold rule */
  color: var(--footer-accent);
  letter-spacing: .3px;
  margin-bottom: .75rem;
}

a.footer__logo {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
a.footer__logo img
 {
    width: 100%;
}
a.footer__logo span {
    font-size:27px;
    margin-left: 10px;
    color: #FFF;
}
.footer__text{ max-width: 440px; margin-bottom: 1rem; }

.footer__social{
  display: flex; gap: .6rem; padding: 0; margin: 0; list-style: none;
}
.footer__social a{
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--footer-border);
}
.footer__social a:hover{
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}

.footer__head{
  color: var(--footer-ink);
  font-weight: 700; /* bold rule */
  margin-bottom: .75rem;
}
.footer__links{ list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }

.footer__contact{ list-style: none; padding: 0; margin: 0; display: grid; gap: .65rem; }
.footer__contact li{ display: grid; grid-template-columns: 22px 1fr; gap: .6rem; align-items: start; }
.footer__contact i{ color: var(--pf-gold); font-size: 18px; line-height: 1; }

.footer__divider{
  border: 0; border-top: 1px solid var(--footer-border);
  margin: 1.75rem 0 1.25rem;
}

.footer__copy{
  text-align: center;
  color: rgba(255,255,255,.66);
}
.footer__copy a{ color: rgba(255,255,255,.8); }
.footer__copy a:hover{ color: #fff; }

@media (max-width: 991.98px){
  .footer{ padding-top: 3rem; }
}


/* ===== About-us page ===== */
:root{          /* brand yellow */
  --ink-900: #212529;
  --ink-700: #2f2f2f;
  --muted-600: #6f7b87;
  --soft-bg: #f6f7f9;
  --radius-lg: 18px;
  --radius-md: 14px;
}

/* ===== HERO ===== */
.story-hero{
  position: relative;
  isolation: isolate;
  padding: 96px 0 88px;
}
@media (min-width: 992px){ .story-hero{ padding: 120px 0 30px; } }

.story-hero__overlay{
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.6)),
    radial-gradient(900px 280px at 50% 10%, rgba(0,0,0,.2) 0, rgba(0,0,0,0) 60%);
  pointer-events: none;
}
.story-hero__content{ position: relative; color:#fff; max-width: 780px; }
.story-hero__title{
  margin: 0 0 .5rem; text-transform: uppercase;
  font-weight: 700; letter-spacing: .6px;
  font-size: clamp(2rem, 5.2vw, 3.25rem);
}
.story-hero__accent{ color: var(--accent); font-weight: 700; }
.story-hero__lead{ color: rgba(255,255,255,.9); margin-bottom: 1.25rem; line-height: 1.75; }
.story-hero__btn{
  font-weight: 700; border: none; border-radius: .7rem; padding: .9rem 1.25rem;
  color: #1f1f1f; box-shadow: 0 12px 28px rgba(0,0,0,.22);
}
.bread-crum {
    width: 100%;
}
.bread-crum ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
    position: relative;
    margin: 0;
}
.bread-crum ul li{
  color: #FFF;
}
.bread-crum ul li a{
  color: #FFF;
  text-decoration: none;
  font-size: 16px;
}
.bread-crum ul li a.active{
  color: var(--accent);
  font-weight: 700;
}
/* ===== BEGINNING ===== */
.begin{ background:#fff; padding: 3.75rem 0; }
.begin__title{
  font-weight: 700; letter-spacing: .4px; color: var(--ink-900);
  margin-bottom: 1rem;
}
.begin__title span{ color: var(--accent); font-weight: 700; }
.begin__text p{ color: var(--muted-600); line-height: 1.9; margin-bottom: 1rem; }

.begin__media{
  border-radius: var(--radius-lg); overflow:hidden; background:#000;
  box-shadow: 0 28px 60px -22px rgba(0,0,0,.35);
}
.begin__img{ width:100%; height:auto; display:block; }

.begin__stats{ margin-top: .75rem; }
.begin__num{ font-weight:700; color: var(--accent); font-size: 1.4rem; line-height:1; }
.begin__label{ color:#7b8794; font-size:.9rem; }

/* ===== MISSION / VISION ===== */
/* MV: equal height + precise heading bar like the mock */
.mv{
  position: relative;
  padding: 64px 0;
  isolation: isolate;
}
.mv__overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.62), rgba(0,0,0,.66));
  pointer-events: none;
}

.mv .container{ position: relative; color:#fff; }

.mv__card{
  display: flex;                 /* equal heights */
  flex-direction: column;
  height: 100%;
}

.mv__title{
  margin: 0;
  font-weight: 700;              /* bold rule */
  letter-spacing: .6px;
  text-transform: uppercase;
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  position: relative;
  width: fit-content;
}
.mv__title span{ color: var(--accent); font-weight: 700; }

/* yellow underline (bar) perfectly aligned under the heading */
.mv__title::after{
  content:"";
  display:block;
  width: 92px;                   /* tweak this to match your design */
  height: 6px;
  border-radius: 3px;
  background: var(--accent);
  margin: .55rem 0 1rem;
}

.mv__lead{
  color: rgba(255,255,255,.94);
  margin: 0 0 .6rem;
  line-height: 1.75;
  max-width: 60ch;               /* keeps text widths consistent */
}
.mv__text{
  color: rgba(255,255,255,.86);
  margin: 0;
  line-height: 1.75;
  max-width: 60ch;
}


/* ===== VALUES ===== */
.values{ background:#fff; padding: 3.5rem 0; }
.values .sec-head__title{ font-weight:700; color: var(--ink-700); }
.values__accent{ color: var(--accent); font-weight:700; }
.values .sec-head__sub{ color: var(--muted-600); max-width: 820px; margin: .4rem auto 1.25rem; }

.vcard{
  background: var(--soft-bg);
  border: 1px solid #edf0f3;
  border-radius: var(--radius-md);
  padding: 1rem .95rem 1.05rem;
  height: 100%;
}
@media (min-width: 992px){ .vcard{ padding: 1.15rem 1.15rem 1.2rem; } }

.vcard__icon{
  width: 44px; height: 44px; border-radius: 12px;
  display:grid; place-items:center; margin-bottom:.5rem;
  background: rgb(136 184 255 / 21%); color: var(--accent); font-size: 22px;
}
.vcard__title{ font-weight:700; color: var(--ink-700); margin: 0 0 .25rem; font-size: 1.02rem; }
.vcard__text{ color: var(--muted-600); margin: 0; line-height: 1.7; }
/* ===== Services (Swiper + Fancybox) ===== */
.svc{ padding: 2.75rem 0; }
.svc__title{ font-weight: 700; margin-bottom: 1.25rem; } /* rule: 700 for bold */
.svc__desc{ color: #6f7b87; max-width: 900px; margin: 1rem auto 0; }

/* slider frame */
.svc__swiper{ overflow: hidden; }
.svc__swiper .swiper-wrapper{ align-items: stretch; }
.svc__swiper .swiper-slide{ height: auto; display: flex; }

/* single image — no swiper, centered, same size as slider cards */
.svc__single{ display: flex; justify-content: center; margin-bottom: .5rem; }
.svc__single .svc__card{ max-width: 480px; width: 100%; }

/* image card */
.svc__card{
  position: relative; display:block; width:100%;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 16px 36px rgba(0,0,0,.12);
}
.svc__img{ width: 100%; height: 280px; display:block; object-fit: cover; object-position: center; transition: transform .3s ease, filter .3s ease; }
.svc__card:hover .svc__img{ transform: scale(1.03); filter: brightness(.98); }
@media (min-width:768px){ .svc__img{ height: 320px; } }
@media (min-width:1200px){ .svc__img{ height: 360px; } }

/* nav buttons */
.svc__nav{
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(0,0,0,.5); color: #fff; border: 0;
  z-index: 3; cursor: pointer;
}
.svc__prev{ left: 15px; }
.svc__next{ right: 15px; }
.svc__nav i{ font-size: 22px; line-height: 1; }
.svc__nav:focus-visible{ outline: 3px solid rgba(224,194,79,.65); outline-offset: 2px; }
.svc-button-container{width: 100; display: flex; justify-content: center;margin-top: 15px;}
/* spacing between slides */
@media (min-width: 576px){ .svc{ padding: 3rem 0; } }

/* ===== Service Details ===== */
:root{
  --io-gold: #E2B93B; /* match your accent */
  --io-dark: #111;
  --io-muted: #6f7785;
  --io-black:#0b0c0f;           /* near black */
  --io-black-2:#14161b;
}
.section-padding{padding: 64px 0;}
.section-gap{margin-top: 48px;}
.sd-section-title{font-weight:700; font-size:1.5rem; margin-bottom:1rem;}
.sd-intro__title{font-weight:700; font-size:2rem; margin-bottom:.5rem;}
.sd-intro__lead{font-size:1.0625rem; color:var(--io-muted);}
.sd-intro__meta .sd-meta{display:flex; align-items:center; gap:.5rem; color:#333;}
.sd-intro__meta .sd-meta i{font-size:1.1rem; color:var(--io-gold);}

/* Gallery */
.sd-gallery__main{--swiper-navigation-size:24px;}
.sd-gallery__main .swiper-slide img{width:100%; height:auto; display:block;}
.sd-gallery__thumbs .swiper-slide{width:auto !important; cursor:pointer; opacity:.7;}
.sd-gallery__thumbs .swiper-slide-thumb-active{opacity:1;}
.sd-gallery__thumbs img{height:70px; width:auto; object-fit:cover;}

/* Cards */
.sd-card{background:#fff; border-radius:14px; padding:22px; height:100%; box-shadow:0 4px 18px rgba(0,0,0,.06);}
.sd-card__icon{font-size:22px; color:var(--io-gold);}
.sd-card__title{font-weight:700; margin:.35rem 0 .25rem;}
.sd-card__text{color:var(--io-muted);}

/* Deliverables list */
.sd-list{display:grid; gap:.5rem; grid-template-columns:repeat(1,1fr); margin:0; padding:0; list-style:none;}
.sd-list li{display:flex; gap:.5rem; align-items:flex-start; background:#fff; border-radius:12px; padding:.75rem 1rem; box-shadow:0 4px 12px rgba(0,0,0,.05);}
.sd-list i{color:var(--io-gold); margin-top:.15rem;}

/* Process steps */
.sd-steps{counter-reset:sdstep; list-style:none; margin:0; padding:0; display:grid; gap:18px;}
.sd-step{display:grid; grid-template-columns:56px 1fr; gap:14px; background:#fff; border-radius:14px; padding:16px 18px; box-shadow:0 4px 12px rgba(0,0,0,.05);}
.sd-step__num{display:grid; place-items:center; background:var(--io-dark); color:#fff; width:56px; height:56px; border-radius:12px; font-weight:700;}
.sd-step__title{font-weight:700; margin:0 0 .25rem;}
.sd-step__body p{color:var(--io-muted); margin:0;}

/* Sticky sidebar */
.sd-sticky{position:sticky; top:90px;}
.sd-quote__title {
    font-weight: 700;
    margin-bottom: .25rem;
    color: var(--io-gold);
}
.sd-quote__text{color:#FFF;}
.sd-quick li{display:flex; gap:.5rem; margin:.25rem 0; color:#333;}
.sd-quick i{color:var(--io-gold);}
.sd-form .form-label{ margin-bottom: .35rem; color: #FFF; }
.sd-error{ display:block; margin-top:.35rem; color:#dc3545; font-size:.875rem; }
.sd-hint{ display:block; margin-top:.25rem; color:#6f7785; font-size:.8125rem; }
.q-enq-form {padding: 1rem; background: #333;
}


@media (min-width:768px){
  .sd-list{grid-template-columns:repeat(2,1fr);}
}
@media (min-width:1200px){
  .sd-list{grid-template-columns:repeat(3,1fr);}
}

/* Related Services */
.sd-related{ padding: 64px 0; }
.sd-related .sd-section-title{ font-size:1.6rem; color:#4a422e; }
.sd-related-card{ border-radius:14px; overflow:hidden; transition:transform .3s, box-shadow .3s; }
.sd-related-card:hover{ transform:translateY(-6px); box-shadow:0 12px 32px rgba(0,0,0,.12); }
.sd-related-card__media{ display:block; overflow:hidden; height:200px; }
.sd-related-card__media img{ width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.sd-related-card:hover .sd-related-card__media img{ transform:scale(1.06); }
.sd-related-card .card-body{ padding:1rem 1.15rem; }
.sd-related-card .card-body h3{ font-size:1rem; margin:0; line-height:1.4; }
.sd-related-card .card-body h3 a{ color:#4a422e; text-decoration:none; transition:color .3s; }
.sd-related-card .card-body h3 a:hover{ color:var(--brand-clr); }
.sd-related-card .badge{ font-size:.7rem; font-weight:600; letter-spacing:.3px; }
.sd-related__prev,
.sd-related__next{ width:36px; height:36px; display:inline-flex; align-items:center; justify-content:center; border-radius:50%; padding:0; }
.sd-related__prev:hover,
.sd-related__next:hover{ background:var(--brand-clr); border-color:var(--brand-clr); color:#fff; }
.sd-related__pagination{ display:none; }

/* ======contact us====== */
.section-padding{ padding:64px 0; }

.contact{
  position:relative;
  background:
    radial-gradient(900px 500px at 100% 0, rgba(226,185,59,.10), transparent 60%),
    linear-gradient(180deg, #fff, #f8f9fb);
}
.contact__title{ font-weight:700; font-size:2.125rem; margin-bottom:.35rem; }
.contact__lead{ color:var(--io-muted); }

.contact-card .contact-list__icon{ font-size:20px; color:var(--io-gold); }
.contact-link{ text-decoration:none; }
.contact-card.card, .contact-form.card{
  border-radius:20px; background:#fff; box-shadow:0 18px 40px -12px rgba(0,0,0,.20);
}
.contact-form .card-body::before{
  content:""; position:absolute; left:0; right:0; top:0; height:5px;
  border-radius:20px 20px 0 0;
  background:linear-gradient(90deg, var(--pf-gold), var(--pf-gold));
}

.c-form .form-control{
  border:1px solid rgba(0,0,0,.08); border-radius:14px; padding:.75rem .9rem;
  box-shadow:0 4px 14px rgba(0,0,0,.05);
}
.c-form .form-control:focus{
  border-color:var(--io-gold); box-shadow:0 0 0 .2rem rgba(226,185,59,.15);
}
.c-form .btn.btn-primary{
  border:0; border-radius:14px; font-weight:700;
  background:linear-gradient(180deg, var(--io-gold), #caa027);
  box-shadow:0 10px 20px rgba(226,185,59,.35);
}
.c-form .btn.btn-primary:hover{ filter:brightness(.95); }

.c-error{ display:block; margin-top:.35rem; color:#dc3545; font-size:.875rem; }
.c-hint{ color:var(--io-muted); font-size:.875rem; }
.form-control.is-invalid{ border-color:#dc3545; }
.form-control.is-valid{ border-color:#198754; }
.contact-tiles{ margin-top: .25rem; }

/* Card */
.contact-tile{
  position: relative;
  height: 100%;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 18px;
  border-radius: 18px;
  color: var(--io-text);
  /* Blackish base + golden glow */
  background:
    radial-gradient(600px 240px at 100% 0, rgba(226,185,59,.18), rgba(226,185,59,0) 60%),
    linear-gradient(180deg, var(--io-black-2), var(--io-black));
  border: 1px solid rgba(226,185,59,.28);
  box-shadow:
    0 20px 40px -18px rgba(0,0,0,.45),
    0 12px 30px -16px rgba(226,185,59,.25);
  overflow: hidden;
}

.contact-tile::before{
  /* subtle top accent strip */
  content:"";
  position:absolute; left:0; right:0; top:0; height:4px;
  background: linear-gradient(90deg, var(--io-gold), var(--io-gold-2));
  opacity:.9;
}

.contact-tile__icon{
  flex: 0 0 52px; height:52px; width:52px;
  display:grid; place-items:center;
  border-radius:14px;
  color:#FFF;
  background: linear-gradient(180deg, var(--pf-gold), var(--pf-gold));
  font-size: 20px;
}

.contact-tile__body{ line-height: 1.35; }

.contact-tile__label{
  margin: 2px 0 4px;
  letter-spacing:.06em;
  text-transform: uppercase;
  font-size:.75rem;
  color: var(--about-accent);
}

.contact-tile__value{
  font-weight:700;               /* per your rule */
  color:#fff;
}

.contact-tile__link{
  color:#fff;
  text-decoration:none;
  transition: color .2s ease, text-shadow .2s ease;
}
.contact-tile__link:hover{
  color: var(--io-gold);
  text-shadow: 0 0 12px rgba(226,185,59,.45);
}

/* Responsive polish */
@media (min-width: 1200px){
  .contact-tile{ padding:22px 22px; }
}
:root{
--pf-dark:#121212;
  --pf-darker:#0a0a0a;
  --pf-text:#5f656d;
  --pf-gold:#e0c24f;
  --pf-bg:#f7f7f8;
  --pf-white:#ffffff;
  --pf-radius:18px;
  --pf-shadow:0 10px 30px rgba(0,0,0,.08);
}

html,body{scroll-behavior:smooth;background:var(--pf-bg);}
.pf-section{padding:64px 0;}
.pf-title{font-size:clamp(28px,3.2vw,40px);font-weight:700;letter-spacing:.2px;margin:0 0 6px;}
.pf-title span{color:var(--pf-gold);}
.pf-lead{color:var(--pf-text);margin:0;}

/* Swiper Navigation */
.pf-nav{width:44px;height:44px;border-radius:50%;border:1px solid #1c1c1c;background:#fff;display:inline-flex;align-items:center;justify-content:center;box-shadow:var(--pf-shadow);transition:all .2s;}
.pf-nav:hover{transform:translateY(-2px);}

/* ===== Featured Slider ===== */
.pf-featured .swiper{overflow:hidden;}
.pf-slide{position:relative;display:block;border-radius:var(--pf-radius);overflow:hidden;box-shadow:var(--pf-shadow);}
.pf-slide img{width:100%;height:360px;object-fit:cover;display:block;transition:transform .5s;}
.pf-slide__info{position:absolute;left:16px;right:16px;bottom:12px;color:#fff;text-shadow:0 2px 10px rgba(0,0,0,.4);}
.pf-slide__title{font-size:clamp(18px,2vw,24px);font-weight:700;margin:4px 0 0;}
.pf-tag{display:inline-block;background:rgba(0,0,0,.6);backdrop-filter:saturate(140%) blur(2px);border:1px solid rgba(255,255,255,.25);padding:.25rem .6rem;border-radius:999px;font-size:.75rem;font-weight:600}
.pf-slide:hover img{transform:scale(1.05);}

/* ===== Filters ===== */
.pf-filters .btn{border-radius:999px;padding:.45rem .9rem;font-weight:600}
.pf-filters .btn.active{background:#000;color:#fff;border-color:#000;}

/* ===== Gallery grid ===== */
.pf-figure{position:relative;border-radius:var(--pf-radius);overflow:hidden;box-shadow:var(--pf-shadow);background:#000;}
.pf-figure img{width:100%;height:280px;object-fit:cover;transition:transform .4s, opacity .4s;}
.pf-figcap{position:absolute;inset:auto 0 0 0;padding:16px;color:#fff;background:linear-gradient(180deg,rgba(0,0,0,0) 0%,rgba(0,0,0,.75) 90%);}
.pf-figcap__title{margin:2px 0 0;font-size:1.1rem;font-weight:700}
.pf-figure:hover img{transform:scale(1.05);opacity:.9}

/* Load more */
#pfLoadMore{border-radius:999px;padding:.6rem 1.25rem;font-weight:700}

/* ===== Spotlight cards ===== */
.pf-card{background:#fff;border-radius:var(--pf-radius);box-shadow:var(--pf-shadow);overflow:hidden;height:100%;display:flex;flex-direction:column;}
.pf-card .swiper{--h:220px;}
.pf-card .swiper-slide img{width:100%;height:var(--h);object-fit:cover;display:block;}
.pf-card__body{padding:18px;}
.pf-card__title{font-weight:700;font-size:1.125rem;margin:0 0 6px;}
.pf-card__meta{color:var(--pf-text);margin:0 0 12px;font-weight:600}
.pf-card-pagination{position:absolute;right:10px;bottom:10px;left:auto;z-index:2;background:rgba(0,0,0,.55);color:#fff;border-radius:999px;padding:.1rem .5rem;font-size:.75rem}

/* ===== Clients ===== */
.pf-clients{background:var(--pf-white);}
.pf-logo{filter:grayscale(100%);opacity:.8;transition:all .2s;width:100%;height:auto;border-radius:10px;padding:10px;background:#fff;box-shadow:var(--pf-shadow);}
.pf-logo:hover{filter:none;opacity:1;transform:translateY(-2px)}

/* ===== CTA ===== */
.pf-cta{background:linear-gradient(120deg, #111, #2b2b2b 60%, #111);color:#fff;position:relative;overflow:hidden;}
.pf-cta::before{content:"";position:absolute;inset:0;background:url('https://images.unsplash.com/photo-1524758631624-e2822e304c36?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;opacity:.08;mix-blend:screen;}
.pf-cta__box{position:relative;text-align:center;max-width:900px;margin:0 auto;padding:36px;border:1px solid rgba(255,255,255,.08);border-radius:var(--pf-radius);backdrop-filter:blur(4px)}
.pf-cta__title{font-size:clamp(24px,3vw,34px);font-weight:700;margin:0 0 8px;}
.pf-cta__sub{color:#d9d9d9;margin-bottom:16px;}
.btn-warning{--bs-btn-color:#fff;--bs-btn-bg:var(--pf-gold);--bs-btn-border-color:var(--pf-gold);--bs-btn-hover-bg:#e0b423;--bs-btn-hover-border-color:#c0991a;font-weight:700;border-radius:999px}
.btn-outline-light{border-radius:999px}

/* ===== Helpers ===== */
.pf-page:focus{outline:3px dashed var(--pf-gold);outline-offset:4px;}

@media (max-width: 576px){
  .pf-slide img{height:260px}
  .pf-card .swiper{--h:200px;}
}

:root{
  --clist-radius: 16px;
  --clist-shadow: 0 18px 42px rgba(0,0,0,.12);
}
.clist--toolbar{ padding: 1rem 0; }
.clist{ padding: 1.25rem 0 2.75rem; }

.clist__search{ border-radius: 12px; height: 46px; }
.clist__sort{ border-radius: 12px; height: 46px; }

.clist__card{
  display:block; position:relative; height:100%;
  border-radius: var(--clist-radius); overflow:hidden;
  box-shadow: var(--clist-shadow); background:#000;
  transition: transform .25s ease, box-shadow .25s ease;
}
.clist__card::after {content: '';position: absolute;left: 0;top: 0;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .1) 10%, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, .5) 100%);z-index: 0;
  width: 100%;height: 100%;}
.clist__card:hover{ transform: translateY(-4px); }

.clist__media{ aspect-ratio: 16/10; margin:0; background:#000; }
.clist__img{ width:100%; height:100%; object-fit:cover; display:block; filter:brightness(.96); }

.clist__meta{
  position:absolute; left:16px; right:16px; bottom:14px;
  color:#fff; text-shadow:0 2px 8px rgba(0,0,0,.45);
  display:flex; justify-content:space-between; align-items:flex-end; gap:.5rem;
  z-index: 1;
}
.clist__title{ font-weight:700; font-size:1.05rem; margin:0; }
.clist__tag{
  font-size:.85rem; background: rgba(0,0,0,.45);
  padding:.25rem .5rem; border-radius: 8px;
}

/* Pagination */
.clist__pagination .page-link{ border-radius: 10px; }