/* ==========
  Fonts 
========== */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600&family=Playfair+Display:wght@400;500;600&display=swap");

:root{
  --serif: "Playfair Display", serif; 
  --sans: "Manrope", sans-serif;

  --text: #1e1e1e;
  --muted: #6b6b6b;
  --bg: #ffffff;
  --line: rgba(0,0,0,0.08);
  --primary:#6E2A32; 
  --gold: #b59b57;
  --gold-dark: #8f7740;

  --radius: 12px;
  --shadow: 0 18px 60px rgba(0,0,0,0.08);
}

*{box-sizing:border-box;}
body{margin:0; font-family:var(--sans); color:var(--text); background:var(--bg);}

.elementor-editor-active .reveal {
    opacity: 1 !important;
    transform: none !important;
}

.container{
  width:100%;
  max-width:1280px;
  margin:0 auto;
  padding:0 18px;
}

/* ==========
  Header Base
========== */
.site-header{
  width:100%;
  background:#fff;
  position:relative;
  z-index:100;
}

/* Smooth entrance animation */
.site-header{
  transform: translateY(-12px);
  opacity:0;
  animation: headerIn 0.8s ease forwards;
}
@keyframes headerIn{
  to{transform:translateY(0); opacity:1;}
}

/* ==========
  Top Bar
========== */
.header-top{
  border-bottom:1px solid var(--line);
  background:#fff;
}

.header-top-inner{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap:16px;
  padding:14px 0;
}

.search-form input{
  width:100%!important;
  max-width:180px!important;
  height:34px!important;
  border:1px solid var(--line)!important;
  border-radius:999px!important;
  padding:0 14px!important;
  outline:none!important;
  font-size:13px!important;
  font-family:var(--sans)!important;
  transition:all .25s ease!important;
}

.search-form input:focus{
  border-color:rgba(181,155,87,0.65)!important;
  box-shadow:0 0 0 4px rgba(181,155,87,0.15)!important;
}

/* Logo */
.top-logo{justify-self:center;}
.top-logo a img{
    max-width:190px;
    height:auto;
    display:block;
    margin:0 auto;
}
.logo-link{text-decoration:none; text-align:center; display:inline-block;}


/* CTA button */
.top-cta{justify-self:end;}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  font-size:13px;
  font-weight:600;
  text-decoration:none;
  transition:all .25s ease;
}
.btn-primary{
  background:var(--gold);
  color:#fff;
  box-shadow:0 10px 30px rgba(181,155,87,0.28);
}
.btn-primary:hover{
  background:var(--gold-dark);
  transform: translateY(-2px);
}
.btn-primary i, .btn-primary-brd i{
    margin-right:5px;
}
.btn-primary-brd{
  background:transparent;
  border: 1px solid var(--gold);
  color:var(--gold);
   transition:all .25s ease;
}
.btn-primary-brd:hover{
  background:var(--gold);
  color:#fff;
  transform: translateY(-2px);
}
.hero-title span{
    color: var(--primary);
}
/* ==========
  Nav Bar
========== */
.header-nav{
  border-bottom:1px solid var(--line);
  background:#6E2A32;
}

.nav-inner{
  padding:10px 0;
}

.nav{
  display:flex;
  justify-content:center;
  position:relative;
}

.nav-links{
  list-style:none;
  display:flex;
  gap:22px;
  margin:0;
  padding:0;
  align-items:center;
}

.nav-link{
  text-decoration:none;
  font-size:16px;
  /*color:#2a2a2a;*/
  color:#fff;
  font-weight:500;
  padding:10px 6px;
  transition: all .25s ease;
  position:relative;
}

.nav-link:hover{
  color:var(--gold-dark);
}

.nav-link.active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:5px;
  height:2px;
  background:var(--gold);
  border-radius:99px;
}

/* Dropdown */
.has-dropdown{position:relative;}
.dropdown{
  position:absolute;
  top:30px;
  left:0;
  min-width:220px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  box-shadow: var(--shadow);
  padding:10px;
  list-style:none;
  margin:0;
  opacity:0;
  transform: translateY(8px);
  pointer-events:none;
  transition: all .25s ease;
}

.dropdown li a{
  display:block;
  padding:10px 12px;
  border-radius:10px;
  text-decoration:none;
  color:#2a2a2a;
  font-size:15px;
  transition: all .2s ease;
}
.dropdown li a:hover{
  background:rgba(181,155,87,0.12);
  color:var(--gold-dark);
}

