/* =========================
   Global / Base
   ========================= */


/* Cross-browser reset */
*{
  box-sizing:border-box;
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
}

html{
  margin:0;
  padding:0;
  width:100%;
  overflow-x:hidden;
  -webkit-text-size-adjust:100%; /* iOS text adjust */
  -ms-text-size-adjust:100%;
}

body{
  margin:0;
  padding:0;
  width:100%;
  max-width:100vw;
  font-family:"Jost", sans-serif;
  background:#F6F3EF;
  color:#2B2B2B;
  overflow-x:hidden;
  min-height:100vh;
  -webkit-font-smoothing:antialiased; /* Font smoothing */
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
}

/* Prevent overflow */
body > *{
  max-width:100%;
  overflow-x:hidden;
}

/* Responsive images and media */
img, video, iframe{
  max-width:100%;
  height:auto;
}

/* Image rendering optimization */
img{
  content-visibility:auto;
}

/* Scrollbar styles */
::-webkit-scrollbar{
  width:8px;
  height:8px;
}
::-webkit-scrollbar-track{
  background:rgba(0,0,0,0.05);
}
::-webkit-scrollbar-thumb{
  background:rgba(75,70,65,0.3);
  border-radius:4px;
}
::-webkit-scrollbar-thumb:hover{
  background:rgba(75,70,65,0.5);
}

/* Container spacing */
.rk-container{
  padding-left:54px;
  padding-right:54px;
  max-width:100%;
}

/* =========================
   Header / Top bar
   ========================= */
.rk-top{
  background:#736A60; /* Brand color */
  color:#F5F0E8;
  position:relative;
  z-index:9999;
}
.rk-top-inner{
  padding: 30px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  overflow:visible;
  transition: padding 0.3s ease;
}
/* Header expands on search */
.rk-top-inner.search-open{
  padding: 30px 0 80px 0;
}
.rk-burger{
  border:0;
  background:transparent;
  color:#F5F0E8;
  font-size:22px;
  padding:6px 8px;
  line-height:1;
  cursor:pointer;
}
.rk-logo{
  color:#F5F0E8;
  text-decoration:none;
  font-size:22px;
  letter-spacing:2px;
  font-weight:500;
}
.rk-nav{ gap:30px; }
.rk-nav-link{
  color:#F5F0E8;
  text-decoration:none;
  font-size:15px;
  letter-spacing:1px;
  font-weight:500;
  opacity:0.95;
}


.rk-right{ gap:12px; }
.rk-small-link{
  color:#F5F0E8;
  text-decoration:none;
  font-size:15px;
  letter-spacing:1px;
  font-weight:500;
}

.rk-top-line{
  height:1px;
  background:rgba(245,240,232,0.35);
  margin:0 54px;
}

/* =========================
   Search dropdown (floating)
   ========================= */

/* Dropdown positioning */
.rk-right{
  position:relative;
  z-index:10001;
}

/* Dropdown styles */
.rk-search-dropdown{
  position:absolute;
  top: calc(100% + 12px);
  right:0;

  width:260px;
  max-width:calc(100vw - 40px);
  padding:10px;

  background:#F6F3EF;
  border:1px solid rgba(75,70,65,0.25);
  box-shadow:0 12px 30px rgba(0,0,0,0.12);

  display:none;
  opacity:0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Active state */
.rk-search-dropdown.is-open{
  display:block;
  opacity:1;
  transform: translateY(0);
}

/* Input styling */
.rk-search-input{
  width:100%;
  border:1px solid rgba(75,70,65,0.35);
  padding:8px 10px;
  font-size:12px;
  letter-spacing:0.5px;
  background:#FFFFFF;
}


/* =========================
   Offcanvas (smaller, inside page look)
   ========================= */
.rk-offcanvas{
  background:#F5F0E8;
  width:320px;
  max-width:85vw; /* Mobile width limit */
  z-index:10002;
}
.rk-offcanvas-body{
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.rk-off-link{
  text-decoration:none;
  color:#2B2B2B;
  font-size:14px;
  letter-spacing:0.5px;
}
.rk-mini-btn{
  border:1px solid rgba(75,70,65,0.45);
  background:transparent;
  color:#4B4641;
  padding:8px 12px;
  letter-spacing:1px;
}
.rk-mini-btn:hover{
  background:#736A60;
  color:#F5F0E8;
  border-color:#736A60;
}
.rk-search-wrap{
  display:none;          /* Hidden by default */
  padding-top:8px;
}
.rk-search-wrap.is-open{ display:block; }
.rk-search-input{
  border-radius:0;
}

/* =========================
   Hero
   ========================= */
.rk-hero{ background:#736A60; }

.rk-carousel{
  margin:0 auto;
}

.rk-carousel img{
  width:100%;
  height:500px;
  object-fit:cover;
  display:block;
}

/* Responsive carousel height */
@media (max-width: 991px){
  .rk-carousel img{ height:400px; }
}
@media (max-width: 768px){
  .rk-carousel img{ height:300px; }
}
@media (max-width: 576px){
  .rk-carousel img{ height:240px; }
}
@media (max-width: 400px){
  .rk-carousel img{ height:200px; }
}
@media (max-width: 320px){
  .rk-carousel img{ height:180px; }
}


.rk-titleband{
  background:#736A60;
  padding:26px 0 34px;
}
.rk-title-inner{ position:relative; height:120px; }
.rk-title-left,
.rk-title-right{
  color:#F5F0E8;
  font-size:64px;
  font-weight:600;
  letter-spacing:6px;
  font-style:italic;
  line-height:1;
}
.rk-title-right{ position:absolute; right:0; top:58px; }
.rk-title-sub{
  color:rgba(245,240,232,0.55);
  font-size:12px;
  letter-spacing:1px;
  position:absolute;
  left:52%;
  top:78px;
  transform:translateX(-50%);
  white-space:nowrap;
  max-width:90%;
  overflow:hidden;
  text-overflow:ellipsis;
}
.rk-hero-btn{ opacity:0.75; }

/* =========================
   Button depth enhancement
   ========================= */


/* All clickable buttons / links */
.rk-btn,
.rk-ex-btn,
.rk-pill,
.rk-tag,
.rk-tab,
.rk-fair-arrow,
.rk-mini-btn{
  box-shadow: 
    0 1px 2px rgba(0,0,0,0.08),
    0 2px 6px rgba(0,0,0,0.06); /* Custom shadow effect */
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
}

/* Hover state */
.rk-btn:hover,
.rk-ex-btn:hover,
.rk-pill:hover,
.rk-tag:hover,
.rk-tab:hover,
.rk-fair-arrow:hover,
.rk-mini-btn:hover{
  box-shadow:
    0 4px 10px rgba(0,0,0,0.12),
    0 2px 4px rgba(0,0,0,0.08);
  transform: translateY(-1px);
}

/* Active state */
.rk-btn:active,
.rk-ex-btn:active,
.rk-pill:active,
.rk-tag:active,
.rk-tab:active,
.rk-fair-arrow:active,
.rk-mini-btn:active{
  box-shadow:
    0 1px 3px rgba(0,0,0,0.10) inset;
  transform: translateY(0);
}







/* =========================
   About
   ========================= */
.rk-about{ padding:46px 0 36px; }
.rk-about-box{
  background:rgba(0,0,0,0.06);
  padding:44px 54px;
  text-align:center;
}
.rk-about-title{
  margin:0 0 18px;
  font-size:34px;
  letter-spacing:2px;
  font-weight:600;
  color:#4B4641;
}
.rk-about-text{
  max-width:980px;
  margin:0 auto 22px;
  font-size:18px;
  font-style:italic;
  line-height:1.8;
  color:#6A6258;
}
.rk-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  border:1px solid rgba(75,70,65,0.55);
  padding:10px 18px;
  font-size:12px;
  letter-spacing:2px;
  text-decoration:none;
  color:#4B4641;
  background:transparent;
}
.rk-btn:hover{
  background:#736A60;
  color:#F5F0E8;
  border-color:#736A60;
}

.rk-divider{
  height:1px;
  background:rgba(75,70,65,0.25);
  margin:22px 54px;
}

/* =========================
   Section head / stamp
   ========================= */
.rk-section-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
  padding:26px 0 18px;
}

.rk-h{
  font-size:42px;
  letter-spacing:2px;
  font-weight:600;
  color:#4B4641;
}
.rk-p{
  margin-top:10px;
  max-width:520px;
  color:#7B7460;
  font-size:12px;
  letter-spacing:0.5px;
  line-height:1.6;
}
.rk-stamp{
  width:74px;
  height:74px;
  border-radius:50%;
  border:1px solid rgba(75,70,65,0.35);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-size:10px;
  letter-spacing:2px;
  color:#4B4641;
  opacity:0.85;
}

/* =========================
   Filters row
   ========================= */
.rk-filter-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:26px;
  padding:12px 0 26px;
}
.rk-pill{
  border:1px solid rgba(75,70,65,0.35);
  background:transparent;
  padding:10px 16px;
  font-size:11px;
  letter-spacing:1px;
  color:#4B4641;
  min-width:120px;
}
.rk-pill.is-on{
  background:#736A60;
  color:#F5F0E8;
  border-color:#736A60;
}
.rk-icon-btn{
  width:42px;
  height:36px;
  border:1px solid rgba(75,70,65,0.35);
  background:transparent;
  color:#4B4641;
}