.has-dropdown:hover .dropdown{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}

.drop-icon{
  font-size:12px;
  margin-left:4px;
}

/* ==========
  Mobile Menu
========== */
.nav-toggle{
  display:none!important;
  width:44px!important;
  height:44px!important;
  border-radius:12px!important;
  background:transparent!important;
  border: 1px solid rgb(255 255 255 / 75%) !important;
  position:absolute!important;
  right:0!important;
  top:0!important;
  cursor:pointer!important;
}

.nav-toggle span{
  display:block;
  width:18px;
  height:2px;
  background:white;
  margin:4px auto;
  border-radius:99px;
}

/* Sticky */
.site-header.is-sticky{
  position:sticky;
  top:0;
  box-shadow:0 12px 40px rgba(0,0,0,0.06);
}

/* ==========
  Responsive
========== */
@media (max-width: 768px){
.about-content{
  padding: 20px;
}
.projects{
  padding: 20px!important;
}
  .site-header{
    padding: 10px 20px;
  }
  .header-top-inner{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    padding:12px 0;
  }

  .top-logo{
    width:auto;
    order:1!important;
  }

  .top-cta{
    width:auto;
    order:2!important;
  }

  .top-search{
    width:100%;
    order:3!important;
  }

  .search-form input{
    max-width:100%!important;
    width:100%!important;
    height:42px!important;
    font-size:14px!important;
  }

  .logo-text{
    font-size:22px;
    letter-spacing:6px;
  }

  .logo-sub{
    font-size:9px;
    letter-spacing:2px;
  }

  /* NAV FIX */
  .nav{
    justify-content:flex-end;
  }

  .nav-toggle{
    display:inline-flex!important;
    flex-direction: column!important;
    align-items:center!important;
    justify-content:center!important;
    position:relative!important;
    top:auto!important;
    right:20px!important;
  }

  .nav-links{
    position:absolute;
    top:54px;
    right:0;
    left:0;
    background:#fff;
    border:1px solid var(--line);
    border-radius:16px;
    padding:10px;
    flex-direction:column;
    gap:6px;
    align-items:stretch;
    box-shadow: var(--shadow);

    opacity:0;
    transform: translateY(10px);
    pointer-events:none;
    transition: all .25s ease;
  }

  .nav-links.open{
    opacity:1;
    transform: translateY(0);
    pointer-events:auto;
  }

  .nav-link{
    padding:12px 12px;
    border-radius:12px;
	color: #2a2a2a;
  }

  .nav-link:hover{
    background:rgba(0,0,0,0.04);
  }

  /* MOBILE DROPDOWN FIX */
  .has-dropdown:hover .dropdown{
    opacity:0;
    pointer-events:none;
  }

  .dropdown{
    position:static;
    box-shadow:none;
    border:none;
    padding:6px 0 0 0;
    margin:0;
    opacity:1;
    transform:none;
    pointer-events:auto;
    display:none;
  }

  .has-dropdown.open .dropdown{
    display:block;
  }
}
/* =========================
  HERO SLIDER
========================= */
.hero-slider{
  position:relative;
}

.hero-slide{
  position:relative;
  min-height:550px;
  display:flex;
  align-items:center;
  overflow:hidden;
}

.hero-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  /*transform:scale(1.05);*/
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(255,255,255,0.95) 0%,
    rgba(255,255,255,0.75) 35%,
    rgba(255,255,255,0.25) 65%,
    rgba(255,255,255,0.05) 100%
  );
}

.hero-inner{
  position:relative;
  z-index:2;
  padding:80px 18px;
}

.hero-content{
  max-width:560px;
}

.hero-title{
  font-family:var(--serif);
  font-size:52px;
  line-height:1.1;
  margin-bottom:14px;
}

.hero-subtitle{
  font-family:var(--sans);
  font-size:15px;
  line-height:1.7;
  color:#5e5e5e;
  margin-bottom:22px;
}

/* Swiper pagination */
.hero-slider .swiper-pagination-bullet{
  background:#b59b57;
  opacity:0.4;
}

.hero-slider .swiper-pagination-bullet-active{
  opacity:1;
}