/* =========================
   EXHIBITIONS (8 cards / same size)
   ========================= */
.rk-exhibitions{ padding-bottom:24px; }

.rk-ex-card{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.rk-ex-img{
  width:200px;
  height:260px;                 /* Fixed size */
  object-fit:cover;             /* Object fit */
  border:1px solid rgba(75,70,65,0.25);
  display:block;
}

.rk-ex-title{
  font-size:12px;
  letter-spacing:1px;
  color:#4B4641;
  min-height:38px;              /* Title alignment */
  line-height:1.35;
}
/* Pill hover */
.rk-pill:not(.is-on):hover{
  background:#736A60;
  color:#F5F0E8;
  border-color:#736A60;
  cursor:pointer;
}

.rk-ex-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  width:max-content;
  border:1px solid rgba(75,70,65,0.35);
  padding:8px 14px;
  font-size:11px;
  letter-spacing:1px;
  text-decoration:none;
  color:#4B4641;
}
.rk-ex-btn:hover{
  background:#736A60;
  color:#F5F0E8;
  border-color:#736A60;
}
/* =========================
   EXHIBITIONS: default clean / hover reveal
   ========================= */

.rk-ex-card{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:10px;
}

/* Clickable wrapper */
.rk-ex-media{
  border:0;
  padding:0;
  background:transparent;
  cursor:pointer;
  display:block;
}

/* Image size control */
.rk-ex-img{
  width:160px;
  height:200px;              /* Unified ratio */
  object-fit:cover;          /* Crop */
  display:block;
  border:1px solid rgba(75,70,65,0.25);
  transition:transform .18s ease, filter .18s ease;
}

/* Mobile image adaptation */
@media (max-width: 991px){
  .rk-ex-img{
    width:100%;
    max-width:260px;
    height:auto;
    aspect-ratio:160/200;
    margin:0 auto;
  }
  .rk-ex-card{
    text-align:center;
  }
}

@media (max-width: 576px){
  .rk-ex-img{
    max-width:100%;
  }
}

/* Title style */
.rk-ex-title{
  font-size:12px;
  letter-spacing:1px;
  color:#4B4641;
  line-height:1.35;
  min-height:34px;
}

/* Description card (hidden) */
.rk-ex-desc{
  position:absolute;
  left:12px;
  right:12px;
  bottom:66px;               /* Position */
  background:rgba(245,240,232,0.96);
  border:1px solid rgba(75,70,65,0.22);
  padding:10px 12px;
  font-size:11px;
  line-height:1.5;
  color:#6A6258;

  opacity:0;
  transform:translateY(6px);
  pointer-events:none;
  transition:opacity .18s ease, transform .18s ease;
}

/* Hover zoom effect */
.rk-ex-card:hover .rk-ex-desc{
  opacity:1;
  transform:translateY(0);
}
.rk-ex-card:hover .rk-ex-img{
  transform:scale(1.03);
}

/* Mobile toggle class */
.rk-ex-card.is-open .rk-ex-desc{
  opacity:1;
  transform:translateY(0);
}
.rk-ex-card.is-open .rk-ex-img{
  transform:scale(1.03);
  filter:brightness(0.92);   /* Dim effect */
}

/* =========================
   FEATURED ART FAIR (horizontal card carousel)
   ========================= */
.rk-fair{ padding:22px 0 14px; }

.rk-fair-box{
  background:rgba(0,0,0,0.06);   /* Panel background */
  padding:28px 34px;
  display:flex;
  gap:34px;
  align-items:center;
}

.rk-fair-left{ width:68%; }

.rk-fair-headrow{
  display:flex;
  justify-content:flex-start;
  gap:12px;
  padding-bottom:10px;
}

.rk-fair-arrow{
  width:44px;
  height:38px;
  border:1px solid rgba(75,70,65,0.35);
  background:transparent;
  color:#4B4641;
  font-size:22px;
  line-height:1;
}
.rk-fair-arrow:hover{
  background:#736A60;
  color:#F5F0E8;
  border-color:#736A60;
}

.rk-fair-track{
  display:flex;
  gap:22px;
  overflow:hidden;              /* Overflow hidden */
  scroll-behavior:smooth;
  padding-bottom:6px;
}


.rk-fair-card{
  flex:0 0 auto;
  width:220px;                  /* Fixed card width */
}

.rk-fair-img{
  width:220px;
  height:300px;                 /* Fixed size */
  object-fit:cover;
  border:1px solid rgba(75,70,65,0.25);
  display:block;
}

.rk-fair-cap{
  padding-top:10px;
  color:#6A6258;
  font-style:italic;
  font-size:14px;
}

.rk-fair-meta{
  color:#7B7460;
  font-size:11px;
  letter-spacing:0.3px;
  line-height:1.4;
}

.rk-fair-right{ width:32%; }

.rk-fair-h{
  font-size:40px;
  font-weight:600;
  letter-spacing:2px;
  line-height:1.05;
  color:#4B4641;
}
.rk-fair-sub{
  margin-top:12px;
  color:#7B7460;
  font-size:12px;
  letter-spacing:0.5px;
}
.rk-fair-text{
  margin-top:12px;
  color:#7B7460;
  font-size:12px;
  line-height:1.7;
}
.rk-fair-list{
  margin-top:14px;
  color:#6A6258;
  font-size:12px;
  line-height:1.6;
}
.rk-fair-page{
  margin-top:22px;
  display:flex;
  align-items:center;
  gap:12px;
  color:#6A6258;
  font-size:12px;
}
.rk-fair-bar{
  height:2px;
  background:rgba(75,70,65,0.25);
  flex:1;
}

/* =========================
   Responsive Design
   ========================= */


/* Tablet (max-width: 992px) */
@media (max-width: 992px){
  .rk-title-left,.rk-title-right{ font-size:44px; }
  .rk-fair-box{ flex-direction:column; align-items:stretch; }
  .rk-fair-left,.rk-fair-right{ width:100%; }
  .rk-container{ padding-left:20px; padding-right:20px; }

  .rk-h{ font-size:32px; }
  .rk-about-title{ font-size:28px; }
  .rk-section-head{ flex-direction:column; text-align:center; }
}

/* Mobile Landscape (max-width: 768px) */
@media (max-width: 768px){
  .rk-container{ padding-left:16px; padding-right:16px; }
  .rk-top-inner{ height:70px; }
  .rk-logo{ font-size:18px; }

  .rk-title-left,.rk-title-right{ font-size:32px; letter-spacing:3px; }
  .rk-title-right{ position:static; margin-top:12px; }
  .rk-titleband{ padding:20px 0 24px; }

  .rk-h{ font-size:28px; }
  .rk-h-xl{ font-size:36px; }
  .rk-about-title{ font-size:24px; }
  .rk-about-box{ padding:24px 20px; }

  .rk-ex-img{ width:100%; max-width:300px; height:auto; }
  .rk-fair-h{ font-size:28px; }
  .rk-divider{ margin:40px 16px; }
  .rk-filter-row{ flex-wrap:wrap; gap:10px; }

  /* Responsive images */
  .rk-artist-img{ height:auto; min-height:200px; }
  .rk-pub-img{ height:auto; min-height:200px; }
  .rk-img-tile{ height:auto !important; min-height:180px; }
}

/* Mobile Portrait (max-width: 576px) */
@media (max-width: 576px){
  .rk-container{ padding-left:12px; padding-right:12px; }
  .rk-top-inner{ height:60px; }
  .rk-logo{ font-size:16px; }

  .rk-title-left,.rk-title-right{ font-size:24px; letter-spacing:2px; }
  .rk-title-sub{ font-size:10px; }

  .rk-h{ font-size:24px; }
  .rk-h-xl{ font-size:28px; }
  .rk-about-title{ font-size:22px; }
  .rk-about-text{ font-size:14px; }
  .rk-about-box{ padding:20px 16px; }

  .rk-filter-row{ flex-direction:column; }
  .rk-pill{ width:100%; min-width:0; text-align:center; }

  .rk-fair-h{ font-size:24px; }
  .rk-fair-card{ width:180px; }
  .rk-fair-img{ width:180px; height:240px; }

  .rk-divider{ margin:32px 12px; }
  .rk-team-title{ font-size:32px; }
  .rk-detail-title{ font-size:24px; }

  /* Publications section */
  .rk-pub-h{ font-size:28px; text-align:left; }
  .rk-pub-text{ text-align:left; font-size:12px; }
  .rk-tab{ width:100%; margin-left:0; padding:14px 12px; font-size:11px; }
  .rk-pub-actions{ align-items:stretch !important; }
}

/* Small Mobile (max-width: 400px) */
@media (max-width: 400px){
  .rk-container{ padding-left:10px; padding-right:10px; }
  .rk-top-inner{ height:56px; }
  .rk-logo{ font-size:14px; letter-spacing:1px; }
  .rk-burger{ font-size:18px; padding:4px 6px; }

  .rk-title-left,.rk-title-right{ font-size:20px; letter-spacing:1px; }
  .rk-title-sub{ font-size:9px; }
  .rk-titleband{ padding:14px 0 18px; }

  .rk-h{ font-size:20px; letter-spacing:0.5px; }
  .rk-h-xl{ font-size:24px; }
  .rk-h-sec{ font-size:18px; }
  .rk-about-title{ font-size:20px; }
  .rk-about-text{ font-size:13px; line-height:1.6; }
  .rk-about-box{ padding:18px 14px; }
  .rk-about{ padding:28px 0 20px; }

  .rk-section-head{ padding:18px 0 12px; }
  .rk-stamp{ width:54px; height:54px; font-size:8px; letter-spacing:1px; }
  .rk-p{ font-size:11px; }

  .rk-ex-title{ font-size:10px; }
  .rk-ex-btn{ font-size:9px; padding:6px 10px; gap:6px; }
  .rk-btn{ font-size:10px; padding:7px 12px; gap:6px; }

  /* Art Fair responsive */
  .rk-fair-box{ padding:14px; gap:18px; }
  .rk-fair-h{ font-size:20px; }
  .rk-fair-sub,.rk-fair-text{ font-size:10px; }
  .rk-fair-card{ width:160px; }
  .rk-fair-img{ width:160px; height:220px; }
  .rk-fair-cap{ font-size:11px; }
  .rk-fair-meta{ font-size:10px; }
  .rk-fair-track{ overflow-x:auto; -webkit-overflow-scrolling:touch; }

  .rk-pill{ font-size:10px; padding:7px 10px; }
  .rk-divider{ margin:28px 10px; }
  .rk-top-line{ margin:0 10px; }

  /* Publications */
  .rk-pub-h{ font-size:24px; }
  .rk-pub-text{ font-size:11px; }
  .rk-tab{ padding:12px 10px; font-size:10px; }

  .rk-footer{ padding:40px 0 32px; }
  .rk-footer h5,.rk-footer-h{ font-size:11px; letter-spacing:1.5px; }
  .rk-footer p,.rk-footer li{ font-size:10px; }

  .rk-team-card{ padding:20px 16px 24px; margin-bottom:50px; }
  .rk-team-title{ font-size:28px; }
  .rk-quote{ font-size:12px; }
  .rk-kicker{ font-size:9px; }
  .rk-img-team{ height:240px; margin-top:20px; }

  .rk-year{ font-size:24px; }
  .rk-event{ font-size:11px; }
  .rk-img-history{ height:100px; margin-top:12px; }

  .rk-artist-row-img{ height:180px; }
  .rk-artist-name{ font-size:13px; }
  .rk-artist-bio{ font-size:11px; }

  .rk-detail-card{ padding:20px 14px; margin-bottom:32px; }
  .rk-detail-title{ font-size:20px; }
  .rk-detail-sub{ font-size:13px; margin-top:24px; }
  .rk-detail-text{ font-size:12px; }
  .rk-inst-img{ height:200px; }
  .rk-artwork-card{ flex:0 0 200px; }
  .rk-artwork-img{ height:240px; }
  .rk-artwork-title{ font-size:12px; }
  .rk-artwork-meta{ font-size:10px; }

  .rk-page{ padding-top:20px; padding-bottom:20px; }
  .rk-lead{ font-size:11px; }
  .rk-mission-left,.rk-mission-right{ padding:18px; }
  .rk-img-mission{ max-width:120px; }
}