/* =========================
  HERO RESPONSIVE
========================= */
@media (max-width:768px){

  .hero-slide{
    min-height:520px;
  }

  /* vertical gradient on mobile */
  .hero-overlay{
    background:linear-gradient(
      180deg,
      rgba(255,255,255,0.95) 0%,
      rgba(255,255,255,0.75) 45%,
      rgba(255,255,255,0.35) 100%
    );
  }

  .hero-title{
    font-size:36px;
  }

  .hero-subtitle{
    font-size:14px;
  }
}

@media (max-width:480px){
  .hero-title{
    font-size:32px;
  }

  .btn-primary{
    width:100%;
    justify-content:center;
  }
}
/* =========================
  SECTION BASE
========================= */
.section{
  padding:80px 0;
}

/* =========================
  ABOUT
========================= */
.about{
  background:#fff;
}

.about-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:40px;
  align-items:center;
}

.about-media{
  position:relative;
  overflow:hidden;
  box-shadow: 0 22px 60px rgba(0,0,0,0.08);
}

.about-img{
  width:100%;
  min-height:460px;
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
  transition:transform 0.9s ease;
}

.about-media:hover .about-img{
  transform:scale(1.08);
}

.about-tag{
  font-family:var(--sans);
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--gold-dark);
  margin:0 0 10px 0;
}

.about-title{
  font-family:var(--serif);
  font-size:42px;
  line-height:1.15;
  margin:0 0 14px 0;
  color:#1f1f1f;
}

.about-text{
  font-family:var(--sans);
  font-size:15px;
  line-height:1.8;
  color:#5e5e5e;
  margin:0 0 14px 0;
}

.about-actions{
  margin-top:18px;
}

/* =========================
  REVEAL ANIMATION
========================= */
.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .8s ease, transform .8s ease;
}

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

/* =========================
  RESPONSIVE
========================= */
@media (max-width: 1024px){
  .about-grid{
    grid-template-columns: 1fr 1fr;
    gap:26px;
  }

  .about-title{
    font-size:36px;
  }

  .about-img{
    min-height:420px;
  }
}

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

  .about-grid{
    grid-template-columns: 1fr;
    gap:22px;
  }

  .about-img{
    min-height:320px;
  }

  .about-title{
    font-size:32px;
  }

  .about-text{
    font-size:14px;
  }
}

@media (max-width: 480px){
  .about-img{
    min-height:280px;
  }

  .about-title{
    font-size:28px;
  }
}
/* =========================
  SECTION HEAD
========================= */
.section-head{
  text-align:center;
  margin-bottom:34px;
}

.section-tag{
  font-family:var(--sans);
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--gold-dark);
  margin:0 0 10px 0;
}

.section-title{
  font-family:var(--serif);
  font-size:42px;
  line-height:1.15;
  margin:0 0 12px 0;
  color:#1f1f1f;
}

.section-sub{
  font-family:var(--sans);
  font-size:15px;
  line-height:1.7;
  color:#5e5e5e;
  max-width:680px;
  margin:0 auto;
}

/* =========================
  SERVICES
========================= */
.services{
  background:#fbfaf8;
}

.servicesSwiper{
  padding-bottom:18px;
}

.service-card{
  position:relative;
  display:block;
  border-radius:22px;
  overflow:hidden;
  min-height:360px;
  text-decoration:none;
  box-shadow: 0 22px 60px rgba(0,0,0,0.08);
  transform:translateY(0);
  transition:transform .35s ease, box-shadow .35s ease;
}

.service-card:hover{
  transform:translateY(-6px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

.service-media{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.06);
  transition:transform .8s ease;
}

.service-card:hover .service-media{
  transform:scale(1.12);
}

/* Dark soft overlay for readability */
.service-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.18) 35%,
    rgba(0,0,0,0.55) 100%
  );
}

/* Content */
.service-info{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  z-index:2;
  color:#fff;
}

.service-icon{
  width:50px;
  height:50px;
  padding: 0.3rem;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom:10px;
  border:1px solid rgba(255,255,255,0.22);
}

.service-icon img{
 width:100%;
 height:auto;
}

.service-title{
  font-family:var(--serif);
  font-size:22px;
  margin:0 0 6px 0;
}

.service-text{
  font-family:var(--sans);
  font-size:13.5px;
  line-height:1.6;
  margin:0;
  color:rgba(255,255,255,0.88);
}

/* Swiper controls bottom */
.services-controls{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:18px;
  gap:16px;
}