/* Extra Small (max-width: 320px) */
@media (max-width: 320px){
  .rk-container{ padding-left:8px; padding-right:8px; }
  .rk-top-inner{ height:52px; }
  .rk-logo{ font-size:13px; }

  .rk-title-left,.rk-title-right{ font-size:18px; }
  .rk-titleband{ padding:12px 0 16px; }

  .rk-h{ font-size:18px; }
  .rk-h-xl{ font-size:22px; }
  .rk-about-title{ font-size:18px; }
  .rk-about-text{ font-size:12px; }

  /* Fluid fair cards */
  .rk-fair-card{ width:100% !important; max-width:200px; }
  .rk-fair-img{ width:100% !important; max-width:200px; height:auto !important; aspect-ratio:220/300; }
  .rk-fair-track{ gap:12px; }
  .rk-fair-h{ font-size:18px; }
  .rk-fair-box{ padding:12px; }

  /* Buttons and filters */
  .rk-pill{ font-size:9px; padding:6px 8px; }
  .rk-ex-btn{ font-size:8px; padding:5px 8px; }
  .rk-btn{ font-size:9px; padding:6px 10px; }
  .rk-fair-arrow{ width:36px; height:32px; font-size:18px; }

  .rk-team-title{ font-size:24px; }
  .rk-year{ font-size:20px; }

  /* Exhibition cards */
  .rk-ex-title{ font-size:10px; }
}

/* Foldable Devices (max-width: 280px) */
@media (max-width: 280px){
  .rk-container{ padding-left:6px; padding-right:6px; }
  .rk-top-inner{ height:48px; }
  .rk-logo{ font-size:12px; letter-spacing:0.5px; }
  .rk-burger{ font-size:16px; padding:3px 5px; }

  .rk-title-left,.rk-title-right{ font-size:16px; letter-spacing:1px; }
  .rk-title-sub{ font-size:8px; white-space:normal; position:static; transform:none; text-align:center; margin-top:8px; }
  .rk-title-inner{ display:flex; flex-direction:column; align-items:center; height:auto; }
  .rk-title-right{ position:static; margin-top:8px; }
  .rk-titleband{ padding:10px 0 14px; }

  .rk-h{ font-size:16px; letter-spacing:0; }
  .rk-h-xl{ font-size:20px; }
  .rk-h-sec{ font-size:14px; }
  .rk-about-title{ font-size:16px; }
  .rk-about-text{ font-size:11px; line-height:1.5; }
  .rk-about-box{ padding:14px 10px; }
  .rk-about{ padding:20px 0 16px; }

  .rk-p{ font-size:10px; }
  .rk-section-head{ padding:14px 0 10px; gap:12px; }
  .rk-stamp{ width:48px; height:48px; font-size:7px; }

  /* Filter buttons */
  .rk-filter-row{ gap:6px; padding:10px 0 14px; }
  .rk-pill{ font-size:8px; padding:5px 6px; letter-spacing:0; }
  .rk-icon-btn{ width:32px; height:28px; font-size:12px; }

  /* Exhibition cards */
  .rk-ex-title{ font-size:9px; min-height:auto; }
  .rk-ex-btn{ font-size:8px; padding:4px 6px; gap:4px; }

  /* Art Fair section */
  .rk-fair-box{ padding:10px; gap:14px; }
  .rk-fair-h{ font-size:16px; }
  .rk-fair-sub{ font-size:9px; }
  .rk-fair-text{ font-size:9px; }
  .rk-fair-list{ font-size:9px; }
  .rk-fair-card{ width:100% !important; max-width:160px; }
  .rk-fair-img{ max-width:160px; }
  .rk-fair-cap{ font-size:10px; }
  .rk-fair-meta{ font-size:9px; }
  .rk-fair-arrow{ width:32px; height:28px; font-size:16px; }
  .rk-fair-controls{ gap:6px; margin-bottom:10px; }

  /* Misc elements */
  .rk-btn{ font-size:8px; padding:5px 8px; gap:4px; }
  .rk-divider{ margin:24px 6px; }
  .rk-top-line{ margin:0 6px; }

  /* Publications */
  .rk-pub-h{ font-size:20px; letter-spacing:1px; }
  .rk-pub-text{ font-size:10px; line-height:1.5; }
  .rk-tab{ padding:10px 8px; font-size:9px; letter-spacing:0; }

  .rk-footer{ padding:32px 0 24px; }
  .rk-footer h5,.rk-footer-h{ font-size:10px; }
  .rk-footer p,.rk-footer li{ font-size:9px; }

  .rk-team-card{ padding:16px 12px 20px; margin-bottom:40px; }
  .rk-team-title{ font-size:22px; }
  .rk-quote{ font-size:11px; }
  .rk-kicker{ font-size:8px; }
  .rk-img-team{ height:200px; margin-top:16px; }

  .rk-year{ font-size:18px; }
  .rk-event{ font-size:10px; }

  .rk-page{ padding-top:16px; padding-bottom:16px; }
  .rk-lead{ font-size:10px; }
}
/* ===== Featured Art Fair: add-on ===== */
.rk-fair-left{ position:relative; }


.rk-fair-box{
  background:rgba(0,0,0,0.08); 
}


.rk-fair-controls{
  display:flex;
  gap:10px;
  margin-bottom:14px;
}