.services-pagination{
  position:relative !important;
  width:auto !important;
}

.services-nav{
  display:flex;
  gap:10px;
}

.services-prev,
.services-next{
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all .25s ease;
}

.services-prev:hover,
.services-next:hover{
  transform:translateY(-2px);
  border-color:rgba(181,155,87,0.5);
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
}
.view-all{
  display: inline-block;
  margin-top: 25px;
  position: relative;
  transform: translateX(-50%);
  left: 50%;
}
/* Desktop grid look using Swiper with multi slides */
@media (min-width: 992px){
  .servicesSwiper .swiper-wrapper{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap:18px;
    transform:none !important;
  }

  .servicesSwiper .swiper-slide{
    width:auto !important;
  }

  .services-controls{
    display:none;
  }
}

/* Responsive */
@media (max-width: 1024px){
  .section-title{font-size:36px;}
}

@media (max-width: 768px){
  .section-head{
    margin-bottom:22px;
  }

  .section-title{
    font-size:32px;
  }

  .section-sub{
    font-size:14px;
  }

  .service-card{
    min-height:340px;
  }
}

@media (max-width: 480px){
  .service-card{
    min-height:320px;
  }
}

/* =========================
  PROJECTS
========================= */
.projects{
  background:#F5F5F5;
}

.projects-top-art{
  display:flex;
  justify-content:center;
  margin-bottom:18px;
}

.projects-top-art img{
  max-width:100%;
  width:820px;
  height:auto;
  display:block;
}

.projects-head{
  text-align:center;
  max-width:900px;
  margin:0 auto 26px auto;
}

.projects-tag{
  font-family:var(--sans);
  font-size:16px;
  letter-spacing:2px;
  text-transform:uppercase;
  font-weight: 600;
  color:var(--primary);
  margin:0 0 8px 0;
}

.projects-title{
  font-family:var(--serif);
  font-size:42px;
  line-height:1.15;
  margin:0 0 10px 0;
  color:#1f1f1f;
}

.projects-sub{
  font-family:var(--sans);
  font-size:14px;
  line-height:1.7;
  color:#5e5e5e;
  margin:0;
}

/* Slider */
.projectsSwiper{
  position:relative;
  padding:10px 0 0 0;
}

.project-card{
  position:relative;
  overflow:hidden;
}

.project-img{
  width:100%;
  height:380px;
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
  transition:transform .8s ease;
}

.project-card:hover .project-img{
  transform:scale(1.08);
}

.project-caption{
  text-align:center;
  font-family:var(--serif);
  font-size:18px;
  color:#4b4b4b;
  margin-top:10px;
  font-weight: 600;
}

/* Navigation Buttons (same style as screenshot) */
.project-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:40px;
  height:40px;
  border-radius:50%;
  border:none;
  cursor:pointer;
  background: rgba(110, 42, 50, 0.9); 
  box-shadow:0 14px 40px rgba(0,0,0,0.12);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all .25s ease;
  z-index:5;
}

.project-nav i{
  font-size:14px;
  color:#ffffff;
}

.project-nav:hover{
  transform:translateY(-50%) scale(1.06);
}

.project-prev{
  left:12px;
}

.project-next{
  right:12px;
}

.projects-cta{
  display:flex;
  justify-content:center;
  margin-top:18px;
}

.btn-projects{
  padding:10px 18px;
}

/* Responsive sizing */
@media (max-width: 1024px){
  .projects-title{
    font-size:36px;
  }

  .project-img{
    height:240px;
  }
}

@media (max-width: 768px){
  .projects-title{
    font-size:30px;
  }

  .projects-sub{
    font-size:13.5px;
  }

  .project-img{
    height:220px;
  }
}

@media (max-width: 480px){
  .projects-top-art img{
    width:340px;
  }

  .project-img{
    height:210px;
  }
}

/* =========================
  OUR AIM
========================= */
.aim{
  background:#fff;
  padding:0;
}

.aim-wrap{
  position:relative;
  width:100%;
  min-height:560px;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
}

.aim-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.04);
  transition:transform 1.1s ease;
}

.aim-wrap:hover .aim-bg{
  transform:scale(1.08);
}

/* soft overlay to match design look */
.aim-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(0,0,0,0.12) 0%,
    rgba(0,0,0,0.08) 35%,
    rgba(0,0,0,0.02) 100%
  );
}