.rk-fair-arrow{
  width:46px;
  height:40px;
  border:1px solid rgba(75,70,65,0.35);
  background:transparent;
  color:#4B4641;
  font-size:22px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.rk-fair-arrow:hover{
  background:#736A60;
  color:#F5F0E8;
  border-color:#736A60;
}


.rk-fair-track{
  display:flex;
  gap:22px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding-bottom:12px;
}


.rk-fair-track::-webkit-scrollbar{ height:8px; }
.rk-fair-track::-webkit-scrollbar-thumb{
  background:rgba(75,70,65,0.25);
  border-radius:20px;
}


.rk-fair-card{
  flex:0 0 auto;
  width:220px;                 
  scroll-snap-align:start;
}


.rk-fair-img{
  width:220px;                 
  height:300px;
  object-fit:cover;
  display:block;
  border:1px solid rgba(75,70,65,0.25);
}


.rk-fair-cap{
  margin-top:10px;
  color:#6A6258;
  font-style:italic;
  font-size:14px;
}

.rk-fair-meta{
  margin-top:6px;
  color:#7B7460;
  font-size:11px;
  letter-spacing:0.2px;
}
/* =========================
   FEATURED ARTISTS
   ========================= */
.rk-artists-head{ padding-top:8px; }

.rk-artist-card{
  background:transparent;
}

.rk-artist-img{
  width:100%;
  height:260px;          
  object-fit:cover;      
  display:block;
  border:1px solid rgba(75,70,65,0.25);
}

.rk-artist-name{
  margin-top:14px;
  font-size:14px;
  color:#4B4641;
}

.rk-artist-desc{
  margin-top:8px;
  font-size:11px;
  color:#7B7460;
  line-height:1.6;
}

/* Tags section */
.rk-tags{
  border:1px solid rgba(75,70,65,0.25);
  padding:10px 14px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  color:#6A6258;
  font-size:11px;
}

.rk-tag{
  border:1px solid rgba(75,70,65,0.35);
  background:transparent;
  padding:8px 12px;
  font-size:10px;
  letter-spacing:1px;
  color:#4B4641;
}
.rk-tag.is-on{
  background:#736A60;
  color:#F5F0E8;
  border-color:#736A60;
}

/* =========================
   OTHER INFO BAR
   ========================= */
.rk-otherbar{
  background:#736A60;
  margin-top:22px;
}
.rk-otherbar-inner{
  max-width:1440px;
  margin:0 auto;
  padding:22px 54px;
  color:#F5F0E8;
  font-size:18px;
  font-weight:600;
  text-align:center;
}

/* =========================
   PUBLICATIONS
   ========================= */
.rk-pub-card{ background:transparent; }

.rk-pub-img{
  width:100%;
  height:260px;          /* Fixed size */
  object-fit:cover;
  display:block;
  border:1px solid rgba(75,70,65,0.25);
}

.rk-pub-cap{
  margin-top:12px;
  font-size:12px;
  color:#4B4641;
  letter-spacing:1px;
  line-height:1.4;
}

.rk-pub-line{
  height:2px;
  width:86%;
  background:rgba(75,70,65,0.55);
  margin-top:10px;
}

/* Right column */
.rk-pub-h{
  font-size:42px;
  font-weight:600;
  letter-spacing:2px;
  color:#4B4641;
  text-align: right;
}


.rk-pub-text{
  margin-top:20px;
  color:#7B7460;
  font-size:12px;
  line-height:1.7;
  max-width:500px;

  text-align:right;     
  margin-left:auto;    
}


/* Interactive tabs */
.rk-tab{
  border:1px solid rgba(75,70,65,0.35);
  background:transparent;
  padding:20px 14px;
  font-size:12px;
  letter-spacing:1px;
  color:#4B4641;

  width:200px;
  max-width:100%;

  margin-left:auto;
  text-align:center;
}

.rk-tab.is-on{
  background:#736A60;
  color:#F5F0E8;
  border-color:#736A60;
}

/* =========================
   FOOTER TYPOGRAPHY & SPACING
   ========================= */

.rk-footer{
  background:#736A60;
  color:#F5F0E8;

  padding:70px 0 50px;
}


.rk-footer .row > div{
  margin-bottom:24px;
}

/* Footer columns */
.rk-footer h5,
.rk-footer .rk-footer-title{
  font-size:15px;
  font-weight:600;
  letter-spacing:1.8px;
  margin-bottom:16px;
  color:#F5F0E8;
  text-transform:uppercase;
}

.rk-footer p,
.rk-footer li,
.rk-footer span{
  font-size:12px;
  line-height:2.0;
  color:rgba(245,240,232,0.78);
}


.rk-footer ul{
  list-style:none;
  padding:0;
  margin:0;
}
.rk-footer ul li{
  margin-bottom:8px;
  display:flex;
  align-items:center;
  gap:8px;
}


.rk-footer i,
.rk-footer svg{
  opacity:0.75;
}


.rk-footer-copy{
  margin-top:40px;
  padding-top:18px;
  border-top:2px solid rgba(245,240,232,0.2);
  text-align:center;
  font-size:11px;
  letter-spacing:0.6px;
  color:rgba(245,240,232,0.6);
}


/* =========================
   FEATURED ARTISTS 
   ========================= */

.rk-right-head{
  text-align:right;
}
.rk-right-head .rk-p.center{
  margin-left:auto;
  margin-right:0;
  text-align:right;
  max-width:720px;
}

.rk-artist-carousel{
  max-width:980px;
  margin:0 auto; 
  position:relative;
}


.rk-artist-slide{
  background:rgba(0,0,0,0.06);
  border:1px solid rgba(75,70,65,0.18);
  box-shadow:0 18px 40px rgba(0,0,0,0.10);
  border-radius:14px;
  padding:22px;
  display:flex;
  gap:18px;
  align-items:center;
}

.rk-artist-photo{
  width:140px;
  height:140px;
  object-fit:cover;
  display:block;
  border-radius:12px;
  border:1px solid rgba(75,70,65,0.25);
  flex:0 0 auto;
}


.rk-artist-info{ flex:1; min-width:0; }
.rk-artist-name{
  margin:0;
  font-size:18px;
  letter-spacing:0.5px;
  color:#4B4641;
  font-weight:600;
}
.rk-artist-loc{
  font-weight:500;
  color:#7B7460;
}
.rk-artist-desc{
  margin-top:10px;
  margin-bottom:0;
  font-size:12px;
  line-height:1.7;
  color:#6A6258;
  max-width:720px;
}


.rk-artist-ctrl{
  width:auto;
  padding:0 8px;
  top:50%;
  transform:translateY(-50%);
  opacity:1;
}
.rk-artist-ctrl span{
  display:inline-flex;
  width:38px;
  height:38px;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(75,70,65,0.30);
  background:rgba(245,240,232,0.85);
  color:#4B4641;
  border-radius:10px;
  font-size:22px;
}
.rk-artist-ctrl:hover span{
  background:#736A60;
  color:#F5F0E8;
  border-color:#736A60;
}

.rk-artist-dots{
  position:static;
  margin-top:12px;
}
.rk-artist-dots [data-bs-target]{
  width:26px;
  height:3px;
  border-radius:4px;
  background:rgba(75,70,65,0.35);
}
.rk-artist-dots .active{
  background:#736A60;
}

@media (max-width: 576px){
  .rk-artist-slide{
    flex-direction:column;
    align-items:flex-start;
  }
  .rk-artist-photo{
    width:100%;
    height:220px;
  }
  .rk-right-head, .rk-right-head .rk-p.center{
    text-align:center;
    margin-left:auto;
    margin-right:auto;
  }
}
/* =========================
   FIX: buttons without bg color
   ========================= */

/* Button background fix */
.rk-pill{
  background:#FFFFFF;
}

/* Icon button */
.rk-icon-btn{
  background:#FFFFFF;
}

/* Content buttons */
.rk-btn,
.rk-ex-btn,
.rk-tag:not(.is-on),
.rk-tab:not(.is-on),
.rk-fair-arrow,
.rk-mini-btn{
  background:#FDFBF8;
}



/* =========================
   Page Skeleton (shared)
   ========================= */
.rk-page{
  padding-top:45px;
  padding-bottom:45px;
}
.rk-page-head{
  max-width:980px;
}
.rk-h-xl{
  font-size:56px;
  letter-spacing:2px;
  font-weight:600;
  color:#4B4641;
  margin:0 0 18px;
}
.rk-lead{
  color:#7B7460;
  font-size:13px;
  line-height:1.9;
  max-width:720px;
  margin:0 0 22px;
}
.rk-rule{
  height:1px;
  background:rgba(75,70,65,0.25);
  margin:28px 0 0;
}
.rk-page-body{
  padding-top:42px;
}




/* =================================
   Active nav = red (auto by page class)
   ================================= */

/* Active navigation state */
body.page-home .rk-nav-link.nav-home,
body.page-exhibitions .rk-nav-link.nav-exhibitions,
body.page-artists .rk-nav-link.nav-artists,
body.page-artfairs .rk-nav-link.nav-artfairs,
body.page-about .rk-nav-link.nav-about {
    color: #B48A84; 
    opacity: 1;
}


/* Global typography */
.rk-h{
  margin:0;
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#4B4641;
}
.rk-h-hero{
  font-size: 56px;
  line-height:1.05;
}
.rk-h-sec{
  font-size: 26px;
  line-height:1.15;
}
.rk-h-mid{
  font-size: 22px;
  margin: 10px 0 0;
}
.rk-h-xl{
  font-size: 54px;
  line-height: 1.05;
}

.rk-sub{
  margin: 14px 0 0;
  color:#6A6258;
  font-style:italic;
  font-size:16px;
  line-height:1.7;
  max-width: 360px;
}

.rk-p{
  margin: 0;
  color:#7B7460;
  font-size:12px;
  line-height:1.8;
}
.rk-p + .rk-p{ margin-top: 12px; }
.rk-p-small{ font-size:11px; opacity:0.95; }
.rk-p-mid{ margin-top: 14px; max-width: 520px; }

/* Shared image style */
.rk-img{
  width:100%;
  display:block;
  object-fit:cover;
  border:1px solid rgba(75,70,65,0.25);
}





/* =========================
   ABOUT HERO
   ========================= */

.rk-about-hero{
  position:relative;
  background:#DFD9D1;   /* Main background color */
  padding:64px 0 48px;  /* Hero padding */
}

/* Deprecated */
.rk-hero-dark{
  display:none;
}

/* hero content card */
.rk-about-hero-card{
  margin-top:-56px;
  background:transparent;
  padding-top:18px;
}

/* hero image */
.rk-img-hero{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
}


/* =========================
   INSIDE THE GALLERY (Image Tiles & Text)
   ========================= */

.rk-section {
    padding-top: 48px;
}

.rk-img-tile,
.rk-section .col-6 img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
/* =========================
   Image Tiles & Hover Effects
   ========================= */


.rk-img-tile {
  
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
   
    transform-origin: center center;
}


.rk-img-tile:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 2;
    position: relative;
}

/* =========================
   Right Text Layout
   ========================= */

.rk-section .col-lg-5 {
    padding-left: 28px;
    padding-right: 36px;
   
    margin-top: 45px;
}


.rk-section .rk-p {
    line-height: 1.9;
}


@media (min-width: 992px) {
    .rk-section .col-lg-5 {
       
        margin-top: 80px;
    }
}


/* =========================
   Button Row
   ========================= */
.rk-btnrow {
    margin-top: 18px;
    display: flex;
    justify-content: flex-end;
}


/* =========================
   Expandable Intro Card
   ========================= */
.rk-expand-card {
    margin-top: 35px;
    max-width: 520px;
    background: #F6F3EF;
    border: 1px solid rgba(75,70,65,0.25);
    padding: 16px 18px;
}


/* =========================
   Divider
   ========================= */
.rk-divider {
    /* Color */
    border-top: 1px solid rgba(75, 70, 75, 0.25);
    
    /* Spacing adjustment */
    margin: 80px 54px; 
}
/* =========================
   Buttons (match existing rk-ex-btn style)
   ========================= */
.rk-ex-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  width:max-content;
  border:1px solid rgba(75,70,65,0.35);
  padding:8px 14px;
  font-size:11px;
  letter-spacing:1px;
  text-decoration:none;
  color:#4B4641;
  background:transparent;
  transition:background .2s ease,color .2s ease,border-color .2s ease;
}

.rk-ex-btn-solid{
  background:#E8E4DF;
}

.rk-ex-btn:hover{
  background:#736A60;
  color:#F5F0E8;
  border-color:#736A60;
}


/* =========================
   Mission Block (Compact)
   ========================= */

/* Container */
.rk-mission {
    display: flex;
    flex-wrap: wrap;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    padding: 0;
    background: transparent;
    border: none;
    
    /* Optional max-width */
    /* max-width: 900px; margin: 0 auto; */
}

/* Left Column (Image) */
.rk-mission-left {
    background: #DFD9D1;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Padding */
    padding: 40px 30px;
}

/* Image */
.rk-img-mission {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border: none !important;
    
    /* Reduced image width */
    max-width: 180px; 
}

/* Right Column (Text) */
.rk-mission-right {
    background: #F0ECE6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Padding */
    padding: 40px 30px;
}

/* Button positioning */
.rk-btnrow-mission {
    /* Reduced margin */
    margin-top: 24px;      
    display: flex;
    justify-content: flex-start;
}

/* Mobile responsive */
@media (max-width: 991px) {
    .rk-mission-left,
    .rk-mission-right {
        width: 50%;
        padding: 20px;
    }
    .rk-img-mission {
        max-width: 120px;
    }
}

/* Stack on small screens */
@media (max-width: 576px) {
    .rk-mission-left,
    .rk-mission-right {
        width: 100%;
        padding: 20px;
    }
}
/* =========================
   GALLERY HISTORY (4 columns)
   ========================= */
.rk-history-card{
  padding-top:10px;
}

.rk-year{
  font-size:34px;
  font-weight:600;
  color:#4B4641;
  letter-spacing:1px;
}

.rk-event{
  margin-top:10px;
  font-size:13px;
  font-weight:500;
  color:#4B4641;
  line-height:1.5;
}
/* =========================
   Gallery History spacing
   ========================= */

/* I create more vertical distance from the previous section */
.rk-section + .rk-section{
  margin-top: 40px;
}

/* I increase spacing under the Gallery History title */
.rk-history-title{
  margin-bottom: 48px;
}

/* I separate the year from the event title */
.rk-year{
  margin-bottom: 12px;
}

/* I acknowledges space before the image */
.rk-history-card img{
  margin-top: 16px;
}


/* History image size */
.rk-img-history{
  width:100%;
  height:150px;
  margin-top:16px;
  object-fit:cover;
  display:block;
}


/* =========================
   Team Card
   ========================= */

.rk-team-card {
    background: #E8E4DF;
    border-radius: 10px;
    
    /* Card padding */
    padding-top: 36px;
    padding-left: 36px;
    padding-right: 36px;
    padding-bottom: 40px;
    margin-bottom: 120px; 
    
    overflow: hidden;
}