.aim-inner{
  position:relative;
  z-index:2;
  width:100%;
  display:flex;
  justify-content:flex-end;
  align-items: flex-end;
}

.aim-card{
  width:100%;
  max-width:520px;
  background:rgba(255,255,255,0.92);
  border-radius:0;
  padding:34px 34px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.08);
  border:1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.aim-tag{
  font-family:var(--sans);
  font-size:16px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--primary);
  margin:0 0 10px 0;
}

.aim-title{
  font-family:var(--serif);
  font-size:38px;
  line-height:1.15;
  color:#1f1f1f;
  margin:0 0 14px 0;
}

.aim-title span{
  color:var(--primary);
}

.aim-text{
  font-family:var(--sans);
  font-size:14px;
  line-height:1.8;
  color:#5e5e5e;
  margin:0 0 14px 0;
}

/* =========================
  RESPONSIVE
========================= */
@media (max-width: 1024px){
  .aim-card{
    max-width:480px;
    padding:28px;
  }
  .aim-title{
    font-size:34px;
  }
}

@media (max-width: 768px){
  .aim-wrap{
    min-height:auto;
  }

  .aim-inner{
    justify-content:center;
    padding:50px 18px;
  }

  .aim-overlay{
    background:linear-gradient(
      180deg,
      rgba(255,255,255,0.25) 0%,
      rgba(0,0,0,0.15) 40%,
      rgba(0,0,0,0.12) 100%
    );
  }

  .aim-card{
    max-width:100%;
    padding:24px 20px;
  }

  .aim-title{
    font-size:30px;
  }

  .aim-text{
    font-size:13.5px;
  }
}

@media (max-width: 480px){
  .aim-inner{
    padding:40px 16px;
  }

  .aim-title{
    font-size:26px;
  }
}
/* =========================
  OUR LOCATIONS
========================= */
.locations{
  background:#fff;
}

.locations-head{
  text-align:center;
  margin-bottom:18px;
}

.locations-title{
  font-family:var(--serif);
  font-size:28px;
  font-weight:500;
  color:#3b3b3b;
  margin:0;
}

.locations-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
  margin-top:18px;
}

.loc-card{
  position:relative;
  height:200px;
  border-radius:14px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
  transform:translateY(0);
  transition:transform .3s ease, box-shadow .3s ease;
}

.loc-card:hover{
  transform:translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

.loc-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.06);
  transition:transform .8s ease;
}

.loc-card:hover .loc-bg{
  transform:scale(1.12);
}

.loc-overlay{
  position:absolute;
  inset:0;
  background:rgba(108, 58, 58, 0.8);
}

.loc-overlay--light{
  background:rgba(181,155,87,0.8);
}

.loc-name{
  position:relative;
  z-index:2;
  font-family:var(--sans);
  font-size:20px;
  font-weight: 600;
  color:#fff;
}

/* Responsive */
@media (max-width: 1024px){
  .locations-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px){
  .locations-grid{
    grid-template-columns: 1fr;
  }
  .loc-card{
    height:130px;
  }
  .nav-link.active::after{
    content:unset;
  }
}
/* =========================
  SHOWROOM / CONTACT
========================= */
.showroom{
  background:#fff;
  padding:0;
}

.showroom-wrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  overflow:hidden;
  min-height:400px;
}

.showroom-left{
  background:#6a2f35; /* maroon */
  padding:44px 48px;
  color:#fff;
  position:relative;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  flex-direction: column;
}

/* subtle texture like your screenshot */
.showroom-left::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,0.06), transparent 40%),
    radial-gradient(circle at 90% 30%, rgba(255,255,255,0.05), transparent 45%),
    radial-gradient(circle at 40% 90%, rgba(255,255,255,0.04), transparent 50%);
  opacity:0.6;
  pointer-events:none;
}

.showroom-title{
  position:relative;
  z-index:2;
  font-family:var(--serif);
  font-size:30px;
  line-height:1.25;
  margin:0 0 18px 0;
  font-weight:500;
}

.showroom-list{
  position:relative;
  z-index:2;
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.showroom-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-family:var(--sans);
  font-size:14px;
  line-height:1.6;
  color:rgba(255,255,255,0.92);
}

.showroom-list i{
  margin-top:4px;
  font-size:14px;
  color:var(--gold);
}

.showroom-list a{
  color:rgba(255,255,255,0.95);
  text-decoration:none;
  transition:opacity .25s ease;
}

.showroom-list a:hover{
  opacity:0.8;
}

.showroom-right{
  background:#fff;
  min-height:280px;
}

.showroom-map{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

/* Responsive */
@media (max-width: 1024px){
  .showroom-left{
    padding:36px 32px;
  }
  .showroom-title{
    font-size:26px;
  }
}

@media (max-width: 768px){
  .showroom-wrap{
    grid-template-columns:1fr;
  }

  .showroom-left{
    padding:32px 20px;
  }

  .showroom-title{
    font-size:22px;
  }

  .showroom-right{
    min-height:260px;
  }

  .showroom-map{
    min-height:260px;
  }
}

/* =========================
  FOOTER
========================= */
.site-footer{
  background:#f7f6f4;
  padding:48px 0 0;
  position:relative;
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.2fr;
  gap:30px;
  align-items:start;
}

.footer-logo img{
  max-width:180px;
}

.footer-title{
  font-size: 1.3rem;
  font-family: var(--serif);
}

.footer-links{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.footer-links a{
  font-family:var(--sans);
  font-size:15px;
  color:#666;
  text-decoration:none;
  transition:all .2s ease;
}

.footer-links a:hover{
  color:#6a2f35;
}

.footer-contact-list{
  list-style:none;
  padding:0;
  margin:0 0 14px;
  display:flex;
  flex-direction:column;
  gap:8px;
  font-family:var(--sans);
  font-size:15px;
  color:#666;
}

.footer-contact-list i{
  margin-right:8px;
  color:#6a2f35;
}

.footer-contact-list a{
  color:#666;
  text-decoration:none;
}
.footer-contact-list a:hover{
  color:#6a2f35;
}

.footer-social{
  display:flex;
  gap:10px;
}

.social-btn{
  width:34px;
  height:34px;
  border-radius:0;
  background:#b59b57;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-decoration:none;
  transition:all .25s ease;
}

.social-btn:hover{
  background:#8f7740;
  transform:translateY(-2px);
}

.footer-bottom{
  border-top:1px solid rgba(0,0,0,0.08);
  margin-top:30px;
  padding:16px 0;
  text-align:center;
}

.footer-bottom p{
  margin:0;
  font-family:var(--sans);
  font-size:14px;
  color:#777;
}

/* =========================
  GO TO TOP BUTTON
========================= */
.go-top{
  position:fixed;
  right:18px;
  bottom:18px;
  width:46px;
  height:46px;
  border-radius:50%;
  border:none;
  cursor:pointer;
  background:#6a2f35;
  color:#fff;
  box-shadow:0 18px 50px rgba(0,0,0,0.18);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transform:translateY(10px);
  pointer-events:none;
  transition:all .25s ease;
  z-index:999;
}

.go-top.show{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.go-top:hover{
  transform:translateY(-3px);
}
.footer-brand{
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* =========================
  FOOTER RESPONSIVE
========================= */
@media (max-width: 1024px){
  .footer-grid{
    grid-template-columns: 1fr 1fr!important;
    gap:26px;
  }
}

@media (max-width: 768px){
  .site-footer{
    padding:34px 0 0;
  }

  .footer-grid{
    grid-template-columns: 1fr;
    gap:18px;
  }

  .footer-bottom{
    margin-top:20px;
  }
}

@media (max-width: 768px){

  /* IMPORTANT: allow dropdown to show inside mobile menu */
  .has-dropdown .dropdown{
    display:none;
    width:100%;
  }

  .has-dropdown.open .dropdown{
    display:block;
  }

  .has-dropdown .dropdown li a{
    padding-left:22px;
    font-size:15px;
  }

}



.pagination-wrap {
    padding: 20px 0;
    display: flex;
    gap: 12px;
}

span.page-numbers.current {
    padding: 5px 13px;
    background-color: #b59b57;
    color: white;
}

a.page-numbers {
    padding: 5px 10px;
    border: 1px solid #b59b57;
    color: #b59b57;
}

.global-img.img-1 img {
    height: 265px;
}

.service-card:hover p a {
    padding: 15px 10px;
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 80px 18px;
    height: 80vh;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
.hero-inner {
    height: 70vh;
}
}

@media (max-width: 768px) {
    .nav-link {
        color: #2a2a2a;
    }
}