/* 1. Kicker text */
.rk-kicker {
    font-size: 10px;
    letter-spacing: 2px;
    color: #7B7460;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

/* 2. Intro text */
.rk-quote {
    font-size: 14px;
    line-height: 1.8;      /* Line height */
    font-style: italic;    /* Italic style */
    
    /* Text color */
    color: #6A6258;
    
    margin-bottom: 0;      /* Margin reset */
}

/* 3. Main Title */
.rk-team-title {
    font-size: 42px;       /* Font size increased */
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    
    /* Dark grey color */
    color: #4B4641; 
    
    line-height: 1;        /* Line height fix */
}

/* 4. Image style */
.rk-img-team {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    
    /* Top margin */
    margin-top: 32px;      
}

/* =========================
   Footer (simple)
   ========================= */
/* Footer (Bootstrap layout, no grid) */
.rk-footer{
  background:#736A60;
  color:#F5F0E8;
}

.rk-footer-h{
  font-size:12px;
  letter-spacing:2px;
  font-weight:600;
  text-transform:uppercase;
  margin-bottom:10px;
}

.rk-footer-p{
  font-size:11px;
  line-height:1.7;
  opacity:0.9;
}

.rk-footer-bottom{
  border-top:1px solid rgba(245,240,232,0.28);
}

.rk-footer-note{
  font-size:11px;
  letter-spacing:1px;
  opacity:0.85;
}
/* Default state */
.rk-nav-link{
  color:#F5F0E8;
  opacity:0.95;
  transition: color .25s ease, opacity .25s ease;
}

/* Hover state */
.rk-nav-link:hover{
  color:#E8D5C8;
  opacity:1;
}

/* Active state */
body.page-home .rk-nav-link.nav-home,
body.page-exhibitions .rk-nav-link.nav-exhibitions,
body.page-artists .rk-nav-link.nav-artists,
body.page-artfairs .rk-nav-link.nav-artfairs,
body.page-about .rk-nav-link.nav-about{
  color: var(--rk-active);
  opacity:1;
}

/* =====================================================
   GLOBAL NAVIGATION (Unified for all pages)

   ===================================================== */


/* 1. Default state */
.rk-nav-link{
  color: #F5F0E8;  
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 500;
  opacity: 0.95;
  transition: color 0.25s ease, opacity 0.25s ease;
}

/* 2. Hover state */
.rk-nav-link:hover{
  color: #E8D5C8; 
  opacity: 1;
}

/* 3. Active state */
body.page-home .rk-nav-link.nav-home,
body.page-exhibitions .rk-nav-link.nav-exhibitions,
body.page-artists .rk-nav-link.nav-artists,
body.page-artfairs .rk-nav-link.nav-artfairs,
body.page-about .rk-nav-link.nav-about{
  color: #B48A84;  
  opacity: 1;
}

/* Mobile sidebar links */
.rk-off-link{
  color: #2B2B2B;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: color 0.25s ease;
}

.rk-off-link:hover{
  color: #B48A84;
}

/* Sidebar active state */
body.page-home .rk-off-link.nav-home,
body.page-exhibitions .rk-off-link.nav-exhibitions,
body.page-artists .rk-off-link.nav-artists,
body.page-artfairs .rk-off-link.nav-artfairs,
body.page-about .rk-off-link.nav-about{
  color: #B48A84;
}


/* =====================================================
   CONTACT PAGE STYLES
   ===================================================== */

/* 1. Logo Card (Left side) */

.page-contact .rk-team-card {
    min-height: 420px;      
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E8E4DF;    
    border-radius: 8px;     
    margin-bottom: 0;        
}

/* 2. Form Inputs  */

.page-contact .form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(75, 70, 65, 0.25); /* Thin line */
    border-radius: 0;
    
    padding: 14px 0;        
    font-size: 14px;
    color: #4B4641;
    letter-spacing: 0.5px;
    
    box-shadow: none !important; /* Remove blue glow */
    transition: border-color 0.3s ease;
}

/* Focus state: Line gets darker */
.page-contact .form-control:focus {
    background-color: transparent;
    border-bottom-color: #736A60; 
}

/* Placeholder text color */
.page-contact .form-control::placeholder {
    color: #9A948A;
    font-weight: 300;
}


.page-contact .form-check-input {
    background-color: transparent;
    border: 1px solid rgba(75, 70, 65, 0.35);
    border-radius: 0; 
    margin-top: 6px;
    cursor: pointer;
}
.page-contact .form-check-input:checked {
    background-color: #736A60;
    border-color: #736A60;
}

/* 3. Location Info Sections */

.page-contact h3.rk-h-sec {
    margin-top: 8px; 
    margin-bottom: 32px;
}

/* Titles */
.page-contact h5.rk-p {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #7B7460;
    margin-bottom: 8px;
}

/* Phone numbers / emails */
.page-contact p.rk-p {
    font-size: 14px;
    color: #4B4641;
    line-height: 1.8;
}

/* Social Icons in Contact Page */
.page-contact .bi {
    font-size: 18px;
    color: #736A60;
    transition: color 0.2s ease;
    cursor: pointer;
}
.page-contact .bi:hover {
    color: #B48A84; /* Soft red hover */
}

/* 4. Map Container */
/* Subtle framing for the map */
.page-contact .ratio {
    border: 1px solid rgba(75, 70, 65, 0.15);
    background: #E8E4DF; /* Loading background */
}

/* 5. Thank You Modal (Custom Style) */
/* Override Bootstrap white modal */
#thankYouModal .modal-content {
    background-color: #F6F3EF; /* Cream bg */
    border-radius: 0;          /* Sharp corners */
    border: 1px solid rgba(75, 70, 65, 0.2);
}


/* =========================
   ART FAIRS LIST SPECIAL FIX
   ========================= */
/* Art Fairs List Fix */
.rk-artfair-list-container .rk-img-tile {
    height: auto !important;
    min-height: 0 !important;
    object-fit: contain !important;
    max-width: 350px;
}




 /* =========================
   Back Button Style
   ========================= */
.rk-back-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #7B7460;       
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    margin-bottom: 20px; 
}

.rk-back-link:hover {
    color: #B48A84;      
    transform: translateX(-5px); 
}

.rk-back-icon {
    font-size: 18px;
    margin-right: 8px;
    line-height: 1;
}
  /* View Detail Spacing */  
    .rk-detail-page {
        padding-top: 45px;      
        padding-bottom: 70px;   
    }

  
    .rk-detail-card {
        background: #FDFBF8;   
        border: 1px solid rgba(75, 70, 65, 0.1);
        border-radius: 8px;
        padding: 40px;
        margin-bottom: 60px;   
        box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    }

    
    .rk-detail-title {
        font-size: 32px;
        font-weight: 600;
        letter-spacing: 1px;
        color: #4B4641;
        margin-bottom: 16px;
        text-transform: uppercase;
    }
    .rk-detail-sub {
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 2px;
        color: #B48A84;        
        margin-bottom: 12px;
        text-transform: uppercase;
        margin-top: 40px;
    }
    .rk-detail-text {
        font-size: 14px;
        line-height: 1.9;
        color: #7B7460;        
        max-width: 800px;
    }

   
    .rk-inst-img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: 4px;
    }

   
    .rk-artwork-track {
        display: flex;
        gap: 24px;
        overflow-x: auto;
        padding-bottom: 24px; 
        scroll-snap-type: x mandatory;
    }
    .rk-artwork-card {
        flex: 0 0 280px;     
        scroll-snap-align: start;
        background: #FFFFFF;
        border: 1px solid rgba(75,70,65,0.1);
        border-radius: 6px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08); 
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .rk-artwork-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    }
    .rk-artwork-img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        border-bottom: 1px solid rgba(75,70,65,0.1);
        display: block;
        border-radius: 6px 6px 0 0;
    }
    .rk-artwork-info {
        padding: 16px 20px;
    }
    .rk-artwork-title {
        font-size: 14px;
        font-weight: 500;
        color: #4B4641;
        margin-bottom: 4px;
    }
    .rk-artwork-meta {
        font-size: 11px;
        color: #9A948A;
        font-style: italic;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .rk-detail-card { padding: 24px; }
        .rk-inst-img { height: 300px; }
        .rk-artwork-card { flex: 0 0 240px; }
    }


/* =========================
   ARTISTS PAGE STYLES
   ========================= */

/* 1. Artists Hero Section */
.rk-about-hero {
    background-color: #DFD9D1;
    padding: 40px 0;
    min-height: 220px;
}
.rk-hero-text {
    font-style: italic;
    font-size: 16px;
    color: #6A6258;
    margin: 0 auto;
    max-width: 600px;
}

/* 2. Artist Row Card */
.rk-artist-list {
    display: flex;
    flex-direction: column;
    gap: 40px; /* Gap between cards */
}

.rk-artist-row-card {
    background-color: #FDFBF8; 
    border-radius: 12px;      
    overflow: hidden;          
    border: 1px solid rgba(75, 70, 65, 0.1); 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 200px;
}

/* Hover effect & shadow */
.rk-artist-row-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Artist Bio Text */
.rk-artist-bio {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limit to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
    max-width: 90%;
}

/* Artist Image (Right side) */
.rk-artist-row-img {
    width: 100%;
   
    height: 180px; 
    
    object-fit: cover;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.5s ease;
}

/* Hover zoom */
.rk-artist-row-card:hover .rk-artist-row-img {
    transform: scale(1.03);
}

/* 3. Pagination Styles */
.rk-pagination .page-link {
    border: none;
    background: transparent;
    color: #7B7460;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
}

.rk-pagination .page-link:hover {
    color: #B48A84;
    background: rgba(0,0,0,0.03);
}

.rk-pagination .page-link.active {
    background-color: #736A60;
    color: #F5F0E8;
}

.rk-pagination .page-item.disabled .page-link {
    color: rgba(123, 116, 96, 0.4);
}

/* Mobile Fix */
@media (max-width: 768px) {
    .rk-artist-row-card {
        text-align: center;
    }
    .rk-artist-row-img {
        height: 180px;
        min-height: auto;
    }
    /* Reorder columns on mobile */
    .rk-artist-row-card .row {
        flex-direction: column-reverse;
    }
    .rk-artist-bio {
        margin: 0 auto;
    }
}

/* =========================
   EXHIBITIONS PAGE STYLES
   ========================= */

/* 1. Page & Hero Adjustments */
.rk-page-flush {
    padding-top: 0 !important;
}

.rk-ex-hero {
    background-color: #DFD9D1;
    min-height: 260px;
    padding: 48px 0;
}

.rk-hero-logo {
    width: 110px;
    height: auto;
    margin-right: 40px;
}

.rk-hero-desc {
    font-style: italic;
    font-size: 16px;
    color: #6A6258;
    max-width: 480px;
    margin-bottom: 0;
}

/* 2. List Container */
.rk-exhibition-list-box {
    background-color: #E8E4DF;
    border-radius: 8px;
}

/* 3. Text & Headers */
.rk-header-current {
    color: #B48A84;
    letter-spacing: 2px;
    font-weight: 600;
}

.rk-header-past {
    color: #7B7460;
    letter-spacing: 2px;
    font-weight: 600;
}

.rk-date-label {
    letter-spacing: 1px;
    color: #7B7460;
}

.rk-ex-title-link {
    font-size: 24px;
}

/* Removes default link underline and color */
.rk-link-reset {
    text-decoration: none;
    color: inherit;
}
.rk-link-reset:hover {
    color: #B48A84; /* Optional: Add hover effect */
}

/* 4. Info Section (Dashed Lines) */
.rk-info-divider {
    border-top: 1px dashed rgba(75, 70, 65, 0.4);
}

.rk-desc-text {
    line-height: 1.8;
}

/* 5. Buttons & Interactive */
.rk-btn-light {
    background-color: #FDFBF8;
}

.rk-img-link {
    display: block;
}

/* 6. Dividers */
.rk-section-divider {
    border-top: 1px solid #999085;
}

/* =========================
   CONTACT PAGE STYLES
   ========================= */

/* 1. Page & Layout Overrides */
.rk-page-flush {
    padding-top: 0 !important;
}

.rk-contact-top-section {
    padding-top: 40px !important;
    margin-top: 0 !important;
}

/* 2. Contact/Logo Card */
.rk-contact-logo-card {
    min-height: 400px;
    padding: 0;
    border: 15px solid #FFFFFF;
    background-color: #E8E4DF;
}

.rk-contact-logo-img {
    max-width: 160px;
    height: auto;
}

.rk-contact-brand-text {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #5A524A;
}

/* 3. Section Headers & Text */
.rk-header-brown {
    color: #6A6258;
}

.rk-fw-600 {
    font-weight: 600;
}

.rk-loc-header {
    font-size: 16px;
}

/* 4. Map Container */
.rk-map-box {
    min-height: 320px;
    border: 1px solid rgba(75, 70, 65, 0.25);
}

.rk-map-iframe {
    border: 0;
}

/* 5. Modal Styles */
.rk-modal-content-styled {
    background-color: #F6F3EF;
    border: 1px solid rgba(75, 70, 65, 0.25);
    border-radius: 0;
}

.rk-modal-icon {
    font-size: 40px;
    color: #736A60;
    margin-bottom: 16px;
}

.rk-modal-text {
    font-size: 14px;
}

/* =========================
   Cross-browser Compatibility & Performance
   ========================= */

/* Flexbox prefixes */
.d-flex,
.rk-top-inner,
.rk-filter-row,
.rk-fair-track,
.rk-section-head{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}

/* Transform prefixes */
.rk-ex-card:hover .rk-ex-img,
.rk-artist-row-card:hover .rk-artist-row-img{
  -webkit-transform:scale(1.03);
  -ms-transform:scale(1.03);
  transform:scale(1.03);
}

/* Touch device optimization */
@media (hover:none) and (pointer:coarse){
  .rk-ex-card:hover .rk-ex-img,
  .rk-artist-row-card:hover .rk-artist-row-img{
    -webkit-transform:none;
    -ms-transform:none;
    transform:none;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion:reduce){
  *{
    -webkit-animation:none !important;
    animation:none !important;
    -webkit-transition:none !important;
    transition:none !important;
  }
}

/* Print styles */
@media print{
  body{
    background:#fff;
    color:#000;
  }
  .rk-top,.rk-footer,.rk-burger{
    display:none;
  }
  img{
    max-width:100% !important;
    page-break-inside:avoid;
  }
}